/* =====================================================================
   FIXEI — LANDING PAGE
   Baseado no Design System (SRC/DesignSystem.html)
   ===================================================================== */

/* ---------- TOKENS ---------- */
:root {
    /* Marca */
    --c-purple:        #4B449A;
    --c-purple-600:    #3F3886;
    --c-purple-700:    #332D6E;
    --c-purple-light:  rgba(75, 68, 154, 0.10);
    --c-cyan:          #35C0D4;
    --c-cyan-600:      #27A7BA;
    --c-cyan-light:    rgba(53, 192, 212, 0.12);
    --c-mint:          #9BD7C0;
    --c-green-soft:    #D1E6BF;
    --c-lavender:      #B9B5E0;

    /* Gradientes */
    --grad-brand:      linear-gradient(120deg, #D1E6BF 0%, #B2DDC8 35%, #35C0D5 80%, #88D2DC 100%);
    --grad-brand-soft: linear-gradient(120deg, #ECF6E5 0%, #E2F4EF 45%, #D8F1F6 100%);
    --grad-purple:     linear-gradient(135deg, #4B449A 0%, #6C63C9 100%);
    --grad-cyan:       linear-gradient(135deg, #35C0D4 0%, #88D2DC 100%);
    --grad-hero:       linear-gradient(165deg, #FFFFFF 0%, #EFF7F4 45%, #DCEFF3 100%);

    /* Semânticas */
    --c-success:       #3D9B35;
    --c-success-light: rgba(61, 155, 53, 0.12);
    --c-danger:        #E5484D;
    --c-danger-light:  rgba(229, 72, 77, 0.12);
    --c-warning:       #F5A623;
    --c-warning-light: rgba(245, 166, 35, 0.14);

    /* Superfícies */
    --bg-base:    #FFFFFF;
    --bg-soft:    #F6F8FB;
    --bg-section: #F1F6FA;
    --surface:    #FFFFFF;
    --surface-2:  #F8FAFC;
    --border:     #E7ECF3;
    --border-2:   #DAE1EB;

    /* Texto */
    --text-1:   #1C1B33;
    --text-2:   #4A4A63;
    --text-3:   #8A8AA0;
    --text-dis: #B6B6C6;
    --text-inv: #FFFFFF;

    /* Tipografia */
    --font-display: 'Montserrat', sans-serif;
    --font-body:    'Montserrat', sans-serif;

    /* Espaçamento */
    --sp-1:.25rem; --sp-2:.5rem; --sp-3:.75rem; --sp-4:1rem; --sp-5:1.25rem;
    --sp-6:1.5rem; --sp-8:2rem; --sp-10:2.5rem; --sp-12:3rem; --sp-16:4rem;
    --sp-20:5rem; --sp-24:6rem;

    /* Raio */
    --r-sm:6px; --r-md:12px; --r-lg:16px; --r-xl:20px; --r-2xl:28px; --r-3xl:40px; --r-full:9999px;

    /* Sombras */
    --sh-sm:     0 1px 2px rgba(28,27,51,.06);
    --sh-md:     0 6px 20px rgba(28,27,51,.08);
    --sh-lg:     0 16px 40px rgba(28,27,51,.10);
    --sh-xl:     0 28px 60px rgba(28,27,51,.14);
    --sh-purple: 0 12px 30px rgba(75,68,154,.30);
    --sh-cyan:   0 12px 30px rgba(53,192,212,.30);

    --t-fast:.15s ease; --t-normal:.3s ease; --t-slow:.5s ease;

    --container: 1180px;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background: var(--bg-base);
    color: var(--text-1);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
.ic { width: 24px; height: 24px; flex-shrink: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-6); }

/* ---------- ATMOSFERA / DECORAÇÃO ---------- */
/* Grão sutil global */
body::before {
    content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
    opacity: .035; mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.blob {
    position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55;
    pointer-events: none; z-index: 0;
}

/* ---------- TIPOGRAFIA UTIL ---------- */
.display { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; }
.eyebrow {
    display: inline-flex; align-items: center; gap: var(--sp-2);
    font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--c-cyan-600);
}
.section-kicker {
    font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    color: var(--c-purple); opacity: .7;
}

/* ---------- BADGE / PILL ---------- */
.badge {
    display: inline-flex; align-items: center; gap: var(--sp-2);
    font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    padding: .5rem .85rem; border-radius: var(--r-full);
}
.badge svg { width: 14px; height: 14px; }
.badge-brand { background: var(--grad-brand); color: var(--c-purple-700); }
.badge-purple { background: var(--c-purple-light); color: var(--c-purple); }
.badge-cyan { background: var(--c-cyan-light); color: var(--c-cyan-600); }
.badge-glass {
    background: rgba(255,255,255,.65); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.8); color: var(--c-purple);
    box-shadow: var(--sh-sm);
}

/* ---------- BOTÕES ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
    font-weight: 600; font-size: 1rem; line-height: 1;
    padding: 1rem 1.6rem; border-radius: var(--r-full);
    border: 2px solid transparent; transition: all var(--t-normal); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t-normal); }
.btn-primary { background: var(--c-purple); color: #fff; box-shadow: var(--sh-purple); }
.btn-primary:hover { background: var(--c-purple-600); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(75,68,154,.40); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-cyan { background: var(--grad-cyan); color: var(--c-purple-700); box-shadow: var(--sh-cyan); }
.btn-cyan:hover { transform: translateY(-3px); filter: brightness(1.04); }
.btn-outline { background: transparent; color: var(--c-purple); border-color: var(--border-2); }
.btn-outline:hover { border-color: var(--c-purple); background: var(--c-purple-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text-2); padding-inline: .8rem; }
.btn-ghost:hover { color: var(--c-purple); }
.btn-lg { padding: 1.15rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    transition: background var(--t-normal), box-shadow var(--t-normal), padding var(--t-normal);
    padding: var(--sp-5) 0;
}
.site-header.scrolled {
    background: rgba(255,255,255,.85); backdrop-filter: blur(14px);
    box-shadow: var(--sh-sm); padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); }
.brand { display: flex; align-items: center; gap: var(--sp-3); }
.brand-mark {
    width: 38px; height: 38px; border-radius: var(--r-md); background: var(--grad-brand);
    display: grid; place-items: center; box-shadow: var(--sh-cyan); flex-shrink: 0;
}
.brand-mark svg { width: 20px; height: 20px; color: var(--c-purple); }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -.02em; color: var(--c-purple); line-height: 1; }
.brand-logo { height: 42px; width: auto; display: block; }
.site-header.scrolled .brand-logo { height: 38px; }
.nav-links { display: flex; align-items: center; gap: var(--sp-8); }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--text-2); transition: color var(--t-fast); }
.nav-links a:hover { color: var(--c-purple); }
.nav-cta { display: flex; align-items: center; gap: var(--sp-3); }
.nav-toggle { display: none; background: none; border: none; color: var(--c-purple); padding: var(--sp-2); }
.nav-toggle svg { width: 28px; height: 28px; }

/* =====================================================================
   SECTION BASE
   ===================================================================== */
.section { position: relative; padding: var(--sp-24) 0; overflow: hidden; }
.section.tight { padding: var(--sp-16) 0; }
.section.soft { background: var(--bg-section); }
.section-head { max-width: 760px; margin: 0 auto var(--sp-16); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 5.2vw, 3.25rem); line-height: 1.12; letter-spacing: -.03em; margin-top: var(--sp-4); overflow-wrap: break-word; }
.section-title em { color: var(--c-purple); font-style: normal; }
.section-lead { font-size: 1.15rem; color: var(--text-2); line-height: 1.7; margin-top: var(--sp-5); }
.section-lead + .section-lead { margin-top: var(--sp-4); }
.text-strong { color: var(--text-1); font-weight: 700; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; overflow: hidden; padding: clamp(7rem, 14vh, 11rem) 0 var(--sp-24); background: var(--grad-hero); }
.hero .blob-1 { width: 420px; height: 420px; background: var(--grad-brand); top: -120px; right: -80px; }
.hero .blob-2 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(75,68,154,.5), transparent 70%); bottom: -120px; left: -100px; opacity: .4; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--sp-16); align-items: center; }
.hero-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 6vw, 4rem); line-height: 1.06; letter-spacing: -.03em; margin: var(--sp-5) 0 var(--sp-6); overflow-wrap: break-word; }
.hero-title em { color: var(--c-purple); font-style: normal; }
.hero-lead { font-size: 1.2rem; color: var(--text-2); line-height: 1.7; max-width: 32ch; }
.hero-notes { margin-top: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-2); }
.hero-notes p { font-size: .98rem; color: var(--text-3); display: flex; gap: var(--sp-2); align-items: flex-start; }
.hero-notes svg { width: 18px; height: 18px; color: var(--c-cyan); margin-top: 2px; flex-shrink: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-8); }
.hero-trust { margin-top: var(--sp-6); font-size: .85rem; color: var(--text-3); display: flex; align-items: center; gap: var(--sp-2); }
.hero-trust svg { width: 16px; height: 16px; color: var(--c-success); }

