/* ============================================================
   LANDING PAGE — EuResidente — Premium SaaS Design
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --blue:        #2563eb;
    --blue-d:      #1d4ed8;
    --blue-l:      #3b82f6;
    --blue-pale:   #eff6ff;
    --navy:        #0a1628;
    --dark:        #050c1a;
    --dark-2:      #0b1930;
    --green:       #10b981;
    --amber:       #f59e0b;
    --violet:      #8b5cf6;
    --red:         #ef4444;
    --orange:      #f97316;

    --w:    #ffffff;
    --g50:  #f8fafc;
    --g100: #f1f5f9;
    --g200: #e2e8f0;
    --g300: #cbd5e1;
    --g400: #94a3b8;
    --g500: #64748b;
    --g600: #475569;
    --g700: #334155;
    --g800: #1e293b;
    --g900: #0f172a;

    --sh-card: 0 0 0 1px rgba(15,23,42,.05), 0 4px 6px -2px rgba(15,23,42,.04), 0 10px 28px -5px rgba(15,23,42,.08);
    --sh-card-hover: 0 0 0 1px rgba(37,99,235,.12), 0 8px 16px -4px rgba(15,23,42,.08), 0 20px 48px -8px rgba(15,23,42,.12);
    --sh-blue: 0 8px 24px rgba(37,99,235,.3);
    --sh-blue-hover: 0 12px 36px rgba(37,99,235,.42);

    --r: 16px;
    --r-lg: 20px;
    --r-xl: 24px;
    --r-f: 9999px;

    --ease: cubic-bezier(.4,0,.2,1);
    --spring: cubic-bezier(.34,1.56,.64,1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--w);
    color: var(--g900);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Shared utilities ─────────────────────────────────── */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-pill {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--blue-pale); color: var(--blue);
    font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    padding: .35rem 1rem; border-radius: var(--r-f);
    border: 1px solid #bfdbfe; margin-bottom: .85rem;
}
.section-pill.light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.2); }

.section-h2 {
    font-size: clamp(2rem,4vw,2.8rem);
    font-weight: 800; line-height: 1.15;
    color: var(--g900); margin-bottom: 1rem;
    letter-spacing: -.02em;
}
.section-h2 span { color: var(--blue); }

.section-lead { font-size: 1.05rem; color: var(--g500); max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* ════════════════════════════════════════════════════════
   SITE HEADER — wrapper fixo unificado
════════════════════════════════════════════════════════ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
}

/* ── Announcement bar ─────────────────────────────────── */
.announce-bar {
    background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 50%, #1d4ed8 100%);
    color: #fff;
    padding: .55rem 1rem;
    font-size: .8rem;
    display: flex; align-items: center; justify-content: center; gap: .75rem;
    position: relative;
    overflow: hidden;
}
.announce-bar::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.06) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

.announce-pulse {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4ade80; box-shadow: 0 0 8px #4ade80;
    animation: blink 2s infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.announce-text { font-weight: 500; letter-spacing: .01em; }
.announce-text strong { font-weight: 800; }

.announce-cta {
    display: inline-flex; align-items: center; gap: .35rem;
    background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28);
    color: #fff; font-size: .78rem; font-weight: 700;
    padding: .28rem .85rem; border-radius: var(--r-f);
    text-decoration: none; white-space: nowrap;
    transition: background .15s, transform .15s;
}
.announce-cta:hover { background: rgba(255,255,255,.26); transform: translateY(-1px); }

.announce-close {
    position: absolute; right: .8rem; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: rgba(255,255,255,.5);
    cursor: pointer; padding: .3rem; font-size: .75rem;
    display: flex; align-items: center;
    transition: color .15s;
}
.announce-close:hover { color: #fff; }

/* ── Navbar ────────────────────────────────────────────── */
.navbar {
    position: relative;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(15,23,42,.08);
    transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.navbar.scrolled {
    box-shadow: 0 1px 0 rgba(15,23,42,.06), 0 8px 32px rgba(15,23,42,.08);
    background: rgba(255,255,255,.98);
}
.navbar.scrolled::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(37,99,235,.2) 30%, rgba(37,99,235,.2) 70%, transparent 100%);
}

.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 1.75rem;
    height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 34px; }
.nav-logo-fallback { display: flex; align-items: center; gap: .5rem; }
.logo-icon {
    width: 34px; height: 34px; border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .95rem;
}
.logo-text { font-size: 1.05rem; font-weight: 800; color: var(--navy); }

/* Links */
.nav-links {
    display: flex; list-style: none; gap: .1rem; align-items: center; flex: 1; justify-content: center;
}
.nav-links a {
    display: block; padding: .48rem .9rem;
    text-decoration: none; color: var(--g600);
    font-size: .875rem; font-weight: 500;
    border-radius: 9px;
    transition: color .15s, background .15s;
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--blue); border-radius: 2px;
    transition: width .2s var(--ease);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 60%; }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after { width: 60%; }

/* Actions */
.nav-actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

.btn-nav-login {
    text-decoration: none; color: var(--g600); font-size: .875rem; font-weight: 600;
    padding: .5rem 1rem; border-radius: 9px;
    transition: color .15s, background .15s;
}
.btn-nav-login:hover { color: var(--blue); background: var(--g100); }

.nav-divider { width: 1px; height: 20px; background: var(--g200); }

