/* ==========================================================================
   Thaise Hora Studio — sistema de design
   Paleta extraída do logotipo: navy profundo + rosa quartzo + off-white
   ========================================================================== */

:root {
  /* Cores */
  --navy-900: #161E29;
  --navy-800: #1F2A38;
  --navy: #2E3D52;
  --navy-600: #4A5D75;
  --navy-400: #7B8CA0;

  --rose: #F2A8C1;
  --rose-light: #FBE4EC;
  --rose-pale: #FDF2F6;
  --rose-deep: #B85F80;

  --cream: #F8F6F4;
  --sand: #EFEAE5;
  --white: #FFFFFF;

  --wa: #25D366;
  --wa-dark: #1DA851;

  /* Papéis semânticos */
  --bg: var(--cream);
  --surface: var(--white);
  --text: var(--navy-900);
  --text-soft: var(--navy-600);
  --text-faint: var(--navy-400);
  --line: rgba(46, 61, 82, 0.12);
  --line-soft: rgba(46, 61, 82, 0.07);

  /* Tipografia */
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-voice: 'Fraunces', Georgia, 'Times New Roman', serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --step-1: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --step-2: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  --step-3: clamp(1.8rem, 1.4rem + 1.9vw, 2.9rem);
  --step-4: clamp(2.3rem, 1.5rem + 2.7vw, 3.85rem);

  /* Layout */
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --measure: 1240px;
  --radius: 14px;
  --radius-lg: 26px;

  /* Movimento */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.6s;
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

button, input, textarea, select { font: inherit; color: inherit; }

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

h1, h2, h3, h4 { line-height: 1.12; font-weight: 500; letter-spacing: -0.022em; }

:focus-visible {
  outline: 3px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--rose); color: var(--navy-900); }

/* --------------------------------------------------------------------------
   Utilitários
   -------------------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 999;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

.voice {
  font-family: var(--font-voice);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.lede {
  font-size: var(--step-1);
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 46ch;
}

section { position: relative; }

.band { padding-block: clamp(4.5rem, 10vw, 9rem); }
.band--tint { background: var(--surface); }
.band--deep { background: var(--navy-900); color: var(--cream); }
.band--deep .lede { color: rgba(248, 246, 244, 0.72); }
.band--deep .eyebrow { color: var(--rose); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head h2 { font-size: var(--step-3); margin-block: 1.1rem 1.25rem; }

/* --------------------------------------------------------------------------
   Botões
   -------------------------------------------------------------------------- */

.btn {
  --btn-bg: var(--navy-900);
  --btn-fg: var(--cream);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.05rem 1.9rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: var(--step-0);
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn > * { position: relative; z-index: 1; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rose);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}
.btn:hover, .btn:focus-visible { transform: translateY(-3px); box-shadow: 0 14px 30px -14px rgba(22, 30, 41, 0.5); }
.btn:hover::after, .btn:focus-visible::after { transform: translateY(0); }
.btn:hover, .btn:focus-visible { color: var(--navy-900); }
.btn:active { transform: translateY(-1px); }

.btn--wa { --btn-bg: var(--wa); --btn-fg: #fff; }
.btn--wa::after { background: var(--wa-dark); }
.btn--wa:hover, .btn--wa:focus-visible { color: #fff; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line);
  padding-inline: 1.5rem;
}
.btn--ghost::after { background: var(--navy-900); }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--cream); }

.btn--sm { padding: 0.7rem 1.35rem; font-size: var(--step--1); }

.btn .ico { width: 1.15em; height: 1.15em; flex: none; }

/* --------------------------------------------------------------------------
   Cabeçalho
   -------------------------------------------------------------------------- */

.masthead {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft), backdrop-filter 0.4s;
}
.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(1rem, 2.4vw, 1.75rem);
  transition: padding-block 0.4s var(--ease-soft);
}
.masthead.is-condensed {
  background: rgba(248, 246, 244, 0.82);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 1px 0 var(--line-soft);
}
.masthead.is-condensed .masthead__inner { padding-block: 0.7rem; }

