:root {
    --verde: #006351;
    --verde-escuro: #00382e;
    --ouro: #a47e36;
    --ouro-claro: #c8a94e;
    --creme: #eeeeee;
    --branco: #ffffff;
    --texto-escuro: #181b1d;
    --texto: #555555;
    --black: #000000;
    --vermelho-dor: #8b1a1a;
    color-scheme: light;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background: var(--creme);
    color: var(--verde);
    overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--creme);
    backdrop-filter: blur(12px);
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(201,168,76,0.25);
}

.nav-logo {
    font-family: 'Ubuntu', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--branco);
    letter-spacing: -0.02em;
}

    .nav-logo img {
        max-width: 200px;
    }

    .nav-logo span {
        color: var(--ouro);
    }

.nav-cta {
    background: var(--ouro);
    color: var(--branco);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}

    .nav-cta:hover {
        background: var(--ouro-claro);
        transform: translateY(-1px);
    }

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    background: var(--verde);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 110% 50%, rgba(30,122,80,0.3) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at -10% 80%, rgba(201,168,76,0.1) 0%, transparent 50%);
    }

.hero-grid-lines {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    padding: 80px 48px 80px 80px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--ouro-claro);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease both;
}

    .hero-badge::before {
        content: '●';
        font-size: 0.6rem;
    }

h1 {
    font-family: 'Ubuntu', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--branco);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    animation: fadeUp 0.7s 0.1s ease both;
}

    h1 em {
        font-style: normal;
        color: var(--ouro-claro);
        position: relative;
    }

.hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--creme);
    max-width: 500px;
    margin-bottom: 40px;
    animation: fadeUp 0.7s 0.2s ease both;
}

    .hero-sub strong {
        color: rgba(255,255,255,0.95);
        font-weight: 500;
    }

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ouro-claro);
    color: var(--branco);
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}

    .btn-primary:hover {
        background: var(--ouro-claro);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(201,168,76,0.4);
    }

    .btn-primary svg {
        transition: transform 0.2s;
    }

    .btn-primary:hover svg {
        transform: translateX(4px);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 16px 24px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

    .btn-secondary:hover {
        border-color: rgba(255,255,255,0.6);
        color: var(--branco);
    }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    animation: fadeUp 0.7s 0.4s ease both;
}

.stat-item {
}

.stat-num {
    font-family: 'Ubuntu', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--ouro-claro);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--creme);
    margin-top: 4px;
    line-height: 1.3;
}

.hero-visual {
    position: relative;
    z-index: 2;
    padding: 60px 60px 60px 0;
    animation: fadeLeft 0.8s 0.3s ease both;
}

    .hero-visual img {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 25px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    }

.dashboard-mock {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
}

.dash-header {
    background: rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

    .dash-dot:nth-child(1) {
        background: #ff5f57;
    }

    .dash-dot:nth-child(2) {
        background: #febc2e;
    }

    .dash-dot:nth-child(3) {
        background: #28c840;
    }

.dash-title {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    margin-left: 8px;
}

.dash-body {
    padding: 24px;
}

.dash-greeting {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.dash-heading {
    color: var(--branco);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.dash-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.dash-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 16px;
}

.dash-card-label {
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    margin-bottom: 6px;
}

.dash-card-value {
    color: var(--branco);
    font-size: 1.3rem;
    font-weight: 700;
}

    .dash-card-value.gold {
        color: var(--ouro-claro);
    }

.dash-card-delta {
    font-size: 0.68rem;
    color: #4ade80;
    margin-top: 4px;
}

.dash-chart-label {
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    margin-bottom: 10px;
}

.dash-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.dash-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(201,168,76,0.3);
    transition: height 1s ease;
}

    .dash-bar.active {
        background: var(--ouro-claro);
    }

.dash-recent {
    margin-top: 16px;
}

.dash-recent-label {
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    margin-bottom: 10px;
}

.dash-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

    .dash-row:last-child {
        border-bottom: none;
    }

.dash-row-name {
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
}

.dash-row-val {
    color: var(--ouro-claro);
    font-size: 0.78rem;
    font-weight: 600;
}

.dash-row-status {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 100px;
    background: rgba(74,222,128,0.15);
    color: #4ade80;
}

.dash-badge-bottom {
    margin-top: 16px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ouro-claro);
    font-size: 0.75rem;
}

/* ─── DOR ─── */
.section-dor {
    background: var(--creme);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

    .section-dor::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--verde), var(--ouro), var(--verde));
    }

.dor-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.dor-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ouro);
    margin-bottom: 16px;
}

h2 {
    font-family: 'Ubuntu', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--verde);
    margin-bottom: 24px;
}

.dor-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--texto);
    margin-bottom: 24px;
}

    .dor-text strong {
        color: var(--vermelho-dor);
    }

