/* ==========================================================================
   KATSUO ARAKAKI · Terapia Breve · Landing Page
   Design system a partir do manual da marca:
   Paleta  #87AAE2 · #6AA3E3 · #051743 · #CAD6E3 · #E8D1A7 · #FFFFFF
   Títulos: Condor Light/Medium (substituída por Archivo, mesma leveza)
   Corpo:   Roboto Light
   Elementos: círculos/alvos · linhas finas · aspas · texturas discretas
   ========================================================================== */

:root {
  --navy:        #051743;
  --navy-2:      #0A2456;
  --navy-deep:   #02102F;
  --blue:        #6AA3E3;
  --blue-soft:   #87AAE2;
  --blue-ink:    #3D7CCB;   /* azul de leitura sobre fundo claro (contraste AA) */
  --ice:         #CAD6E3;
  --sand:        #E8D1A7;
  --sand-hi:     #F4E3C4;
  --white:       #FFFFFF;
  --wa:          #25D366;   /* verde WhatsApp */
  --wa-hi:       #3BE07A;
  --wa-deep:     #1DB955;

  --tint:        #F1F5FB;   /* fundo de dobras alternadas */
  --tint-2:      #E7EFF9;   /* pills e destaques claros */
  --line:        rgba(202, 214, 227, 0.85);
  --line-dark:   rgba(135, 170, 226, 0.28);

  --ink:         #051743;
  --body:        #2B3A52;
  --body-soft:   #55647C;

  --font-title:  "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body:   "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container:   1180px;
  --read:        760px;
  --mid:         1040px;
  --gutter:      clamp(20px, 5vw, 64px);

  --sec-y:       clamp(72px, 9vw, 132px);
  --radius:      18px;
  --radius-sm:   14px;

  --ease:        cubic-bezier(.2, .8, .2, 1);
  --shadow-card: 0 2px 10px rgba(5, 23, 67, .04);
  --shadow-lift: 0 22px 48px rgba(5, 23, 67, .12);
}