.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand__mark { width: 38px; transition: width 0.4s var(--ease-soft); }
.masthead.is-condensed .brand__mark { width: 31px; }
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.02rem;
}
.brand__name span:last-child {
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); }
.nav__link {
  position: relative;
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--text-soft);
  padding-block: 0.35rem;
  transition: color 0.25s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover, .nav__link:focus-visible { color: var(--text); }
.nav__link:hover::after, .nav__link:focus-visible::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}
.nav-toggle__bars { display: block; width: 17px; height: 9px; position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: '';
  position: absolute;
  left: 0; width: 100%; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars::after { top: 7.5px; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars::before { top: 4px; transform: rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars::after { top: 4px; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: grid;
  align-items: center;
  padding-block: clamp(8rem, 16vh, 11rem) clamp(3rem, 7vh, 5rem);
  overflow: hidden;
}

.hero__aura {
  position: absolute;
  inset: -20% -10% auto;
  height: 130%;
  pointer-events: none;
  z-index: 0;
}
/* A névoa usa radial-gradient em vez de filter: blur(). A borda macia vem da
   parada de cor transparente, sem criar camada de composição na GPU. */
.hero__aura span {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.hero__aura span:nth-child(1) {
  width: 56vw; height: 56vw;
  top: -6%; left: 44%;
  background: radial-gradient(circle, rgba(242, 168, 193, 0.5), rgba(242, 168, 193, 0) 66%);
  animation: drift-a 26s ease-in-out infinite;
}
.hero__aura span:nth-child(2) {
  width: 42vw; height: 42vw;
  top: 38%; left: 14%;
  background: radial-gradient(circle, rgba(239, 234, 229, 0.85), rgba(239, 234, 229, 0) 68%);
  animation: drift-b 32s ease-in-out infinite;
}
.hero__aura span:nth-child(3) {
  width: 34vw; height: 34vw;
  top: 0%; left: 0%;
  background: radial-gradient(circle, rgba(251, 228, 236, 0.8), rgba(251, 228, 236, 0) 70%);
  animation: drift-a 22s ease-in-out infinite reverse;
}

@keyframes drift-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-6%, 7%, 0) scale(1.12); }
}
@keyframes drift-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.05); }
  50% { transform: translate3d(8%, -6%, 0) scale(0.92); }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.hero__title {
  font-size: var(--step-4);
  letter-spacing: -0.038em;
  margin-block: 1.5rem 1.75rem;
}
.hero__title .accent { color: var(--rose-deep); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
}
.hero__reassure {
  font-size: var(--step--1);
  color: var(--text-faint);
  margin-top: 1.1rem;
}

