/* ==========================================================================
   Reserva de Mesa — Landing Page de Apresentação
   style.css : design system + "prints em código" (mockups da interface real)
   Tailwind (CDN) cuida do layout; este arquivo cuida da identidade e dos
   componentes que imitam o painel Blade do sistema.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
    --ink-950: #070B14;
    --ink-900: #0B1220;
    --ink-800: #131C2E;
    --ink-700: #1E293B;

    --brand-400: #ED6972;
    --brand-500: #E10514;
    --brand-600: #BF0411;
    --gold-400: #FBBF24;

    --ok-500: #10B981;
    --ok-050: #ECFDF5;
    --warn-500: #F59E0B;
    --warn-050: #FFFBEB;
    --info-500: #3B82F6;
    --info-050: #EFF6FF;
    --danger-500: #EF4444;
    --danger-050: #FEF2F2;

    --line: rgba(148, 163, 184, .18);
    --radius: 18px;

    --shadow-soft: 0 1px 2px rgba(2, 6, 23, .06), 0 12px 32px -12px rgba(2, 6, 23, .18);
    --shadow-lift: 0 40px 80px -32px rgba(2, 6, 23, .55), 0 12px 28px -14px rgba(2, 6, 23, .35);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
    background: #FFFFFF;
    color: #0F172A;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

::selection { background: var(--brand-500); color: #fff; }

.font-display { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; letter-spacing: -.025em; }

/* --------------------------------------------------------------------------
   2. Superfícies e efeitos da página
   -------------------------------------------------------------------------- */
.surface-dark {
    background:
        radial-gradient(900px 480px at 12% -10%, rgba(225, 5, 20, .20), transparent 60%),
        radial-gradient(760px 420px at 88% 8%, rgba(251, 191, 36, .13), transparent 62%),
        linear-gradient(180deg, var(--ink-950) 0%, var(--ink-900) 55%, var(--ink-800) 100%);
}

.grid-lines {
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(720px 420px at 50% 22%, #000 25%, transparent 78%);
    mask-image: radial-gradient(720px 420px at 50% 22%, #000 25%, transparent 78%);
}

.text-gradient {
    /* Fica na família do vermelho da marca. O fim em dourado era herança da
       paleta laranja antiga e deixava a última palavra do H1 fora da marca. */
    background: linear-gradient(100deg, #F9CDD0 0%, #ED6972 38%, #E10514 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

.chip {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .4rem .85rem; border-radius: 999px;
    font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    border: 1px solid rgba(251, 146, 60, .35);
    background: rgba(225, 5, 20, .10);
    color: #F4A8AD;
}

.chip-light {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .38rem .8rem; border-radius: 999px;
    font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
    background: #FDF2F3; color: var(--brand-600); border: 1px solid #F9CDD0;
}

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    font-weight: 650; border-radius: 999px; padding: .95rem 1.7rem;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.995); }

.btn-primary {
    background: linear-gradient(120deg, var(--brand-500), var(--brand-600));
    color: #fff; box-shadow: 0 14px 30px -12px rgba(225, 5, 20, .75);
}
.btn-primary:hover { box-shadow: 0 20px 42px -12px rgba(225, 5, 20, .9); transform: translateY(-2px); }

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, .22); color: #E2E8F0; background: rgba(255, 255, 255, .04);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .1); transform: translateY(-2px); }

.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }

/* Navbar: tema claro/escuro conforme o scroll (classe .is-solid via main.js) */
#topbar .nav-text { color: #fff; transition: color .3s ease; }
/* "de Mesa" acompanha o tema da barra: tom claro no fundo escuro, tom cheio
   no fundo branco (brand-400 sobre branco teria contraste fraco demais). */
#topbar .nav-accent { color: var(--brand-400); transition: color .3s ease; }
#topbar.is-solid .nav-accent { color: var(--brand-500); }
#topbar .nav-links a,
#topbar .nav-link { color: #CBD5E1; transition: color .3s ease; }
#topbar .nav-links a:hover,
#topbar .nav-link:hover { color: var(--brand-400); }
#topbar .nav-burger { color: #fff; border-color: rgba(255, 255, 255, .18); transition: color .3s ease, border-color .3s ease; }

#topbar.is-solid {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, .9);
    box-shadow: 0 10px 30px -22px rgba(2, 6, 23, .45);
}
#topbar.is-solid .nav-text { color: #0F172A; }
#topbar.is-solid .nav-links a,
#topbar.is-solid .nav-link { color: #475569; }
#topbar.is-solid .nav-links a:hover,
#topbar.is-solid .nav-link:hover { color: var(--brand-600); }
#topbar.is-solid .nav-burger { color: #0F172A; border-color: #E2E8F0; }

