/* ============================================
   BRASIL+EUA FISCAL — Landing Page Styles
   Design Premium com bandeiras integradas
   ============================================ */

/* ---- RESET & VARIABLES ---- */
html {
    scroll-behavior: smooth;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primária — Azul institucional (inspirado MCO) */
    --br-green: #0064B1;
    --br-green-dark: #004d8a;
    --br-green-light: #1a7bc4;
    --br-yellow: #ffab00;
    --br-yellow-soft: #fff8e6;
    --br-blue: #000d2b;

    /* Secundária — Tons complementares */
    --us-blue: #000d2b;
    --us-blue-light: #0064B1;
    --us-red: #c45c5c;
    --us-red-soft: #d47272;

    /* Neutros — limpos e modernos */
    --white: #ffffff;
    --off-white: #f8f9fc;
    --gray-50: #f3f4f8;
    --gray-100: #e8eaf0;
    --gray-200: #d8dbe5;
    --gray-300: #c4c8d4;
    --gray-400: #9ca1b0;
    --gray-500: #6e7485;
    --gray-600: #535866;
    --gray-700: #3d4150;
    --gray-800: #2a2d38;
    --gray-900: #1a1c24;

    /* Semânticas */
    --trust: #0064B1;
    --urgency: #c45c5c;
    --success: #0064B1;
    --warning: #ffab00;

    /* Gradientes — azul profissional MCO */
    --gradient-hero: linear-gradient(145deg, #000d2b 0%, #001a45 35%, #003670 70%, #0064B1 100%);
    --gradient-cta: linear-gradient(135deg, #0064B1 0%, #004d8a 100%);
    --gradient-urgency: linear-gradient(135deg, #c45c5c 0%, #b54e4e 100%);
    --gradient-dark: linear-gradient(145deg, #000d2b 0%, #001a45 45%, #003670 100%);

    /* Tipografia — Poppins (MCO) */
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, sans-serif;

    /* Espaçamento */
    --section-py: 80px;
    --container-px: 20px;
    --container-max: 1120px;

    /* Sombras — estilo MCO */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 6px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 6px 24px rgba(0,100,177,0.12);
    --shadow-xl: 0 14px 40px rgba(0,100,177,0.15);
    --shadow-glow-green: 0 4px 18px rgba(0, 100, 177, 0.25);
    --shadow-glow-yellow: 0 4px 18px rgba(255, 171, 0, 0.3);

    /* Bordas */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ---- DARK MODE ---- */
@media (prefers-color-scheme: dark) {
    :root {
        --white: #0a0e1a;
        --off-white: #0f1525;
        --gray-50: #131a2e;
        --gray-100: #1a2240;
        --gray-200: #232d4a;
        --gray-300: #2e3a5a;
        --gray-400: #5a6580;
        --gray-500: #8a92a8;
        --gray-600: #a8afc0;
        --gray-700: #c8cdd8;
        --gray-800: #e0e3ea;
        --gray-900: #f0f2f5;
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
        --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
        --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
    }
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ---- SCROLL PROGRESS BAR ---- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #0064B1, #ffab00, #0064B1);
    z-index: 10000;
    transition: width 0.1s linear;
    opacity: 0.7;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes waveFlag {
    0%, 100% { transform: rotate(-3deg) scale(1); }
    50% { transform: rotate(3deg) scale(1.02); }
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes countPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); color: var(--br-yellow); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- SVG ICON SYSTEM ---- */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 48px; height: 48px; }
.icon-2xl { width: 56px; height: 56px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    padding: 14px 0;
}

@media (prefers-color-scheme: dark) {
    .navbar {
        background: rgba(26, 26, 46, 0.96);
        border-bottom-color: rgba(255,255,255,0.06);
    }
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0;
}

.brand-logo {
    height: 38px;
    width: auto;
    max-width: 240px;
}

.navbar-nav {
    display: none;
    align-items: center;
    gap: 28px;
}

.navbar-nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.navbar-nav a:hover {
    color: #fff;
}

.navbar-cta {
    background: var(--gradient-cta);
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-green);
}

/* Navbar Trust Bar */
.navbar-trust-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 10px;
    padding-top: 8px;
}

.navbar-trust-inner {
    display: flex !important;
    gap: 18px;
    align-items: center;
    justify-content: center !important;
    flex-wrap: wrap;
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

.navbar-trust-inner span {
    white-space: nowrap;
}

.navbar.scrolled .navbar-trust-bar {
    margin-top: 6px;
    padding-top: 6px;
}

@media (max-width: 639px) {
    .navbar-trust-bar {
        margin-top: 6px;
        padding-top: 5px;
    }
    .navbar-trust-inner {
        gap: 4px 12px;
        font-size: 0.6rem;
    }
}

@media (max-width: 379px) {
    .navbar-trust-inner {
        gap: 3px 8px;
        font-size: 0.55rem;
    }
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu — Fullscreen overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 13, 43, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

/* Overlay não é mais necessário — o menu já é fullscreen */
.mobile-menu-overlay {
    display: none;
}

/* Close button inside mobile menu */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 1;
}

.mobile-menu-close svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
}

.mobile-menu-close:hover,
.mobile-menu-close:active {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu a {
    display: block;
    padding: 16px 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.3s ease;
    width: 80%;
    max-width: 320px;
    text-align: center;
}

.mobile-menu a:hover,
.mobile-menu a:active {
    color: var(--br-yellow);
}

.mobile-menu .navbar-cta {
    margin-top: 24px;
    width: 80%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1.05rem;
    background: var(--gradient-cta);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    border: none;
}

/* Hamburger z-index acima do overlay */
.hamburger {
    z-index: 10001;
}

@media (min-width: 900px) {
    .hamburger { display: none; }
    .navbar-nav { display: flex; }
    .mobile-menu, .mobile-menu-overlay { display: none !important; }
}

/* ---- STICKY CTA BAR (mobile) ---- */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .btn-sticky {
    flex: 1;
    background: var(--gradient-cta);
    color: white;
    padding: 14px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-align: center;
}

.sticky-cta-bar .btn-whatsapp-sticky {
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

@media (min-width: 900px) {
    .sticky-cta-bar { display: none; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: var(--gradient-hero);
}

/* Floating geometric shapes */
.hero-shape {
    position: absolute;
    opacity: 0.06;
    pointer-events: none;
}

.hero-shape-diamond {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -15%;
    background: var(--br-yellow);
    transform: rotate(45deg);
    animation: float-slow 12s ease-in-out infinite;
    will-change: transform;
    opacity: 0.03;
}

.hero-shape-circle {
    width: 400px;
    height: 400px;
    bottom: -10%;
    left: -8%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--us-red) 0%, transparent 70%);
    animation: float-slow 15s ease-in-out infinite reverse;
    will-change: transform;
}

.hero-shape-stars {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    will-change: transform;
}

/* ============================================
   AMERICAN DREAM ANIMATION
   ============================================ */
.dream-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* -- Estrelas douradas brilhantes -- */
.dream-star {
    position: absolute;
    will-change: transform, opacity;
    filter: drop-shadow(0 0 6px rgba(255, 223, 0, 0.6));
}

.dream-star-1 {
    width: 32px; height: 32px;
    top: 8%;  left: 5%;
    color: rgba(255, 223, 0, 0.7);
    animation: starTwinkle 3s ease-in-out infinite, starFloat 14s ease-in-out infinite;
}
.dream-star-2 {
    width: 24px; height: 24px;
    top: 18%; left: 22%;
    color: rgba(255, 255, 255, 0.5);
    animation: starTwinkle 4s ease-in-out infinite 0.7s, starFloat 18s ease-in-out infinite reverse;
}
.dream-star-3 {
    width: 36px; height: 36px;
    top: 12%; right: 18%;
    color: rgba(255, 223, 0, 0.6);
    animation: starTwinkle 3.5s ease-in-out infinite 1.2s, starFloat 16s ease-in-out infinite;
}
.dream-star-4 {
    width: 20px; height: 20px;
    top: 35%; left: 12%;
    color: rgba(255, 255, 255, 0.45);
    animation: starTwinkle 2.5s ease-in-out infinite 0.3s, starFloat 20s ease-in-out infinite;
}
.dream-star-5 {
    width: 28px; height: 28px;
    top: 55%; left: 6%;
    color: rgba(255, 223, 0, 0.55);
    animation: starTwinkle 3.8s ease-in-out infinite 2s, starFloat 22s ease-in-out infinite reverse;
}
.dream-star-6 {
    width: 22px; height: 22px;
    top: 42%; right: 10%;
    color: rgba(255, 223, 0, 0.5);
    animation: starTwinkle 3.2s ease-in-out infinite 1.5s, starFloat 17s ease-in-out infinite;
}
.dream-star-7 {
    width: 18px; height: 18px;
    bottom: 25%; right: 25%;
    color: rgba(255, 255, 255, 0.4);
    animation: starTwinkle 4.5s ease-in-out infinite 0.5s, starFloat 19s ease-in-out infinite reverse;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.15; transform: scale(0.8) rotate(0deg); }
    50%      { opacity: 1;    transform: scale(1.2) rotate(15deg); }
}

@keyframes starFloat {
    0%, 100% { transform: translate(0, 0); }
    25%      { transform: translate(10px, -18px); }
    50%      { transform: translate(-8px, -30px); }
    75%      { transform: translate(15px, -12px); }
}

/* -- Estátua da Liberdade -- */
.dream-liberty-svg {
    position: absolute;
    bottom: -2%;
    right: 2%;
    height: 75%;
    max-height: 520px;
    color: rgba(255, 255, 255, 0.06);
    opacity: 0;
    animation: libertyReveal 2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards,
               libertyBreath 8s ease-in-out 2.5s infinite;
    filter: drop-shadow(0 0 30px rgba(255, 223, 0, 0.08));
}

@keyframes libertyReveal {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes libertyBreath {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* -- Raios de luz da tocha -- */
.dream-torch-rays {
    position: absolute;
    bottom: 55%;
    right: 4%;
    width: 200px;
    height: 200px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 223, 0, 0.08) 15deg,
        transparent 30deg,
        transparent 60deg,
        rgba(255, 223, 0, 0.06) 75deg,
        transparent 90deg,
        transparent 120deg,
        rgba(255, 223, 0, 0.07) 135deg,
        transparent 150deg,
        transparent 180deg,
        rgba(255, 223, 0, 0.05) 195deg,
        transparent 210deg,
        transparent 240deg,
        rgba(255, 223, 0, 0.08) 255deg,
        transparent 270deg,
        transparent 300deg,
        rgba(255, 223, 0, 0.06) 315deg,
        transparent 330deg,
        transparent 360deg
    );
    border-radius: 50%;
    opacity: 0;
    animation: raysReveal 2s ease 1s forwards, raysSpin 30s linear 2s infinite;
    filter: blur(2px);
}

@keyframes raysReveal {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes raysSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* -- Responsivo -- */
@media (max-width: 768px) {
    .dream-star-2, .dream-star-4, .dream-star-7 { display: none; }
    .dream-star-1 { width: 22px; height: 22px; }
    .dream-star-3 { width: 26px; height: 26px; }
    .dream-star-5 { width: 20px; height: 20px; }

    .dream-liberty-svg {
        height: 50%;
        max-height: 320px;
        right: -2%;
        opacity: 0;
        animation: libertyReveal 2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
        color: rgba(255, 255, 255, 0.04);
    }

    .dream-torch-rays {
        width: 120px;
        height: 120px;
        right: 0;
        bottom: 48%;
    }
}

@media (max-width: 480px) {
    .dream-liberty-svg {
        height: 40%;
        max-height: 240px;
        right: -5%;
    }
    .dream-torch-rays { display: none; }
    .dream-star-5, .dream-star-6 { display: none; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

/* Flag SVG Integration */
.hero-flags-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
}

.hero-flags-svg svg {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    color: var(--br-yellow);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 171, 0, 0.2);
}

.hero-badge .countdown-inline {
    font-weight: 800;
    color: white;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}

.hero h1 .highlight {
    color: var(--br-yellow);
    position: relative;
}

.hero h1 .highlight-red {
    color: var(--us-red-soft);
}

.hero-sub {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.75;
    font-weight: 400;
}

.hero-sub strong {
    color: white;
    font-weight: 700;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--br-green);
    color: #ffffff;
    padding: 18px 42px;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-glow-green);
    letter-spacing: 0.01em;
    font-family: var(--font-heading);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 100, 177, 0.35);
    background: var(--br-green-dark);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary svg {
    stroke: #ffffff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
}

.btn-green {
    background: var(--gradient-cta);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-glow-green);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 100, 177, 0.3);
}