.btn-nav-cta {
    text-decoration: none;
    background: linear-gradient(135deg, #2563eb, #1a4fdb);
    color: #fff; font-size: .875rem; font-weight: 700;
    padding: .52rem 1.2rem;
    border-radius: 10px; display: inline-flex; align-items: center; gap: .4rem;
    box-shadow: 0 2px 8px rgba(37,99,235,.35), 0 0 0 0 rgba(37,99,235,.3);
    transition: transform .2s var(--spring), box-shadow .2s, background .15s;
    position: relative; overflow: hidden;
}
.btn-nav-cta::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
    transition: left .4s;
}
.btn-nav-cta:hover::before { left: 100%; }
.btn-nav-cta:hover {
    background: linear-gradient(135deg, #1d4ed8, #1841c0);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,99,235,.45), 0 0 0 4px rgba(37,99,235,.1);
}
.btn-nav-cta i { font-size: .8rem; transition: transform .2s; }
.btn-nav-cta:hover i { transform: translateX(3px); }

/* Hamburger */
.nav-hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
    width: 38px; height: 38px; border-radius: 8px;
    transition: background .15s;
}
.nav-hamburger:hover { background: var(--g100); }
.nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--g700); border-radius: 2px; transition: all .25s var(--ease); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile-menu {
    display: none; flex-direction: column;
    padding: .5rem 1.25rem 1.25rem;
    border-top: 1px solid var(--g100);
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    gap: .1rem;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
    text-decoration: none; color: var(--g700); font-size: .95rem; font-weight: 500;
    padding: .8rem .5rem; border-bottom: 1px solid var(--g50);
    transition: color .15s;
}
.nav-mobile-menu a:hover { color: var(--blue); }
.mobile-actions { display: flex; gap: .6rem; margin-top: .85rem; }
.mobile-actions .btn-nav-login {
    padding: .7rem 1rem; border: 1.5px solid var(--g200);
    border-radius: 10px; flex: 1; text-align: center; background: transparent;
}
.mobile-actions .btn-nav-cta { flex: 1; justify-content: center; padding: .7rem 1rem; color: #fff; }

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero {
    position: relative; min-height: 100vh;
    background: linear-gradient(160deg, #040c1e 0%, #07142e 30%, #0b1e42 60%, #0f2b5e 100%);
    display: flex; align-items: center;
    padding: 130px 0 90px;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-mesh {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 60%, rgba(37,99,235,.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 30%, rgba(139,92,246,.1) 0%, transparent 60%);
}

.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(90px); pointer-events: none;
}
.hero-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(37,99,235,.35), transparent 70%); top: -150px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(16,185,129,.18), transparent 70%); bottom: -80px; left: 5%; }
.hero-orb-3 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(139,92,246,.18), transparent 70%); top: 40%; left: 45%; }

.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 56px 56px;
}

.hero-container {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; position: relative; z-index: 1;
}

/* Hero badge */
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(37,99,235,.15); border: 1px solid rgba(59,130,246,.3);
    color: #93c5fd; font-size: .78rem; font-weight: 600;
    padding: .4rem 1rem; border-radius: var(--r-f); margin-bottom: 1.5rem;
    letter-spacing: .03em;
}
.badge-live {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4ade80; box-shadow: 0 0 8px #4ade80;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.25)} }

/* Hero title */
.hero-title {
    font-size: clamp(2.5rem,5.5vw,4rem);
    font-weight: 900; line-height: 1.08;
    color: #fff; margin-bottom: 1.35rem;
    letter-spacing: -.025em;
}
.hero-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #34d399 50%, #a78bfa 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block; margin-top: .1em;
}

.hero-subtitle {
    font-size: 1.1rem; color: #94a3b8; line-height: 1.75;
    margin-bottom: 2.25rem; max-width: 490px;
}
.hero-subtitle strong { color: #e2e8f0; font-weight: 600; }

/* Hero buttons */
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }

/* Google signup — hero */
.hero-google-row { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; margin-bottom: 2rem; }
.hero-google-divider {
    display: flex; align-items: center; gap: .6rem;
    width: 100%; max-width: 380px;
}
.hero-google-divider::before,
.hero-google-divider::after {
    content: ''; flex: 1; height: 1px;
    background: rgba(255,255,255,.15);
}
.hero-google-divider span {
    font-size: .75rem; color: rgba(255,255,255,.45);
    white-space: nowrap; font-weight: 500; letter-spacing: .03em;
}
.btn-google-hero {
    display: inline-flex; align-items: center; gap: .65rem;
    background: #fff; color: #3c4043;
    font-size: .875rem; font-weight: 600;
    padding: .6rem 1.25rem; border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.06);
    transition: box-shadow .2s, transform .2s var(--spring);
}
.btn-google-hero:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.2), 0 0 0 1px rgba(0,0,0,.08);
    transform: translateY(-1px);
}
.btn-google-hero svg { flex-shrink: 0; }

.btn-hero-primary {
    text-decoration: none;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff; font-size: 1rem; font-weight: 700;
    padding: .9rem 2rem; border-radius: 12px;
    display: inline-flex; align-items: center; gap: .6rem;
    box-shadow: 0 0 0 0 rgba(37,99,235,.4), var(--sh-blue);
    transition: transform .2s var(--spring), box-shadow .2s;
    position: relative; overflow: hidden;
}
.btn-hero-primary::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.12), transparent);
    opacity: 0; transition: opacity .2s;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 0 0 5px rgba(37,99,235,.18), var(--sh-blue-hover); }
.btn-hero-primary:hover::after { opacity: 1; }

.btn-hero-ghost {
    text-decoration: none;
    background: rgba(255,255,255,.07);
    border: 1.5px solid rgba(255,255,255,.18);
    color: #e2e8f0; font-size: 1rem; font-weight: 600;
    padding: .9rem 1.75rem; border-radius: 12px;
    display: inline-flex; align-items: center; gap: .6rem;
    transition: background .2s, border-color .2s, transform .2s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.3); transform: translateY(-1px); }