/* ---------- Reset leve ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scrollbar-color: var(--blue) var(--tint); scrollbar-width: thin; }

/* ---------- Barra de rolagem na identidade da marca ---------- */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--tint); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 999px; border: 2px solid var(--tint); }
::-webkit-scrollbar-thumb:hover { background: var(--blue-ink); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, picture, svg, video, iframe { 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(--blue-ink); text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
::selection { background: var(--sand); color: var(--navy); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  padding: 10px 16px; background: var(--navy); color: #fff; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

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

.section { padding-block: var(--sec-y); position: relative; }
.section--white { background: var(--white); }
.section--tint  { background: var(--tint); }
.section--navy  { background: linear-gradient(180deg, var(--navy) 0%, #08204C 100%); color: #fff; }

/* Cabeçalhos de dobra sempre ao centro: pílula, título e linha de apoio */
.section__head { margin-bottom: clamp(36px, 4.5vw, 56px); text-align: center; }
.section__head .eyebrow, .section__head .h2, .section__head .lead { margin-inline: auto; }
.section > .container > .eyebrow { display: flex; margin-inline: auto; }

/* ---------- Tipografia ---------- */
.eyebrow {
  display: inline-flex; align-items: center; width: max-content; max-width: 100%;
  margin-bottom: 20px; padding: 9px 18px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 500; font-size: 11.5px;
  letter-spacing: .22em; text-transform: uppercase; line-height: 1.3;
  color: var(--navy); background: var(--tint-2); border: 1px solid var(--blue-soft);
}
.eyebrow--dark {
  color: var(--ice); background: rgba(135, 170, 226, .14);
  border-color: rgba(135, 170, 226, .55);
}

/* bolinha "online" (sutil) */
.online {
  position: relative; flex: none; width: 8px; height: 8px; margin-right: 10px;
  border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 2px rgba(37, 211, 102, .18);
}
.online::before {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, .7); animation: onlinePulse 2.2s ease-out infinite;
}
@keyframes onlinePulse {
  0%   { transform: scale(.6); opacity: .9; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

.h2 {
  font-family: var(--font-title); font-weight: 400;
  font-size: clamp(28px, 4vw, 48px); line-height: 1.12; letter-spacing: -.012em;
  color: var(--ink); max-width: 860px; text-wrap: pretty;
}
.h2--light { color: #fff; }
.nowrap { white-space: nowrap; }
.h2--rec { max-width: none; }
@media (max-width: 560px) { .h2--rec { font-size: clamp(20px, 6.9vw, 28px); } }
.h2--sm { font-size: clamp(26px, 3vw, 36px); }
.accent { color: var(--blue-ink); font-weight: 500; }
.h2--light .accent { color: var(--blue-soft); }

.lead {
  margin-top: 18px; max-width: 640px;
  font-size: clamp(16px, 1.6vw, 18.5px); line-height: 1.7; text-wrap: pretty; color: var(--body);
}
.section--navy .lead, .lead--light { color: rgba(214, 224, 238, .96); max-width: 680px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 56px; padding: 0 30px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 500; font-size: 16px; letter-spacing: .01em;
  line-height: 1; white-space: nowrap;
  transition: transform .28s var(--ease), box-shadow .28s ease, background .28s ease, color .28s ease;
}
.btn .ico { width: 21px; height: 21px; flex: none; }
.btn:active { transform: translateY(0) scale(.98); }

/* CTA principal · identidade da página: azul da marca, borda translúcida, brilho no hover,
   símbolo do WhatsApp em círculo branco. Para voltar ao verde, troque --cta-bg por var(--wa). */
.btn--wa {
  --cta-bg: linear-gradient(135deg, #1FC65F 0%, #2EDB72 100%);
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--cta-bg); color: var(--navy);
  border: 3px solid rgba(255, 255, 255, .38);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18), 0 14px 34px rgba(37, 211, 102, .3);
  transition: transform .3s ease-in-out, border-color .3s ease-in-out, box-shadow .3s ease-in-out;
}
.btn--wa::before {
  content: ""; position: absolute; top: 0; left: -120px; width: 110px; height: 100%; opacity: .6; pointer-events: none;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, .8), rgba(255, 255, 255, 0) 70%);
}
.btn--wa:hover { color: var(--navy); transform: scale(1.05); border-color: rgba(255, 255, 255, .7); box-shadow: 0 14px 30px rgba(0, 0, 0, .22), 0 18px 40px rgba(37, 211, 102, .4); }
.btn--wa:hover::before { animation: shine 1.5s ease-out infinite; }
.btn__wa {
  flex: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; margin-left: 2px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s ease-in-out;
}
.btn__wa svg { width: 16px; height: 16px; color: #1DB955; }
.btn--wa:hover .btn__wa { transform: translateX(4px); }
@keyframes shine { 0% { left: -120px; } 60% { left: 100%; } 100% { left: 100%; } }

.btn--ghost { color: #fff; border: 1px solid rgba(37, 211, 102, .55); background: rgba(37, 211, 102, .12); }
.btn--ghost:hover { background: rgba(37, 211, 102, .24); color: #fff; border-color: rgba(37, 211, 102, .8); }
.btn--ghost .ico { color: var(--wa); }

.btn--sm { min-height: 42px; padding: 0 18px; font-size: 14px; }
.btn--sm .ico { width: 17px; height: 17px; }
.btn--lg { min-height: 62px; padding: 0 36px; font-size: 17px; }
.btn--xl { min-height: 66px; padding: 0 42px; font-size: 18px; }
.btn--block { width: 100%; }

/* ---------- Bloco CTA ---------- */
.cta { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.cta--center { align-items: center; text-align: center; margin-top: clamp(40px, 5vw, 60px); }
.cta__line { font-weight: 500; font-size: 16px; color: var(--ink); }
.cta__line--gold { color: var(--sand); }
.cta__note { max-width: 520px; font-size: 14.5px; line-height: 1.65; color: var(--body-soft); text-wrap: pretty; font-weight: 400; }

/* ==========================================================================
   01 · HERO
   ========================================================================== */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(168deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy) 100%);
  padding-block: clamp(22px, 3vw, 34px) clamp(56px, 7vw, 96px);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__ring {
  position: absolute; border-radius: 50%;
  background: repeating-radial-gradient(circle at center, rgba(135, 170, 226, .22) 0 1px, rgba(135, 170, 226, 0) 1px 44px);
}
.hero__ring--a { width: 720px; height: 720px; top: -260px; right: -240px; }
.hero__ring--b { width: 520px; height: 520px; bottom: -220px; left: -200px; opacity: .6; }
.hero__glow {
  position: absolute; width: 900px; height: 900px; left: 50%; top: 22%;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(106, 163, 227, .18) 0%, rgba(5, 23, 67, 0) 62%);
}
.hero .container { position: relative; }

/* Topbar */
.topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-bottom: clamp(36px, 5vw, 64px);
}
.brand { display: inline-flex; flex-direction: column; align-items: stretch; gap: 5px; color: #fff; }
.brand__name {
  font-family: var(--font-title); font-weight: 300; line-height: 1;
  font-size: clamp(26px, 3vw, 34px); letter-spacing: .08em; margin-right: -.08em;
}
.brand__surname {
  display: flex; justify-content: space-between; width: 93%; align-self: center;
  font-family: var(--font-body); font-weight: 300; line-height: 1;
  font-size: clamp(11px, 1.3vw, 14px); color: var(--blue-soft);
}
.brand__tag {
  margin-top: 4px; text-align: center; font-weight: 300; font-size: 10.5px;
  letter-spacing: .28em; text-transform: uppercase; color: rgba(202, 214, 227, .85);
}
.topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__meta { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: rgba(202, 214, 227, .8); }

/* Conteúdo */
.hero__content { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero__content .eyebrow { margin-bottom: 26px; }

.hero__title {
  font-family: var(--font-title); font-weight: 300;
  font-size: clamp(30px, 4.6vw, 58px); line-height: 1.1; letter-spacing: -.015em;
  max-width: 1020px; color: #fff; text-wrap: balance;
}
.hero__title .accent { color: var(--blue-soft); font-weight: 500; }

.hero__row {
  width: 100%; margin-top: clamp(34px, 4.5vw, 52px);
  display: flex; flex-direction: column; align-items: center; gap: clamp(28px, 4vw, 40px);
}
.hero__video { width: 100%; max-width: 900px; }
.hero__lead { display: flex; flex-direction: column; align-items: center; max-width: 720px; }
.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7;
  color: rgba(255, 255, 255, .92); text-wrap: pretty; font-weight: 400;
}
.cta--hero { align-items: center; text-align: center; margin-top: 28px; }
.cta--hero .cta__note { color: rgba(202, 214, 227, .9); }

/* Desktop: headline no topo, vídeo à esquerda, sub-headline + CTA ao lado.
   Compacto o suficiente para a dobra inteira (até o botão) caber num notebook 1366/1280 × ~660. */
@media (min-width: 1024px) {
  .hero { padding-top: 16px; }
  .topbar { padding-bottom: 20px; }
  .brand__name { font-size: 28px; }
  .brand__surname { font-size: 11.5px; }
  .brand__tag { font-size: 10px; margin-top: 3px; }
  .hero__content .eyebrow { margin-bottom: 18px; }
  .hero__title { font-size: clamp(34px, 3.3vw, 46px); line-height: 1.08; max-width: 920px; }
  .hero__row {
    display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(36px, 4vw, 56px); align-items: center; text-align: left; margin-top: 26px;
  }
  .hero__video { max-width: none; }
  .hero__lead { align-items: flex-start; max-width: none; }
  .hero__sub { font-size: 16.5px; line-height: 1.65; }
  .cta--hero { align-items: flex-start; text-align: left; margin-top: 20px; gap: 12px; }
  .cred { margin-top: 34px; padding-top: 20px; }
  .hero { padding-bottom: clamp(40px, 5vw, 64px); }
}
@media (min-width: 1024px) and (min-height: 860px) {
  .hero__title { font-size: clamp(36px, 3.6vw, 52px); }
  .hero__row { margin-top: 32px; }
  .topbar { padding-bottom: 32px; }
  .cred { margin-top: 44px; }
}

/* Faixa de credibilidade: pílulas no desktop, checklist compacto no celular */
.cred {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px;
  margin-top: clamp(44px, 6vw, 72px); padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}
.cred li {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  padding: 11px 18px 11px 14px; border-radius: 999px;
  background: rgba(135, 170, 226, .09); border: 1px solid rgba(135, 170, 226, .32);
  font-size: 14.5px; font-weight: 500; letter-spacing: .01em; line-height: 1.2; color: #fff;
  transition: background .3s ease, border-color .3s ease;
}
.cred li:hover { background: rgba(135, 170, 226, .16); border-color: rgba(135, 170, 226, .55); }
.cred__check {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(37, 211, 102, .16); border: 1px solid rgba(37, 211, 102, .55);
  display: inline-flex; align-items: center; justify-content: center;
}
.cred__check svg { width: 11px; height: 11px; }

/* ---------- Vídeo (capa + play) ---------- */
.video {
  position: relative; display: block; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden; background: var(--navy-deep);
  border: 1px solid rgba(135, 170, 226, .3);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .42);
  text-align: left;
}
.video__poster { position: absolute; inset: 0; }
.video__poster img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; transition: transform 1.2s var(--ease); }
.video:hover .video__poster img { transform: scale(1.03); }
.video__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 23, 67, .06) 0%, rgba(5, 23, 67, .05) 45%, rgba(5, 23, 67, .72) 100%);
}
.video__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video__ring {
  position: absolute; width: 88px; height: 88px; border-radius: 50%;
  background: rgba(232, 209, 167, .38); animation: ring 2.6s ease-out infinite;
}
.video__btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 88px; height: 88px; border-radius: 50%; background: rgba(232, 209, 167, .96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35); transition: transform .3s var(--ease), background .3s ease;
}
.video__btn svg { width: 32px; height: 32px; fill: var(--navy); margin-left: 4px; }
.video:hover .video__btn { transform: scale(1.06); background: var(--sand-hi); }
.video__btn--sm { width: 72px; height: 72px; }
.video__btn--sm svg { width: 26px; height: 26px; }
.video__label {
  position: absolute; left: 22px; right: 22px; bottom: 18px;
  font-size: 13px; letter-spacing: .02em; color: rgba(202, 214, 227, .9);
}
.video--pending { cursor: default; }
.video__frame { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: var(--radius); background: #000; }

@keyframes ring {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ==========================================================================
   02 · RECONHECIMENTO
   ========================================================================== */
.recog { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.recog__item {
  position: relative; display: flex; align-items: flex-start; gap: 18px; padding: 24px 26px;
  border-radius: 16px; background: #fff; border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset, 0 6px 22px rgba(5, 23, 67, .05);
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}
.recog__item::before {
  content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 3px; border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--blue-soft), var(--blue));
}
.recog__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--blue-soft); }
.recog__item p { font-size: 16.5px; line-height: 1.6; font-weight: 400; color: var(--body); text-wrap: pretty; }