/* Cartão de horários / prova rápida no hero */
.hero__card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 40px 80px -50px rgba(22, 30, 41, 0.4);
}
.hero__card::before {
  content: '';
  position: absolute;
  inset: auto 2rem -1px 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
.hero__card h2 {
  font-size: var(--step-1);
  margin-bottom: 1.25rem;
}
.stack-list { list-style: none; padding: 0; display: grid; gap: 0.9rem; }
.stack-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--step--1);
  color: var(--text-soft);
}
.stack-list .tick {
  flex: none;
  width: 20px; height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose-deep);
  display: grid;
  place-items: center;
}
.stack-list .tick svg { width: 11px; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.scroll-cue i {
  display: block;
  width: 1px; height: 46px;
  background: linear-gradient(var(--rose-deep), transparent);
  animation: cue 2.4s var(--ease-soft) infinite;
  transform-origin: top;
}
@keyframes cue {
  0% { transform: scaleY(0); opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; transform-origin: bottom; }
}

/* --------------------------------------------------------------------------
   Faixa de credibilidade
   -------------------------------------------------------------------------- */

.proofbar {
  border-block: 1px solid var(--line-soft);
  background: var(--surface);
}
.proofbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
}
.proofbar__cell {
  background: var(--surface);
  padding: clamp(1.6rem, 3.5vw, 2.6rem) clamp(1rem, 2.5vw, 2rem);
  display: grid;
  gap: 0.3rem;
}
.proofbar__num {
  font-size: var(--step-2);
  font-weight: 500;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.proofbar__num small { font-size: 0.5em; font-weight: 600; color: var(--rose-deep); margin-left: 0.15em; }
.proofbar__label {
  font-size: var(--step--1);
  color: var(--text-faint);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */

.marquee {
  overflow: hidden;
  padding-block: 1.4rem;
  background: var(--navy-900);
  color: var(--cream);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  --marquee-dur: 34s;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee var(--marquee-dur) linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__set {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  font-size: var(--step--1);
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: rgba(248, 246, 244, 0.62);
}
.marquee__set b { font-weight: 500; color: var(--cream); }
.marquee__set em {
  font-style: normal;
  color: var(--rose);
  font-size: 0.7em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Metodologia — trilha de 4 fases
   -------------------------------------------------------------------------- */

.phases { position: relative; }
.phases__rail {
  position: absolute;
  top: 34px;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.phases__rail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rose-deep);
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
  transition: transform 0.25s linear;
}
.phases__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.phase { display: grid; gap: 1rem; align-content: start; }
.phase__dot {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
}
.band--tint .phase__dot { background: var(--surface); }
.phase__dot svg { width: 26px; height: 26px; stroke: var(--navy); transition: stroke 0.4s var(--ease); }
.phase.is-lit .phase__dot { border-color: var(--rose); background: var(--rose-pale); transform: scale(1.04); }
.phase.is-lit .phase__dot svg { stroke: var(--rose-deep); }

.phase__step {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.phase h3 { font-size: var(--step-1); }
.phase p { font-size: var(--step--1); color: var(--text-soft); }
.phase__time {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--rose-deep);
  background: var(--rose-pale);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  justify-self: start;
}

/* --------------------------------------------------------------------------
   Exclusividade — diagrama 4:2
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.ratio-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
}
.ratio-card__head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.ratio-card__big {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}
.ratio-card__big em { font-style: normal; color: var(--rose); }
.ratio-card__cap { font-size: var(--step--1); color: rgba(248, 246, 244, 0.6); max-width: 18ch; }

.ratio-diagram { width: 100%; height: auto; }
.ratio-diagram .link {
  stroke: var(--rose);
  stroke-width: 1;
  opacity: 0.45;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
}
.ratio-diagram.is-visible .link {
  animation: draw 1.1s var(--ease) forwards;
}
.ratio-diagram.is-visible .link:nth-of-type(2) { animation-delay: 0.1s; }
.ratio-diagram.is-visible .link:nth-of-type(3) { animation-delay: 0.2s; }
.ratio-diagram.is-visible .link:nth-of-type(4) { animation-delay: 0.3s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.ratio-diagram .node { opacity: 0; transform-box: fill-box; transform-origin: center; }
.ratio-diagram.is-visible .node { animation: pop 0.6s var(--ease) forwards; }
.ratio-diagram.is-visible .node:nth-of-type(2) { animation-delay: 0.08s; }
.ratio-diagram.is-visible .node:nth-of-type(3) { animation-delay: 0.16s; }
.ratio-diagram.is-visible .node:nth-of-type(4) { animation-delay: 0.24s; }
.ratio-diagram.is-visible .node:nth-of-type(5) { animation-delay: 0.34s; }
.ratio-diagram.is-visible .node:nth-of-type(6) { animation-delay: 0.42s; }
@keyframes pop {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

.feature-list { list-style: none; padding: 0; display: grid; gap: 1.75rem; }
.feature-list li { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.feature-list .num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--rose);
  padding-top: 0.35rem;
  font-variant-numeric: tabular-nums;
}
.feature-list h3 { font-size: var(--step-1); margin-bottom: 0.4rem; }
.feature-list p { font-size: var(--step--1); color: rgba(248, 246, 244, 0.7); max-width: 44ch; }

/* --------------------------------------------------------------------------
   Prova social
   -------------------------------------------------------------------------- */

.rating {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.1rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  width: fit-content;
}
.rating__score {
  font-size: var(--step-2);
  font-weight: 500;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.stars { display: flex; gap: 3px; }
.stars svg { width: 16px; height: 16px; fill: #F5B544; }
.rating__meta { font-size: var(--step--1); color: var(--text-faint); }

.reviews { position: relative; margin-top: clamp(2.5rem, 5vw, 4rem); }
.reviews__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(min(88%, 400px), 1fr);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.reviews__track::-webkit-scrollbar { display: none; }

.review {
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  display: grid;
  gap: 1.25rem;
  align-content: start;
}
.review blockquote {
  font-family: var(--font-voice);
  font-size: var(--step-1);
  font-weight: 400;
  font-variation-settings: 'SOFT' 40;
  line-height: 1.45;
  letter-spacing: -0.015em;
}
.review__who { display: flex; align-items: center; gap: 0.8rem; }
.review__av {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose-deep);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.review__name { font-size: var(--step--1); font-weight: 600; }
.review__src { font-size: 0.75rem; color: var(--text-faint); }

.reviews__nav { display: flex; gap: 0.5rem; margin-top: 1.75rem; }
.dot {
  width: 30px; height: 3px;
  padding: 0;
  border: none;
  border-radius: 100px;
  background: var(--line);
  cursor: pointer;
  transition: background 0.35s var(--ease), width 0.35s var(--ease);
}
.dot[aria-current='true'] { background: var(--rose-deep); width: 46px; }

/* Placeholders de mídia */
.media-slot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  border: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  aspect-ratio: 16 / 10;
}
.media-slot--portrait { aspect-ratio: 9 / 14; }
.media-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 30% 20%, var(--rose-light), transparent 70%),
    radial-gradient(50% 50% at 80% 80%, var(--white), transparent 70%);
  opacity: 0.9;
}
.media-slot__body { position: relative; display: grid; gap: 0.75rem; justify-items: center; }
.media-slot__play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--cream);
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--ease);
}
.media-slot:hover .media-slot__play { transform: scale(1.08); }
.media-slot__play svg { width: 18px; margin-left: 3px; }
.media-slot__label {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--navy);
}
.media-slot__hint { font-size: 0.75rem; color: var(--text-faint); max-width: 30ch; }