/* ---- HERO TRUST ---- */
.hero-trust {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust-item svg {
    width: 16px;
    height: 16px;
    fill: var(--br-yellow);
    opacity: 0.9;
}

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    fill: var(--white);
}

/* ============================================
   URGENCY BAR WITH COUNTDOWN
   ============================================ */
.urgency-bar {
    background: var(--gradient-urgency);
    color: white;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.5;
}

.urgency-bar .countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    color: var(--br-yellow);
}

.countdown-unit {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.2);
    padding: 2px 8px;
    border-radius: 4px;
    min-width: 36px;
}

.countdown-number {
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.2;
}

.countdown-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 500;
}

.countdown-sep {
    font-weight: 900;
    font-size: 1.1rem;
    opacity: 0.5;
    margin: 0 2px;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item { padding: 10px; }

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--br-green);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.83rem;
    color: var(--gray-500);
    margin-top: 4px;
    font-weight: 500;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--br-green);
    margin-bottom: 12px;
}

.section-label svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.08rem;
    color: var(--gray-500);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* ============================================
   IDENTIFY SECTION
   ============================================ */
.identify {
    padding: var(--section-py) 0;
    background: var(--white);
}

.identify-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 780px;
    margin: 0 auto;
}

.identify-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--br-green);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.identify-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
    border-left-color: var(--br-yellow);
}

