/* ========================================================================
   Vegas Poker — Landing Page
   ======================================================================== */

/* ---------- Reset + Tokens ---------- */
:root {
    --bg: #08051a;
    --bg-2: #110a25;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-strong: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.10);
    --border-strong: rgba(157, 78, 221, 0.40);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.72);
    --muted-2: rgba(255, 255, 255, 0.55);
    --accent: #a855f7;
    --accent-2: #ec4899;
    --accent-3: #f472b6;
    --gold: #ffd35c;
    --green: #6ee7a0;
    --cyan: #5cc8ff;
    --radius: 20px;
    --radius-sm: 14px;
    --max: 1180px;
    --font-display: 'Outfit', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    background-image:
        radial-gradient(1200px 800px at 18% 12%, rgba(168, 85, 247, 0.30), transparent 60%),
        radial-gradient(1000px 700px at 82% 8%, rgba(236, 72, 153, 0.22), transparent 55%),
        radial-gradient(1100px 900px at 50% 100%, rgba(244, 114, 182, 0.16), transparent 60%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

/* ---------- Aurora animada ---------- */
.aurora {
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background:
        radial-gradient(700px 600px at 15% 20%, rgba(168, 85, 247, 0.18), transparent 55%),
        radial-gradient(800px 600px at 85% 80%, rgba(236, 72, 153, 0.16), transparent 55%);
    filter: blur(30px);
    animation: aurora 22s ease-in-out infinite alternate;
}
@keyframes aurora {
    0%   { transform: translate(-2%, -1%) scale(1); }
    50%  { transform: translate(1%, 2%) scale(1.05); }
    100% { transform: translate(-1%, 1%) scale(1); }
}

/* Pequenas estrelas animadas */
.stars {
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 12% 25%, rgba(255, 255, 255, 0.6), transparent 60%),
        radial-gradient(1.5px 1.5px at 65% 70%, rgba(255, 255, 255, 0.5), transparent 60%),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(1px 1px at 85% 12%, rgba(255, 255, 255, 0.55), transparent 60%),
        radial-gradient(1.5px 1.5px at 90% 60%, rgba(255, 255, 255, 0.45), transparent 60%),
        radial-gradient(1px 1px at 33% 80%, rgba(255, 255, 255, 0.6), transparent 60%),
        radial-gradient(1px 1px at 25% 90%, rgba(255, 255, 255, 0.5), transparent 60%);
    background-size: 100% 100%;
    opacity: 0.6;
    animation: starsTwinkle 8s ease-in-out infinite alternate;
}
@keyframes starsTwinkle { 0% { opacity: 0.4; } 100% { opacity: 0.75; } }

/* ---------- Container ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(8, 5, 26, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
    max-width: var(--max);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.brand {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.brand:hover { transform: translateX(2px); }
.brand-logo {
    height: 42px; width: auto;
    filter: drop-shadow(0 2px 8px rgba(168, 85, 247, 0.4));
}
.brand-text {
    display: flex; flex-direction: column; gap: 2px;
    line-height: 1.1;
}
.brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #fff 0%, #c8a8ff 60%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand-tag {
    font-size: 0.72rem;
    color: var(--muted-2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.navlinks {
    display: flex; align-items: center; gap: 4px;
}
.navlinks a {
    padding: 8px 14px;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.92rem;
    transition: all 0.15s ease;
}
.navlinks a:hover { color: var(--text); background: var(--surface); }

.header-cta { display: flex; align-items: center; gap: 10px; }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
    text-decoration: none;
}
.btn:hover { background: var(--surface-strong); border-color: rgba(255, 255, 255, 0.18); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 24px rgba(168, 85, 247, 0.35);
    font-weight: 700;
}
.btn-primary:hover {
    box-shadow: 0 10px 32px rgba(168, 85, 247, 0.55);
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 14px; }

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-icon { font-size: 1.1em; }

/* ---------- Mobile menu ---------- */
.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    width: 44px; height: 44px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 22px;
    align-items: center;
    justify-content: center;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(8, 5, 26, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-strong);
    padding: 16px 24px 24px;
    z-index: 100;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}