.reels { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); gap: 1rem; }

.media-slot--video { padding: 0; background: var(--navy-900); }
.media-slot--video::before { content: none; }
.media-slot--video video { position: relative; width: 100%; height: 100%; object-fit: cover; display: block; }

/* --------------------------------------------------------------------------
   Localização
   -------------------------------------------------------------------------- */

.place { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.address { display: grid; gap: 1.75rem; }
.address__lines { font-size: var(--step-1); line-height: 1.5; letter-spacing: -0.015em; }
.address__lines strong { display: block; font-weight: 600; }
.address__lines span { color: var(--text-soft); font-size: 0.92em; }

.hours { border-top: 1px solid var(--line-soft); }
.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: var(--step--1);
}
.hours dt { color: var(--text-soft); }
.hours dd { margin: 0; font-weight: 600; font-variant-numeric: tabular-nums; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--sand);
  aspect-ratio: 4 / 3;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq { display: grid; gap: 0; max-width: 62rem; }
.faq details {
  border-bottom: 1px solid var(--line-soft);
}
.faq details:first-of-type { border-top: 1px solid var(--line-soft); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  font-size: var(--step-1);
  font-weight: 500;
  letter-spacing: -0.018em;
  list-style: none;
  transition: color 0.25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--rose-deep); }
.faq summary .plus {
  flex: none;
  position: relative;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.faq summary .plus::before,
.faq summary .plus::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.faq summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] summary .plus { background: var(--rose-pale); border-color: var(--rose); transform: rotate(180deg); }
.faq details[open] summary .plus::after { opacity: 0; }

.faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.faq details[open] .faq__body { grid-template-rows: 1fr; }
.faq__body > div { overflow: hidden; }
.faq__body p {
  font-size: var(--step-0);
  color: var(--text-soft);
  max-width: 68ch;
  padding-bottom: 1.75rem;
}
.faq__body p + p { padding-top: 0.9rem; }

/* --------------------------------------------------------------------------
   Formulário / CTA final
   -------------------------------------------------------------------------- */