.identify-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--br-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.identify-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.identify-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.55;
    font-weight: 450;
}

.identify-text strong {
    color: var(--gray-900);
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

/* ============================================
   PAIN SECTION
   ============================================ */
.pain {
    padding: var(--section-py) 0;
    background: #fdf8f7;
    position: relative;
}

@media (prefers-color-scheme: dark) {
    .pain { background: #2a1a1e; }
}

.pain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--us-red) 0%, var(--urgency) 50%, var(--us-red) 100%);
}

.pain .section-label { color: var(--us-red); }
.pain .section-title { color: var(--us-red); }

.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 820px;
    margin: 0 auto;
}

.pain-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--us-red);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (prefers-color-scheme: dark) {
    .pain-card { background: var(--gray-100); }
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at top right, rgba(191, 10, 48, 0.06), transparent 70%);
}

.pain-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.pain-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.pain-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(196, 92, 92, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pain-card-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--us-red);
}

.pain-card-title {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--us-red);
}

.pain-card-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.65;
}

.pain-bottom {
    margin-top: 36px;
    padding: 28px 32px;
    background: var(--us-red);
    border-radius: var(--radius-md);
    color: white;
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.pain-bottom::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.pain-bottom p {
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.65;
    position: relative;
}

.pain-bottom strong {
    color: var(--br-yellow);
    font-weight: 800;
}

/* ============================================
   SCARY NUMBERS SECTION
   ============================================ */
.scary-numbers {
    padding: 60px 0;
    background: var(--gray-900);
    color: white;
    text-align: center;
}

@media (prefers-color-scheme: dark) {
    .scary-numbers { background: #0d0d1a; }
}

.scary-numbers-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--us-red-soft);
    margin-bottom: 36px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.scary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.scary-item {
    padding: 24px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.03);
}