/* Hero visual — telefone/chat */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
    width: 320px; max-width: 100%; background: #fff; border-radius: 38px;
    padding: 12px; box-shadow: var(--sh-xl); border: 1px solid var(--border);
    position: relative; z-index: 2;
}
.phone-screen { background: #ECE5DD; border-radius: 28px; overflow: hidden; }
.chat-head { display: flex; align-items: center; gap: var(--sp-3); background: var(--c-purple); color: #fff; padding: var(--sp-4) var(--sp-4); }
.chat-avatar { width: 38px; height: 38px; border-radius: var(--r-full); background: var(--grad-brand); display: grid; place-items: center; color: var(--c-purple); }
.chat-avatar svg { width: 20px; height: 20px; }
.chat-name { font-size: .9rem; font-weight: 700; }
.chat-status { font-size: 11px; opacity: .85; }
.chat-body { padding: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-2); min-height: 320px; }
.bubble { max-width: 82%; padding: .55rem .8rem; border-radius: 14px; font-size: .85rem; line-height: 1.4; box-shadow: var(--sh-sm); }
.bubble.in { background: #fff; border-top-left-radius: 4px; align-self: flex-start; }
.bubble.out { background: #D6F5C9; border-top-right-radius: 4px; align-self: flex-end; }
.bubble small { display: block; font-size: 10px; color: var(--text-3); text-align: right; margin-top: 2px; }
/* Cartões flutuantes */
.float-card {
    position: absolute; z-index: 3; background: #fff; border: 1px solid var(--border);
    border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: var(--sp-3) var(--sp-4);
    display: flex; align-items: center; gap: var(--sp-3); font-size: .82rem; font-weight: 600;
}
.float-card svg { width: 18px; height: 18px; }
.float-card .fc-ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.float-card.fc-a { top: 18%; left: -34px; animation: floatY 4s ease-in-out infinite; }
.float-card.fc-b { bottom: 16%; right: -30px; animation: floatY 5s ease-in-out infinite .8s; }
.fc-green { background: var(--c-success-light); color: var(--c-success); }
.fc-cyan { background: var(--c-cyan-light); color: var(--c-cyan-600); }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* FAIXA DE CONFIANÇA */
.trust { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: var(--sp-6) 0; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-8); align-items: center; }
.trust-item { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: .95rem; font-weight: 600; color: var(--text-2); }
.trust-item svg { width: 24px; height: 24px; }
.trust-pix { width: 22px; height: 22px; border-radius: 6px; background: #32BCAD; transform: rotate(45deg); display: inline-block; }

/* FAIXA DE NICHOS (Para quem é) */
.niches { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-4); margin-bottom: var(--sp-12); }
.niche {
    position: relative; margin: 0; overflow: hidden;
    border-radius: var(--r-lg); box-shadow: var(--sh-sm);
    transition: transform var(--t-normal), box-shadow var(--t-normal);
}
.niche img {
    width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; display: block;
    transition: transform var(--t-slow);
}
.niche::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to top, rgba(20,18,45,0.88) 0%, rgba(20,18,45,0.35) 45%, rgba(20,18,45,0) 75%);
}
.niche figcaption {
    position: absolute; left: var(--sp-3); right: var(--sp-3); bottom: var(--sp-4); z-index: 2;
    text-align: center; color: #fff; font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.niche:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.niche:hover img { transform: scale(1.06); }

@media (max-width: 1024px) {
    .niches { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
    .niches { grid-template-columns: repeat(2, 1fr); }
    .trust-row { gap: var(--sp-5); }
    .trust-item { font-size: .85rem; }
    .brand-logo { height: 34px; }
    .footer-logo { height: 42px; }
}

/* =====================================================================
   PROBLEMA / RECONHECIMENTO
   ===================================================================== */
.recognize-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); margin-top: var(--sp-10); }
.recognize-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
    padding: var(--sp-6); display: flex; gap: var(--sp-4); align-items: flex-start;
    box-shadow: var(--sh-sm); transition: transform var(--t-normal), box-shadow var(--t-normal), border-color var(--t-normal);
}
.recognize-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--c-danger); }
.recognize-card .rc-ic { width: 40px; height: 40px; border-radius: 12px; background: var(--c-danger-light); color: var(--c-danger); display: grid; place-items: center; flex-shrink: 0; }
.recognize-card .rc-ic svg { width: 22px; height: 22px; }
.recognize-card p { font-size: .98rem; color: var(--text-2); line-height: 1.55; }