.mobile-menu.open { display: block; animation: menuSlide 0.2s ease-out; }
@keyframes menuSlide { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.mobile-menu a {
    display: flex; align-items: center;
    padding: 14px 16px; margin: 4px 0;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 1rem; font-weight: 500;
    transition: all 0.15s ease;
}
.mobile-menu a:hover, .mobile-menu a:active {
    background: rgba(168, 85, 247, 0.16);
    border-color: var(--border-strong);
}
.mobile-menu .btn { width: 100%; margin-top: 8px; }

/* ---------- Hero ---------- */
.hero {
    padding: 60px 0 80px;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(168, 85, 247, 0.14);
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #d8b4fe;
    letter-spacing: 0.05em;
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.25);
    margin-bottom: 22px;
}
.hero-eyebrow-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 10px var(--accent-2);
    animation: dotPulse 1.8s ease-in-out infinite;
}
@keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
    font-family: var(--font-display);
    margin: 0 0 20px;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.hero h1 .hl {
    background: linear-gradient(135deg, #c8a8ff 0%, #ec4899 50%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-lead {
    font-size: 1.1rem;
    color: var(--muted);
    margin: 0 0 28px;
    max-width: 56ch;
    line-height: 1.55;
}
.hero-actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #fff, #c8a8ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}
.hero-stat-label {
    font-size: 0.82rem;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ---------- Mockup do relógio (hero direita) ---------- */
.hero-mockup {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    isolation: isolate;
}
.hero-mockup-glow {
    position: absolute; inset: -20%;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.35) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite alternate;
}
@keyframes glowPulse { 0% { opacity: 0.6; } 100% { opacity: 1; } }

.cron-ring {
    position: absolute; inset: 8%;
    border-radius: 50%;
    background: conic-gradient(rgba(168, 85, 247, 0.85) 252deg, rgba(255, 255, 255, 0.06) 0);
    padding: 12px;
    box-shadow:
        0 0 90px rgba(168, 85, 247, 0.4),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
    animation: ringRotate 60s linear infinite;
}
@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.cron-inner {
    background: radial-gradient(circle at 50% 40%, rgba(20, 12, 40, 0.95), rgba(8, 4, 18, 0.98));
    border-radius: 50%;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: ringRotate 60s linear infinite reverse;
}
.cron-time {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    background: linear-gradient(180deg, #fff 0%, #ffe0f3 50%, #c8a8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 24px rgba(168, 85, 247, 0.5));
    line-height: 1;
}
.cron-blinds {
    margin-top: 14px;
    font-size: 0.92rem;
    color: rgba(200, 168, 255, 0.85);
    font-weight: 700;
    letter-spacing: 0.16em;
}
.cron-blinds-val {
    color: #fff;
    font-weight: 800;
    margin-left: 4px;
}

/* Floating badges em volta do relógio */
.float-badge {
    position: absolute;
    background: rgba(20, 12, 40, 0.85);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 9px 13px;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    animation: floatY 4s ease-in-out infinite alternate;
    white-space: nowrap;
    z-index: 2;
}
@keyframes floatY { 0% { transform: translateY(0); } 100% { transform: translateY(-8px); } }
.float-badge-1 { top: 4%; right: 2%; animation-delay: 0s; }
.float-badge-2 { bottom: 2%; left: 2%; animation-delay: 1s; }
.float-badge-3 { bottom: 0%; right: 8%; animation-delay: 2s; }
.float-badge .ico { font-size: 1rem; }
.float-badge .val { color: var(--gold); font-weight: 800; }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}
.section-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-2);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.section-title .hl {
    background: linear-gradient(135deg, #c8a8ff, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-lead {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0;
}

/* ---------- Para quem é ---------- */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.persona {
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.25s ease;
    text-align: center;
}
.persona:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 16px 48px rgba(168, 85, 247, 0.2);
    background: var(--surface-strong);
}
.persona-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(168, 85, 247, 0.4));
}
.persona h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px;
}
.persona p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