.dor-alert {
    background: rgba(139,26,26,0.07);
    border-left: 4px solid var(--vermelho-dor);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
}

    .dor-alert p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--texto);
        font-style: italic;
    }

.dor-pains {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pain-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--branco);
    border: 1px solid rgba(13,61,43,0.08);
    border-radius: 12px;
    padding: 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .pain-item:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transform: translateY(-2px);
    }

.pain-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(139,26,26,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pain-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--verde);
    margin-bottom: 4px;
}

.pain-content p {
    font-size: 0.85rem;
    color: var(--texto);
    line-height: 1.5;
}

/* ─── COMPARATIVO ─── */
.section-compare {
    background: var(--verde);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

    .section-compare::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(30,122,80,0.4), transparent);
    }

.compare-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.compare-heading {
    text-align: center;
    margin-bottom: 60px;
}

    .compare-heading .dor-label {
        color: var(--ouro-claro);
    }

    .compare-heading h2 {
        color: var(--branco);
    }

.compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

    .compare-table thead tr {
        background: rgba(255,255,255,0.06);
    }

    .compare-table th {
        padding: 20px 28px;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        text-align: left;
    }

        .compare-table th:nth-child(1) {
            color: rgba(255,255,255,0.5);
            width: 28%;
        }

        .compare-table th:nth-child(2) {
            color: #f87171;
            width: 36%;
        }

        .compare-table th:nth-child(3) {
            color: #4ade80;
            width: 36%;
        }

    .compare-table tbody tr {
        border-top: 1px solid rgba(255,255,255,0.06);
        transition: background 0.15s;
    }

        .compare-table tbody tr:hover {
            background: rgba(255,255,255,0.04);
        }

    .compare-table td {
        padding: 20px 28px;
        font-size: 0.9rem;
        line-height: 1.5;
        vertical-align: middle;
    }

        .compare-table td:nth-child(1) {
            color: var(--ouro-claro);
            font-weight: 700;
            font-size: 0.85rem;
        }

        .compare-table td:nth-child(2) {
            color: rgba(255,255,255,0.6);
        }

        .compare-table td:nth-child(3) {
            color: rgba(255,255,255,0.9);
            font-weight: 500;
        }

.td-bad {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

    .td-bad::before {
        content: '✕';
        color: #f87171;
        font-weight: 700;
        flex-shrink: 0;
        margin-top: 1px;
    }

.td-good {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

    .td-good::before {
        content: '✓';
        color: #4ade80;
        font-weight: 700;
        flex-shrink: 0;
        margin-top: 1px;
    }

/* ─── DIFERENCIAIS ─── */
.section-diferenciais {
    background: var(--creme);
    padding: 100px 80px;
}

.diferenciais-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.diferenciais-heading {
    margin-bottom: 60px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dif-card {
    background: var(--branco);
    border: 1px solid rgba(13,61,43,0.1);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

    .dif-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--ouro);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
    }

    .dif-card:hover {
        box-shadow: 0 16px 48px rgba(13,61,43,0.12);
        transform: translateY(-4px);
    }

        .dif-card:hover::before {
            transform: scaleX(1);
        }

.dif-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(13,61,43,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.dif-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--verde);
    margin-bottom: 12px;
}

.dif-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--texto);
}

.dif-highlight {
    display: inline-block;
    margin-top: 16px;
    background: rgba(13,61,43,0.06);
    color: var(--verde);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}

.dif-card-featured {
    background: var(--verde);
    border-color: var(--verde);
    color: var(--branco);
}

    .dif-card-featured .dif-icon {
        background: rgba(255,255,255,0.12);
    }

    .dif-card-featured h3 {
        color: var(--branco);
    }

    .dif-card-featured p {
        color: rgba(255,255,255,0.7);
    }

    .dif-card-featured .dif-highlight {
        background: rgba(201,168,76,0.2);
        color: var(--ouro-claro);
    }

    .dif-card-featured::before {
        background: var(--ouro);
    }

/* ─── PROVA SOCIAL ─── */
.section-prova {
    background: var(--cinza-claro);
    padding: 100px 80px;
    position: relative;
}

.prova-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.prova-heading {
    text-align: center;
    margin-bottom: 60px;
}

.logos-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 72px;
    padding: 32px;
    background: var(--branco);
    border-radius: 16px;
    border: 1px solid rgba(13,61,43,0.08);
}

.logo-pill {
    height: 44px;
    padding: 0 24px;
    background: rgba(13,61,43,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--verde);
    letter-spacing: 0.05em;
    border: 1px solid rgba(13,61,43,0.1);
    min-width: 140px;
}

.testimonial-block {
    background: var(--verde);
    border-radius: 20px;
    padding: 56px 64px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(13,61,43,0.2);
}

    .testimonial-block::before {
        content: '"';
        position: absolute;
        top: -20px;
        left: 40px;
        font-family: 'Ubuntu', serif;
        font-size: 15rem;
        font-weight: 900;
        color: rgba(201,168,76,0.08);
        line-height: 1;
        pointer-events: none;
    }