/* =====================================================================
   QUEBRA DE CRENÇA
   ===================================================================== */
.belief .blob-1 { width: 360px; height: 360px; background: var(--grad-brand); top: 10%; left: -140px; opacity: .35; }
.belief-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--sp-16); align-items: start; }
.belief-head .section-title { margin-top: 0; }
.belief-body { display: flex; flex-direction: column; gap: var(--sp-6); }
.belief-line { font-size: 1.2rem; line-height: 1.7; color: var(--text-2); }
.belief-callout {
    display: flex; gap: var(--sp-4); align-items: flex-start;
    background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--c-cyan);
    border-radius: var(--r-lg); padding: var(--sp-6); box-shadow: var(--sh-sm);
}
.belief-callout-ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--r-md); background: var(--grad-brand-soft); color: var(--c-purple); display: grid; place-items: center; }
.belief-callout-ic svg { width: 24px; height: 24px; }
.belief-callout p { font-size: 1.1rem; line-height: 1.6; color: var(--text-1); }
.belief-callout em { color: var(--c-purple); font-style: normal; font-weight: 700; }
.belief-conclusion {
    font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em;
    font-size: clamp(1.3rem, 2.3vw, 1.75rem); line-height: 1.3; color: var(--text-1);
    padding-top: var(--sp-4); border-top: 1px solid var(--border);
}

