/* Importando fonte moderna e elegante */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

:root {
    --primary-navy: #1A2B4C;
    --secondary-gold: #D4AF37;
    --gold-hover: #C29B2C;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-muted: #666666;
    --text-light: #E2E8F0;
    --success-green: #2E7D32;
    --error-red: #C62828;
}

/* ================= BASE (MOBILE FIRST) ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= VERIFICADOR DE NÚMERO ================= */
.top-verifier-bar {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.85rem;
    border-bottom: 2px solid var(--secondary-gold);
    margin-top: 40px;
}

.top-verifier-bar+footer {
    margin-top: 0;
}

.top-verifier-bar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

.verifier-text {
    color: var(--text-light);
}

.verifier-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 350px;
}

.top-verifier-bar input {
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    width: 100%;
    outline: none;
    transition: 0.3s;
}

.top-verifier-bar input:focus {
    border-color: var(--secondary-gold);
}

.top-verifier-bar button {
    padding: 10px 20px;
    background-color: var(--secondary-gold);
    color: var(--primary-navy);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.top-verifier-bar button:hover {
    background-color: var(--gold-hover);
}

#verify-result {
    display: block;
    font-weight: 600;
    min-height: 20px;
}

/* ================= HERO SECTION ================= */
.hero {
    background-color: var(--white);
    padding: 20px 0;
    text-align: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    display: contents;
}