/* Hero proof */
.hero-proof { display: flex; align-items: center; gap: .85rem; }
.proof-avatars { display: flex; }
.proof-av {
    width: 34px; height: 34px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,.18);
    display: flex; align-items: center; justify-content: center;
    font-size: .62rem; font-weight: 800; color: #fff; margin-left: -9px;
}
.proof-av:first-child { margin-left: 0; }
.proof-text { font-size: .83rem; color: #94a3b8; }
.proof-text strong { color: #e2e8f0; font-weight: 700; }

/* Hero Mockup */
.hero-visual { position: relative; }

.hero-card-glow {
    position: absolute; inset: -20px;
    background: radial-gradient(ellipse at center, rgba(37,99,235,.25) 0%, transparent 65%);
    pointer-events: none;
}

.hero-mockup {
    background: #fff; border-radius: 20px;
    box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-7deg) rotateX(4deg);
    transition: transform .5s var(--ease);
}
.hero-mockup:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }

.mockup-topbar {
    background: #f1f5f9; padding: .7rem 1rem;
    display: flex; align-items: center; gap: .75rem;
    border-bottom: 1px solid #e2e8f0;
}
.mockup-dots { display: flex; gap: 5px; }
.dot-red   { width: 11px; height: 11px; border-radius: 50%; background: #ef4444; }
.dot-yellow{ width: 11px; height: 11px; border-radius: 50%; background: #f59e0b; }
.dot-green { width: 11px; height: 11px; border-radius: 50%; background: #22c55e; }
.mockup-url { font-size: .72rem; font-weight: 600; color: #64748b; }

.mockup-body { padding: 1.25rem; }
.mockup-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.25rem; }

.m-stat {
    display: flex; align-items: center; gap: .6rem;
    padding: .75rem; border-radius: 10px;
}
.m-stat.green { background: #f0fdf4; }
.m-stat.blue  { background: #eff6ff; }
.m-stat-icon { font-size: 1.1rem; }
.m-stat.green .m-stat-icon { color: #10b981; }
.m-stat.blue  .m-stat-icon { color: #2563eb; }
.m-stat-num { font-size: 1.2rem; font-weight: 800; color: #0f172a; line-height: 1; }
.m-stat-label { font-size: .68rem; color: #64748b; }

.m-chart-title { font-size: .76rem; font-weight: 700; color: #334155; margin-bottom: .7rem; }
.m-bars { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1rem; }
.m-bar-row { display: grid; grid-template-columns: 88px 1fr 36px; align-items: center; gap: .5rem; font-size: .7rem; color: #475569; }
.m-bar { height: 7px; background: #e2e8f0; border-radius: 99px; overflow: hidden; }
.m-bar-fill { height: 100%; border-radius: 99px; }
.m-pct { font-weight: 700; color: #334155; }

.m-tags { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.m-tag {
    padding: .5rem .7rem; border-radius: 8px;
    font-size: .7rem; font-weight: 600;
    display: flex; align-items: center; gap: .35rem;
}
.m-tag.yellow { background: #fefce8; color: #92400e; }
.m-tag.indigo { background: #eef2ff; color: #3730a3; }

/* Float badges */
.hero-float-badge {
    position: absolute; background: #fff; border-radius: 14px;
    padding: .8rem 1.1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.15), 0 0 0 1px rgba(0,0,0,.05);
    display: flex; align-items: center; gap: .65rem;
    animation: float 4s ease-in-out infinite;
}
.fb1 { bottom: -18px; left: -28px; animation-delay: .4s; }
.fb2 { top: -18px; right: -18px; animation-delay: 1.6s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.fb-icon { font-size: 1.2rem; }
.fb-icon.fire { color: #ef4444; }
.fb-icon.star { color: #f59e0b; }
.fb-title { font-weight: 700; font-size: .84rem; color: var(--g900); line-height: 1; }
.fb-sub   { font-size: .7rem; color: var(--g500); margin-top: .1rem; }

/* ════════════════════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════════════════════ */
.stats-strip {
    background: var(--navy);
    padding: 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.stats-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; align-items: stretch; justify-content: center;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center; padding: 2.25rem 3.5rem;
    position: relative;
}
.stat-num {
    font-size: 2.5rem; font-weight: 900; color: #fff;
    line-height: 1; margin-bottom: .4rem;
    letter-spacing: -.02em;
}
.stat-label { font-size: .78rem; color: #64748b; font-weight: 500; text-transform: uppercase; letter-spacing: .07em; }
.stat-sep { width: 1px; background: rgba(255,255,255,.07); margin: 1.5rem 0; }

/* ════════════════════════════════════════════════════════
   FEATURES — BENTO GRID
════════════════════════════════════════════════════════ */
.features {
    padding: 7rem 0;
    background: var(--g50);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.1rem;
}

.bento-card {
    background: var(--w);
    border: 1px solid rgba(15,23,42,.07);
    border-radius: var(--r-xl);
    padding: 1.85rem;
    position: relative; overflow: hidden;
    box-shadow: var(--sh-card);
    transition: transform .3s var(--spring), box-shadow .3s, border-color .3s;
    grid-column: span 4;
}
.bento-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,.025) 0%, transparent 60%);
    opacity: 0; transition: opacity .3s;
    pointer-events: none;
}
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-card-hover);
    border-color: rgba(37,99,235,.15);
}
.bento-card:hover::before { opacity: 1; }

/* Large card = 8 cols */
.bento-large { grid-column: span 8; }

/* Featured card (X1) */
.bento-featured {
    background: linear-gradient(145deg, #fff 0%, #fff5f5 100%);
    border-color: rgba(239,68,68,.18);
}
.bento-featured:hover { border-color: rgba(239,68,68,.35); }

.bento-icon {
    width: 46px; height: 46px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 1rem;
}
.bento-icon.blue   { background: #eff6ff; color: var(--blue); }
.bento-icon.emerald{ background: #ecfdf5; color: var(--green); }
.bento-icon.amber  { background: #fffbeb; color: var(--amber); }
.bento-icon.violet { background: #f5f3ff; color: var(--violet); }
.bento-icon.red    { background: #fef2f2; color: var(--red); }
.bento-icon.teal   { background: #f0fdfa; color: #0d9488; }
.bento-icon.indigo { background: #eef2ff; color: #6366f1; }
.bento-icon.purple { background: #faf5ff; color: #7c3aed; }
.bento-icon.sky    { background: #f0f9ff; color: #0369a1; }
.bento-icon.cyan   { background: #ecfeff; color: #0891b2; }

.bento-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--g900); margin-bottom: .55rem; }
.bento-card p  { font-size: .875rem; color: var(--g500); line-height: 1.65; }

.bento-badge {
    position: absolute; top: 1rem; right: 1rem;
    background: var(--red); color: #fff;
    font-size: .66rem; font-weight: 800;
    padding: .25rem .7rem; border-radius: var(--r-f);
    text-transform: uppercase; letter-spacing: .06em;
}

.bento-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: 1rem; }
.bento-tags span {
    background: var(--g100); color: var(--g600);
    font-size: .7rem; font-weight: 600;
    padding: .22rem .7rem; border-radius: var(--r-f);
}

/* Visual dentro do card grande de questões */
.bento-visual-q { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .45rem; }
.bq-item {
    display: flex; align-items: center; gap: .6rem;
    padding: .5rem .75rem; border-radius: 9px;
    font-size: .8rem; font-weight: 500;
}
.bq-correct { background: #f0fdf4; color: #166534; }
.bq-correct i { color: #22c55e; }
.bq-wrong   { background: #fef2f2; color: #991b1b; }
.bq-wrong i { color: #ef4444; }

/* Mini X1 dentro do card */
.x1-mini {
    display: flex; align-items: center; justify-content: center;
    gap: .75rem; margin-top: 1rem;
}
.x1-player { display: flex; flex-direction: column; align-items: center; gap: .25rem; font-size: .75rem; color: var(--g500); }
.x1-av {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .82rem; color: #fff;
}
.x1-av.blue { background: linear-gradient(135deg,#2563eb,#1d4ed8); }
.x1-av.red  { background: linear-gradient(135deg,#ef4444,#dc2626); }
.x1-vs { font-size: .9rem; font-weight: 900; color: var(--g400); }
.x1-result-badge {
    display: inline-block; margin-top: .75rem;
    background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0;
    padding: .3rem .85rem; border-radius: var(--r-f); font-size: .77rem; font-weight: 700;
}

/* ════════════════════════════════════════════════════════
   COMO FUNCIONA
════════════════════════════════════════════════════════ */
.how-it-works {
    padding: 7rem 0;
    background: var(--w);
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.step-item {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; position: relative;
}

/* Horizontal connector line between steps */
.step-item:not(:last-child) .step-connector {
    position: absolute; top: 42px; left: calc(50% + 42px);
    width: calc(100% - 84px + 1.5rem);
    height: 2px;
    background: linear-gradient(90deg, #bfdbfe, #e2e8f0);
}

.step-circle {
    position: relative; margin-bottom: 1.5rem;
}
.step-n {
    position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
    background: var(--blue); color: #fff;
    font-size: .68rem; font-weight: 800;
    padding: .2rem .55rem; border-radius: var(--r-f);
    white-space: nowrap;
}

.step-icon-wrap {
    width: 64px; height: 64px; border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #bfdbfe;
    color: var(--blue); font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1rem;
    transition: transform .3s var(--spring), box-shadow .3s;
    box-shadow: 0 4px 12px rgba(37,99,235,.12);
}
.step-item:hover .step-icon-wrap { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(37,99,235,.22); }
.step-icon-wrap.medal {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-color: #fcd34d;
    color: var(--amber);
    box-shadow: 0 4px 12px rgba(245,158,11,.15);
}

.step-body h3 { font-size: .98rem; font-weight: 700; color: var(--g900); margin-bottom: .45rem; }
.step-body p  { font-size: .83rem; color: var(--g500); line-height: 1.65; }

/* ════════════════════════════════════════════════════════
   HIGHLIGHT SECTION (Cronograma/IA)
════════════════════════════════════════════════════════ */
.highlight-section {
    position: relative;
    background: linear-gradient(160deg, #050c1a 0%, #0a1930 50%, #0d2248 100%);
    padding: 7rem 0; overflow: hidden;
}
.hl-bg { position: absolute; inset: 0; pointer-events: none; }
.hl-orb {
    position: absolute; border-radius: 50%;
    filter: blur(100px);
}
.hl-orb-1 { width: 600px; height: 600px; background: radial-gradient(rgba(37,99,235,.3),transparent 70%); top: -200px; right: -100px; }
.hl-orb-2 { width: 350px; height: 350px; background: radial-gradient(rgba(16,185,129,.18),transparent 70%); bottom: -100px; left: 5%; }
.hl-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 56px 56px;
}

.hl-grid-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; position: relative; z-index: 1;
}

.hl-title {
    font-size: clamp(1.9rem,3.5vw,2.65rem);
    font-weight: 800; color: #fff; line-height: 1.2;
    margin-bottom: 1rem; letter-spacing: -.02em;
}
.hl-text { color: #94a3b8; font-size: .98rem; line-height: 1.75; margin-bottom: 1.75rem; }

.hl-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
.hl-list li {
    display: flex; align-items: center; gap: .75rem;
    color: #e2e8f0; font-size: .9rem; font-weight: 500;
}
.hl-list i { color: #4ade80; flex-shrink: 0; font-size: .95rem; }

.btn-hl-cta {
    text-decoration: none;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff; font-size: .95rem; font-weight: 700;
    padding: .85rem 1.75rem; border-radius: 12px;
    display: inline-flex; align-items: center; gap: .5rem;
    box-shadow: var(--sh-blue);
    transition: transform .2s var(--spring), box-shadow .2s;
}
.btn-hl-cta:hover { transform: translateY(-2px); box-shadow: var(--sh-blue-hover); }

/* AI schedule card */
.hl-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px; overflow: hidden;
    backdrop-filter: blur(12px);
}
.hl-card-header {
    padding: .85rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
    display: flex; align-items: center; gap: .6rem;
    color: #94a3b8; font-size: .8rem; font-weight: 600;
}
.hl-pulse {
    width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
    animation: pulse 2s infinite;
}
.hl-schedule { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.hl-day-label { font-size: .7rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem; }
.hl-sessions { display: flex; flex-direction: column; gap: .35rem; }
.hl-session {
    display: flex; align-items: center; justify-content: space-between;
    padding: .5rem .75rem; border-radius: 9px;
    font-size: .78rem; font-weight: 600;
}
.hl-session span { font-weight: 400; opacity: .7; font-size: .72rem; }
.hl-session.blue   { background: rgba(37,99,235,.2); color: #93c5fd; }
.hl-session.emerald{ background: rgba(16,185,129,.2); color: #6ee7b7; }
.hl-session.violet { background: rgba(139,92,246,.2); color: #c4b5fd; }
.hl-session.amber  { background: rgba(245,158,11,.2); color: #fcd34d; }

/* ════════════════════════════════════════════════════════
   GAMIFICAÇÃO
════════════════════════════════════════════════════════ */
.gamification { padding: 7rem 0; background: var(--g50); }

.game-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}

.game-card {
    background: var(--w); border: 1px solid rgba(15,23,42,.07);
    border-radius: var(--r-xl); padding: 2rem;
    box-shadow: var(--sh-card);
    transition: transform .3s var(--spring), box-shadow .3s;
}
.game-card:hover { transform: translateY(-5px); box-shadow: var(--sh-card-hover); }
.game-featured {
    background: linear-gradient(145deg, #fff 0%, #fff5f5 100%);
    border-color: rgba(239,68,68,.15);
}
.game-featured:hover { border-color: rgba(239,68,68,.3); }

.game-icon-wrap {
    width: 50px; height: 50px; border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1.1rem;
}
.game-icon-wrap.amber  { background: #fffbeb; color: var(--amber); }
.game-icon-wrap.red    { background: #fef2f2; color: var(--red); }
.game-icon-wrap.orange { background: #fff7ed; color: var(--orange); }

.game-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--g900); margin-bottom: .55rem; }
.game-card p  { font-size: .875rem; color: var(--g500); line-height: 1.65; margin-bottom: 1.25rem; }

/* Rank list */
.rank-list { display: flex; flex-direction: column; gap: .4rem; }
.rank-item {
    display: flex; align-items: center; gap: .6rem;
    font-size: .8rem; color: var(--g700);
    padding: .45rem .7rem; border-radius: 9px; background: var(--g50);
}
.r-name { flex: 1; }
.r-pts { font-weight: 700; color: var(--blue); font-size: .78rem; }
.rank-item.me { background: #eff6ff; border: 1px solid #bfdbfe; font-weight: 700; }

/* X1 duel */
.x1-duel {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-bottom: .75rem;
}
.duel-player { display: flex; flex-direction: column; align-items: center; gap: .25rem; font-size: .78rem; color: var(--g600); }
.duel-av {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .88rem; color: #fff;
}
.duel-av.blue { background: linear-gradient(135deg,#2563eb,#1d4ed8); }
.duel-av.red  { background: linear-gradient(135deg,#ef4444,#dc2626); }
.duel-score { font-weight: 800; font-size: 1rem; color: var(--g900); }
.duel-vs { font-size: .9rem; font-weight: 900; color: var(--g400); }
.duel-result {
    text-align: center;
    background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0;
    padding: .4rem 1rem; border-radius: var(--r-f); font-size: .8rem; font-weight: 700;
}

/* XP section */
.xp-section {}
.xp-header { display: flex; justify-content: space-between; font-size: .75rem; color: var(--g600); margin-bottom: .4rem; }
.xp-track { height: 8px; background: var(--g100); border-radius: 99px; overflow: hidden; margin-bottom: .75rem; }
.xp-fill { height: 100%; background: linear-gradient(90deg, #2563eb, #10b981); border-radius: 99px; }
.streak-dots { display: flex; justify-content: center; gap: .35rem; margin-bottom: .5rem; }
.s-dot {
    width: 30px; height: 30px; border-radius: 8px;
    background: var(--g100); color: var(--g400);
    font-size: .7rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.s-dot.on { background: linear-gradient(135deg, #f97316, #ef4444); color: #fff; }
.streak-label { text-align: center; font-size: .8rem; color: var(--g500); }

/* ════════════════════════════════════════════════════════
   DEPOIMENTOS
════════════════════════════════════════════════════════ */
.testimonials { padding: 7rem 0; background: var(--w); }

.t-grid {
    display: grid; grid-template-columns: repeat(2,1fr);
    gap: 1.25rem;
}

.t-card {
    background: var(--g50); border: 1px solid rgba(15,23,42,.07);
    border-radius: var(--r-xl); padding: 2rem;
    box-shadow: var(--sh-card);
    display: flex; flex-direction: column; gap: .85rem;
    position: relative; overflow: hidden;
    transition: transform .3s var(--spring), box-shadow .3s;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--sh-card-hover); }
.t-featured {
    background: linear-gradient(145deg, #eff6ff 0%, #f0fdf4 100%);
    border-color: rgba(37,99,235,.2);
}

.t-quote {
    position: absolute; top: -.5rem; left: 1.25rem;
    font-size: 5rem; font-weight: 900; line-height: 1;
    color: rgba(37,99,235,.08);
    font-family: Georgia, serif;
    pointer-events: none;
}

.t-stars { color: #f59e0b; font-size: .85rem; letter-spacing: 1px; }
.t-text { font-size: .9rem; color: var(--g600); line-height: 1.8; font-style: italic; flex: 1; position: relative; z-index: 1; }

.t-author { display: flex; align-items: center; gap: .75rem; }
.t-av {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .88rem; color: #fff; flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: .9rem; color: var(--g900); }
.t-place { font-size: .75rem; color: var(--g500); margin-top: .1rem; }
.t-approved {
    margin-left: auto;
    background: #f0fdf4; color: #16a34a;
    font-size: .7rem; font-weight: 700;
    padding: .25rem .65rem; border-radius: var(--r-f);
    white-space: nowrap; display: flex; align-items: center; gap: .3rem;
    flex-shrink: 0; border: 1px solid #bbf7d0;
}

/* ════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════ */
.faq-section {
    padding: 7rem 0;
    background: var(--g50);
}

.faq-layout {
    display: grid; grid-template-columns: 2fr 3fr;
    gap: 5rem; align-items: start;
}

.faq-left .section-h2 { text-align: left; margin-bottom: 1rem; font-size: clamp(1.75rem,3vw,2.25rem); }

.faq-ig-btn {
    display: inline-flex; align-items: center; gap: .6rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff; font-weight: 700; font-size: .88rem;
    padding: .65rem 1.35rem; border-radius: 12px;
    text-decoration: none; transition: transform .2s var(--spring), box-shadow .2s;
    box-shadow: 0 4px 16px rgba(253,29,29,.2);
}
.faq-ig-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(253,29,29,.35); }

.faq-right { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
    background: var(--w); border: 1px solid rgba(15,23,42,.08);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-card);
    overflow: hidden;
    transition: box-shadow .2s;
}
.faq-item[open] {
    box-shadow: var(--sh-card-hover);
    border-color: rgba(37,99,235,.18);
}

.faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 1.35rem;
    font-size: .95rem; font-weight: 600; color: var(--g900);
    cursor: pointer; list-style: none;
    user-select: none; gap: 1rem;
    transition: color .15s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--blue); }
.faq-item[open] .faq-q { color: var(--blue); }

.faq-icon {
    font-size: .75rem; color: var(--g400); flex-shrink: 0;
    transition: transform .25s, color .15s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); color: var(--blue); }

.faq-a {
    padding: 0 1.35rem 1.1rem;
    border-top: 1px solid var(--g100);
    padding-top: .85rem;
}
.faq-a p { font-size: .875rem; color: var(--g600); line-height: 1.75; }
.faq-a strong { color: var(--g800); font-weight: 600; }

/* ════════════════════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════════════════ */
.cta-section {
    position: relative;
    background: linear-gradient(160deg, #040c1e 0%, #0a1930 50%, #0f2b5e 100%);
    padding: 8rem 0; overflow: hidden; text-align: center;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(110px); }
.cta-orb-1 { width: 600px; height: 600px; background: radial-gradient(rgba(37,99,235,.32),transparent 70%); top: -220px; left: -100px; }
.cta-orb-2 { width: 450px; height: 450px; background: radial-gradient(rgba(16,185,129,.18),transparent 70%); bottom: -160px; right: -80px; }
.cta-grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 56px 56px;
}

.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; padding: 0 1.5rem; }

.cta-stethoscope {
    width: 76px; height: 76px; border-radius: 22px;
    background: rgba(37,99,235,.18); border: 1px solid rgba(37,99,235,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: #93c5fd; margin: 0 auto 2rem;
}

.cta-title {
    font-size: clamp(2.25rem,5vw,3.25rem); font-weight: 900; color: #fff;
    line-height: 1.1; margin-bottom: 1.1rem; letter-spacing: -.025em;
}
.cta-sub { color: #94a3b8; font-size: 1rem; line-height: 1.75; margin-bottom: 2.25rem; }
.cta-sub strong { color: #e2e8f0; }

.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; margin-bottom: 1.5rem; }

/* Google button — CTA section (fundo escuro) */
.btn-google-cta {
    display: inline-flex; align-items: center; gap: .6rem;
    background: rgba(255,255,255,.08); color: #fff;
    font-size: .95rem; font-weight: 600;
    padding: .9rem 1.6rem; border-radius: 12px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    transition: background .2s, border-color .2s, transform .2s var(--spring);
}
.btn-google-cta:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.32);
    transform: translateY(-2px);
}
.btn-google-cta svg { flex-shrink: 0; }

.btn-cta-primary {
    text-decoration: none;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff; font-size: 1rem; font-weight: 700;
    padding: .95rem 2.1rem; border-radius: 12px;
    display: inline-flex; align-items: center; gap: .6rem;
    box-shadow: var(--sh-blue);
    transition: transform .2s var(--spring), box-shadow .2s;
}
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: var(--sh-blue-hover); }

.btn-cta-ghost {
    text-decoration: none;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.2);
    color: #e2e8f0; font-size: 1rem; font-weight: 600;
    padding: .95rem 1.75rem; border-radius: 12px;
    transition: background .2s, border-color .2s;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); }

.cta-note {
    font-size: .8rem; color: #475569;
    display: flex; align-items: center; justify-content: center;
    gap: .35rem; flex-wrap: wrap;
}
.cta-note i { font-size: .72rem; }

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.footer {
    background: #04080f;
    padding: 4.5rem 0 0;
    border-top: 1px solid rgba(255,255,255,.05);
}
.footer-container {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem 3rem;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-logo { height: 30px; filter: brightness(10); }
.footer-logo-fallback {
    display: flex; align-items: center; gap: .5rem;
    color: #fff; font-size: 1rem; font-weight: 800;
}
.footer-logo-fallback i { color: var(--blue); font-size: 1.1rem; }

.footer-tagline { font-size: .875rem; color: #8a9abb; margin: .75rem 0 1.5rem; max-width: 255px; line-height: 1.7; }
.footer-social { display: flex; gap: .75rem; align-items: center; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
    text-decoration: none; transition: all .2s;
    box-shadow: 0 4px 14px rgba(253,29,29,.2);
}
.footer-social a:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(253,29,29,.38); }
.footer-social-label { font-size: .76rem; color: #64748b; margin-top: .6rem; }

.footer-links-group h4 {
    font-size: .72rem; font-weight: 700; color: #64748b;
    text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.25rem;
}
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-links-group a { text-decoration: none; font-size: .875rem; color: #8a9abb; transition: color .2s; }
.footer-links-group a:hover { color: #e2e8f0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.04);
    padding: 1.25rem 1.5rem;
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: .5rem;
    font-size: .8rem; color: #64748b;
}

/* ════════════════════════════════════════════════════════
   PRICING (kept for future use, hidden via HTML comment)
════════════════════════════════════════════════════════ */
.pricing { padding: 7rem 0; background: var(--g50); }
.pricing-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; max-width: 780px; margin: 0 auto; align-items: start;
}
.pricing-card {
    background: var(--w); border: 1.5px solid var(--g200);
    border-radius: var(--r-xl); padding: 2.25rem;
    transition: transform .25s; box-shadow: var(--sh-card);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card-featured {
    background: linear-gradient(145deg, #0a1a3a, #1a3f7a);
    border-color: transparent;
    box-shadow: 0 24px 60px rgba(10,26,58,.35);
    position: relative;
}
.plan-badge-popular {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff; font-size: .75rem; font-weight: 700;
    padding: .35rem 1.25rem; border-radius: var(--r-f);
    display: flex; align-items: center; gap: .3rem; white-space: nowrap;
}
.plan-header { margin-bottom: 1.75rem; }
.plan-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: var(--g50); display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--blue); margin-bottom: 1rem;
}
.plan-icon.featured-icon { background: rgba(255,255,255,.1); color: #93c5fd; }
.plan-name { font-size: 1rem; font-weight: 700; color: var(--g700); margin-bottom: .75rem; }
.pricing-card-featured .plan-name { color: #94a3b8; }
.plan-price { display: flex; align-items: baseline; gap: .2rem; margin-bottom: .4rem; }
.plan-currency { font-size: 1.1rem; font-weight: 700; color: var(--g900); }
.plan-amount { font-size: 3rem; font-weight: 900; color: var(--g900); line-height: 1; }
.pricing-card-featured .plan-currency,
.pricing-card-featured .plan-amount { color: #fff; }
.plan-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .65rem; }
.plan-features li { display: flex; align-items: center; gap: .6rem; font-size: .875rem; color: var(--g700); }
.plan-features i { color: #10b981; font-size: .8rem; flex-shrink: 0; }
.feature-bonus { color: var(--blue); }
.pricing-card-featured .plan-features li { color: #e2e8f0; }
.btn-plan-secondary {
    display: block; width: 100%; text-align: center; text-decoration: none;
    border: 1.5px solid var(--g200); color: var(--g700);
    font-size: .9rem; font-weight: 700; padding: .85rem 1rem;
    border-radius: 12px; transition: all .2s; cursor: pointer;
    background: transparent;
}
.btn-plan-secondary:hover { border-color: var(--blue); color: var(--blue); background: #eff6ff; }
.btn-plan-primary {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    width: 100%; text-decoration: none; cursor: pointer;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff; font-size: .9rem; font-weight: 700;
    padding: .9rem 1rem; border-radius: 12px; border: none;
    box-shadow: var(--sh-blue); transition: transform .2s, box-shadow .2s;
}
.btn-plan-primary:hover { transform: translateY(-2px); box-shadow: var(--sh-blue-hover); }
.plan-note { text-align: center; font-size: .78rem; color: #64748b; margin-top: .75rem; }
.pricing-guarantee {
    display: flex; align-items: center; gap: 1rem;
    background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--r-lg);
    padding: 1.25rem 1.75rem; max-width: 580px; margin: 2.5rem auto 0;
}
.pricing-guarantee > i { font-size: 1.75rem; color: #10b981; flex-shrink: 0; }
.pricing-guarantee strong { display: block; font-size: .9rem; color: var(--g900); margin-bottom: .2rem; }
.pricing-guarantee span  { font-size: .83rem; color: var(--g500); }
.pricing-grid-3col {
    grid-template-columns: repeat(3,1fr);
    max-width: 1060px;
}

/* ════════════════════════════════════════════════════════
   FADE-IN ANIMATIONS
════════════════════════════════════════════════════════ */
.fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .bento-large { grid-column: span 12; }
    .bento-card  { grid-column: span 6; }
    .hl-grid-layout { grid-template-columns: 1fr; gap: 3rem; }
    .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .faq-left .section-h2 { font-size: 1.85rem; }
    .steps-row { grid-template-columns: repeat(2,1fr); gap: 2rem; }
    .step-item:not(:last-child) .step-connector { display: none; }
}

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-visual { display: none; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-proof { justify-content: center; }
    .game-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .t-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .pricing-grid-3col { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-hamburger { display: flex; }
    .announce-bar { font-size: .75rem; gap: .5rem; }
    .announce-cta { display: none; }
    .hero { padding: 120px 0 60px; }
    .hero-title { font-size: 2.25rem; }
    .stats-inner { flex-direction: column; align-items: center; gap: 0; }
    .stat-item { padding: 1.25rem 2rem; }
    .stat-sep { width: 60px; height: 1px; margin: 0; }
    .bento-card { grid-column: span 12 !important; }
    .steps-row { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-h2 { font-size: 1.9rem; }
    .features, .how-it-works, .highlight-section, .gamification,
    .testimonials, .faq-section, .cta-section { padding: 5rem 0; }
}

@media (max-width: 520px) {
    .hero-title { font-size: 1.95rem; }
    .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
    .hero-actions { flex-direction: column; }
    .hero-google-row { align-items: stretch; }
    .hero-google-divider { max-width: 100%; }
    .btn-google-hero { justify-content: center; }
    .btn-cta-primary, .btn-cta-ghost, .btn-google-cta { width: 100%; justify-content: center; }
    .cta-btns { flex-direction: column; align-items: center; }
    .stats-inner { display: grid; grid-template-columns: 1fr 1fr; justify-items: center; }
    .stat-sep { display: none; }
    .stat-item { padding: 1rem .5rem; }
    .section-container, .nav-container, .hero-container, .cta-inner {
        padding-left: 1rem; padding-right: 1rem;
    }
    .faq-ig-btn { width: 100%; justify-content: center; }
    .announce-bar { padding: .5rem .75rem; }
    .footer-bottom { padding: 1rem; }
}

@media (max-width: 380px) {
    .nav-container { padding: 0 .75rem; gap: .5rem; }
    .nav-logo img { height: 28px; }
    .logo-text { font-size: .9rem; }
}

section, footer, nav { max-width: 100vw; overflow-x: hidden; }
html { overflow-x: hidden; }

@media (max-width: 768px) {
    .nav-mobile-menu { padding: .75rem 1rem 1.25rem; }
    .mobile-actions { flex-direction: column; }
    .mobile-actions .btn-nav-login,
    .mobile-actions .btn-nav-cta { width: 100%; text-align: center; justify-content: center; }
    .hero-subtitle { max-width: 100%; }
    .faq-layout { gap: 2rem; }
    .faq-left .section-pill, .faq-left .section-h2, .faq-left .section-lead { text-align: center; }
}

/* ════════════════════════════════════════════════════════
   BANCAS
════════════════════════════════════════════════════════ */
.exam-boards-section {
    padding: 6rem 0;
    background:
            radial-gradient(circle at top left, rgba(37,99,235,.08), transparent 34%),
            linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.exam-boards-card {
    background: var(--w);
    border: 1px solid rgba(15,23,42,.07);
    border-radius: var(--r-xl);
    padding: 2rem;
    box-shadow: var(--sh-card);
    position: relative;
    overflow: hidden;
}

.exam-boards-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,.035), transparent 55%);
    pointer-events: none;
}

.exam-boards-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.exam-boards-top h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--g900);
    margin-bottom: .25rem;
}

.exam-boards-top p {
    font-size: .9rem;
    color: var(--g500);
}

.exam-boards-count {
    min-width: 92px;
    padding: .75rem 1rem;
    border-radius: 16px;
    background: var(--blue-pale);
    border: 1px solid #bfdbfe;
    text-align: center;
}

.exam-boards-count strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}

.exam-boards-count span {
    font-size: .72rem;
    font-weight: 700;
    color: var(--g500);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.exam-boards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    position: relative;
    z-index: 1;
}

.exam-board-chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .85rem;
    border-radius: var(--r-f);
    background: #f8fafc;
    border: 1px solid var(--g200);
    color: var(--g700);
    font-size: .82rem;
    font-weight: 700;
    transition: transform .2s var(--spring), border-color .2s, background .2s, color .2s;
}

.exam-board-chip i {
    color: var(--blue);
    font-size: .75rem;
}

.exam-board-chip:hover {
    transform: translateY(-2px);
    background: var(--blue-pale);
    border-color: #bfdbfe;
    color: var(--blue-d);
}

.exam-board-loading,
.exam-board-empty {
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
    background: var(--g50);
    border: 1px dashed var(--g200);
    color: var(--g500);
    font-size: .9rem;
    font-weight: 600;
    text-align: center;
}

.exam-boards-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.btn-show-more-boards {
    border: none;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: .85rem;
    font-weight: 800;
    padding: .7rem 1.2rem;
    border-radius: var(--r-f);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    transition: background .2s, transform .2s;
}

.btn-show-more-boards:hover {
    background: #dbeafe;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .exam-boards-section {
        padding: 4.5rem 0;
    }

    .exam-boards-card {
        padding: 1.25rem;
    }

    .exam-boards-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .exam-boards-count {
        width: 100%;
    }

    .exam-board-chip {
        font-size: .78rem;
        padding: .5rem .75rem;
    }
}