/* =====================================================================
   SOLUÇÃO
   ===================================================================== */
.solution .blob-1 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(53,192,212,.35), transparent 70%); top: -100px; right: -120px; }
.solution-intro { max-width: 720px; }
.solution-intro .section-lead .nowrap { white-space: nowrap; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); margin-top: var(--sp-12); }
.feature-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-2xl);
    padding: var(--sp-8); box-shadow: var(--sh-sm);
    transition: transform var(--t-normal), box-shadow var(--t-normal), border-color var(--t-normal);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--c-cyan); }
.feature-ic { width: 56px; height: 56px; border-radius: var(--r-lg); background: var(--grad-brand-soft); color: var(--c-purple); display: grid; place-items: center; margin-bottom: var(--sp-5); }
.feature-ic svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: var(--sp-2); }
.feature-card p { font-size: .95rem; color: var(--text-2); line-height: 1.6; }
.solution-banner {
    margin-top: var(--sp-12); text-align: center; background: var(--grad-purple); color: #fff;
    border-radius: var(--r-2xl); padding: var(--sp-10) var(--sp-8); box-shadow: var(--sh-purple);
    font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.3;
    position: relative; overflow: hidden;
}
.solution-banner::after { content:''; position:absolute; width:240px; height:240px; border-radius:50%; background: rgba(255,255,255,.12); top:-80px; right:-60px; }

/* =====================================================================
   COMO FUNCIONA — STEPS
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); margin-top: var(--sp-12); counter-reset: step; }
.step {
    position: relative; background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-2xl); padding: var(--sp-8); box-shadow: var(--sh-sm);
}
.step-num { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; color: transparent; -webkit-text-stroke: 2px var(--c-cyan); margin-bottom: var(--sp-4); }
.step-ic { width: 52px; height: 52px; border-radius: var(--r-md); background: var(--grad-cyan); color: var(--c-purple-700); display: grid; place-items: center; margin-bottom: var(--sp-5); box-shadow: var(--sh-cyan); }
.step-ic svg { width: 26px; height: 26px; }
.step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: var(--sp-3); }
.step p { font-size: .95rem; color: var(--text-2); line-height: 1.6; }
.step-connector { position: absolute; top: 50%; right: -22px; color: var(--border-2); z-index: 2; }
.step-connector svg { width: 28px; height: 28px; }

/* =====================================================================
   VELOCIDADE
   ===================================================================== */