.card-soft {
    background: #fff; border: 1px solid #E9EEF5; border-radius: var(--radius);
    box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card-soft:hover { transform: translateY(-4px); box-shadow: 0 28px 56px -28px rgba(2, 6, 23, .3); border-color: #F9CDD0; }

.card-glass {
    background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius); backdrop-filter: blur(10px);
}

/* Revelação no scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
    .pulse-dot::after, .marquee__track { animation: none !important; }
}

/* --------------------------------------------------------------------------
   3. "PRINTS EM CÓDIGO" — moldura de navegador / app
   -------------------------------------------------------------------------- */
.shot {
    background: #F1F5F9;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    font-size: 12px;
    line-height: 1.45;
    color: #263043;
}
.shot--floating { transition: transform .4s cubic-bezier(.22, 1, .36, 1); }
.shot--floating:hover { transform: translateY(-6px); }

.shot__bar {
    display: flex; align-items: center; gap: .5rem;
    padding: .55rem .8rem;
    background: linear-gradient(180deg, #F8FAFC, #EEF2F7);
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}
.shot__dots { display: flex; gap: .3rem; }
.shot__dots i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.shot__dots i:nth-child(1) { background: #FF5F57; }
.shot__dots i:nth-child(2) { background: #FEBC2E; }
.shot__dots i:nth-child(3) { background: #28C840; }
.shot__url {
    flex: 1; margin-left: .4rem; padding: .22rem .7rem;
    background: #fff; border: 1px solid rgba(15, 23, 42, .08); border-radius: 999px;
    font-size: 10.5px; color: #64748B; letter-spacing: .01em;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.shot__app { display: flex; min-height: 240px; background: #F2F5F9; }

/* Sidebar do painel (ArchitectUI-like) */
.shot__side {
    width: 168px; flex-shrink: 0; padding: .75rem .55rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #F6F8FC 100%);
    border-right: 1px solid rgba(15, 23, 42, .07);
}
.shot__brand { display: flex; align-items: center; gap: .45rem; padding: .2rem .45rem .8rem; }
.shot__brand span { font-weight: 800; font-size: 11.5px; color: #0F172A; letter-spacing: -.02em; }
/* Ícone real da marca no mockup do app (antes era um quadrado com "R"). */
.shot__logo { width: 20px; height: 20px; flex-shrink: 0; object-fit: contain; }
.nav-head { font-size: 8.5px; text-transform: uppercase; letter-spacing: .13em; color: #94A3B8; padding: .55rem .5rem .3rem; font-weight: 700; }
.nav-i {
    display: flex; align-items: center; gap: .5rem;
    padding: .38rem .5rem; border-radius: 8px; color: #475569; font-size: 11px; font-weight: 500;
}
.nav-i b { width: 5px; height: 5px; border-radius: 50%; background: #CBD5E1; flex-shrink: 0; }
.nav-i--on { background: linear-gradient(90deg, rgba(225, 5, 20, .14), rgba(225, 5, 20, .02)); color: var(--brand-600); font-weight: 700; }
.nav-i--on b { background: var(--brand-500); box-shadow: 0 0 0 3px rgba(225, 5, 20, .18); }

/* Conteúdo do painel */
.shot__main { flex: 1; min-width: 0; }
.shot__top {
    display: flex; align-items: center; justify-content: space-between; gap: .6rem;
    padding: .6rem .85rem; background: #fff; border-bottom: 1px solid rgba(15, 23, 42, .07);
}
.shot__title { font-weight: 800; font-size: 12.5px; color: #0F172A; letter-spacing: -.01em; }
.shot__sub { font-size: 10px; color: #94A3B8; }
.shot__avatar {
    width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #334155, #0F172A); color: #fff;
    display: grid; place-items: center; font-size: 9.5px; font-weight: 700;
}
.shot__content { padding: .85rem; display: grid; gap: .7rem; }

/* Cards internos */
.pcard { background: #fff; border: 1px solid rgba(15, 23, 42, .08); border-radius: 10px; box-shadow: 0 1px 2px rgba(15, 23, 42, .04); overflow: hidden; }
.pcard__head {
    display: flex; align-items: center; justify-content: space-between; gap: .5rem;
    padding: .5rem .7rem; border-bottom: 1px solid rgba(15, 23, 42, .07);
    font-weight: 700; font-size: 11px; color: #1E293B;
}
.pcard__head .ico { color: var(--brand-500); }
.pcard__body { padding: .7rem; }

/* KPIs */
.kpi { text-align: center; padding: .55rem .3rem; border-radius: 10px; background: #fff; border: 1px solid rgba(15, 23, 42, .07); }
.kpi__n { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; color: #0F172A; line-height: 1.1; letter-spacing: -.03em; }
.kpi__l { font-size: 9.5px; color: #64748B; text-transform: uppercase; letter-spacing: .07em; font-weight: 600; margin-top: .15rem; }
.kpi__d { font-size: 9px; color: #94A3B8; margin-top: .1rem; }

/* Tabelas (imitando .table-striped do painel) */
.ptable { width: 100%; border-collapse: collapse; font-size: 10.8px; }
.ptable th {
    text-align: left; font-size: 9px; text-transform: uppercase; letter-spacing: .08em;
    color: #64748B; font-weight: 700; padding: .45rem .5rem; border-bottom: 1px solid rgba(15, 23, 42, .1);
    background: #F8FAFC; white-space: nowrap;
}
.ptable td { padding: .45rem .5rem; border-bottom: 1px solid rgba(15, 23, 42, .06); color: #334155; white-space: nowrap; }
.ptable tbody tr:nth-child(even) { background: #FBFCFE; }
.ptable tbody tr.is-done { background: var(--ok-050); }
.ptable tbody tr:hover { background: #FDF2F3; }
.ptable .cli { font-weight: 700; color: #0F172A; }
.ptable td .mut { color: #94A3B8; font-size: 9.5px; display: block; }

/* Badges de status */
.pb {
    display: inline-flex; align-items: center; gap: .3rem;
    padding: .12rem .5rem; border-radius: 999px; font-size: 9.5px; font-weight: 700; letter-spacing: .01em;
    border: 1px solid transparent; white-space: nowrap;
}
.pb::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.pb--ok { background: var(--ok-050); color: #047857; border-color: #A7F3D0; }
.pb--warn { background: var(--warn-050); color: #B45309; border-color: #FDE68A; }
.pb--info { background: var(--info-050); color: #1D4ED8; border-color: #BFDBFE; }
.pb--danger { background: var(--danger-050); color: #B91C1C; border-color: #FECACA; }
.pb--mut { background: #F1F5F9; color: #475569; border-color: #E2E8F0; }

/* Botõezinhos do painel */
.pbtn {
    display: inline-flex; align-items: center; gap: .25rem;
    padding: .2rem .55rem; border-radius: 999px; font-size: 9.5px; font-weight: 700;
    border: 1.5px solid currentColor; background: #fff; cursor: pointer; line-height: 1.5;
}
.pbtn--ok { color: #059669; }
.pbtn--ok:hover { background: var(--ok-050); }
.pbtn--info { color: #2563EB; }
.pbtn--info:hover { background: var(--info-050); }
.pbtn--brand { color: var(--brand-600); }
.pbtn--brand:hover { background: #FDF2F3; }
.pbtn--solid { background: var(--brand-500); border-color: var(--brand-500); color: #fff; }
.pbtn--solid:hover { background: var(--brand-600); }

.pselect {
    display: inline-flex; align-items: center; gap: .3rem;
    padding: .15rem .45rem; border: 1px solid #CBD5E1; border-radius: 6px;
    background: #fff; font-size: 10px; color: #334155; font-weight: 600;
}
.pselect::after { content: '▾'; color: #94A3B8; font-size: 8px; }

/* --------------------------------------------------------------------------
   4. Componentes específicos dos mockups
   -------------------------------------------------------------------------- */

/* Gráfico de barras (faturamento) */
.chart { display: flex; align-items: flex-end; gap: 6px; height: 108px; padding-top: .4rem; }
.chart__col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.chart__bar {
    width: 100%; border-radius: 5px 5px 2px 2px; min-height: 4px;
    background: linear-gradient(180deg, #F4A8AD, var(--brand-500));
    transition: height 1s cubic-bezier(.22, 1, .36, 1);
    position: relative;
}
.chart__col--peak .chart__bar { background: linear-gradient(180deg, var(--gold-400), var(--brand-600)); box-shadow: 0 6px 14px -6px rgba(191, 4, 17, .8); }
.chart__x { font-size: 8.5px; color: #94A3B8; font-weight: 600; }

/* Sparkline / linha de ocupação */
.spark { display: flex; align-items: flex-end; gap: 3px; height: 40px; }
.spark i { flex: 1; background: #E2E8F0; border-radius: 2px; display: block; }
.spark i.on { background: var(--brand-400); }

/* Mapa de mesas */
.tables-map { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: .4rem; }
.tmesa {
    position: relative; aspect-ratio: 1 / 1; border-radius: 9px; display: grid; place-items: center;
    font-size: 10px; font-weight: 800; cursor: pointer; user-select: none;
    border: 1.5px solid #CBD5E1; background: #fff; color: #64748B;
    transition: transform .18s ease, box-shadow .18s ease;
}
.tmesa:hover { transform: translateY(-2px); box-shadow: 0 8px 16px -8px rgba(2, 6, 23, .35); }
.tmesa small { display: block; font-size: 7.5px; font-weight: 600; opacity: .8; letter-spacing: .03em; }
.tmesa--livre { border-color: #A7F3D0; background: var(--ok-050); color: #047857; }
.tmesa--reservada { border-color: #FDE68A; background: var(--warn-050); color: #B45309; }
.tmesa--ocupada { border-color: #F4A8AD; background: #FFF0F1; color: var(--brand-600); }
.tmesa--bloqueada { border-color: #E2E8F0; background: #F8FAFC; color: #94A3B8; }

.legend { display: flex; flex-wrap: wrap; gap: .55rem; font-size: 9.5px; color: #64748B; font-weight: 600; }
.legend i { width: 8px; height: 8px; border-radius: 3px; display: inline-block; margin-right: .25rem; vertical-align: middle; }

/* Fila de espera */
.qrow {
    display: flex; align-items: center; gap: .55rem;
    padding: .5rem .6rem; border: 1px solid rgba(15, 23, 42, .08); border-radius: 10px; background: #fff;
}
.qrow + .qrow { margin-top: .4rem; }
.qrow--calling { border-color: #F4A8AD; background: linear-gradient(90deg, #FDF2F3, #fff); }
.qpos {
    width: 24px; height: 24px; flex-shrink: 0; border-radius: 8px; display: grid; place-items: center;
    background: #0F172A; color: #fff; font-size: 10.5px; font-weight: 800;
}
.qrow--calling .qpos { background: linear-gradient(135deg, var(--brand-500), var(--gold-400)); }
.qname { font-weight: 700; font-size: 11px; color: #0F172A; }
.qmeta { font-size: 9.5px; color: #94A3B8; }
.qtimer { font-variant-numeric: tabular-nums; font-weight: 700; font-size: 10.5px; color: #475569; }

/* Bolha de WhatsApp */
.wa { background: #ECE5DD; border-radius: 10px; padding: .6rem; display: grid; gap: .4rem; }
.wa__b {
    max-width: 88%; padding: .4rem .55rem; border-radius: 8px; font-size: 10.5px; line-height: 1.45;
    background: #fff; color: #1F2937; box-shadow: 0 1px 1px rgba(0, 0, 0, .08); position: relative;
}
.wa__b--me { margin-left: auto; background: #DCF8C6; }
.wa__t { display: block; text-align: right; font-size: 8.5px; color: #7C8B99; margin-top: .15rem; }
.wa__b--me .wa__t::after { content: ' ✓✓'; color: #34B7F1; }

/* Formulário público de reserva */
.pform { display: grid; gap: .5rem; }
.pfield { display: grid; gap: .18rem; }
.pfield label { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: #94A3B8; font-weight: 700; }
.pinput {
    border: 1px solid #CBD5E1; border-radius: 7px; padding: .35rem .5rem; background: #fff;
    font-size: 10.5px; color: #1E293B; font-weight: 600; display: flex; align-items: center; justify-content: space-between;
}
.pinput--focus { border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(225, 5, 20, .16); }
.pinput span.ph { color: #94A3B8; font-weight: 500; }

/* Mini calendário */
.cal { background: #fff; border: 1px solid rgba(15, 23, 42, .1); border-radius: 9px; padding: .5rem; box-shadow: 0 10px 24px -14px rgba(2, 6, 23, .5); }
.cal__h { display: flex; justify-content: space-between; align-items: center; font-size: 10px; font-weight: 800; color: #0F172A; margin-bottom: .35rem; }
.cal__g { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.cal__g span { font-size: 8px; color: #94A3B8; font-weight: 700; padding: .1rem 0; }
.cal__g b {
    font-size: 9.5px; font-weight: 600; color: #334155; padding: .2rem 0; border-radius: 5px; cursor: default;
}
.cal__g b.off { color: #CBD5E1; text-decoration: line-through; }
.cal__g b.on { background: #FDF2F3; color: var(--brand-600); font-weight: 800; }
.cal__g b.sel { background: var(--brand-500); color: #fff; font-weight: 800; box-shadow: 0 4px 10px -4px rgba(225, 5, 20, .9); }

/* Cardápio digital + QR */
.qr { display: grid; grid-template-columns: repeat(21, 1fr); width: 96px; height: 96px; gap: 0; background: #fff; padding: 5px; border-radius: 8px; border: 1px solid #E2E8F0; }
.qr i { display: block; width: 100%; aspect-ratio: 1/1; }
.qr i.k { background: #0F172A; }

.menu-row { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .35rem 0; border-bottom: 1px dashed rgba(15, 23, 42, .12); }
.menu-row:last-child { border-bottom: 0; }
.menu-row b { font-size: 10.5px; color: #0F172A; font-weight: 700; }
.menu-row span { font-size: 9.5px; color: #94A3B8; display: block; font-weight: 500; }
.menu-row em { font-style: normal; font-weight: 800; font-size: 10.5px; color: var(--brand-600); }

/* NPS gauge */
.gauge { width: 104px; height: 104px; border-radius: 50%; display: grid; place-items: center; position: relative; }
.gauge::after {
    content: ''; position: absolute; inset: 11px; background: #fff; border-radius: 50%;
    box-shadow: inset 0 1px 3px rgba(2, 6, 23, .08);
}
.gauge__v { position: relative; z-index: 1; text-align: center; }
.gauge__v b { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: #0F172A; line-height: 1; letter-spacing: -.03em; }
.gauge__v span { font-size: 8.5px; color: #64748B; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }

.meter { height: 6px; border-radius: 999px; background: #EEF2F7; overflow: hidden; }
.meter i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand-400), var(--brand-600)); transition: width 1.1s cubic-bezier(.22, 1, .36, 1); }
.meter--ok i { background: linear-gradient(90deg, #34D399, #059669); }

/* Progresso de campanha (mensagem em massa) */
.prog-l { display: flex; justify-content: space-between; font-size: 9.5px; color: #64748B; font-weight: 600; margin-bottom: .2rem; }

/* Checklist */
.chk { display: flex; align-items: flex-start; gap: .45rem; padding: .3rem 0; font-size: 10.5px; color: #334155; }
.chk i {
    width: 13px; height: 13px; border-radius: 4px; border: 1.5px solid #CBD5E1; flex-shrink: 0; margin-top: 1px;
    display: grid; place-items: center; font-size: 8px; color: #fff; font-style: normal; font-weight: 900;
}
.chk--done i { background: var(--ok-500); border-color: var(--ok-500); }
.chk--done i::after { content: '✓'; }
.chk--fail i { background: var(--danger-500); border-color: var(--danger-500); }
.chk--fail i::after { content: '✕'; }

/* Ponto pulsante "ao vivo" */
.pulse-dot { position: relative; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--ok-500); }
.pulse-dot::after {
    content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--ok-500);
    animation: pulse 1.9s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(3.2); opacity: 0; } }

/* Toast flutuante sobre o mockup do hero */
.toast {
    position: absolute; display: flex; align-items: center; gap: .55rem;
    padding: .6rem .8rem; border-radius: 12px; background: rgba(255, 255, 255, .97);
    box-shadow: 0 24px 48px -22px rgba(2, 6, 23, .7); border: 1px solid rgba(15, 23, 42, .08);
    font-size: 11.5px; color: #0F172A; font-weight: 600; backdrop-filter: blur(8px);
    animation: floaty 5.5s ease-in-out infinite;
}
.toast small { display: block; font-size: 9.5px; color: #64748B; font-weight: 500; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* --------------------------------------------------------------------------
   5. Marquee de logos (prova social)
   -------------------------------------------------------------------------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: slide 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   6. FAQ
   -------------------------------------------------------------------------- */
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; text-align: left; padding: 1.15rem 1.35rem; font-weight: 700; color: #0F172A; cursor: pointer; }
.faq__i { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: #FDF2F3; color: var(--brand-600); font-weight: 800; transition: transform .3s ease; }
.faq.is-open .faq__i { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.22, 1, .36, 1); }
.faq__a p { padding: 0 1.35rem 1.3rem; color: #475569; line-height: 1.65; }

/* --------------------------------------------------------------------------
   7. Ajustes responsivos dos mockups
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .toast { display: none; }
}
@media (max-width: 640px) {
    .shot { font-size: 11px; }
    .shot__side { display: none; }
    .shot__content { padding: .6rem; }
    .tables-map { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* Barras de rolagem discretas dentro dos mockups */
.scroll-x::-webkit-scrollbar { height: 6px; }
.scroll-x::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 999px; }
.scroll-x::-webkit-scrollbar-track { background: transparent; }