/* Selo de ícone: leve relevo 3D, suave */
.mark {
  position: relative; flex: none; width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(160deg, #FFFFFF 0%, #EAF1FA 100%);
  border: 1px solid rgba(135, 170, 226, .45);
  box-shadow:
    0 1px 0 #fff inset,
    0 -2px 0 rgba(5, 23, 67, .04) inset,
    0 8px 18px rgba(5, 23, 67, .10),
    0 2px 4px rgba(5, 23, 67, .06);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.mark svg {
  width: 24px; height: 24px; overflow: visible;
  stroke: url(#g-line); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 1px 1px rgba(5, 23, 67, .18));
}
.recog__item:hover .mark { transform: translateY(-2px) rotate(-3deg); box-shadow: 0 1px 0 #fff inset, 0 12px 24px rgba(5, 23, 67, .14); }

.disq {
  margin-top: clamp(40px, 5vw, 64px); padding-top: clamp(30px, 4vw, 44px);
  border-top: 1px solid var(--line); max-width: var(--read); margin-inline: auto;
  display: flex; flex-direction: column; gap: 16px; text-align: center;
}
.disq p { font-size: 16.5px; line-height: 1.78; color: var(--body-soft); text-wrap: pretty; font-weight: 400; }
.disq p:first-child { color: var(--body); font-weight: 500; }

/* ==========================================================================
   03 · O QUE ESTÁ ACONTECENDO
   ========================================================================== */
.prose { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.prose p { font-size: clamp(16px, 1.6vw, 18.5px); line-height: 1.78; text-wrap: pretty; font-weight: 400; }
.prose__pull {
  position: relative; display: inline-flex; align-items: center; gap: 14px; align-self: center; max-width: 100%; text-align: left;
  margin: 6px 0; padding: 16px 28px 16px 22px; border-radius: 999px;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  border: 1px solid rgba(135, 170, 226, .35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .12) inset, 0 14px 34px rgba(5, 23, 67, .18);
  font-family: var(--font-title); font-weight: 500; color: #fff;
  font-size: clamp(18px, 2vw, 22px) !important; line-height: 1.35 !important;
  overflow: hidden;
}
.prose__pull::before {
  content: ""; flex: none; width: 12px; height: 12px; border-radius: 50%; background: var(--blue-soft);
  box-shadow: 0 0 0 4px rgba(135, 170, 226, .22), 0 0 0 8px rgba(135, 170, 226, .10);
}
.prose__pull::after {
  content: ""; position: absolute; right: -70px; top: -70px; width: 200px; height: 200px; border-radius: 50%;
  background: repeating-radial-gradient(circle at center, rgba(135, 170, 226, .22) 0 1px, rgba(135, 170, 226, 0) 1px 16px);
  pointer-events: none;
}
.highlight {
  margin-top: clamp(48px, 6vw, 72px); padding-top: clamp(32px, 4vw, 44px);
  border-top: 1px solid rgba(135, 170, 226, .5);
  font-family: var(--font-title); font-weight: 300;
  font-size: clamp(26px, 3.8vw, 42px); line-height: 1.2; letter-spacing: -.015em;
  color: var(--ink); text-wrap: pretty; text-align: center;
}

/* ==========================================================================
   04 · PRIMEIRA CONSULTA
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  padding: clamp(28px, 3vw, 38px); border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #FBFCFE 100%); border: 1px solid var(--line);
  box-shadow: 0 6px 22px rgba(5, 23, 67, .05);
  transition: transform .32s var(--ease), box-shadow .32s ease, border-color .32s ease;
  overflow: hidden;
}
.step::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-soft) 60%, rgba(135, 170, 226, 0) 100%);
}
.step::after {
  content: ""; position: absolute; right: -60px; bottom: -60px; width: 180px; height: 180px; border-radius: 50%;
  background: repeating-radial-gradient(circle at center, rgba(135, 170, 226, .18) 0 1px, rgba(135, 170, 226, 0) 1px 18px);
  pointer-events: none;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 26px 56px rgba(5, 23, 67, .14); border-color: var(--blue-soft); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%;
  background: var(--tint); border: 1px solid rgba(135, 170, 226, .55);
  font-family: var(--font-title); font-weight: 400; font-size: 20px; letter-spacing: .04em; color: var(--navy);
}
.step__title {
  font-family: var(--font-title); font-weight: 500; font-size: 22px; line-height: 1.3; color: var(--ink);
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.step p { position: relative; font-size: 15.5px; line-height: 1.7; font-weight: 400; color: var(--body); text-wrap: pretty; }

.callout {
  position: relative; margin-top: 24px;
  padding: clamp(28px, 3vw, 40px) clamp(28px, 3vw, 40px) clamp(28px, 3vw, 40px) clamp(30px, 4vw, 56px);
  border-radius: var(--radius); background: linear-gradient(135deg, #EEF3FA 0%, #F7FAFD 100%);
  border: 1px solid var(--blue-soft); box-shadow: 0 10px 30px rgba(5, 23, 67, .06);
  display: flex; flex-direction: column; gap: 14px;
}
.callout::before {
  content: ""; position: absolute; left: 0; top: 24px; bottom: 24px; width: 4px; border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--blue), var(--blue-soft));
}
.callout__title {
  font-family: var(--font-title); font-weight: 500;
  font-size: clamp(17px, 1.9vw, 22px); line-height: 1.45; color: var(--ink); text-wrap: pretty;
}
.callout p:not(.callout__title) { font-size: 16.5px; line-height: 1.72; font-weight: 400; text-wrap: pretty; }

/* ==========================================================================
   05 · COMPARAÇÃO (tabela no desktop · cards no celular · sem cor de julgamento)
   ========================================================================== */
.compare {
  border: 1px solid rgba(135, 170, 226, .3); border-radius: var(--radius); overflow: hidden;
  background: rgba(255, 255, 255, .02);
}
.compare__head, .compare__row {
  display: grid; grid-template-columns: 190px 1fr 1fr; align-items: stretch;
}
.compare__head { background: rgba(135, 170, 226, .1); border-bottom: 1px solid rgba(135, 170, 226, .3); }
.compare__col {
  display: flex; flex-direction: column; gap: 4px; padding: 20px 28px 18px;
  font-family: var(--font-title); font-weight: 500; font-size: clamp(18px, 1.9vw, 22px); line-height: 1.2; color: var(--ice);
}
.compare__col em {
  font-style: normal; font-family: var(--font-body); font-weight: 500; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(202, 214, 227, .7); margin-bottom: 4px;
}
.compare__col span { font-family: var(--font-body); font-weight: 400; font-size: 13.5px; line-height: 1.4; color: rgba(202, 214, 227, .8); }
.compare__col--a { color: #fff; background: rgba(135, 170, 226, .1); }
.compare__col--a em { color: var(--wa); }
.compare__col--a span { color: rgba(255, 255, 255, .85); }
.compare__row + .compare__row { border-top: 1px solid rgba(135, 170, 226, .18); }
.compare__label {
  padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; gap: 3px;
}
.compare__label b { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; color: var(--blue-soft); }
.compare__label i { font-style: normal; font-size: 13px; line-height: 1.35; font-weight: 400; color: rgba(202, 214, 227, .72); }
.compare__cell { padding: 20px 28px; font-size: 16px; line-height: 1.6; color: var(--ice); font-weight: 400; display: flex; flex-direction: column; justify-content: center; }
.compare__cell small { display: none; }
.compare__cell--a { color: #fff; background: rgba(135, 170, 226, .1); font-weight: 500; }
.compare__foot {
  margin: clamp(32px, 4vw, 48px) auto 0; max-width: var(--read); text-align: center;
  font-size: 16px; line-height: 1.75; color: rgba(202, 214, 227, .95); text-wrap: pretty; font-weight: 400;
}

/* ==========================================================================
   06 · QUEM CONDUZ
   ========================================================================== */
.who {
  display: grid; grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
.who__left, .who__right { display: flex; flex-direction: column; gap: 26px; min-width: 0; }
.carousel { min-width: 0; }

.portrait { position: relative; }
.portrait picture {
  display: block; width: 100%; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--radius); background: var(--tint);
  border: 1px solid var(--line); box-shadow: var(--shadow-lift);
}
.portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%;
}
.portrait__cap {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  padding: 14px 18px; border-radius: 12px;
  background: rgba(5, 23, 67, .82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: rgba(202, 214, 227, .9); font-size: 12.5px; letter-spacing: .06em; line-height: 1.5;
}
.portrait__cap span { display: block; font-family: var(--font-title); font-weight: 500; font-size: 17px; letter-spacing: .02em; color: #fff; }

.bio { display: flex; flex-direction: column; gap: 16px; max-width: 520px; }
.bio p { font-size: 16.5px; line-height: 1.75; text-wrap: pretty; font-weight: 400; }
.bio p:first-of-type { font-weight: 500; color: var(--ink); }

.depo-video { text-align: center; }
.depo-video .eyebrow { margin-bottom: 14px; }
.video--depo { box-shadow: 0 18px 44px rgba(5, 23, 67, .14); border-color: var(--line); }
.video__poster--navy {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 85% 20%, rgba(106, 163, 227, .28) 0%, rgba(5, 23, 67, 0) 45%),
    repeating-radial-gradient(circle at 110% -10%, rgba(135, 170, 226, .16) 0 1px, rgba(135, 170, 226, 0) 1px 40px),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
}
.video__quote { font-family: var(--font-title); font-weight: 500; font-size: 88px; line-height: .55; color: var(--blue-soft); opacity: .8; }
.video__poster-text {
  margin-top: 26px; max-width: 360px; font-family: var(--font-title); font-weight: 300;
  font-size: clamp(19px, 2.2vw, 25px); line-height: 1.25; color: #fff;
}
.video__poster-text em { font-style: normal; color: var(--blue-soft); }
.video--depo .video__play { justify-content: flex-end; align-items: flex-start; padding: clamp(18px, 2.4vw, 26px); }

/* Carrossel de depoimentos */
.carousel { position: relative; }
.quotes {
  display: flex; gap: 16px; overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  padding: 6px 2px 14px; margin: -6px -2px 0;
  scrollbar-width: none; cursor: grab;
}
.quotes::-webkit-scrollbar { display: none; }
.quotes.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.quote {
  position: relative; flex: 0 0 calc(50% - 8px); scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 12px;
  padding: 24px 26px 22px 28px; border-radius: 16px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 6px 22px rgba(5, 23, 67, .05);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.quote::before {
  content: ""; position: absolute; left: 0; top: 20px; bottom: 20px; width: 3px; border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--blue-soft), var(--blue));
}
.quote:hover { box-shadow: var(--shadow-lift); border-color: var(--blue-soft); }
.quote__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.quote__mark {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px;
  background: var(--tint); font-family: var(--font-title); font-weight: 500; font-size: 30px; line-height: 1; padding-top: 10px; color: var(--blue-ink);
}
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 16px; height: 16px; fill: #E9B949; filter: drop-shadow(0 1px 0 rgba(160, 110, 20, .18)); }
.quote blockquote { flex: 1; font-size: 15.5px; line-height: 1.68; font-weight: 400; color: var(--body); text-wrap: pretty; }
.quote cite {
  display: flex; align-items: center; gap: 10px; margin-top: 2px;
  font-style: normal; font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--body-soft);
}
.quote cite::before { content: ""; width: 18px; height: 1px; background: var(--blue-soft); }

.carousel__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 6px; }
.carousel__btn {
  width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(135, 170, 226, .6); background: #fff; color: var(--navy);
  transition: background .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.carousel__btn svg { width: 18px; height: 18px; }
.carousel__btn:hover { background: var(--tint); border-color: var(--blue); transform: translateY(-1px); }
.carousel__btn:disabled { opacity: .35; cursor: default; transform: none; }
.carousel__dots { display: flex; gap: 8px; }
.carousel__dots button {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(135, 170, 226, .45);
  transition: width .3s var(--ease), background .3s ease;
}
.carousel__dots button.is-on { width: 24px; border-radius: 999px; background: var(--blue); }

/* ==========================================================================
   07 · FAQ + FECHAMENTO
   ========================================================================== */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--line); overflow: hidden;
  transition: border-color .5s ease, box-shadow .6s ease, transform .5s var(--ease);
}
.faq__item:hover { border-color: rgba(135, 170, 226, .8); }
.faq__item.is-open { border-color: var(--blue-soft); box-shadow: 0 14px 38px rgba(5, 23, 67, .09); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 24px; font-family: var(--font-title); font-weight: 500;
  font-size: clamp(16.5px, 1.7vw, 19px); line-height: 1.4; color: var(--ink);
  transition: background .45s ease, color .3s ease;
}
.faq__item summary:hover { background: #F7FAFD; }
.faq__item.is-open summary { background: #F7FAFD; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  position: relative; flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--blue-soft); transition: transform .6s cubic-bezier(.22, .61, .36, 1), background .4s ease;
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--blue-ink);
  transform: translate(-50%, -50%);
}
.faq__icon::before { width: 12px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 12px; transition: opacity .4s ease; }
.faq__item.is-open .faq__icon { transform: rotate(180deg); background: var(--tint-2); }
.faq__item.is-open .faq__icon::after { opacity: 0; }
.faq__body {
  overflow: hidden; height: 0; opacity: 0;
  transition: height .6s cubic-bezier(.22, .61, .36, 1), opacity .5s ease .08s;
}
.faq__item.is-open .faq__body { opacity: 1; }
.faq__body p { padding: 2px 24px 22px; }
.faq__body p { font-size: 16px; line-height: 1.75; text-wrap: pretty; font-weight: 400; }

.closing {
  margin-top: clamp(56px, 7vw, 88px); text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.closing__line { width: 56px; height: 1px; background: var(--blue-soft); margin-bottom: 34px; }
.closing__text { max-width: 640px; font-size: clamp(16px, 1.6vw, 18.5px); line-height: 1.78; text-wrap: pretty; font-weight: 400; }
.closing__ask {
  margin-top: 26px; max-width: 700px;
  font-family: var(--font-title); font-weight: 400;
  font-size: clamp(22px, 3vw, 32px); line-height: 1.25; color: var(--ink); text-wrap: balance;
}

/* ---------- Rodapé ---------- */
.footer { background: var(--navy); color: rgba(202, 214, 227, .8); padding-block: clamp(48px, 6vw, 72px) clamp(36px, 5vw, 56px); }
.footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.brand--footer { transform: scale(.9); }
.footer__text { font-family: var(--font-title); font-weight: 300; font-size: 15px; letter-spacing: .06em; color: var(--ice); }
.footer__meta { font-size: 12.5px; line-height: 1.8; letter-spacing: .04em; }

/* ---------- Barra fixa de WhatsApp (celular) ---------- */
.sticky {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(5, 23, 67, .92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(135, 170, 226, .3);
  transform: translateY(110%); opacity: 0; pointer-events: none;
  transition: transform .7s cubic-bezier(.22, .61, .36, 1), opacity .55s ease;
  will-change: transform, opacity;
}
.sticky--on { transform: translateY(0); opacity: 1; pointer-events: auto; }

/* ---------- Faixa contínua (marquee) ---------- */
.marquee {
  position: relative; overflow: hidden; background: var(--tint);
  border-top: 1px solid rgba(135, 170, 226, .35); border-bottom: 1px solid rgba(135, 170, 226, .35);
  padding-block: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee { pointer-events: none; user-select: none; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__word {
  padding: 0 28px; white-space: nowrap;
  font-family: var(--font-title); font-weight: 400; font-size: 14px; letter-spacing: .26em; text-transform: uppercase; color: var(--navy);
}
.marquee__sep { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--blue-soft); flex: none; }
.marquee__sep i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-ink); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Balão de conversa (desktop) ---------- */
.bubble {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  display: flex; align-items: flex-start; gap: 0;
  opacity: 0; transform: translateY(14px) scale(.97); pointer-events: none;
  transition: opacity .6s ease, transform .7s cubic-bezier(.22, .61, .36, 1);
}
.bubble[hidden] { display: none; }
.bubble--on { opacity: 1; transform: none; pointer-events: auto; }
.bubble__card {
  display: flex; align-items: center; gap: 14px; max-width: 360px;
  padding: 12px 40px 12px 12px; border-radius: 999px;
  background: #fff; color: var(--body); border: 1px solid rgba(135, 170, 226, .45);
  box-shadow: 0 1px 0 #fff inset, 0 18px 44px rgba(5, 23, 67, .18), 0 4px 10px rgba(5, 23, 67, .08);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.bubble__card:hover { transform: translateY(-2px); box-shadow: 0 1px 0 #fff inset, 0 24px 54px rgba(5, 23, 67, .22); color: var(--body); }
.bubble__avatar { position: relative; flex: none; width: 56px; height: 56px; }
.bubble__avatar img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: 50% 18%;
  border: 2px solid #fff; box-shadow: 0 0 0 1.5px var(--blue-soft);
}
.bubble__online {
  position: absolute; right: -1px; bottom: 1px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--wa); border: 2px solid #fff;
}
.bubble__online::before {
  content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid rgba(37, 211, 102, .7);
  animation: onlinePulse 2.4s ease-out infinite;
}
.bubble__text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.bubble__name { font-size: 10.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--blue-ink); }
.bubble__msg { font-size: 15px; font-weight: 400; color: var(--ink); line-height: 1.3; }
.bubble__close {
  position: absolute; right: 12px; top: 10px; width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: var(--body-soft);
  transition: background .25s ease, color .25s ease;
}
.bubble__close svg { width: 13px; height: 13px; }
.bubble__close:hover { background: var(--tint); color: var(--ink); }
@media (max-width: 860px) { .bubble { display: none !important; } }

/* ---------- Aviso de cookies (compacto, canto direito) ---------- */
.cookie {
  position: fixed; right: 24px; bottom: 24px; z-index: 70; width: min(340px, calc(100vw - 32px));
  display: flex; flex-direction: column; gap: 12px; padding: 16px 18px;
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(135, 170, 226, .45); border-radius: 16px;
  box-shadow: 0 1px 0 #fff inset, 0 18px 44px rgba(5, 23, 67, .16);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .5s ease, transform .6s cubic-bezier(.22, .61, .36, 1);
}
.cookie[hidden] { display: none; }
.cookie--on { opacity: 1; transform: none; pointer-events: auto; }
.cookie__text { font-size: 13.5px; line-height: 1.5; color: var(--body); }
.cookie__text strong { font-weight: 500; color: var(--ink); }
.cookie__actions { display: flex; gap: 8px; justify-content: flex-end; }
.cookie__btn {
  min-height: 36px; padding: 0 16px; border-radius: 999px; font-size: 13.5px; font-weight: 500;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.cookie__btn--yes { background: var(--wa); color: var(--navy); }
.cookie__btn--yes:hover { background: var(--wa-hi); transform: translateY(-1px); }
.cookie__btn--no { border: 1px solid var(--line); color: var(--body-soft); background: #fff; }
.cookie__btn--no:hover { border-color: var(--blue-soft); color: var(--ink); }
body.cookie-open .bubble { bottom: 170px; }
@media (max-width: 860px) {
  .cookie { right: 12px; left: 12px; width: auto; bottom: calc(92px + env(safe-area-inset-bottom)); padding: 14px 16px; }
  .cookie__actions .cookie__btn { flex: 1; }
}

/* ---------- Revelação ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s var(--ease); }
.hero .reveal.is-in { transition-duration: .45s; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .video__ring, .online::before, .bubble__online::before { animation: none; }
  .btn--wa:hover::before { animation: none; }
  .btn--wa:hover { transform: none; }
  .faq__body { transition: none; }
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 1080px) {
  .who { grid-template-columns: minmax(280px, 380px) minmax(0, 1fr); }
}

@media (max-width: 960px) {
  .steps { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .callout { max-width: 640px; margin-inline: auto; }
}

@media (max-width: 860px) {
  .sticky { display: block; }
  body { padding-bottom: 88px; }
  .topbar__right { display: none; }
  .topbar { justify-content: center; }
  .brand { align-items: center; }

  /* 06 · no celular: foto, bio, vídeo, depois os cards */
  .who { grid-template-columns: 1fr; }
  .portrait { max-width: 480px; }
  .quote { flex-basis: 86%; }

  /* 05 · comparação vira card empilhado, um bloco por linha */
  .compare { border: 0; background: none; overflow: visible; display: flex; flex-direction: column; gap: 14px; }
  .compare__head { display: none; }
  .compare__row, .compare__row + .compare__row {
    grid-template-columns: 1fr; border: 1px solid rgba(135, 170, 226, .3);
    border-radius: var(--radius-sm); overflow: hidden; background: rgba(255, 255, 255, .02);
  }
  .compare__label { padding: 18px 20px 12px; border-bottom: 1px solid rgba(135, 170, 226, .18); }
  .compare__label b { font-size: 13px; }
  .compare__cell { padding: 14px 20px 16px; font-size: 15.5px; }
  .compare__cell small {
    display: block; margin-bottom: 5px; font-size: 10.5px; letter-spacing: .16em; font-weight: 500;
    text-transform: uppercase; color: rgba(202, 214, 227, .7);
  }
  .compare__cell--a small { color: var(--wa); }
  .compare__cell--a small::before { content: "O que eu proponho · "; color: rgba(255, 255, 255, .6); }
  .compare__cell + .compare__cell { border-top: 1px solid rgba(135, 170, 226, .18); }
}

@media (max-width: 720px) {
  /* Credibilidade vira checklist compacto, alinhado à esquerda */
  .cred { flex-direction: column; align-items: stretch; gap: 8px; padding-top: 20px; margin-top: 36px; }
  .cred li {
    white-space: normal; padding: 0; border: 0; background: none; border-radius: 0;
    font-size: 14.5px; line-height: 1.35; gap: 12px;
  }
  .cred li:hover { background: none; }

  /* 02 · cards empilham conforme a rolagem (scroll stacking) */
  .recog { display: block; padding-bottom: 8px; }
  .recog__item {
    position: sticky; top: calc(14px + var(--i, 0) * 12px);
    margin-bottom: 18px; min-height: 118px; align-items: center;
    background: #fff; box-shadow: 0 -8px 24px rgba(5, 23, 67, .06), 0 10px 26px rgba(5, 23, 67, .08);
    transform: none !important;
  }
  .recog__item:last-child { margin-bottom: 0; }
  .recog__item:nth-child(1) { --i: 0 } .recog__item:nth-child(2) { --i: 1 } .recog__item:nth-child(3) { --i: 2 }
  .recog__item:nth-child(4) { --i: 3 } .recog__item:nth-child(5) { --i: 4 } .recog__item:nth-child(6) { --i: 5 }
  .disq { margin-top: 44px; }

  /* 04 · os três cards também empilham com a rolagem */
  .steps { display: block; max-width: none; padding-bottom: 8px; }
  .step {
    position: sticky; top: calc(14px + var(--i, 0) * 12px);
    margin-bottom: 18px; transform: none !important;
    box-shadow: 0 -8px 24px rgba(5, 23, 67, .06), 0 10px 26px rgba(5, 23, 67, .08);
  }
  .step:last-child { margin-bottom: 0; }
  .step:nth-child(1) { --i: 0 } .step:nth-child(2) { --i: 1 } .step:nth-child(3) { --i: 2 }
  .callout { margin-top: 26px; }
  .hero { padding-top: 18px; }
  .topbar { padding-bottom: 26px; }
  .topbar__meta { display: none; }
  .brand__name { font-size: 24px; }
  .hero__content .eyebrow { margin-bottom: 18px; }
  .hero__title { font-size: clamp(28px, 7.6vw, 34px); line-height: 1.12; }
  .hero__row { margin-top: 24px; gap: 22px; }
  .hero__sub { font-size: 15.5px; line-height: 1.62; }
  .cta--hero { margin-top: 18px; gap: 12px; }
  .cta--hero .cta__line { font-size: 15px; }
  .cred { margin-top: 40px; padding-top: 22px; }
  .video__label { display: none; }
  .video__btn { width: 72px; height: 72px; }
  .video__ring { width: 72px; height: 72px; }
  .video__btn svg { width: 26px; height: 26px; }
  .portrait__cap { left: 12px; right: 12px; bottom: 12px; padding: 12px 14px; }
}

@media (max-width: 480px) {
  .cred li { font-size: 14px; }
  .btn--lg, .btn--xl { width: 100%; min-height: 60px; padding: 0 22px; font-size: 16px; }
  .btn { white-space: normal; text-align: center; }
  .eyebrow { font-size: 10.5px; letter-spacing: .18em; padding: 8px 14px; }
  .recog__item { padding: 20px 18px; gap: 14px; }
  .prose__pull { border-radius: 22px; padding: 14px 20px 14px 18px; align-items: flex-start; }
  .prose__pull::before { margin-top: 7px; }
  .quote { padding: 22px 18px 20px 22px; flex-basis: 88%; }
  .faq__item summary { padding: 18px 18px; }
  .faq__body p { padding: 0 18px 20px; }
}



/* Telas muito largas: mantém o respiro proporcional */
@media (min-width: 1600px) {
  :root { --gutter: 80px; }
}