.speed { background: var(--grad-purple); color: #fff; text-align: center; }
.speed .blob-1 { width: 360px; height: 360px; background: rgba(53,192,212,.4); top: -120px; left: 8%; }
.speed .blob-2 { width: 300px; height: 300px; background: rgba(209,230,191,.35); bottom: -120px; right: 6%; }
.speed .section-title { color: #fff; }
.speed .section-title em { color: var(--c-mint); }
.speed .section-lead { color: rgba(255,255,255,.85); }
.speed-badge { display: inline-flex; align-items: center; gap: var(--sp-2); background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); padding: .6rem 1.1rem; border-radius: var(--r-full); font-weight: 600; margin-top: var(--sp-8); }
.speed-badge svg { width: 20px; height: 20px; color: var(--c-mint); }

/* =====================================================================
   GARANTIA
   ===================================================================== */
.guarantee-card {
    max-width: 900px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-3xl); padding: var(--sp-16) var(--sp-12); text-align: center;
    box-shadow: var(--sh-lg); position: relative; overflow: hidden;
}
.guarantee-seal { width: 84px; height: 84px; border-radius: var(--r-full); background: var(--c-success-light); color: var(--c-success); display: grid; place-items: center; margin: 0 auto var(--sp-6); }
.guarantee-seal svg { width: 44px; height: 44px; }
.guarantee-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3); margin-top: var(--sp-8); }
.guarantee-tags .badge { font-size: .8rem; }

/* =====================================================================
   PROVAS
   ===================================================================== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); margin-bottom: var(--sp-16); }
.stat-card { background: var(--grad-brand-soft); border: 1px solid var(--border); border-radius: var(--r-2xl); padding: var(--sp-8) var(--sp-5); text-align: center; }
.stat-ic { width: 54px; height: 54px; border-radius: var(--r-md); background: #fff; color: var(--c-purple); display: grid; place-items: center; margin: 0 auto var(--sp-4); box-shadow: var(--sh-sm); }
.stat-ic svg { width: 26px; height: 26px; }
.stat-num { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; font-size: clamp(2rem,4vw,2.8rem); color: var(--c-purple); line-height: 1; }
.stat-label { font-size: .9rem; color: var(--text-2); margin-top: var(--sp-3); }
.stat-detail { font-size: .78rem; color: var(--text-3); margin-top: var(--sp-1); line-height: 1.35; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.case-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-2xl); padding: var(--sp-8); box-shadow: var(--sh-sm); }
.case-stars { display: flex; gap: 2px; color: var(--c-warning); margin-bottom: var(--sp-4); }
.case-stars svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.case-quote { color: var(--text-2); line-height: 1.6; margin-bottom: var(--sp-6); font-size: .98rem; }
.case-author { display: flex; align-items: center; gap: var(--sp-3); }
.case-name { font-weight: 600; font-size: .95rem; }
.case-role { font-size: .8rem; color: var(--text-3); }

/* =====================================================================
   PARA QUEM É — FIT (Antes/Depois)
   ===================================================================== */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
.fit-card { border-radius: var(--r-2xl); padding: var(--sp-8); border: 1px solid var(--border); }
.fit-card.yes { background: #F2FBF4; border-color: rgba(61,155,53,.25); }
.fit-card.no  { background: #FFF6F6; border-color: rgba(229,72,77,.25); }
.fit-head { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.fit-head .fit-ic { width: 44px; height: 44px; border-radius: var(--r-full); display: grid; place-items: center; color: #fff; }
.fit-head .fit-ic svg { width: 24px; height: 24px; }
.fit-card.yes .fit-ic { background: var(--c-success); }
.fit-card.no  .fit-ic { background: var(--c-danger); }
.fit-head h3 { font-size: 1.2rem; font-weight: 700; }
.fit-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.fit-list li { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: .98rem; color: var(--text-2); line-height: 1.5; }
.fit-list li svg { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }
.fit-card.yes li svg { color: var(--c-success); }
.fit-card.no  li svg { color: var(--c-danger); }

/* =====================================================================
   CTA FINAL + FORM
   ===================================================================== */
.final-cta { background: var(--grad-hero); position: relative; }
.final-cta .blob-1 { width: 420px; height: 420px; background: var(--grad-brand); top: -120px; right: -100px; }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .9fr; gap: var(--sp-16); align-items: center; }
.cta-copy .section-title { text-align: left; }
.cta-copy .section-lead { margin-top: var(--sp-5); }
.cta-micro { margin-top: var(--sp-6); font-size: .9rem; color: var(--text-3); }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-2xl); padding: var(--sp-10); box-shadow: var(--sh-xl); }
.form-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: var(--sp-2); }
.form-card .form-sub { font-size: .9rem; color: var(--text-3); margin-bottom: var(--sp-6); }
.form-field { margin-bottom: var(--sp-4); }
.form-label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: var(--sp-2); }
.form-input, .form-select {
    width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--border-2); border-radius: var(--r-md);
    font-family: var(--font-body); font-size: 1rem; color: var(--text-1); background: var(--surface);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-input::placeholder { color: var(--text-dis); }