.scary-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    color: var(--us-red-soft);
    line-height: 1;
    margin-bottom: 8px;
}

.scary-description {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
    padding: var(--section-py) 0;
    background: var(--white);
}

.solution-intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 40px;
}

.solution-bridge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 32px auto 48px;
    max-width: 440px;
    position: relative;
}

.bridge-flag {
    width: 90px;
    height: 62px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    background: white;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.bridge-flag svg {
    width: 100%;
    height: 100%;
}

.bridge-connector {
    flex: 1;
    height: 4px;
    background: linear-gradient(90deg, var(--br-green), var(--br-yellow), var(--br-green));
    position: relative;
    margin: 0 -6px;
    z-index: 1;
    border-radius: 2px;
}

.bridge-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.bridge-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--br-green);
}

.solution-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.solution-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.solution-card:hover {
    background: var(--white);
    border-color: var(--br-green);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.solution-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(0, 100, 177, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--br-green);
}

.solution-card-title {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.solution-card-text {
    font-size: 0.93rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.comparison-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-col {
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    overflow: hidden;
}

.comparison-col.without {
    background: #fef5f5;
    border: 2px solid rgba(196, 92, 92, 0.15);
}

.comparison-col.with {
    background: #f0f5fa;
    border: 2px solid rgba(0, 100, 177, 0.2);
}

@media (prefers-color-scheme: dark) {
    .comparison-col.without { background: #2a1a1e; border-color: rgba(196,92,92,0.3); }
    .comparison-col.with { background: #1a1e2a; border-color: rgba(0,100,177,0.3); }
}

.comparison-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.comparison-col-header svg {
    width: 28px;
    height: 28px;
}

.comparison-col.without .comparison-col-header svg { fill: var(--us-red); }
.comparison-col.with .comparison-col-header svg { fill: var(--br-green); }

.comparison-col-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.comparison-col.without .comparison-col-title { color: var(--us-red); }
.comparison-col.with .comparison-col-title { color: var(--br-green); }

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--gray-700);
}

.comparison-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-col.without .comparison-item svg { fill: var(--us-red); }
.comparison-col.with .comparison-item svg { fill: var(--br-green); }

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    padding: var(--section-py) 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,171,0,0.04), transparent 60%);
    border-radius: 50%;
}

