/* Reset e Variáveis */
:root {
    --navy: #0A1728;              /* Azul marinho escuro - header, footer, seções escuras */
    --navy-soft: #14213D;
    --gold: #C9A052;
    --gold-hover: #B08D46;
    --creme-escuro: #D9D2C5;      /* Creme escuro - primeira section e alternadas */
    --creme: #E8E4DC;             /* Creme médio - fundo geral */
    --creme-claro: #F5F1EA;       /* Creme claro - cards */
    --white: #FFFFFF;
    --text-dark: #0A1728;
    --text-on-dark: #E8E4DC;
    --text-on-dark-muted: #A8A090;
    --text-muted: #5A5248;
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--creme);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tipografia */
h1, h2, h3 {
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; margin-bottom: 20px; }
h2 { font-size: 2.5rem; margin-bottom: 15px; }
p { font-size: 1.1rem; margin-bottom: 20px; }

.divider-gold {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.divider-gold-left {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 0 20px 0;
    border-radius: 2px;
}

/* ============================================
   HEADER - AZUL MARINHO
   ============================================ */
.header-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 5%;
    pointer-events: none;
}

.main-header {
    background-color: var(--navy);
    padding: 12px 35px; /* ↑ horizontal de 25px para 35px */
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px; /* ← NOVO: garante espaço entre logo, menu e botão */
    pointer-events: auto;
    transition: all 0.3s ease;
}

.main-header .logo img {
    height: 60px;
    width: auto;
    display: block;
    margin-left: 60px;
}

.main-header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 65px; /* ↑ bem espaçado */
    flex: 1;
    justify-content: center;
    padding: 0 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-on-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    padding: 8px 6px;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.3px; /* leve espaçamento entre letras */
}

.nav-links a:hover {
    color: var(--gold);
}

/* Efeito de sublinhado dourado no hover (opcional, elegante) */
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 80%;
}

.header-cta {
    background-color: var(--gold);
    color: var(--navy);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 160, 82, 0.3);
}

.header-cta:hover {
    background-color: var(--gold-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 160, 82, 0.5);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-on-dark);
}

/* ============================================
   TIMELINE (Como Funciona)
   ============================================ */
.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 20px;
    padding: 20px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 100%);
    z-index: 0;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.timeline-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--navy);
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(201, 160, 82, 0.4);
    border: 3px solid var(--navy);
}

.timeline-item h3 {
    font-size: 1.1rem;
    color: var(--text-on-dark);
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 700;
}

.timeline-item p {
    font-size: 0.85rem;
    color: var(--text-on-dark-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ============================================
   FORMULÁRIO + WHATSAPP
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--creme-claro);
    padding: 40px 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 18px;
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    gap: 6px;
}

.contact-form input,
.contact-form select {
    padding: 13px 16px;
    border-radius: 10px;
    border: 1px solid rgba(10, 22, 40, 0.12);
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--navy);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 160, 82, 0.15);
}

.contact-form input::placeholder {
    color: #B0A89A;
}

.btn-submit {
    background-color: var(--navy);
    color: var(--text-on-dark);
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(10, 22, 40, 0.25);
}

.btn-submit:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 160, 82, 0.4);
}

.contact-whatsapp {
    background-color: var(--creme-claro);
    padding: 50px 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.whatsapp-icon-circle {
    width: 80px;
    height: 80px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.whatsapp-icon-circle i {
    font-size: 2.4rem;
    color: var(--white);
}

.contact-whatsapp h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.contact-whatsapp p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 280px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--navy);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(10, 22, 40, 0.3);
}