.form-input:focus, .form-select:focus { outline: none; border-color: var(--c-cyan); box-shadow: 0 0 0 4px var(--c-cyan-light); }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-4); }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.faq-item.open { border-color: var(--c-cyan); box-shadow: var(--sh-md); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-5) var(--sp-6); background: none; border: none; text-align: left; font-size: 1.05rem; font-weight: 600; color: var(--text-1); }
.faq-q svg { width: 22px; height: 22px; color: var(--c-purple); transition: transform var(--t-normal); flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-normal) ease; }
.faq-a-inner { padding: 0 var(--sp-6) var(--sp-6); color: var(--text-2); line-height: 1.7; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: #15132B; color: rgba(255,255,255,.7); padding: var(--sp-16) 0 var(--sp-8); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--sp-8); flex-wrap: wrap; }
.footer-brand .brand-name { color: #fff; font-size: 2rem; }
.footer-logo { height: 50px; width: auto; display: block; margin-bottom: var(--sp-2); filter: brightness(0) invert(1); }
.footer-tagline { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; font-size: 1.2rem; color: rgba(255,255,255,.85); margin-top: var(--sp-2); }
.footer-cta .btn { margin-top: var(--sp-2); }
.footer-bottom { margin-top: var(--sp-12); padding-top: var(--sp-6); border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a:hover { color: #fff; }

/* =====================================================================
   PLACEHOLDER DE IMAGEM (sinalizado p/ criação posterior)
   ===================================================================== */
.img-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--sp-2);
    background: repeating-linear-gradient(45deg, var(--bg-soft), var(--bg-soft) 12px, #eef2f7 12px, #eef2f7 24px);
    border: 2px dashed var(--border-2); border-radius: var(--r-lg); color: var(--text-3);
    text-align: center; padding: var(--sp-6); min-height: 120px; font-size: .82rem;
}
.img-placeholder svg { width: 26px; height: 26px; opacity: .6; }
.img-placeholder strong { font-weight: 700; color: var(--text-2); }
.avatar-placeholder { width: 48px; height: 48px; border-radius: var(--r-full); background: var(--grad-purple); display: grid; place-items: center; color: #fff; flex-shrink: 0; box-shadow: var(--sh-sm); }
.avatar-placeholder svg { width: 24px; height: 24px; }

/* =====================================================================
   REVEAL (scroll) — usado junto com animations.css
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="zoom"] { transform: scale(.92); }
[data-reveal="blur"] { filter: blur(14px); }
[data-reveal="blur"].is-visible { filter: blur(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* =====================================================================
   RESPONSIVO
   ===================================================================== */
@media (max-width: 1024px) {
    .hero-grid, .cta-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
    .belief-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
    .hero-visual { order: -1; }
    .feature-grid, .recognize-grid, .cases-grid, .steps { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .step-connector { display: none; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column; align-items: stretch; gap: var(--sp-2);
        position: absolute; top: 100%; left: 0; right: 0; margin-top: var(--sp-2);
        background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
        padding: var(--sp-4); box-shadow: var(--sh-lg);
    }
    .nav-links.open a { padding: var(--sp-3); border-radius: var(--r-md); }
    .nav-links.open a:hover { background: var(--bg-soft); }
    .nav-toggle { display: inline-flex; }
    .nav-cta .btn-primary { display: none; }
    .site-header .nav { position: relative; }
    .section { padding: var(--sp-16) 0; }
    .fit-grid { grid-template-columns: 1fr; }
    .bubble-extra { display: none; }
}
@media (max-width: 560px) {
    .container { padding-inline: var(--sp-5); }
    .feature-grid, .recognize-grid, .cases-grid, .steps, .stats-grid { grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; }
    .hero-actions { gap: var(--sp-3); }
    .phone { width: 280px; }
    .float-card { display: none; }
    .guarantee-card { padding: var(--sp-10) var(--sp-6); }
    .form-card { padding: var(--sp-6); }
    .footer-top { flex-direction: column; }
    .recognize-card { padding: var(--sp-5); }
}