.benefits .section-label { color: var(--br-yellow); }
.benefits .section-title { color: white; }
.benefits .section-subtitle { color: rgba(255, 255, 255, 0.7); }

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255,171,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--br-yellow);
}

.benefit-content h4 {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.benefit-content p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.process-intro {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: var(--shadow-glow-green);
    position: relative;
    z-index: 2;
}

.step-line {
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: -24px;
    width: 3px;
    background: var(--br-green);
    opacity: 0.15;
    border-radius: 2px;
}

.process-step:last-child .step-line { display: none; }

.step-content {
    padding-top: 8px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* Guarantee box */
.guarantee-box {
    max-width: 620px;
    margin: 48px auto 0;
    background: white;
    border: 2px dashed var(--br-green);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

@media (prefers-color-scheme: dark) {
    .guarantee-box { background: var(--gray-100); }
}

.guarantee-box h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--br-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.guarantee-box h3 svg {
    width: 24px;
    height: 24px;
    fill: var(--br-green);
}

.guarantee-box p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   ABOUT / QUEM SOMOS
   ============================================ */
.about {
    padding: var(--section-py) 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 850px;
    margin: 0 auto;
}

.about-visual {
    text-align: center;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

.about-flag-pair {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 2.8rem;
}

.about-badge-text {
    text-align: left;
}

.about-badge-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gray-900);
}

.about-badge-text span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-text p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-text p strong {
    color: var(--gray-800);
}

.about-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.credential {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--gray-50);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    border: 1px solid var(--gray-100);
}

.credential svg {
    width: 16px;
    height: 16px;
    fill: var(--br-green);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--off-white);
}