.super-headline {
    color: var(--gold-hover);
    background-color: rgba(212, 175, 55, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
    order: 1;
}

.hero h1 {
    color: var(--primary-navy);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    order: 3;
}

.hero p.sub-headline {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    order: 4;
}

.hero-visual {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    order: 2;
    margin-bottom: 20px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero .cta-button {
    order: 5;
}

/* ================= CTA BUTTON ================= */
.cta-button {
    display: block;
    background-color: var(--secondary-gold);
    color: var(--primary-navy);
    padding: 16px 24px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    font-size: 1rem;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    text-align: center;
}

/* ================= SECTIONS ================= */
.section-padding {
    padding: 15px 0;
}

.section-title {
    font-size: 1.8rem;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
}

.oferta-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    border-top: 3px solid var(--secondary-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.card h3 {
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 800;
}

/* ================= PÚBLICO ALVO ================= */
.audience-comparison {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.audience-box {
    padding: 20px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.audience-box h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.audience-box.positive h4 {
    color: var(--success-green);
}

.audience-box.negative h4 {
    color: var(--error-red);
}

/* ================= ANCORAGEM ================= */
.ancoragem-impacto {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0b1528 100%);
    padding: 50px 30px;
    border-radius: 16px;
    color: var(--white);
    text-align: center;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 15px 40px rgba(26, 43, 76, 0.15);
    overflow: hidden;
    margin: 20px 0;
    width: 100%;
}

.ancoragem-impacto blockquote {
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* ================= DESIGN MODERNO DO CONTAINER DE OFERTA ================= */
.pricing-section {
    background-color: #F0F2F5;
    /* Fundo cinza suave como na imagem */
    padding: 30px 0;
}

.pricing-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pricing-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-info h2 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.pricing-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.secure-checkout-box {
    background-color: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
}

.secure-checkout-box .hotmart-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.secure-checkout-box .hotmart-seal span {
    color: #27AE60;
    font-size: 1.5rem;
}

.payment-methods-list {
    text-align: center;
    margin-top: 10px;
}

.payment-methods-list img {
    max-width: 100%;
    height: auto;
    opacity: 0.85;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 6px solid var(--secondary-gold);
    display: flex;
    flex-direction: column;
}

.pricing-badge {
    background: #F2C94C;
    /* Amarelo mais vibrante */
    color: var(--primary-navy);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(242, 201, 76, 0.2);
    align-self: center;
}

.value-stack {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    padding: 0 10px;
}

.value-stack li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-stack li span {
    color: #27AE60;
    /* Verde do checkmark */
    font-size: 1.2rem;
    font-weight: bold;
}

.pricing-info .value-stack {
    margin-top: 10px;
    margin-bottom: 10px;
}

.pricing-info .value-stack li {
    font-size: 1.05rem;
}

.price-focus-area {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.05rem;
    display: block;
}

.cash-price {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
}

.installment-label {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin: 5px 0;
}

.installment-value {
    font-size: 1.5rem;
    color: var(--primary-navy);
    font-weight: 700;
}

.installment-value strong {
    font-size: 3.2rem;
    /* Destaque principal como na imagem */
    color: var(--primary-navy);
    letter-spacing: -2px;
    line-height: 1;
    display: inline-block;
    margin: 0 0 0 5px;
}

.installment-details {
    display: block;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.installment-note {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.4;
}

.scarcity-box {
    margin-top: 20px;
    background-color: #FFF0F0;
    /* Vermelho muito claro */
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #FFCDD2;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.scarcity-box span {
    font-size: 1.8rem;
    animation: pulse-warning 2s infinite ease-in-out;
}

.scarcity-box p {
    font-size: 0.95rem;
    color: #C62828;
    line-height: 1.5;
    text-align: left;
}

.scarcity-box strong {
    color: #B71C1C;
    font-weight: 800;
}

@keyframes pulse-warning {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* ================= GARANTIA ================= */
.guarantee-container {
    text-align: center;
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    margin-top: 20px;
}

.guarantee-icon {
    width: 180px;
    height: auto;
    margin: 0 auto 15px auto;
    display: block;
    border-radius: 50%;
    -webkit-mask-image: radial-gradient(circle, black 65%, transparent 100%);
    mask-image: radial-gradient(circle, black 65%, transparent 100%);
}

.guarantee-content h2 {
    color: var(--primary-navy);
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.guarantee-warning {
    margin-top: 15px;
    background-color: #FFF9E6;
    border-left: 4px solid var(--secondary-gold);
    padding: 12px 16px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

.guarantee-warning .warning-icon {
    font-size: 1.1rem;
    line-height: 1.3;
    flex-shrink: 0;
}

.guarantee-warning p {
    font-size: 0.9rem;
    color: #7A5F00;
    margin: 0 !important;
    line-height: 1.5;
}

.guarantee-warning p strong {
    color: #5C4700;
}

/* ================= TIER BANNER ELITE ================= */
.tier-banner-elite {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0b1528 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: -10px;
    margin-bottom: -10px;
    box-shadow: 0 20px 50px rgba(26, 43, 76, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.tier-visual-elite {
    height: 250px;
}

.tier-visual-elite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.tier-content-elite {
    padding: 40px 30px;
    color: var(--white);
    text-align: center;
}

.tier-badge {
    background: linear-gradient(90deg, var(--secondary-gold) 0%, #F5D76E 100%);
    color: var(--primary-navy);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.tier-banner-elite h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.tier-banner-elite p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.cta-button-premium {
    background-color: var(--secondary-gold);
    color: var(--primary-navy);
    padding: 18px 32px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 6px;
    display: block;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.cta-button-premium:hover {
    background-color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* ================= FAQ & BIO ================= */
.faq-container {
    margin-bottom: 0;
}

details {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 10px;
}

details:last-child {
    margin-bottom: 0;
}

summary {
    padding: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details p {
    padding: 15px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.bio-section {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    max-width: 1100px;
    width: calc(100% - 40px);
    margin: -30px auto 15px;
}

.bio-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid var(--secondary-gold);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-content h2 {
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 1.5rem;
}

/* ================= WHATSAPP FLUTUANTE ================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background: #20ba5a;
    color: white;
}

.whatsapp-float .whatsapp-text {
    display: none;
}

/* ================= DESKTOP ENHANCEMENTS (768px+) ================= */
@media (min-width: 768px) {
    .top-verifier-bar .container {
        flex-direction: row;
        gap: 20px;
        text-align: left;
        justify-content: center;
    }

    .verifier-text {
        max-width: 480px;
    }

    .verifier-controls {
        flex-direction: row;
        width: auto;
        max-width: none;
    }

    .top-verifier-bar input {
        width: 220px;
    }

    .top-verifier-bar button {
        width: auto;
    }

    #verify-result {
        display: flex;
        align-items: center;
    }

    .hero {
        padding: 40px 0;
        text-align: left;
    }

    .hero .container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .hero-content {
        display: block;
        flex: 1.2;
        margin-bottom: 0;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-visual {
        flex: 0.8;
        height: 400px;
        order: unset;
        margin-bottom: 0;
    }

    .hero-visual img {
        object-position: center;
    }

    .cta-button {
        display: inline-block;
        width: auto;
    }

    .section-padding {
        padding: 20px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .oferta-grid {
        flex-direction: row;
    }

    .card {
        flex: 1;
    }

    .audience-comparison {
        flex-direction: row;
    }

    .audience-box {
        flex: 1;
    }

    .ancoragem-impacto {
        padding: 20px 30px;
        margin: 20px 0;
    }

    .ancoragem-impacto blockquote {
        font-size: 1.5rem;
        line-height: 1.6;
    }

    .pricing-split {
        flex-direction: row;
        align-items: stretch;
        gap: 60px;
    }

    .pricing-info {
        flex: 1;
    }

    .pricing-info h2 {
        font-size: 2.5rem;
    }

    .pricing-card {
        flex: 1.1;
        padding: 40px 30px;
        margin: 0;
        width: 100%;
        max-width: none;
        justify-content: space-between;
    }

    .installment-value strong {
        font-size: 4rem;
    }

    .guarantee-container {
        display: flex;
        align-items: center;
        gap: 40px;
        text-align: left;
        width: 100%;
        margin: 30px 0 0;
    }

    .guarantee-icon {
        margin: 0;
        flex-shrink: 0;
        width: 220px;
    }

    .tier-banner-elite {
        flex-direction: row;
        height: auto;
        min-height: 420px;
    }

    .tier-visual-elite {
        flex: 1;
        height: auto;
    }

    .tier-content-elite {
        flex: 1.2;
        padding: 40px 50px;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .tier-banner-elite h2 {
        font-size: 2.4rem;
    }

    .cta-button-premium {
        display: inline-block;
        width: auto;
    }

    .bio-section {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 50px;
        padding: 30px;
    }

    .bio-img {
        margin: 0;
        flex-shrink: 0;
        width: 250px;
        height: 250px;
    }
}

/* ================= FOOTER ================= */
footer {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 40px 0;
    margin-top: 40px;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-gold);
}

@media (min-width: 768px) {
    .footer-wrapper {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ================= COOKIE BANNER ================= */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(26, 43, 76, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 20px;
    border-radius: 12px;
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-gold);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-gold-sm,
.btn-ghost-sm {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.btn-gold-sm {
    background-color: var(--secondary-gold);
    color: var(--primary-navy);
}

.btn-ghost-sm {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .cookie-banner {
        left: 50%;
        right: auto;
        width: 100%;
        max-width: 700px;
        transform: translateX(-50%) translateY(150%);
    }

    .cookie-banner.show {
        transform: translateX(-50%) translateY(0);
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ================= LEAD MODAL ================= */
.lead-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lead-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.lead-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.lead-modal-content {
    position: relative;
    background: var(--white, #ffffff);
    color: var(--text-dark, #333);
    width: 90%;
    max-width: 400px;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    z-index: 1;
}

.lead-modal.show .lead-modal-content {
    transform: translateY(0);
}

.lead-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted, #777);
    cursor: pointer;
    transition: 0.3s;
}

.lead-modal-close:hover {
    color: var(--error-red, #e74c3c);
}

.lead-modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-navy, #0b1528);
    margin-bottom: 10px;
    text-align: center;
}

.lead-modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted, #666);
    text-align: center;
    margin-bottom: 20px;
}

.lead-form .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.lead-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-navy, #0b1528);
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: #f9f9f9;
    color: #333;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.lead-form input:focus {
    outline: none;
    border-color: var(--secondary-gold, #D4AF37);
    background: #fff;
}

.lead-consent-text {
    font-size: 0.75rem;
    color: var(--text-muted, #777);
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
    text-align: left;
}

.form-checkbox-group input[type="checkbox"] {
    margin-top: 3px;
}

.form-checkbox-group .lead-consent-text {
    margin-top: 0;
    text-align: left;
}

/* ================= RECAPTCHA TEXT ================= */
.recaptcha-text {
    font-size: 0.7rem;
    color: var(--text-muted, #999);
    text-align: center;
    margin-top: 15px;
    line-height: 1.3;
}

.recaptcha-text a:hover {
    text-decoration: underline;
}

/* ================= HEADER / NAVIGATION ================= */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(26, 43, 76, 0.98);
    /* Solid/semi-transparent navy */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 65vw;
    position: relative;
    z-index: 1100;
}

.nav-logo span {
    color: var(--secondary-gold);
}

.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--primary-navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    overflow-y: auto;
}

.nav-links.active {
    transform: translateX(0);
}

/* Garante que o pai (nav) não corte o menu ou aplique filtros que criem contexto de empilhamento */
nav.mobile-nav-active {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: var(--primary-navy) !important;
    height: auto !important;
}

.nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--secondary-gold);
}

.nav-btn {
    display: none;
    /* Hidden on mobile */
}

.nav-btn-mobile {
    display: inline-flex;
    margin-top: 10px;
    background: var(--secondary-gold);
    color: var(--primary-navy);
    padding: 12px 28px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.nav-btn-mobile:hover {
    background: var(--gold-hover);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1100;
    padding: 0;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s ease;
}

.hamburger::before {
    top: -8px;
    left: 0;
}

.hamburger::after {
    top: 8px;
    left: 0;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Adjust hero padding to not overlap with the fixed navigation bar */
.hero {
    padding-top: 90px !important;
    /* 20px default + 70px nav height */
}

/* ================= DESKTOP STYLES (768px+) ================= */
@media (min-width: 768px) {
    nav {
        padding: 20px 40px;
    }

    nav.scrolled {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        gap: 32px;
        transform: none;
        z-index: auto;
        overflow-y: visible;
        transition: none;
    }

    .nav-link {
        font-size: 0.95rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
    }

    .nav-link:hover {
        color: var(--white);
    }

    .nav-btn {
        display: inline-flex;
        background: var(--secondary-gold);
        color: var(--primary-navy);
        padding: 10px 20px;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 0.85rem;
        border-radius: 6px;
        transition: 0.3s;
    }

    .nav-btn:hover {
        background: var(--gold-hover);
        transform: translateY(-1px);
    }

    .nav-btn-mobile {
        display: none;
    }

    .menu-toggle {
        display: none;
    }

    .hero {
        padding-top: 120px !important;
        /* 40px default + 80px nav height */
    }
}