/* ---------- Recursos (features) ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature {
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.feature::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    background: var(--surface-strong);
    box-shadow: 0 16px 48px rgba(168, 85, 247, 0.18);
}
.feature:hover::before { opacity: 1; }
.feature-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.22), rgba(236, 72, 153, 0.18));
    border: 1px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.2);
}
.feature h3 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 700;
    margin: 0 0 10px;
}
.feature p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 0.95rem;
}
.feature ul {
    margin: 0; padding: 0; list-style: none;
    display: grid; gap: 8px;
}
.feature ul li {
    color: var(--muted-2);
    font-size: 0.88rem;
    padding-left: 20px;
    position: relative;
}
.feature ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* ---------- Showcase / Veja na prática ---------- */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.showcase {
    padding: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.25s ease;
}
.showcase:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
}
.showcase-img {
    height: 260px;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(168, 85, 247, 0.3), transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(236, 72, 153, 0.2), transparent 60%),
        linear-gradient(180deg, rgba(20, 12, 40, 0.6), rgba(8, 4, 18, 0.95));
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.showcase-content {
    padding: 22px 24px 24px;
}
.showcase h3 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 700;
    margin: 0 0 8px;
}
.showcase p {
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
}

/* Mini mockups dentro do showcase */
.mock-relogio {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    width: 75%;
}
.mock-relogio-circle {
    width: 130px; height: 130px;
    border-radius: 50%;
    background:
        conic-gradient(rgba(168, 85, 247, 0.9) 200deg, rgba(255, 255, 255, 0.06) 0);
    padding: 8px;
    box-shadow: 0 0 32px rgba(168, 85, 247, 0.4);
}
.mock-relogio-inner {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, rgba(20, 12, 40, 0.95), rgba(8, 4, 18, 0.98));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 900;
    background-clip: padding-box;
    color: #fff;
}
.mock-relogio-blinds {
    font-size: 0.78rem; color: rgba(200, 168, 255, 0.85);
    letter-spacing: 0.15em; font-weight: 700;
}
.mock-relogio-blinds .v { color: #fff; }

.mock-premiacao {
    width: 80%;
    display: flex; flex-direction: column; gap: 5px;
}
.mock-premio {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}
.mock-premio-1 {
    background: linear-gradient(135deg, rgba(255, 211, 92, 0.18), rgba(255, 122, 0, 0.1));
    border-color: rgba(255, 211, 92, 0.55);
}
.mock-premio .pos { color: var(--gold); font-weight: 800; min-width: 24px; }
.mock-premio .nome { flex: 1; color: var(--text); font-size: 0.78rem; }
.mock-premio .val { color: var(--gold); font-weight: 800; font-variant-numeric: tabular-nums; }
.mock-premio.pago { opacity: 0.85; }
.mock-premio.pago::after {
    content: 'PAGO';
    background: rgba(80, 220, 120, 0.18);
    border: 1px solid rgba(80, 220, 120, 0.5);
    color: var(--green);
    font-size: 0.62rem;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.mock-resumo {
    width: 80%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
}
.mock-resumo-titulo {
    font-size: 0.7rem;
    color: var(--muted-2);
    letter-spacing: 0.15em;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.mock-resumo-valor {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #fff, var(--gold));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    margin: 6px 0 12px;
}
.mock-resumo-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
    font-size: 0.7rem;
}
.mock-resumo-cell {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 4px;
    text-align: center;
}
.mock-resumo-cell .l { color: var(--muted-2); font-size: 0.62rem; }
.mock-resumo-cell .v { color: var(--text); font-weight: 800; font-size: 0.95rem; }

.mock-acordo {
    width: 85%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    display: flex; flex-direction: column; gap: 6px;
}
.mock-acordo-linha {
    display: grid; grid-template-columns: 1.4rem 1fr auto; gap: 8px;
    align-items: center;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.75rem;
}
.mock-acordo-linha .num { color: var(--gold); font-weight: 800; }
.mock-acordo-linha .nome { color: var(--text); font-weight: 600; font-size: 0.7rem; }
.mock-acordo-linha .val { color: var(--gold); font-weight: 700; font-variant-numeric: tabular-nums; }
.mock-acordo-linha.acordo { border-color: rgba(255, 200, 0, 0.5); background: rgba(255, 200, 0, 0.06); }

/* ---------- CTA Final ---------- */
.cta-final {
    text-align: center;
    padding: 72px 32px;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(168, 85, 247, 0.22), transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(236, 72, 153, 0.18), transparent 60%),
        var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 28px;
    margin: 40px 0;
    box-shadow: 0 24px 80px rgba(168, 85, 247, 0.18);
}
.cta-final h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin: 0 0 16px;
    background: linear-gradient(135deg, #fff, #c8a8ff, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-final p {
    color: var(--muted);
    font-size: 1.1rem;
    margin: 0 0 28px;
}
.cta-final-actions {
    display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}

/* ---------- FAQ ---------- */
.faq {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.faq details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    transition: all 0.2s ease;
}
.faq details[open] {
    border-color: var(--border-strong);
    background: var(--surface-strong);
}
.faq summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform 0.2s ease;
    line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- Footer ---------- */
.site-footer {
    background: rgba(8, 5, 26, 0.6);
    border-top: 1px solid var(--border);
    padding: 56px 0 32px;
    margin-top: 60px;
    backdrop-filter: blur(8px);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}
.footer-brand p {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 14px 0 0;
    max-width: 38ch;
}
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a {
    color: var(--muted);
    font-size: 0.95rem;
    transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--muted-2);
    flex-wrap: wrap;
}
.footer-bottom .pill {
    padding: 5px 12px;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ---------- Scroll reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Páginas de conteúdo (privacidade/termos/etc) ---------- */
.page-doc {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}
.page-doc h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin: 0 0 12px;
    background: linear-gradient(135deg, #fff, #c8a8ff);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.page-doc .doc-date {
    color: var(--muted-2);
    margin-bottom: 32px;
    font-size: 0.9rem;
}
.page-doc h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-top: 36px;
    margin-bottom: 12px;
    color: #c8a8ff;
}