.closer { position: relative; overflow: hidden; }
.closer__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.closer__title { font-size: var(--step-3); margin-block: 1.1rem 1.25rem; }

.lead-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
  display: grid;
  gap: 1.15rem;
}
.field { display: grid; gap: 0.5rem; }
.field label { font-size: var(--step--1); font-weight: 600; }
.field input {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--cream);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder { color: rgba(248, 246, 244, 0.38); }
.field input:hover { border-color: rgba(255, 255, 255, 0.3); }
.field input:focus { border-color: var(--rose); background: rgba(255, 255, 255, 0.1); outline: none; }
.field input:focus-visible { outline: 2px solid var(--rose); outline-offset: 2px; }
.field__error { font-size: 0.78rem; color: #FFB4B4; min-height: 1.1em; }

.consent { display: grid; grid-template-columns: auto 1fr; gap: 0.75rem; align-items: start; }
.consent input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px; height: 20px;
  margin-top: 2px;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.consent input:checked { background: var(--rose); border-color: var(--rose); }
.consent input:checked::after {
  content: '';
  position: absolute;
  top: 3px; left: 6px;
  width: 5px; height: 9px;
  border: solid var(--navy-900);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent span { font-size: 0.82rem; line-height: 1.55; color: rgba(248, 246, 244, 0.72); }
.consent a { color: var(--rose); text-decoration: underline; text-underline-offset: 2px; }

.form-note { font-size: 0.78rem; color: rgba(248, 246, 244, 0.5); }
.form-status { font-size: var(--step--1); min-height: 1.4em; }
.form-status[data-state='ok'] { color: #9BE7B6; }
.form-status[data-state='err'] { color: #FFB4B4; }

/* --------------------------------------------------------------------------
   Rodapé
   -------------------------------------------------------------------------- */

.footer { background: var(--navy-900); color: rgba(248, 246, 244, 0.7); padding-block: clamp(3rem, 6vw, 5rem) 2rem; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; padding: 0; display: grid; gap: 0.65rem; font-size: var(--step--1); }
.footer a { transition: color 0.25s var(--ease); }
.footer a:hover, .footer a:focus-visible { color: var(--cream); }
.footer .brand__name { color: var(--cream); }
.footer p { font-size: var(--step--1); max-width: 34ch; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(248, 246, 244, 0.5);
}
.link-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: var(--step--1);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.link-btn:hover { border-color: var(--rose); color: var(--cream); }

/* --------------------------------------------------------------------------
   WhatsApp flutuante
   -------------------------------------------------------------------------- */

.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.35rem 0.85rem 0.95rem;
  background: var(--wa);
  color: #fff;
  border-radius: 100px;
  font-size: var(--step--1);
  font-weight: 600;
  box-shadow: 0 18px 40px -18px rgba(37, 211, 102, 0.75);
  opacity: 0;
  transform: translateY(24px) scale(0.94);
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.wa-float.is-in { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { background: var(--wa-dark); }
.wa-float svg { width: 22px; height: 22px; flex: none; }
.wa-float::before {
  content: '';
  position: absolute;
  left: 0.95rem; top: 50%;
  width: 22px; height: 22px;
  margin-top: -11px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: ring 2.6s var(--ease-soft) infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.8; }
  70%, 100% { transform: scale(2.4); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Banner de cookies
   -------------------------------------------------------------------------- */

.cookie {
  position: fixed;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 200;
  width: min(100% - 2rem, 430px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 30px 70px -30px rgba(22, 30, 41, 0.45);
  display: none;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.cookie.is-open { display: grid; animation: rise 0.5s var(--ease) both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
}
.cookie h2 { font-size: var(--step-1); }
.cookie p { font-size: 0.85rem; color: var(--text-soft); }
.cookie p a { color: var(--rose-deep); text-decoration: underline; text-underline-offset: 2px; }
.cookie__opts { display: grid; gap: 0.6rem; padding-block: 0.25rem; }
.cookie__opts label { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--text-soft); }
.cookie__opts input { width: 17px; height: 17px; accent-color: var(--rose-deep); }
.cookie__opts input:disabled { opacity: 0.5; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.cookie__actions .btn { flex: 1 1 auto; padding: 0.75rem 1rem; font-size: 0.85rem; }

/* --------------------------------------------------------------------------
   Preloader
   -------------------------------------------------------------------------- */

.veil {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--cream);
  display: grid;
  place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.veil__mark {
  width: 74px;
  animation: breathe 1.6s var(--ease-soft) infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(0.94); opacity: 0.55; }
  50% { transform: scale(1); opacity: 1; }
}
body.is-ready .veil { opacity: 0; visibility: hidden; }

/* --------------------------------------------------------------------------
   Revelação no scroll
   -------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

[data-reveal='line'] > * {
  display: block;
  clip-path: inset(0 0 105% 0);
  transform: translateY(0.3em);
  transition: clip-path 1s var(--ease), transform 1s var(--ease);
}
[data-reveal='line'] { opacity: 1; transform: none; }
[data-reveal='line'].is-visible > * { clip-path: inset(-0.15em 0 -0.15em 0); transform: none; }
[data-reveal='line'] > *:nth-child(2) { transition-delay: 0.11s; }
[data-reveal='line'] > *:nth-child(3) { transition-delay: 0.22s; }
[data-reveal='line'] > *:nth-child(4) { transition-delay: 0.33s; }

/* --------------------------------------------------------------------------
   Páginas legais
   -------------------------------------------------------------------------- */

.doc { max-width: 46rem; padding-block: clamp(7rem, 14vh, 10rem) 5rem; }
.doc h1 { font-size: var(--step-3); margin-bottom: 0.75rem; }
.doc .updated { font-size: var(--step--1); color: var(--text-faint); margin-bottom: 3rem; }
.doc h2 { font-size: var(--step-1); margin-top: 2.75rem; margin-bottom: 0.9rem; }
.doc h3 { font-size: var(--step-0); font-weight: 600; margin-top: 1.75rem; margin-bottom: 0.5rem; }
.doc p, .doc li { color: var(--text-soft); }
.doc p + p { margin-top: 1rem; }
.doc ul, .doc ol { margin-top: 0.85rem; padding-left: 1.35rem; display: grid; gap: 0.55rem; }
.doc a { color: var(--rose-deep); text-decoration: underline; text-underline-offset: 2px; }
.doc table { width: 100%; border-collapse: collapse; margin-top: 1.25rem; font-size: var(--step--1); }
.doc th, .doc td { text-align: left; padding: 0.7rem 0.6rem; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.doc th { font-weight: 600; color: var(--text); }
.doc td { color: var(--text-soft); }
.doc .back { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 2.5rem; font-size: var(--step--1); color: var(--text-soft); text-decoration: none; }
.doc .back:hover { color: var(--rose-deep); }

/* --------------------------------------------------------------------------
   Responsivo
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__card { max-width: 30rem; }
  .phases__grid { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
  .phases__rail { display: none; }
  .proofbar__grid { grid-template-columns: repeat(2, 1fr); }
  .place { grid-template-columns: 1fr; }
  .closer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    inset: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5.5rem 1.5rem 2rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    transform: translateY(-100%);
    transition: transform 0.55s var(--ease);
    z-index: -1;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { font-size: var(--step-1); padding-block: 0.85rem; border-bottom: 1px solid var(--line-soft); }
  .nav__link::after { display: none; }
  .nav .btn { margin-top: 1.25rem; }
  .nav-toggle { display: flex; }
  .phases__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .scroll-cue { display: none; }
  .wa-float span { display: none; }
  .wa-float { padding: 1rem; }
  .wa-float::before { left: 1rem; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 460px) {
  .proofbar__grid { grid-template-columns: 1fr; }
  .cookie__actions .btn { flex-basis: 100%; }
}

/* --------------------------------------------------------------------------
   Movimento reduzido
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  [data-reveal='line'] > * { clip-path: none !important; transform: none !important; }
  .veil { display: none; }
  .hero__aura { display: none; }
  .marquee__track { animation: none; }
  .wa-float { opacity: 1; transform: none; pointer-events: auto; }
  .wa-float::before { display: none; }
}