.btn-whatsapp:hover {
    background-color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--creme-claro);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-item summary {
    padding: 22px 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 60px;
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-item[open] summary {
    color: var(--gold);
}

.faq-item p {
    padding: 0 30px 25px;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   RESPONSIVIDADE - Timeline / Contato / FAQ
   ============================================ */
@media (max-width: 900px) {
    .timeline {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        max-width: 320px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-form {
        padding: 30px 22px;
    }

    .contact-whatsapp {
        padding: 40px 25px;
    }

    .faq-item summary {
        padding: 18px 20px;
        padding-right: 50px;
        font-size: 0.92rem;
    }

    .faq-item p {
        padding: 0 20px 20px;
        font-size: 0.88rem;
    }
}

/* ============================================
   HERO - CREME ESCURO COM BACKGROUND.PNG
   ============================================ */
.hero-section {
    padding: 180px 0 200px;
    background-color: var(--creme-escuro);
    position: relative;
    text-align: center;
    overflow: hidden;
    z-index: 0;
}

/* Imagem de fundo com opacidade controlada */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15; /* Ajuste entre 0.10 e 0.20 conforme preferir */
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-section h1 {
    color: var(--navy);
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-section h1 span {
    color: var(--gold);
    font-style: normal;
}

.hero-section p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--navy);
    color: var(--text-on-dark);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(10, 22, 40, 0.3);
}

.btn-hero:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(201, 160, 82, 0.5);
}

/* ============================================
   CARDS FLUTUANTES
   ============================================ */
.cards-section {
    padding: 0 0 80px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    background-color: var(--creme-escuro);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card-floating {
    background-color: var(--creme-claro);
    padding: 50px 35px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.card-floating:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(10, 22, 40, 0.2);
}

.card-icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: background-color 0.3s;
}

.card-floating:hover .card-icon-circle {
    background-color: var(--gold);
}

.card-icon-circle i {
    font-size: 1.8rem;
    color: var(--gold);
    transition: color 0.3s;
}

.card-floating:hover .card-icon-circle i {
    color: var(--navy);
}

.card-floating h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.card-floating p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   SEÇÕES BASE - PERMUTANDO
   ============================================ */
.section { padding: 100px 0; }

.bg-dark-section {
    background-color: var(--navy);
    color: var(--text-on-dark);
}

.bg-light-section {
    background-color: var(--creme-escuro);
    color: var(--navy);
}

.section-title-light {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title-light h2 { color: var(--text-on-dark); }
.section-title-light p { color: var(--text-on-dark-muted); }

.section-title-dark {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title-dark h2 { color: var(--navy); }
.section-title-dark p { color: var(--text-muted); }

/* ============================================
   CARDS EM SEÇÃO ESCURA (azul marinho)
   ============================================ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card-dark {
    background-color: rgba(217, 210, 197, 0.06);
    border: 1px solid rgba(201, 160, 82, 0.2);
    padding: 45px 35px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.card-dark:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    background-color: rgba(217, 210, 197, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-dark i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.card-dark h3 {
    font-size: 1.3rem;
    color: var(--text-on-dark);
    margin-bottom: 15px;
}

.card-dark p {
    color: var(--text-on-dark-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   PASSOS - fundo creme escuro
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.step-card {
    background-color: var(--creme-claro);
    padding: 45px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--gold);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--creme);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid var(--gold);
    transition: all 0.3s;
}

.step-card:hover .step-icon {
    background-color: var(--gold);
}

.step-card:hover .step-icon i {
    color: var(--navy);
}

.step-icon i {
    font-size: 2rem;
    color: var(--navy);
    transition: color 0.3s;
}

.step-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.step-card strong { color: var(--gold); }

/* ============================================
   FEATURES - seção azul marinho
   ============================================ */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(217, 210, 197, 0.05);
    border-radius: var(--radius);
    transition: transform 0.3s;
    border: 1px solid rgba(201, 160, 82, 0.15);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.feature-item i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.1rem;
    color: var(--text-on-dark);
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-on-dark-muted);
    margin-bottom: 0;
}

.highlight-box {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    padding: 50px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--navy);
    box-shadow: 0 15px 40px rgba(201, 160, 82, 0.4);
}

.highlight-box h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.highlight-box p {
    color: rgba(10, 22, 40, 0.8);
    font-weight: 500;
    margin-bottom: 0;
}

/* ============================================
   DEPOIMENTOS - seção creme escuro
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card-light {
    background-color: var(--creme-claro);
    padding: 40px 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-light:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card-light p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-card-light .author {
    font-weight: 700;
    color: var(--navy);
    font-family: var(--font-title);
    font-size: 1.1rem;
}

/* ============================================
   SOBRE - seção azul marinho
   ============================================ */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text { flex: 1.2; }