/* ---------- CTA WhatsApp na página de contato ---------- */
/* IMPORTANTE: forçamos !important nas cores brancas pra superar o estilo global
   de 'a' (link roxo) e de '.page-doc h3' (lilás) que vazavam dentro do card. */
a.wa-cta,
a.wa-cta:link,
a.wa-cta:visited,
a.wa-cta:hover,
a.wa-cta:active {
    color: #fff !important;
    text-decoration: none !important;
}
.wa-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    padding: 22px 26px;
    border-radius: 14px;
    margin: 28px 0 36px;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.28);
    transition: transform .15s ease, box-shadow .15s ease;
    flex-wrap: wrap;
}
.wa-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.42);
}
.wa-cta-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}
.wa-cta-text { flex: 1; min-width: 200px; }
.wa-cta .wa-cta-title {
    color: #fff !important;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}
.wa-cta .wa-cta-sub {
    color: rgba(255,255,255,0.95) !important;
    font-size: 0.95rem;
    margin-top: 4px;
}
@media (max-width: 520px) {
    .wa-cta { padding: 18px; }
}
.page-doc h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 10px;
}
.page-doc p, .page-doc li {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.98rem;
}
.page-doc ul, .page-doc ol {
    padding-left: 22px;
    margin: 12px 0;
}
.page-doc li { margin-bottom: 6px; }
.page-doc a {
    color: var(--accent);
    border-bottom: 1px dotted var(--accent);
}
.page-doc a:hover { color: var(--accent-3); }
.page-doc strong { color: var(--text); }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-mockup { max-width: 380px; }
    .features-grid, .persona-grid, .showcase-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .navlinks { display: none; }
    .mobile-toggle { display: flex; }
    .header-cta .btn:not(.btn-primary) { display: none; }
}

@media (max-width: 640px) {
    .container { padding: 0 16px; }
    .hero { padding: 40px 0 60px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { gap: 14px; }
    section { padding: 60px 0; }
    .section-head { margin-bottom: 36px; }
    .cta-final { padding: 48px 20px; }
    .cta-final-actions { flex-direction: column; }
    .cta-final-actions .btn { width: 100%; }
    .float-badge { display: none; }
    .nav { padding: 12px 16px; }
    .brand-tag { display: none; }
    .brand-logo { height: 36px; }
}
