/* ==========================================================================
   Multiverso — Landing Page Google Ads
   ========================================================================== */

:root {
  --bg: #000000;
  --surface: #0D0D0F;
  --surface-2: #141416;
  --surface-3: #1A1A1D;
  --line: #1F1F22;
  --line-2: #2A2A2E;
  --text: #F2F2F2;
  --text-2: #E5E5EA;
  --muted: #A1A1A6;
  --dim: #8A8A8F;
  --red: #E8183A;
  --red-cta: #D3122F;
  --red-cta-hover: #B80F29;
  --red-soft: #FF4D66;
  --red-bg: #1F0A0E;
  --red-bg-2: #140609;
  --red-line: #3A1219;
  --red-line-2: #5A1622;
  --light: #F2F0ED;
  --light-line: #E0DDD8;
  --ink: #0A0A0B;
  --ink-2: #4A4A50;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --radius: 24px;
  --radius-sm: 12px;
  --container: 1200px;
  --gutter: 24px;
  --section: 112px;
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: var(--red-soft); }
a:hover { color: #FF7A8C; }
button, input, select { font: inherit; }
:focus-visible { outline: 2px solid var(--red-soft); outline-offset: 3px; border-radius: 4px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; background: var(--text); color: var(--bg); border-radius: 8px; font-weight: 600; text-decoration: none; }
.skip:focus { top: 16px; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }

/* Ícones ----------------------------------------------------------------- */
.ic { width: 18px; height: 18px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ic--lg { width: 24px; height: 24px; }
.ic--xl { width: 26px; height: 26px; }
.ic--red { color: var(--red-soft); }
.ic--quote { width: 32px; height: 32px; color: var(--red); }

/* Utilitários de texto ------------------------------------------------------ */
.label-mono { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dim); }
.label-mono--dark { color: #5C5C62; }
.dot { display: inline-block; width: 6px; height: 6px; flex-shrink: 0; border-radius: 999px; background: var(--red); }
.dot--ring { width: 7px; height: 7px; box-shadow: 0 0 0 4px rgba(232, 24, 58, .2); }
.h2 { font-family: var(--mono); font-size: clamp(28px, 3.2vw, 42px); line-height: 1.15; font-weight: 700; letter-spacing: -1px; color: #fff; }
.h2--upper { text-transform: uppercase; font-weight: 800; font-size: clamp(28px, 3.6vw, 48px); }
.h2 em, .elephant__title em { font-style: normal; color: var(--red-soft); font-weight: 800; }
.h2--dark { color: var(--ink); }
.tag { padding: 6px 14px; background: var(--surface-3); border-radius: 999px; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--text); }

/* Botões ------------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 24px; border: 1px solid transparent; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; text-decoration: none; cursor: pointer; transition: background-color .15s, border-color .15s, color .15s, transform .15s; }
.btn:active { transform: translateY(1px); }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: 14px; border-radius: 10px; }
.btn--block { width: 100%; }
.btn--ghost { border-color: var(--line-2); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: #4A4A50; color: #fff; }
.btn--light { background: var(--text); color: #000; }
.btn--light:hover { background: #fff; color: #000; }
.btn--red, .btn--dark { min-height: 56px; font-family: var(--mono); font-size: 15px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.btn--red { background: var(--red-cta); color: #fff; }
.btn--red:hover { background: var(--red-cta-hover); color: #fff; }
.btn--dark { background: #000; color: #fff; }
.btn--dark:hover { background: #1A1A1D; color: #fff; }
.btn--outline-light { min-height: 52px; border-color: rgba(255,255,255,.6); color: #fff; }
.btn--outline-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

/* Header ------------------------------------------------------------------- */
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(0,0,0,.85); backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--surface-2); }
.topbar__inner { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar__logo img { height: 30px; width: auto; }
.topbar__actions { display: flex; gap: 12px; align-items: center; }

/* Hero --------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: 48px 0 64px; background-color: var(--bg); background-image: radial-gradient(circle, #1C1C20 1px, transparent 1.5px); background-size: 28px 28px; }
.hero__orbit { position: absolute; width: 980px; height: 900px; right: -260px; top: -120px; pointer-events: none; }
.hero__glow { position: absolute; right: 80px; top: 80px; width: 560px; height: 560px; border-radius: 999px; background: radial-gradient(circle, rgba(232,24,58,.22), transparent 65%); pointer-events: none; }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 500px; gap: 64px; align-items: start; }
.hero__copy { display: flex; flex-direction: column; gap: 26px; padding-top: 28px; }
.pill { align-self: flex-start; display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; background: var(--surface-2); border: 1px solid var(--line-2); border-radius: 999px; font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.hero__title { font-family: var(--mono); font-size: clamp(28px, 3.5vw, 50px); line-height: 1.12; letter-spacing: -1px; text-transform: uppercase; }
.hero__title strong { display: block; font-weight: 800; color: #fff; }
.hero__title span { display: block; font-weight: 400; color: #D1D1D6; }
.hero__sub { max-width: 600px; font-size: 19px; color: var(--muted); }
.hero__mobile-cta { display: none; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid var(--line-2); border-radius: 10px; background: var(--surface); font-size: 14px; color: var(--text-2); }
.brands { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; padding-top: 26px; border-top: 1px solid var(--line); }
.brands .label-mono { font-size: 11px; }
.brands__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.brand { height: 56px; display: flex; align-items: center; justify-content: center; padding: 8px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); font-family: var(--mono); font-weight: 700; font-size: 14px; text-transform: uppercase; color: #D1D1D6; }
.brand img { max-height: 34px; max-width: 100%; width: auto; height: auto; object-fit: contain; opacity: .9; transition: opacity .15s; }
.brand img:hover { opacity: 1; }
.brand--placeholder { border-style: dashed; border-color: var(--line-2); font-size: 11px; font-weight: 400; color: var(--dim); }
.brand { text-align: center; line-height: 1.2; }

/* Formulário ----------------------------------------------------------------- */
.lead-form { position: relative; display: flex; flex-direction: column; gap: 16px; padding: 36px 40px 32px; background: rgba(13,13,15,.94); border: 1px solid var(--line-2); border-top: 3px solid var(--red); border-radius: var(--radius); box-shadow: 0 30px 80px rgba(232,24,58,.18); scroll-margin-top: 100px; }
.badge { align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: #2A0B11; border-radius: 999px; font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--red-soft); }
.badge .ic { width: 12px; height: 12px; stroke-width: 2.5; }
.lead-form__title { font-family: var(--mono); font-size: 25px; line-height: 1.2; font-weight: 800; letter-spacing: -.5px; text-transform: uppercase; color: #fff; }
.lead-form__sub { margin-top: -6px; font-size: 15px; line-height: 1.55; color: var(--muted); }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; min-width: 0; }
.field label { margin-bottom: 6px; font-size: 13px; font-weight: 500; color: #C7C7CC; }
.field .opt { color: var(--dim); font-weight: 400; }
.field input, .field select { width: 100%; height: 48px; padding: 0 14px; border: 1px solid var(--line-2); border-radius: 10px; background: var(--surface-2); color: var(--text); font-size: 16px; transition: border-color .15s, box-shadow .15s; }
.field select { appearance: none; -webkit-appearance: none; padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23A1A1A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field select:invalid { color: #6E6E73; }
.field option { color: var(--text); background: var(--surface-2); }
.field input::placeholder { color: #6E6E73; }
.field input:hover, .field select:hover { border-color: #3A3A40; }
.field input:focus, .field select:focus { outline: none; border-color: var(--red-soft); box-shadow: 0 0 0 3px rgba(255,77,102,.2); }
.field.is-invalid input, .field.is-invalid select { border-color: var(--red-soft); }
.field__error { min-height: 0; margin-top: 4px; font-size: 12.5px; color: var(--red-soft); }
.field__error:empty { display: none; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.lead-form .btn { margin-top: 4px; position: relative; }
.spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 999px; animation: spin .7s linear infinite; }
.lead-form.is-loading .btn { pointer-events: none; opacity: .85; }
.lead-form.is-loading .btn .ic { display: none; }
.lead-form.is-loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.lead-form__status { font-size: 14px; text-align: center; }
.lead-form__status:empty { display: none; }
.lead-form__status.is-error { color: var(--red-soft); }
.lead-form__status.is-success { color: #7BE3A0; }
.lead-form__legal { display: flex; justify-content: center; align-items: center; gap: 6px; font-size: 13px; color: var(--dim); text-align: center; }
.lead-form__legal .ic { width: 14px; height: 14px; }
.lead-form__recaptcha { font-size: 11px; line-height: 1.5; color: #6E6E73; text-align: center; }
.lead-form__recaptcha a { color: var(--dim); }
.grecaptcha-badge { visibility: hidden !important; } /* permitido pelo Google quando o aviso acima está visível */

/* Resultados ----------------------------------------------------------------- */
.stats-wrap { margin-top: 0; }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 40px 48px; background: #0A0A0B; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: inset 0 1px 0 rgba(232,24,58,.35); }
.stats li { display: flex; flex-direction: column; gap: 10px; padding: 0 32px; border-right: 1px solid var(--line); }
.stats li:first-child { padding-left: 0; }
.stats li:last-child { padding-right: 0; border-right: 0; }
.stats strong { font-family: var(--mono); font-size: clamp(28px, 3.2vw, 46px); line-height: 1; font-weight: 800; color: #fff; }
.stats span { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: var(--muted); }

/* Seções ------------------------------------------------------------------- */
.section { padding-block: var(--section); }
.section--flush { padding-top: 0; }
.section__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.section__head--row { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 24px; }
.section__head--row > div { display: flex; flex-direction: column; gap: 14px; }
.section__head--center { align-items: center; text-align: center; gap: 18px; margin-bottom: 56px; }
.section__lead { max-width: 760px; font-size: 18px; color: var(--muted); }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.card__title { font-family: var(--mono); font-size: 20px; line-height: 1.3; font-weight: 700; text-transform: uppercase; color: #fff; }
.card__text { font-size: 16px; line-height: 1.6; color: var(--muted); }
.card--icon { display: flex; flex-direction: column; gap: 16px; }
.icon-box { width: 52px; height: 52px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; background: var(--red-bg); border: 1px solid var(--red-line); color: var(--red-soft); }
.icon-box--lg { width: 56px; height: 56px; border-radius: 16px; }

/* Elefante */
.elephant { position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; gap: 28px; margin-bottom: 20px; padding: 88px 120px; text-align: center; background: #050505; border: 1px solid var(--line); border-radius: 28px; }
.elephant > *:not(svg) { position: relative; }
.elephant__orbit { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.elephant__title { max-width: 820px; font-family: var(--mono); font-size: clamp(28px, 4vw, 56px); line-height: 1.12; font-weight: 400; letter-spacing: -1px; text-transform: uppercase; color: #fff; }
.elephant__text { max-width: 640px; font-size: 18px; color: var(--muted); }

/* Serviços */
.service { display: flex; flex-direction: column; gap: 18px; padding: 36px; }
.service__top { display: flex; justify-content: space-between; align-items: center; }
.service__num { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--dim); }
.service__title { font-family: var(--mono); font-size: 24px; line-height: 1.2; font-weight: 700; color: #fff; }
.checklist { display: flex; flex-direction: column; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.checklist li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--text-2); }
.checklist .ic { width: 16px; height: 16px; stroke-width: 2.5; }
/* Ordem dos serviços por grupo de anúncio */
.services { counter-reset: svc; }
.service--midia { order: 1; } .service--marca { order: 2; } .service--tech { order: 3; }
body[data-grupo="publicidade"] .service--marca { order: 1; }
body[data-grupo="publicidade"] .service--midia { order: 2; }
body[data-grupo="trafego"] .service--tech { order: 2; }
body[data-grupo="trafego"] .service--marca { order: 3; }

/* Estratégia + comparativo */
.split { display: grid; grid-template-columns: minmax(0, 1fr) 600px; gap: 20px; }
.statement { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; gap: 28px; padding: 64px 56px; border-radius: 28px; }
.statement > * { position: relative; }
.statement__glow { position: absolute !important; right: -120px; bottom: -120px; width: 360px; height: 360px; border-radius: 999px; background: radial-gradient(circle, rgba(232,24,58,.28), transparent 65%); pointer-events: none; }
.statement__title { font-family: var(--mono); font-size: clamp(19px, 2.1vw, 30px); line-height: 1.3; font-weight: 400; text-transform: uppercase; color: var(--text); }
.statement__title strong { font-weight: 800; color: var(--red-soft); }
.compare-wrap { padding: 0; overflow: hidden; border-radius: 28px; }
.compare { width: 100%; border-collapse: collapse; font-size: 16px; color: var(--text-2); }
.compare thead th { padding: 20px 8px; background: var(--surface-2); font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--dim); text-align: center; }
.compare thead th.is-us { background: #C8102E; color: #fff; }
.compare tbody th { padding: 20px 28px; font-weight: 400; text-align: left; }
.compare td { width: 25%; padding: 20px 8px; color: #6E6E73; }
.compare td .ic { margin-inline: auto; width: 20px; height: 20px; stroke-width: 2.5; }
.compare td.is-us { background: var(--red-bg-2); color: var(--red-soft); }
.compare tbody tr { border-top: 1px solid var(--line); }

/* Cases */
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 13px; font-weight: 700; text-transform: uppercase; text-decoration: none; white-space: nowrap; }
.case { display: flex; flex-direction: column; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.case__media { --foto: none; height: 340px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; padding: 28px; background: linear-gradient(180deg, rgba(0,0,0,.05) 20%, rgba(0,0,0,.9) 100%), var(--foto) center / cover no-repeat, var(--surface-3); }
.case__client { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #C7C7CC; }
.case__number { font-family: var(--mono); font-size: clamp(36px, 3.2vw, 46px); line-height: 1; font-weight: 800; color: #fff; }
.case__metric { font-family: var(--mono); font-size: 15px; font-weight: 700; text-transform: uppercase; color: var(--red-soft); }
.case__body { display: flex; flex-direction: column; gap: 12px; padding: 24px 28px 28px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span { padding: 4px 10px; border-radius: 999px; background: var(--surface-3); font-size: 12px; color: #C7C7CC; }

/* Diferenciais */
.feature { display: flex; gap: 20px; align-items: flex-start; padding: 36px; border-radius: 20px; }
.feature > div { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.feature__title { font-family: var(--mono); font-size: 21px; line-height: 1.3; font-weight: 700; color: #fff; }
.feature__chip { margin-top: 6px; padding: 6px 12px; border: 1px solid var(--red-line-2); background: var(--red-bg-2); border-radius: 8px; font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--red-soft); }

/* Processo */
.process { background: var(--light); color: var(--ink); }
.step { display: flex; flex-direction: column; gap: 14px; padding: 32px; background: #fff; border: 1px solid var(--light-line); border-radius: var(--radius); }
.step__top { display: flex; justify-content: space-between; align-items: center; }
.step__icon { width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; background: var(--ink); color: #fff; }
.step__icon--red { background: #C8102E; }
.step__num { font-family: var(--mono); font-size: 13px; font-weight: 700; color: #6E6E73; }
.step__title { font-family: var(--mono); font-size: 19px; font-weight: 700; text-transform: uppercase; color: var(--ink); }
.step p { font-size: 15px; color: var(--ink-2); }

/* Depoimentos */
.quote { display: flex; flex-direction: column; gap: 20px; }
.quote--alt { background: var(--red-bg-2); border-color: var(--red-line-2); }
.quote__top { display: flex; justify-content: space-between; align-items: center; }
.quote__logo { width: 64px; height: 64px; flex-shrink: 0; border-radius: 999px; overflow: hidden; background: #fff; box-shadow: 0 0 0 1px var(--line-2), 0 0 0 4px rgba(255,255,255,.04); }
.quote__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quote__who { display: flex; flex-direction: column; gap: 2px; }
.stars { display: flex; gap: 2px; color: #FFB400; }
.stars .ic { width: 14px; height: 14px; }
.quote blockquote { flex-grow: 1; font-size: 18px; line-height: 1.55; color: var(--text); }
.quote figcaption { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.quote--alt figcaption { border-top-color: var(--red-line-2); }
.quote strong { font-size: 15px; color: #fff; }
.quote small { font-size: 13px; color: var(--muted); }
.avatar { width: 44px; height: 44px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: #C8102E; font-family: var(--mono); font-size: 14px; font-weight: 700; color: #fff; }
.avatar--gray { background: var(--line-2); }

/* CTA */
.cta { position: relative; overflow: hidden; display: flex; justify-content: space-between; align-items: center; gap: 48px; padding: 72px 64px; background: #C8102E; border-radius: 28px; color: #fff; }
.cta__orbit { position: absolute; width: 700px; height: 500px; right: -120px; top: -60px; pointer-events: none; }
.cta__copy, .cta__actions { position: relative; }
.cta__copy { display: flex; flex-direction: column; gap: 16px; max-width: 680px; }
.cta__title { font-family: var(--mono); font-size: clamp(22px, 2.6vw, 36px); line-height: 1.2; font-weight: 700; letter-spacing: -.5px; text-transform: uppercase; }
.cta__copy p { font-size: 17px; color: #FFE3E7; }
.cta__actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: 380px minmax(0, 1fr); gap: 80px; }
.faq-wrap__head { display: flex; flex-direction: column; gap: 14px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 24px; font-weight: 700; color: #fff; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq__icon { width: 32px; height: 32px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--red-bg); color: var(--red-soft); transition: transform .2s; }
.faq__icon .ic { width: 16px; height: 16px; stroke-width: 2.5; }
.faq details[open] .faq__icon { transform: rotate(45deg); }
.faq details p { padding: 0 24px 22px; font-size: 15px; color: var(--muted); }

/* Footer */
.footer { margin-top: 0; border-top: 1px solid var(--line); padding: 48px 0 56px; font-size: 14px; line-height: 1.7; color: var(--dim); }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.footer img { height: 26px; width: auto; margin-bottom: 10px; }
.footer__right { text-align: right; }
.footer a { color: var(--text); }

/* WhatsApp flutuante */
.float-whats { position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: #1FAF54; color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.4); transition: transform .15s; }
.float-whats:hover { color: #fff; transform: scale(1.06); }

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 1180px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) 440px; gap: 40px; }
  .lead-form { padding: 32px; }
  .split { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .elephant { padding: 72px 48px; }
}

@media (max-width: 960px) {
  :root { --section: 72px; }
  .hero__grid { grid-template-columns: 1fr; }
  .lead-form { max-width: 620px; }
  .hero__mobile-cta { display: inline-flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 0; padding: 28px; }
  .stats li:nth-child(2) { border-right: 0; padding-right: 0; }
  .stats li:nth-child(3) { padding-left: 0; }
  .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .cta { flex-direction: column; align-items: stretch; padding: 48px 32px; gap: 28px; }
  .cta__actions .btn { width: 100%; }
}

@media (max-width: 640px) {
  :root { --gutter: 16px; --section: 56px; --radius: 20px; }
  body { font-size: 15px; }
  .topbar__inner { height: 64px; }
  .topbar__logo img { height: 22px; }
  .topbar__cta { display: none; }
  .hero { padding: 28px 0 40px; background-size: 24px 24px; }
  .hero__orbit { width: 520px; height: 480px; right: -260px; top: -100px; }
  .hero__glow { right: -140px; top: -80px; width: 340px; height: 340px; }
  .hero__copy { gap: 18px; padding-top: 4px; }
  .hero__sub { font-size: 16px; }
  .chip { padding: 8px 10px; font-size: 12px; }
  .chip .ic { width: 14px; height: 14px; }
  .brands { margin-top: 0; padding-top: 18px; }
  .brands__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .brand { height: 44px; font-size: 12px; }
  .brand img { max-height: 26px; }
  .lead-form { padding: 24px 20px; gap: 14px; }
  .lead-form__title { font-size: 20px; }
  .field-row { grid-template-columns: 1fr; gap: 14px; }
  .stats { padding: 22px 18px; gap: 20px 12px; }
  .stats li { padding: 0; border-right: 0; }
  .stats strong { font-size: 26px; }
  .stats span { font-size: 12px; }
  .elephant { padding: 44px 22px; gap: 20px; border-radius: 22px; }
  .elephant__text { font-size: 15px; }
  .card { padding: 22px; }
  .card--icon { gap: 10px; }
  .card--icon .icon-box { width: 44px; height: 44px; margin-bottom: 4px; }
  .card--icon .card__title { font-size: 16px; }
  .card--icon .card__text { font-size: 14px; }
  .service { padding: 24px 22px; gap: 12px; }
  .service__title { font-size: 21px; }
  .statement { padding: 32px 24px; }
  .compare { font-size: 14px; }
  .compare thead th { padding: 14px 4px; font-size: 10px; }
  .compare tbody th { padding: 14px 12px; }
  .compare td { padding: 14px 4px; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  .case__media { height: 280px; padding: 22px; }
  .case__body { padding: 16px 22px 20px; }
  .feature { padding: 22px; gap: 14px; }
  .feature .icon-box { width: 40px; height: 40px; border-radius: 12px; }
  .feature__title { font-size: 16px; }
  .feature .card__text { font-size: 14px; }
  .grid-4 { grid-template-columns: 1fr; }
  .step { flex-direction: row; flex-wrap: wrap; padding: 20px; gap: 6px 16px; }
  .step__top { flex-basis: 100%; }
  .step__icon { width: 44px; height: 44px; }
  .step__title { font-size: 15px; }
  .quote blockquote { font-size: 16px; }
  .cta { padding: 32px 22px; border-radius: 22px; }
  .cta__orbit { width: 420px; height: 320px; right: -180px; top: -80px; }
  .faq summary { padding: 18px; font-size: 14px; }
  .faq details p { padding: 0 18px 18px; font-size: 14px; }
  .footer__inner { flex-direction: column; }
  .footer__right { text-align: left; }
  .footer { padding-bottom: 96px; }
}

/* Fotos dos cases */
.case__media--primaza { --foto: url('https://multiverso.pro/wp-content/uploads/2026/09/img-primaza.webp'); }
.case__media--tonemed { --foto: url('https://multiverso.pro/wp-content/uploads/2026/09/img-tonemed.webp'); }
.case__media--rypro   { --foto: url('https://multiverso.pro/wp-content/uploads/2026/09/img-rypro.webp'); }

/* Página de obrigado ---------------------------------------------------------- */
.thanks { position: relative; overflow: hidden; padding: 88px 0 96px; background-image: radial-gradient(circle, #1C1C20 1px, transparent 1.5px); background-size: 28px 28px; }
.thanks::before { content: ""; position: absolute; left: 50%; top: 40px; width: 760px; height: 520px; transform: translateX(-50%); background: radial-gradient(closest-side, rgba(232,24,58,.2), transparent); pointer-events: none; }
.thanks__orbit { position: absolute; left: 50%; top: 20px; width: 980px; height: 600px; transform: translateX(-50%); pointer-events: none; }
.thanks__inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; max-width: 760px; }
.thanks__icon { width: 76px; height: 76px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--red-bg); border: 1px solid var(--red-line-2); color: var(--red-soft); box-shadow: 0 0 0 10px rgba(232,24,58,.07); }
.thanks__icon .ic { width: 36px; height: 36px; stroke-width: 2.5; }
.thanks .pill { align-self: center; }
.thanks__title { font-family: var(--mono); font-size: clamp(30px, 4.4vw, 56px); line-height: 1.1; font-weight: 800; letter-spacing: -1px; text-transform: uppercase; }
.thanks__text { font-size: 18px; color: var(--muted); }
.thanks__text strong { color: var(--text); font-weight: 600; }
.thanks__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 8px; }
.next-steps { counter-reset: none; }
.next-step { display: flex; flex-direction: column; gap: 14px; }
.next-step__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.prep { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 48px; align-items: center; padding: 56px; background: var(--surface); border: 1px solid var(--line); border-radius: 28px; }
.prep__copy { display: flex; flex-direction: column; gap: 14px; }
.prep__list { padding-top: 0; border-top: 0; gap: 14px; }
.prep__list li { align-items: flex-start; padding: 14px 16px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; line-height: 1.45; }
.prep__list .ic { margin-top: 2px; }
.social { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; margin-top: 24px; padding-bottom: 96px; }
.social__links { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 960px) {
  .prep { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
}
@media (max-width: 640px) {
  .thanks { padding: 56px 0 64px; }
  .thanks__orbit { width: 620px; height: 400px; }
  .thanks__text { font-size: 16px; }
  .thanks__actions { flex-direction: column; width: 100%; }
  .thanks__actions .btn { width: 100%; }
  .prep { padding: 24px 18px; border-radius: 22px; }
  .prep__list li { font-size: 14px; }
  .social { flex-direction: column; align-items: flex-start; padding-bottom: 56px; }
}

/* Agenda (Calendly) na página de obrigado ------------------------------------------ */
.agenda { display: flex; flex-direction: column; gap: 20px; padding: 40px; background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: 28px; scroll-margin-top: 96px; }
.agenda__head { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.agenda__frame { position: relative; min-height: 700px; border-radius: 16px; overflow: hidden; background: #0D0D0F; }
.agenda__frame iframe { display: block; width: 100%; height: 700px; border: 0; }
.agenda__ok { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border: 1px solid #1F5E3A; background: #0B1F14; border-radius: 12px; color: #7BE3A0; font-weight: 600; }
.agenda__ok[hidden] { display: none; }
.agenda__alt { font-size: 14px; color: var(--dim); text-align: center; }
.agenda__alt span { margin: 0 6px; }
@media (max-width: 640px) {
  .agenda { padding: 22px 14px; border-radius: 22px; }
  .agenda__head { padding: 0 6px; }
  .agenda__frame, .agenda__frame iframe { min-height: 1000px; height: 1000px; }
}

/* Páginas de texto (política) ---------------------------------------------------- */
.legal { padding: 64px 0 96px; }
.legal__inner { max-width: 820px; }
.legal h1 { font-family: var(--mono); font-size: clamp(26px, 3vw, 40px); line-height: 1.2; margin-bottom: 8px; }
.legal h2 { font-family: var(--mono); font-size: 20px; margin: 40px 0 12px; color: #fff; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal .updated { font-size: 14px; color: var(--dim); }