.testimonials-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--br-yellow);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-avatar.green { background: var(--br-green); }
.testimonial-avatar.blue { background: var(--us-blue); }
.testimonial-avatar.red { background: var(--us-red); }
.testimonial-avatar.yellow { background: #d4a800; }

.testimonial-name {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.92rem;
}

.testimonial-location {
    font-size: 0.78rem;
    color: var(--gray-400);
}

/* ============================================
   LEAD CAPTURE FORM
   ============================================ */
.lead-capture {
    padding: var(--section-py) 0;
    background: var(--white);
}

.lead-capture-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.lead-form {
    margin-top: 36px;
    text-align: left;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-900);
    background: var(--white);
    transition: all 0.3s ease;
    -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--br-green);
    box-shadow: 0 0 0 4px rgba(0, 100, 177, 0.1);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-input.error {
    border-color: var(--us-red);
    box-shadow: 0 0 0 4px rgba(196, 92, 92, 0.08);
}

.form-error {
    font-size: 0.8rem;
    color: var(--us-red);
    margin-top: 4px;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 12px;
    line-height: 1.5;
}

.form-disclaimer a {
    color: var(--br-green);
    text-decoration: underline;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.faq-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .faq-item { background: var(--gray-100); }
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--br-green);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    gap: 16px;
    transition: color 0.3s ease;
    min-height: 44px;
}

.faq-item.active .faq-question {
    color: var(--br-green);
}

.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
    fill: var(--gray-500);
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--br-green);
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle svg {
    fill: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.faq-answer-inner strong {
    color: var(--gray-800);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    padding: 100px 0;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta .section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
}

.final-cta-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.12rem;
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.final-cta-sub strong {
    color: #ffffff;
}

.final-cta .btn-primary {
    font-size: 1.12rem;
    padding: 20px 48px;
    background: var(--br-yellow);
    color: var(--br-blue);
    box-shadow: 0 4px 24px rgba(255, 171, 0, 0.35);
}

.final-cta .btn-primary:hover {
    background: #ffc233;
    box-shadow: 0 8px 32px rgba(255, 171, 0, 0.5);
}

.final-cta .btn-primary svg {
    stroke: var(--br-blue);
}

.final-cta-guarantee {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

.final-cta-guarantee svg {
    width: 16px;
    height: 16px;
    fill: rgba(255,255,255,0.6);
}

/* PS Sections */
.ps-section {
    margin-top: 40px;
    text-align: left;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--br-yellow);
}

.ps-section p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
    margin-bottom: 12px;
}

.ps-section p:last-child {
    margin-bottom: 0;
}

.ps-section strong {
    color: var(--br-yellow);
}

.ps-label {
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0a1628;
    color: rgba(255, 255, 255, 0.6);
    padding: 48px 0 100px;
    text-align: center;
}

@media (min-width: 900px) {
    .footer { padding-bottom: 48px; }
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--br-yellow);
}

.footer-mco {
    margin-top: 12px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-mco strong {
    color: #ffab00;
}

.footer-legal {
    margin-top: 24px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 996;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0.15), 0 4px 20px rgba(37, 211, 102, 0.4);
        transform: scale(1.05);
    }
}

.whatsapp-float svg {
    width: 36px;
    height: 36px;
    fill: white;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: white;
    color: var(--gray-800);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 899px) {
    .whatsapp-float {
        bottom: 80px;
        width: 64px;
        height: 64px;
    }
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-800);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    z-index: 996;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--br-green);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: white;
}

@media (max-width: 899px) {
    .back-to-top { bottom: 80px; left: 16px; }
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.popup-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.popup {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-xl);
}

@media (prefers-color-scheme: dark) {
    .popup { background: var(--gray-100); }
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-50);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: var(--gray-200);
}

.popup-close svg {
    width: 16px;
    height: 16px;
    fill: var(--gray-500);
}

.popup-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.popup h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.2;
}

.popup p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 24px;
}

.popup .form-input {
    margin-bottom: 12px;
}

.popup .form-input.error {
    border-color: var(--urgency);
    box-shadow: 0 0 0 3px rgba(196, 92, 92, 0.15);
}

/* ---- FOOTER CONTACT ---- */
.footer-contact {
    margin: 16px 0;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--br-yellow);
    font-weight: 700;
    font-size: 1.05rem;
    transition: opacity 0.3s ease;
}

.footer-phone:hover {
    opacity: 0.8;
}

