@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #F8F1E9;
    color: #1A3C34;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Menu Lateral */
.nav-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: #F4A261;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
    fill: #1A3C34;
}

nav {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #1A3C34;
    color: #F8F1E9;
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 20px;
}

nav.open {
    left: 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #F4A261;
    margin-bottom: 30px;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

nav ul li a {
    color: #F8F1E9;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    padding: 10px;
    display: block;
    border-radius: 5px;
}

nav ul li a.active,
nav ul li a:hover {
    background: #F4A261;
    color: #1A3C34;
}

main {
    margin-left: 20px;
    margin-right: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section com Paralaxe */
.hero {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1A3C34 0%, #E76F51 100%);
    color: #F8F1E9;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23F4A261" fill-opacity="0.3" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,213.3C672,224,768,224,864,208C960,192,1056,160,1152,154.7C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center;
    background-size: cover;
    transform: translateY(20px);
    transition: transform 0.2s ease;
}

.hero:hover::before {
    transform: translateY(0);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
}

.cta {
    display: inline-block;
    padding: 15px 35px;
    background: #F4A261;
    color: #1A3C34;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background 0.2s ease;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.cta:hover {
    background: #E76F51;
    transform: translateY(-3px);
}

/* Seções */
.features, .testimonials, .services, .about, .contact, .terms, .privacy, .plans {
    padding: 60px 20px;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.features h2, .testimonials h2, .services h1, .about h1, .contact h1, .terms h1, .privacy h1, .plans h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1A3C34;
    font-size: 2.2rem;
}

.feature-grid, .testimonial-grid, .plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature, .testimonial, .service, .plan {
    background: #F8F1E9;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover, .testimonial:hover, .service:hover, .plan:hover {
    transform: translateY(-10px);
}

.testimonial cite {
    display: block;
    margin-top: 15px;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    color: #E76F51;
}

.plan .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E76F51;
    margin: 10px 0;
}

.plan ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 25px;
    font-family: 'Roboto', sans-serif;
}

.plan .cta {
    margin-top: 20px;
}

/* Formulário de Contato */
.contact form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact form label {
    font-weight: 700;
    color: #1A3C34;
}

.contact form input,
.contact form textarea {
    padding: 12px;
    border: 2px solid #F4A261;
    border-radius: 10px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.2s ease;
}

.contact form input:focus,
.contact form textarea:focus {
    border-color: #E76F51;
    outline: none;
}

.contact form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact form button {
    padding: 12px;
    background: #F4A261;
    color: #1A3C34;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.contact form button:hover {
    background: #E76F51;
}

.success {
    color: #1A3C34;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.errors {
    color: #E76F51;
    list-style: none;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1A3C34 0%, #E76F51 100%);
    color: #F8F1E9;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.footer-content p {
    font-family: 'Roboto', sans-serif;
}

.footer-content ul {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-content ul li a {
    color: #F8F1E9;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

.footer-content ul li a:hover {
    color: #F4A261;
}

/* Ícones SVG Inline */
.footer-content ul li a::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F8F1E9"%3E%3Cpath d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-14c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79-4-4-4z"/%3E%3C/svg%3E') no-repeat center;
    background-size: contain;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    nav {
        left: -250px;
    }

    nav.open {
        left: 0;
    }

    main {
        margin-left: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .feature-grid, .testimonial-grid, .plan-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-content ul {
        justify-content: center;
    }
}