.testimonial-stars {
    color: var(--ouro-claro);
    font-size: 1.1rem;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-family: 'Ubuntu', serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-style: italic;
    color: var(--branco);
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

    .testimonial-quote span {
        color: var(--ouro-claro);
    }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(201,168,76,0.2);
    border: 2px solid rgba(201,168,76,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.author-name {
    font-weight: 700;
    color: var(--branco);
    font-size: 0.95rem;
}

.author-role {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    margin-top: 2px;
}

/* ─── FAQ ─── */
.section-faq {
    background: var(--branco);
    padding: 100px 80px;
}

.faq-inner {
    max-width: 760px;
    margin: 0 auto;
}

.faq-heading {
    text-align: center;
    margin-bottom: 56px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(13,61,43,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

    .faq-item:hover {
        box-shadow: 0 4px 16px rgba(13,61,43,0.08);
    }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--verde);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(13,61,43,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    padding-bottom: 2px;
    margin-left: 16px;
    transition: transform 0.3s, background 0.2s;
    color: var(--ouro);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--verde);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 28px;
    color: var(--texto);
    font-size: 0.92rem;
    line-height: 1.75;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 28px 22px;
}

/* ─── FORMULÁRIO / CTA FINAL ─── */
.section-cta {
    background: var(--verde);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

    .section-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at -10% 50%, rgba(201,168,76,0.12), transparent), radial-gradient(ellipse 50% 60% at 110% 20%, rgba(30,122,80,0.3), transparent);
    }

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-copy .dor-label {
    color: var(--ouro-claro);
}

.cta-copy h2 {
    color: var(--branco);
    margin-bottom: 24px;
}

.cta-copy p {
    color: var(--creme);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .cta-bullets li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255,255,255,0.8);
        font-size: 0.9rem;
    }

        .cta-bullets li::before {
            content: '✓';
            color: var(--ouro-claro);
            font-weight: 700;
        }

.cta-form-wrap {
    background: var(--branco);
    border-radius: 20px;
    padding: 48px 44px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

.form-title {
    font-family: 'Ubuntu', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--verde);
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--texto);
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

    .form-group label {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--verde);
        letter-spacing: 0.04em;
    }

    .form-group input, .form-group select {
        padding: 13px 16px;
        border: 1.5px solid rgba(13,61,43,0.15);
        border-radius: 8px;
        font-family: 'Ubuntu', sans-serif;
        font-size: 0.92rem;
        color: var(--texto);
        background: var(--creme);
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
        appearance: none;
    }

        .form-group input:focus, .form-group select:focus {
            border-color: var(--ouro);
            box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
        }

        .form-group input::placeholder {
            color: #aaa;
        }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.btn-form {
    width: 100%;
    background: var(--ouro);
    color: var(--branco);
    font-size: 1rem;
    font-weight: 700;
    padding: 16px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .btn-form:hover {
        background: var(--ouro-claro);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(201,168,76,0.35);
    }

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--cinza-medio);
    margin-top: 14px;
}

/* ─── FOOTER ─── */
footer {
    background: #080f0c;
    padding: 40px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: 'Ubuntu', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--branco);
}

    .footer-logo img {
        max-width: 150px;
    }

    .footer-logo span {
        color: var(--ouro);
    }

footer p {
    color: rgba(255,255,255,0.3);
    font-size: 0.78rem;
}

footer a {
    color: var(--ouro);
    text-decoration: none;
}

/* ─── ANIMAÇÕES ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        padding: 80px 40px;
    }

    .dor-inner, .cta-inner {
        grid-template-columns: 1fr;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav {
        padding: 16px 24px;
    }

    .section-dor, .section-compare, .section-diferenciais,
    .section-prova, .section-faq, .section-cta {
        padding: 80px 40px;
    }

    footer {
        padding: 32px 40px;
    }
}

@media (max-width: 640px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 24px;
    }

    .compare-table th, .compare-table td {
        padding: 14px 16px;
        font-size: 0.8rem;
    }

    .testimonial-block {
        padding: 40px 32px;
    }

    .cta-form-wrap {
        padding: 36px 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .logos-strip {
        gap: 16px;
    }
}

/* Modal Sucesso */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .modal-overlay.modal-visible {
        opacity: 1;
        pointer-events: all;
    }

.modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.modal-visible .modal-box {
    transform: scale(1);
}

.modal-icon {
    margin-bottom: 1.25rem;
}

.modal-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111;
}

.modal-box p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.modal-btn-fechar {
    margin-top: 1.75rem;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/*-- Manter Tema Claro Media Query --*/
@media (prefers-color-scheme: dark) {
    html {
        filter: none !important;
    }
}