.footer-phone svg {
    flex-shrink: 0;
}

/* ---- WHATSAPP FLOAT AS BUTTON ---- */
.whatsapp-float {
    border: none;
    font-family: inherit;
}

/* ---- SPINNER ANIMATION (inline for buttons) ---- */
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---- Mobile Small (< 380px) ---- */
@media (max-width: 379px) {
    .navbar {
        padding: 8px 0;
    }

    .brand-logo {
        height: 26px;
        width: auto;
        max-width: 120px;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-badge {
        font-size: 0.72rem;
        padding: 8px 12px;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 14px 24px;
        font-size: 0.92rem;
    }

    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.88rem;
    }

    .urgency-bar {
        font-size: 0.75rem;
        padding: 10px 12px;
    }

    .countdown-unit {
        padding: 2px 5px;
        min-width: 28px;
    }

    .countdown-number {
        font-size: 0.9rem;
    }

    .final-cta .btn-primary {
        padding: 16px 28px;
        font-size: 0.95rem;
    }

    .footer-links {
        gap: 12px 16px;
    }

    .identify-item {
        padding: 12px 14px;
        gap: 10px;
    }

    .identify-icon {
        width: 24px;
        height: 24px;
    }

    .identify-icon svg {
        width: 12px;
        height: 12px;
    }

    .pain-card {
        padding: 14px;
    }

    .solution-card {
        padding: 20px 16px;
    }
}

/* ---- Mobile (< 640px) ---- */
@media (max-width: 639px) {
    .navbar {
        padding: 10px 0;
    }

    .brand-logo {
        height: 30px;
        width: auto;
        max-width: 190px;
    }

    .navbar-cta {
        display: none;
    }

    .hero {
        padding: 110px 0 70px;
        min-height: auto;
    }

    .hero-flags-svg svg {
        width: 140px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .urgency-bar {
        font-size: 0.82rem;
        padding: 12px 16px;
        line-height: 1.6;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .comparison-col {
        padding: 22px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .solution-bridge {
        max-width: 300px;
    }

    .bridge-flag {
        width: 70px;
        height: 48px;
    }

    .bridge-icon {
        width: 42px;
        height: 42px;
    }

    .bridge-icon svg {
        width: 22px;
        height: 22px;
    }

    .ps-section {
        padding: 18px;
        margin-top: 28px;
    }

    .final-cta {
        padding: 70px 0;
    }

    .final-cta .btn-primary {
        padding: 18px 36px;
        font-size: 1rem;
    }

    .about-badge {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }

    .about-badge-text {
        text-align: center;
    }

    .footer {
        padding: 36px 0 100px;
    }

    .footer-brand svg {
        width: 120px;
    }

    .footer-links {
        gap: 10px 18px;
    }

    .identify-item {
        padding: 14px 16px;
    }

    .pain-card {
        padding: 18px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.92rem;
    }

    .faq-answer-inner {
        padding: 0 18px 16px;
    }

    .section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .scary-numbers {
        padding: 40px 0;
    }

    .scary-numbers-title {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .scary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .popup {
        padding: 28px 20px;
    }

    .popup h3 {
        font-size: 1.2rem;
    }
}

/* ---- Tablet Small (640px+) ---- */
@media (min-width: 640px) {
    .pain-grid { grid-template-columns: repeat(2, 1fr); }
    .solution-cards { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .scary-grid { grid-template-columns: repeat(4, 1fr); }
    .hero-cta-group { flex-direction: row; justify-content: center; }
    .comparison-table { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr 1fr; }
}

/* ---- Desktop (900px+) ---- */
@media (min-width: 900px) {
    :root {
        --section-py: 100px;
        --container-px: 40px;
    }

    .brand-logo {
        height: 38px;
        max-width: 280px;
    }

    .solution-cards { grid-template-columns: repeat(3, 1fr); }
    .about-content { grid-template-columns: auto 1fr; gap: 48px; }
    .pain-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Large Desktop (1024px+) ---- */
@media (min-width: 1024px) {
    .testimonials-grid { grid-template-columns: repeat(4, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