.about-text h2 { color: var(--text-on-dark); }
.about-text p { color: var(--text-on-dark-muted); }

.about-list {
    list-style: none;
    margin-top: 30px;
}

.about-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    color: var(--text-on-dark);
}

.about-list i {
    color: var(--gold);
    margin-right: 15px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ============================================
   CTA FINAL - creme escuro
   ============================================ */
.cta-content {
    text-align: center;
    background: linear-gradient(135deg, var(--creme-claro) 0%, var(--creme) 100%);
    padding: 80px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 160, 82, 0.2);
}

.cta-content h2 { color: var(--navy); margin-bottom: 20px; }
.cta-content p { font-size: 1.15rem; margin-bottom: 40px; color: var(--text-muted); }

.btn-primary {
    display: inline-block;
    background-color: var(--navy);
    color: var(--text-on-dark);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(10, 22, 40, 0.3);
}

.btn-primary:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 160, 82, 0.5);
}

.btn-large { padding: 22px 55px; font-size: 1.1rem; }

/* ============================================
   FOOTER - AZUL MARINHO
   ============================================ */
footer {
    background-color: var(--navy);
    color: #888;
    text-align: center;
    padding: 60px 0 30px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 25px;
    opacity: 0.95;
}

footer p { font-size: 0.9rem; margin-bottom: 10px; }
/* ============================================
   SOCIAL LINKS - INSTAGRAM DESTACADO
   ============================================ */
.social-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.social-links a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A052 0%, #E8C97A 50%, #C9A052 100%);
    color: var(--navy);
    font-size: 1.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(201, 160, 82, 0.35),
                0 0 0 0 rgba(201, 160, 82, 0.6);
    animation: pulseGold 2.5s infinite;
    position: relative;
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.1);
    background: linear-gradient(135deg, #E8C97A 0%, #C9A052 50%, #E8C97A 100%);
    color: var(--navy);
    box-shadow: 0 12px 30px rgba(201, 160, 82, 0.6),
                0 0 0 0 rgba(201, 160, 82, 0.6);
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 8px 20px rgba(201, 160, 82, 0.35),
                    0 0 0 0 rgba(201, 160, 82, 0.5);
    }
    70% {
        box-shadow: 0 8px 20px rgba(201, 160, 82, 0.35),
                    0 0 0 15px rgba(201, 160, 82, 0);
    }
    100% {
        box-shadow: 0 8px 20px rgba(201, 160, 82, 0.35),
                    0 0 0 0 rgba(201, 160, 82, 0);
    }
}

.copyright {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: #555;
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   CARROSSEL ANTES E DEPOIS
   ============================================ */
.carousel-wrapper {
    margin-top: 80px;
    text-align: center;
}

.carousel-header {
    margin-bottom: 40px;
}

.carousel-header h3 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.carousel-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 15px 5px 25px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 0;
    background-color: var(--creme-claro);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
    border: 1px solid rgba(10, 22, 40, 0.05);
    display: flex;
    flex-direction: column;
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.carousel-card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background-color: var(--creme);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-card:hover .carousel-card-image img {
    transform: scale(1.08);
}

.carousel-card-body {
    padding: 22px 20px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.carousel-card-body h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0;
    text-align: left;
}

.carousel-values {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.value-row .label {
    color: var(--text-muted);
    font-weight: 500;
}

.value-old {
    color: #D94A3D;
    text-decoration: line-through;
    font-weight: 700;
    font-size: 0.95rem;
}

.value-new {
    color: #1F8A4C;
    font-weight: 800;
    font-size: 1.1rem;
}

.carousel-card-footer {
    background-color: var(--creme);
    padding: 12px 20px;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: left;
    border-top: 1px solid rgba(10, 22, 40, 0.05);
    letter-spacing: 0.3px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--navy);
    color: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(10, 22, 40, 0.25);
}

.carousel-btn:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: scale(1.08);
}

.carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.carousel-note {
    margin-top: 25px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

@media (max-width: 1024px) {
    .carousel-card {
        flex: 0 0 calc((100% - 40px) / 3);
    }
}

@media (max-width: 768px) {
    .carousel-wrapper { margin-top: 60px; }

    .carousel-header h3 { font-size: 1.8rem; }
    .carousel-header p { font-size: 0.95rem; }

    .carousel-container { gap: 8px; }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .carousel-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .carousel-card-image { height: 130px; }
    .carousel-card-body { padding: 18px 16px 14px; }
    .carousel-card-body h4 { font-size: 0.95rem; }
    .value-row { font-size: 0.78rem; }
    .value-old { font-size: 0.85rem; }
    .value-new { font-size: 1rem; }
    .carousel-card-footer { font-size: 0.68rem; padding: 10px 16px; }
}

@media (max-width: 480px) {
    .carousel-card {
        flex: 0 0 85%;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-card-image { height: 140px; }
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 1200px) {
    .hero-section h1 { font-size: 3.2rem; }
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }

    .main-header .logo img {
        margin-left: 20px;
    }

    .nav-links { gap: 22px; }
    .nav-links a { font-size: 0.85rem; }
}

@media (max-width: 1024px) {
    .hero-section { padding: 150px 0 170px; }
    .hero-section h1 { font-size: 2.8rem; }
    .hero-section p { font-size: 1.1rem; }

    .about-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about-list li {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .timeline {
        flex-wrap: wrap;
        gap: 30px;
    }

    .timeline::before { display: none; }

    .timeline-item {
        flex: 1 1 calc(50% - 20px);
        min-width: 220px;
    }

    .grid-4 { gap: 20px; }
}

@media (max-width: 900px) {
    .main-header {
        padding: 10px 18px;
        border-radius: 40px;
    }

    .main-header .logo img {
        height: 50px;
        margin-left: 10px;
    }

    .header-cta {
        padding: 10px 18px;
        font-size: 0.82rem;
    }

    .nav-links { gap: 18px; }

    .hero-section { padding: 130px 0 150px; }
    .hero-section h1 { font-size: 2.4rem; }

    .cards-section { margin-top: -80px; }
    .card-floating { padding: 40px 28px 32px; }

    .timeline-item {
        flex: 1 1 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .contact-form { padding: 35px 28px; }
    .contact-whatsapp { padding: 45px 28px; }

    .faq-list { gap: 12px; }
    .faq-item summary { padding: 20px 24px; padding-right: 55px; font-size: 0.95rem; }
    .faq-item p { padding: 0 24px 22px; font-size: 0.9rem; }

    .highlight-box { padding: 40px 25px; }
    .highlight-box h3 { font-size: 1.6rem; }
}

@media (max-width: 768px) {
    .header-wrapper {
        top: 10px;
        padding: 0 4%;
    }

    .main-header {
        padding: 10px 15px;
        border-radius: 30px;
    }

    .main-header .logo img {
        height: 45px;
        margin-left: 0;
    }

.nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background-color: var(--navy);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start; /* ← corrige */
    flex: none; /* ← corrige */
    gap: 0;
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 160, 82, 0.15);
}

    .nav-links.active { display: flex; }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links li:last-child { border-bottom: none; }

    .nav-links a {
        display: block;
        padding: 14px 10px;
        font-size: 0.95rem;
        text-align: center;
    }

    .menu-toggle { display: block; }

    .header-cta {
        padding: 10px 16px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .header-cta span { display: none; }

    .hero-section {
        padding: 120px 0 140px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-section p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .btn-hero {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .cards-section {
        margin-top: -70px;
        padding: 0 0 60px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-floating {
        padding: 35px 25px 30px;
    }

    .card-floating h3 { font-size: 1.3rem; }
    .card-icon-circle { width: 60px; height: 60px; margin-bottom: 20px; }
    .card-icon-circle i { font-size: 1.5rem; }

    .section { padding: 70px 0; }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }
    p { font-size: 1rem; }

    .section-title-light,
    .section-title-dark {
        margin-bottom: 40px;
    }

    .timeline {
        flex-direction: column;
        gap: 35px;
        align-items: center;
        padding: 10px 0;
    }

    .timeline::before { display: none; }

    .timeline-item {
        max-width: 100%;
        padding: 0 15px;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .timeline-item h3 { font-size: 1.05rem; }
    .timeline-item p { font-size: 0.9rem; }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 40px;
    }

    .feature-item { padding: 25px 15px; }
    .feature-item i { font-size: 1.8rem; margin-bottom: 15px; }
    .feature-item h3 { font-size: 1rem; }
    .feature-item p { font-size: 0.85rem; }

    .highlight-box { padding: 35px 22px; }
    .highlight-box h3 { font-size: 1.4rem; letter-spacing: 1px; }
    .highlight-box p { font-size: 0.95rem; }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form { padding: 30px 22px; gap: 15px; }

    .contact-form input,
    .contact-form select {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .contact-whatsapp { padding: 40px 25px; }
    .whatsapp-icon-circle { width: 70px; height: 70px; margin-bottom: 20px; }
    .whatsapp-icon-circle i { font-size: 2rem; }
    .contact-whatsapp h3 { font-size: 1.2rem; }
    .contact-whatsapp p { font-size: 0.9rem; margin-bottom: 25px; }
    .btn-whatsapp { padding: 13px 28px; font-size: 0.9rem; }

    .faq-list { gap: 10px; }

    .faq-item summary {
        padding: 18px 20px;
        padding-right: 50px;
        font-size: 0.92rem;
    }

    .faq-item summary::after {
        right: 20px;
        font-size: 0.8rem;
    }

    .faq-item p {
        padding: 0 20px 20px;
        font-size: 0.88rem;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-text h2 { font-size: 1.9rem; }
    .about-text p { font-size: 1rem; }

    .about-list li {
        justify-content: center;
        font-size: 1rem;
    }

    .about-image img { max-width: 70%; }

    footer { padding: 45px 0 25px; }
    .footer-logo img { height: 65px; margin-bottom: 20px; }
    footer p { font-size: 0.85rem; }
    .social-links a { font-size: 1.3rem; margin: 0 10px; }
    .copyright { font-size: 0.8rem; }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hero-section { padding: 110px 0 130px; }
    .hero-section h1 { font-size: 1.75rem; }
    .hero-section p { font-size: 0.95rem; }
    .btn-hero { padding: 13px 26px; font-size: 0.95rem; }

    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.6rem; }
    p { font-size: 0.95rem; }

    .section { padding: 55px 0; }

    .cards-section { margin-top: -60px; }

    .main-header .logo img { height: 40px; }

    .header-cta { padding: 9px 12px; font-size: 0.75rem; }

    .timeline-number {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .contact-form { padding: 25px 18px; }
    .contact-whatsapp { padding: 35px 20px; }

    .faq-item summary {
        padding: 16px 18px;
        padding-right: 45px;
        font-size: 0.88rem;
    }

    .faq-item summary::after { right: 18px; }
    .faq-item p { padding: 0 18px 18px; font-size: 0.85rem; }

    .highlight-box { padding: 30px 18px; }
    .highlight-box h3 { font-size: 1.2rem; }

    .about-image img { max-width: 85%; }

    .footer-logo img { height: 55px; }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 24px;
    }
}
/* ============================================
   DEPOIMENTOS (seção branca)
   ============================================ */
.bg-white-section {
    background-color: #FFFFFF;
    color: var(--navy);
}

.testimonial-card {
    background-color: #F8F6F2;
    padding: 40px 35px 30px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(10, 22, 40, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.12);
}

.testimonial-quote {
    color: #C9C3B8;
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-card > p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    flex: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author strong {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #F5B400;
    font-size: 1rem;
}

/* ============================================
   CONTADOR DE ECONOMIA (seção escura)
   ============================================ */
.counter-section {
    padding: 90px 0;
}

.counter-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.counter-label {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--text-on-dark-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.counter-value {
    font-family: var(--font-title);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.counter-prefix {
    font-size: 0.7em;
    color: var(--gold);
    margin-right: 5px;
}

.counter-sub {
    font-size: 1rem;
    color: var(--text-on-dark-muted);
    margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 25px 25px;
    }

    .testimonial-card > p {
        font-size: 0.92rem;
        margin-bottom: 22px;
    }

    .counter-value {
        font-size: 2.8rem;
    }

    .counter-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .counter-value {
        font-size: 2.2rem;
    }

    .testimonial-quote {
        font-size: 1.6rem;
    }

    .testimonial-stars {
        font-size: 0.9rem;
    }
}