/* ==========================================================
   FONTS — BDO Grotesk (alinhado com brand SFBA)
   ========================================================== */
@font-face {
  font-family: "Bdogrotesk";
  src: url("https://cdn.prod.website-files.com/6919d87fb59aea89ebd7268e/6919d880b59aea89ebd7285d_BDOGrotesk-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Bdogrotesk";
  src: url("https://cdn.prod.website-files.com/6919d87fb59aea89ebd7268e/6919d880b59aea89ebd7285a_BDOGrotesk-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Bdogrotesk";
  src: url("https://cdn.prod.website-files.com/6919d87fb59aea89ebd7268e/6919d880b59aea89ebd7285c_BDOGrotesk-DemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Bdogrotesk";
  src: url("https://cdn.prod.website-files.com/6919d87fb59aea89ebd7268e/6919d880b59aea89ebd7285b_BDOGrotesk-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ==========================================================
   TOKENS — extraídos da brand SFBA
   ========================================================== */
:root {
  --c-white: #ffffff;
  --c-100: #efefef;
  --c-200: #e6e6e6;
  --c-300: #dedede;
  --c-400: #929295;
  --c-500: #6b6b6e;
  --c-600: #3a3a3e;
  --c-650: #2a2a2c;
  --c-700: #232325;
  --c-800: #1c1c1e;
  --c-900: #161618;
  /* Accent — dark teal-blue (Brand Guidelines v2 · regra 01).
     Reservado para CTA blocks e dark sections. Nunca para texto inline
     ou decoração. */
  --c-accent:        #253239;
  --c-accent-hover:  #2f4049;
  --c-accent-deep:   #1a232a;

  --ff: "Bdogrotesk", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-xs: .6875rem;
  --fs-sm: .875rem;
  --fs-btn: .9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3rem;
  --fs-5xl: clamp(3rem, 6vw, 5rem);
  /* Hero H1 — alinhado com sfba.pt: --font-size--fluid-large = 6vw, com clamp para mobile/4K */
  --fs-display: clamp(2.25rem, 6vw, 4.5rem);

  --r-sm: 4px;
  --r: 6px;
  --r-lg: 12px;
  --r-pill: 999px;

  --pad-mobile: 1.25rem;
  --pad-tablet: 2rem;
  --pad-desktop: 2.5rem;

  --max: 1320px;

  --ease: cubic-bezier(.2,.7,.2,1);
  --t: .25s var(--ease);
  --t-slow: .5s var(--ease);

  --line: 1px solid var(--c-200);
}

/* ==========================================================
   RESET — minimal & explicit
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff);
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--c-900);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--c-900);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
ol, ul { list-style: none; }
fieldset { border: 0; }
legend { padding: 0; }

::selection { background: var(--c-900); color: var(--c-white); }

/* ==========================================================
   LAYOUT PRIMITIVES
   ========================================================== */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad-mobile);
}
@media (min-width: 720px)  { .container { padding-inline: var(--pad-tablet); } }
@media (min-width: 1080px) { .container { padding-inline: var(--pad-desktop); } }

.eyebrow {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-500);
}
.eyebrow--inverse { color: rgba(255,255,255,.6); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-bottom: 3rem;
  max-width: 720px;
}
.section-title {
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--c-900);
}
.section-title--tight { font-size: clamp(1.5rem, 3vw, 2.25rem); }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  height: 44px;
  padding: 0 1.1rem;
  border-radius: var(--r);
  font-size: var(--fs-btn);
  font-weight: 600;
  letter-spacing: -.005em;
  white-space: nowrap;
  transition: transform var(--t), background-color var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn__arrow { transition: transform var(--t); }
.btn:hover .btn__arrow { transform: translateX(2px); }

.btn--primary {
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}
.btn--primary:hover { background: var(--c-accent-hover); }

.btn--ghost {
  background: transparent;
  color: var(--c-900);
  border: 1px solid var(--c-300);
}
.btn--ghost:hover { border-color: var(--c-900); background: var(--c-100); }

.btn--lg { height: 52px; padding: 0 1.4rem; font-size: 1rem; }
.btn--xl { height: 56px; padding: 0 1.6rem; font-size: 1rem; }
.btn--sm { height: 36px; padding: 0 .85rem; font-size: var(--fs-sm); }
.btn--full { width: 100%; justify-content: center; }

/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background-color var(--t);
}
.nav--scrolled { border-bottom-color: var(--c-200); }
.nav__inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: .9rem var(--pad-mobile);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 720px)  { .nav__inner { padding-inline: var(--pad-tablet); } }
@media (min-width: 1080px) { .nav__inner { padding-inline: var(--pad-desktop); } }

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.nav__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  min-width: 36px;
  padding: 0 .4rem;
  border: 1px solid var(--c-900);
  font-size: .82rem;
  letter-spacing: .12em;
}
.nav__brand-divider {
  width: 1px; height: 18px; background: var(--c-300);
}
.nav__brand-name { font-size: .95rem; }
@media (max-width: 720px) { .nav__brand-divider, .nav__brand-name { display: none; } }

.nav__links {
  display: none;
  justify-self: center;
  gap: 1.8rem;
  font-size: var(--fs-sm);
  color: var(--c-500);
}
.nav__links a { transition: color var(--t); }
.nav__links a:hover { color: var(--c-900); }
@media (min-width: 960px) { .nav__links { display: inline-flex; } }

.nav__end {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: .9rem;
}
.nav__cta { }
@media (max-width: 540px) { .nav__cta { display: none; } }

/* Telefone na nav — visível em desktop, oculto em mobile (sticky CTA cobre) */
.nav__phone {
  display: none;
  align-items: center;
  gap: .45rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-900);
  font-variant-numeric: tabular-nums;
  transition: color var(--t);
}
.nav__phone svg { color: var(--c-500); transition: color var(--t); }
.nav__phone:hover { color: var(--c-accent); }
.nav__phone:hover svg { color: var(--c-accent); }
@media (min-width: 720px) { .nav__phone { display: inline-flex; } }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  padding: 5rem var(--pad-mobile) 5.5rem;
  background: var(--c-white);
}
@media (min-width: 720px)  { .hero { padding-inline: var(--pad-tablet); } }
@media (min-width: 1080px) { .hero { padding: 7rem var(--pad-desktop) 7.5rem; } }

.hero__grid {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.35fr .85fr;
    gap: 4rem;
  }
}

.hero__content { display: flex; flex-direction: column; gap: 1.5rem; }
/* H1 segue brand spec sfba.pt: 6vw com clamp, -0.04em letter-spacing (regra 03 — tight display type) */
.hero__headline {
  font-size: var(--fs-display);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.02;
  color: var(--c-900);
  margin-top: .3rem;
  max-width: 14ch;
}
.hero__headline-accent {
  color: var(--c-500);
  font-weight: 500;
}
.hero__sub {
  font-size: var(--fs-lg);
  color: var(--c-500);
  max-width: 540px;
  line-height: 1.5;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: .25rem;
}
.hero__microtrust {
  font-size: var(--fs-sm);
  color: var(--c-500);
  margin-top: .8rem;
  max-width: 540px;
}
.hero__microtrust a { color: var(--c-900); border-bottom: 1px solid var(--c-300); }
.hero__microtrust a:hover { border-color: var(--c-900); }

.hero__visual { display: flex; justify-content: center; }

/* ==========================================================
   PORTRAIT (placeholders editoriais)
   ========================================================== */
.portrait { display: block; }
.portrait--hero { display: inline-block; }
.portrait__frame {
  position: relative;
  overflow: hidden;
  background: var(--c-100);
  border-radius: var(--r);
  box-shadow:
    0 1px 0 rgba(0,0,0,.04),
    0 24px 60px -32px rgba(22,22,24,.35);
}
.portrait--hero .portrait__frame { width: min(420px, 86vw); aspect-ratio: 3/4; }
.portrait--about .portrait__frame { width: 100%; aspect-ratio: 4/5; }
.portrait__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* foto landscape — centrar no rosto, ligeiramente acima */
  object-position: 50% 28%;
  display: block;
}
.portrait__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
  background: var(--c-900);
}
.portrait__caption {
  margin-top: .9rem;
  display: flex;
  flex-direction: column;
  font-size: var(--fs-sm);
}
.portrait__role { color: var(--c-900); font-weight: 600; }
.portrait__sub { color: var(--c-500); }

/* ==========================================================
   TRUST seals
   ========================================================== */
.trust {
  border-top: var(--line);
  border-bottom: var(--line);
  padding-block: 2.2rem;
  background: var(--c-white);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 2.2rem;
}
@media (min-width: 720px)  { .trust__grid { grid-template-columns: repeat(5, 1fr); } }

.trust__item { display: flex; flex-direction: column; gap: .25rem; }
.trust__num {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--c-900);
}
.trust__label {
  font-size: var(--fs-xs);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-500);
}

/* ==========================================================
   PROBLEMS — editorial vertical
   ========================================================== */
.problems { padding: 6rem 0; }
.problems__list {
  border-top: var(--line);
  margin-top: 1rem;
}
.problems__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.6rem 0;
  border-bottom: var(--line);
  /* Hover suave — animar transform (compositor only) e color, easing longo */
  transform: translateX(0);
  will-change: transform;
  transition:
    transform .7s cubic-bezier(.16,.84,.24,1),
    color .5s cubic-bezier(.16,.84,.24,1);
}
@media (min-width: 720px) { .problems__item { grid-template-columns: 120px 1fr; } }
.problems__item:hover { transform: translateX(.6rem); }
.problems__num {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--c-400);
  font-variant-numeric: tabular-nums;
  transition: color .5s cubic-bezier(.16,.84,.24,1);
}
.problems__item:hover .problems__num { color: var(--c-900); }
.problems__item p {
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--c-900);
  line-height: 1.3;
}

/* ==========================================================
   HOW IT WORKS — 4 steps
   ========================================================== */
/* HOWTO — pattern exato sfba.pt: card full-bleed + content que respeita o grid do site */
.howto {
  padding: 0;
}

.howto > .container {
  background: var(--c-100);
  border-radius: 6px;
  width: calc(100% - 1rem);
  max-width: none;
  margin-inline: auto;
  padding-block: 4rem;
  padding-inline: 0;
}
@media (min-width: 720px)  { .howto > .container { padding-block: 6rem; } }
@media (min-width: 1080px) { .howto > .container { padding-block: 8rem; } }

/* Content respeita os mesmos tokens do .container do site */
.howto__content {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad-mobile);
}
@media (min-width: 720px)  { .howto__content { padding-inline: var(--pad-tablet); } }
@media (min-width: 1080px) { .howto__content { padding-inline: var(--pad-desktop); } }

.howto__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 720px) { .howto__steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1080px) { .howto__steps { grid-template-columns: repeat(4, 1fr); } }

.howto__step {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--c-300);
  position: relative;
}
.howto__num {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--c-900);
  font-variant-numeric: tabular-nums;
}
.howto__title {
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--c-900);
}
.howto__desc {
  font-size: var(--fs-base);
  color: var(--c-500);
  line-height: 1.5;
}

/* ==========================================================
   AREAS DE PRÁTICA
   ========================================================== */
.areas { padding: 6rem 0; }
.areas__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: var(--line);
  border-left: var(--line);
}
@media (min-width: 720px)  { .areas__grid--three { grid-template-columns: repeat(3, 1fr); } }

.area {
  position: relative;
  padding: 2.2rem 1.75rem 2.4rem;
  border-right: var(--line);
  border-bottom: var(--line);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: background-color var(--t), color var(--t);
}
@media (min-width: 720px)  { .area { padding: 2.6rem 2rem 2.6rem; min-height: 360px; } }
@media (min-width: 1080px) { .area { padding: 3rem 2.4rem 3rem; min-height: 400px; } }
.area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-accent);
  opacity: 0;
  transition: opacity .35s cubic-bezier(.2,.7,.2,1);
  z-index: 0;
}
.area > * { position: relative; z-index: 1; transition: color .35s cubic-bezier(.2,.7,.2,1); }
.area:hover { color: var(--c-white); }
.area:hover::before { opacity: 1; }
.area:hover .area__num { color: rgba(255,255,255,.65); }
.area:hover .area__desc { color: rgba(255,255,255,.85); }
.area:hover .area__icon { color: var(--c-white); }

.area__num {
  font-size: var(--fs-xs);
  letter-spacing: .18em;
  color: var(--c-400);
  font-variant-numeric: tabular-nums;
  transition: color var(--t);
}
.area__icon {
  margin: 1rem 0 1.4rem;
  color: var(--c-900);
  transition: color var(--t);
}
.area__icon svg { width: 28px; height: 28px; }
.area__name {
  font-size: var(--fs-xl);
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: .4rem;
}
.area__desc {
  font-size: var(--fs-sm);
  color: var(--c-500);
  line-height: 1.5;
  transition: color var(--t);
}

.areas__disclaimer {
  margin-top: 1.5rem;
  font-size: var(--fs-sm);
  color: var(--c-500);
  font-style: italic;
}

/* ==========================================================
   ABOUT — split image / text
   ========================================================== */
.about {
  padding: 6rem var(--pad-mobile);
  background: var(--c-100);
}
@media (min-width: 720px)  { .about { padding-inline: var(--pad-tablet); } }
@media (min-width: 1080px) { .about { padding: 7rem var(--pad-desktop); } }

.about__grid {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) { .about__grid { grid-template-columns: .85fr 1.2fr; gap: 4.5rem; } }

.about__visual { max-width: 360px; justify-self: start; width: 100%; }
.about__content { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }
.about__bio { font-size: var(--fs-md); color: var(--c-500); line-height: 1.65; max-width: 62ch; }
.about__quote {
  border-left: 3px solid var(--c-900);
  padding: .35rem 0 .35rem 1.2rem;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: var(--c-900);
  line-height: 1.35;
  font-style: normal;
  max-width: 56ch;
  margin-bottom: .4rem;
}

/* Definition list — meta no Sobre */
.about__meta {
  margin: .6rem 0 .8rem;
  border-top: var(--line);
}
.about__meta-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: var(--line);
  align-items: baseline;
}
.about__meta dt {
  font-size: var(--fs-xs);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-500);
  font-weight: 500;
}
.about__meta dd {
  font-size: var(--fs-base);
  color: var(--c-900);
  font-weight: 500;
}

/* ==========================================================
   MID CTA
   ========================================================== */
/* MIDCTA — pattern exato sfba.pt .section.cta-section: width calc(100% - 1rem), radius 6px */
.midcta {
  padding: 0;
}

.midcta__inner {
  position: relative;
  background: var(--c-accent);
  color: var(--c-white);
  border-radius: 6px;
  width: calc(100% - 1rem);
  max-width: none;
  margin-inline: auto;
  padding-block: 5rem;
  padding-inline: 0;
  overflow: hidden;
}
@media (min-width: 720px)  { .midcta__inner { padding-block: 6rem; } }
@media (min-width: 1080px) { .midcta__inner { padding-block: 8rem; } }
.midcta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 320px at 90% 10%, rgba(255,255,255,.07), transparent 60%);
  pointer-events: none;
}
.midcta__inner > * { position: relative; }
/* Content respeita os mesmos tokens do .container do site (max + padding-inline) */
.midcta__content {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad-mobile);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
}
@media (min-width: 720px)  { .midcta__content { padding-inline: var(--pad-tablet); } }
@media (min-width: 1080px) { .midcta__content { padding-inline: var(--pad-desktop); } }

.midcta__title {
  /* Estilo statement, alinhado com sfba.pt .heading-2 + grid 12-col da cta-section */
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.1;
  max-width: 22ch;
}
.midcta__sub {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,.65);
  max-width: 48ch;
}
.midcta .btn--primary {
  background: var(--c-white);
  color: var(--c-900);
}
.midcta .btn--primary:hover { background: var(--c-200); }

/* ==========================================================
   FAQ
   ========================================================== */
.faq { padding: 6rem 0; }
.faq__list { border-top: var(--line); }
.faq__item {
  border-bottom: var(--line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--c-900);
  transition: color var(--t);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  width: 14px; height: 14px;
  background: linear-gradient(currentColor, currentColor) center/14px 1.5px no-repeat,
              linear-gradient(currentColor, currentColor) center/1.5px 14px no-repeat;
  transition: transform var(--t), opacity var(--t);
  transform-origin: center;
}
.faq__item[open] summary::after {
  background: linear-gradient(currentColor, currentColor) center/14px 1.5px no-repeat;
}
.faq__item summary:hover { color: var(--c-500); }
.faq__answer {
  padding: 0 0 1.6rem;
  max-width: 720px;
  color: var(--c-500);
  font-size: var(--fs-md);
  line-height: 1.6;
  animation: fadeUp .35s var(--ease);
}
.faq__answer em { color: var(--c-400); font-style: normal; font-size: .9em; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   BOOKING
   ========================================================== */
/* BOOKING — pattern exato sfba.pt .section.cta-section: width calc(100% - 1rem), radius 6px */
.booking {
  padding: 3rem 0;
}
@media (min-width: 720px)  { .booking { padding-block: 4rem; } }
@media (min-width: 1080px) { .booking { padding-block: 5rem; } }

/* Card colorido full-bleed (apenas padding-block, sem grid) */
.booking__grid {
  background: var(--c-accent);
  color: var(--c-white);
  border-radius: 6px;
  width: calc(100% - 1rem);
  max-width: none;
  margin-inline: auto;
  padding-block: 4rem;
  padding-inline: 0;
}
@media (min-width: 720px)  { .booking__grid { padding-block: 5rem; } }
@media (min-width: 1080px) { .booking__grid { padding-block: 6rem; } }

/* Content respeita os mesmos tokens do .container do site + grid layout */
.booking__content {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad-mobile);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 720px)  { .booking__content { padding-inline: var(--pad-tablet); } }
@media (min-width: 960px)  { .booking__content { grid-template-columns: .85fr 1.15fr; gap: 4.5rem; } }
@media (min-width: 1080px) { .booking__content { padding-inline: var(--pad-desktop); } }

.booking__aside { display: flex; flex-direction: column; gap: 1.2rem; }
.booking__title {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.05;
  color: var(--c-white);
}
.booking__bullets {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: .5rem;
  color: rgba(255,255,255,.75);
  font-size: var(--fs-md);
}
.booking__bullets li { display: flex; align-items: center; gap: .65rem; }
.booking__bullets svg { color: rgba(255,255,255,.5); flex: none; }

.booking__price {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.booking__price-num {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--c-white);
}
.booking__price-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
}

/* form panel */
.booking__form {
  background: var(--c-white);
  color: var(--c-900);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.5);
}
@media (min-width: 720px) { .booking__form { padding: 2.5rem; } }

.booking__step { display: flex; flex-direction: column; gap: 1rem; }
.booking__step[hidden], [hidden] { display: none !important; }
.booking__step-title {
  font-size: var(--fs-md);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--c-900);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.booking__step-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-900);
  color: var(--c-white);
  font-size: .75rem;
  font-weight: 600;
}

/* CALENDAR */
.cal {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .5rem;
  align-items: center;
  margin-bottom: .5rem;
}
.cal__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--c-300);
  border-radius: var(--r);
  color: var(--c-900);
  transition: border-color var(--t), color var(--t);
}
.cal__nav:hover { border-color: var(--c-900); }
.cal__title {
  text-align: center;
  font-weight: 600;
  font-size: var(--fs-base);
  text-transform: capitalize;
}
.cal__grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: .8rem;
}
.cal__dow {
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-400);
  text-align: center;
  padding: .4rem 0;
}
.cal__day {
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  font-size: var(--fs-sm);
  font-weight: 500;
  background: transparent;
  color: var(--c-900);
  border: 1px solid transparent;
  transition: background-color var(--t), color var(--t), border-color var(--t), transform var(--t);
  font-variant-numeric: tabular-nums;
}
.cal__day:hover:not([disabled]) { background: var(--c-100); }
.cal__day[disabled] { color: var(--c-300); cursor: not-allowed; }
.cal__day--out { color: var(--c-300); }
.cal__day--today { border-color: var(--c-300); }
.cal__day--selected {
  background: var(--c-900);
  color: var(--c-white);
}
.cal__day--has-slots:not(.cal__day--selected)::after {
  content: "";
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--c-900);
  position: absolute;
  margin-top: 22px;
}
.cal__day { position: relative; }

/* SLOTS */
.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: .5rem;
}
.slot {
  height: 40px;
  border: 1px solid var(--c-300);
  border-radius: var(--r);
  font-size: var(--fs-sm);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  transition: border-color var(--t), background-color var(--t), color var(--t), transform var(--t);
}
.slot:hover { border-color: var(--c-900); }
.slot:active { transform: translateY(1px); }
.slot--selected {
  background: var(--c-900);
  color: var(--c-white);
  border-color: var(--c-900);
}

/* FIELDS */
.field { display: flex; flex-direction: column; gap: .35rem; }
.field-row { display: grid; grid-template-columns: 1fr; gap: .9rem; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-700);
}
.field input,
.field select,
.field textarea {
  padding: .75rem .9rem;
  border: 1px solid var(--c-300);
  border-radius: var(--r);
  background: var(--c-white);
  font-size: var(--fs-base);
  color: var(--c-900);
  transition: border-color var(--t), box-shadow var(--t);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--c-900);
  box-shadow: 0 0 0 3px rgba(22,22,24,.08);
  outline: none;
}
.field textarea { resize: vertical; min-height: 90px; }
.field__help { font-size: var(--fs-xs); color: var(--c-500); margin-top: .25rem; }

.check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .65rem;
  align-items: start;
  font-size: var(--fs-sm);
  color: var(--c-500);
  line-height: 1.45;
}
.check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--c-400);
  border-radius: 4px;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  transition: background-color var(--t), border-color var(--t);
}
.check input[type="checkbox"]:checked {
  background: var(--c-900);
  border-color: var(--c-900);
}
.check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: linear-gradient(45deg, transparent 40%, white 40% 60%, transparent 60%) center/100% 2px no-repeat;
  transform: rotate(-45deg) translate(0,-2px);
}
.check a { color: var(--c-900); border-bottom: 1px solid var(--c-300); }

.booking__secure {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-xs);
  color: var(--c-500);
}
.booking__secure svg { color: var(--c-500); }

.booking__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  text-align: center;
  padding: 2rem 0;
}
.booking__success-mark { color: var(--c-900); }
.booking__success h3 { font-size: var(--fs-xl); font-weight: 600; }
.booking__success p { color: var(--c-500); }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact { padding: 4rem 0; border-top: var(--line); }
.contact__inner { display: flex; flex-direction: column; gap: .8rem; }
.contact__lead { font-size: var(--fs-sm); color: var(--c-500); letter-spacing: .02em; }
.contact__channels {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem;
}
.contact__channel { display: flex; flex-direction: column; gap: .15rem; }
.contact__channel span {
  font-size: var(--fs-xs); letter-spacing: .15em; text-transform: uppercase; color: var(--c-400);
}
.contact__channel strong {
  font-size: var(--fs-md); color: var(--c-900); font-weight: 600;
  border-bottom: 1px solid var(--c-300); padding-bottom: 2px;
}
.contact__channel:hover strong { border-color: var(--c-900); }
.contact__divider {
  width: 1px; height: 32px; background: var(--c-200);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--c-accent);
  color: rgba(255,255,255,.65);
  padding: 4rem var(--pad-mobile) 2.5rem;
}
@media (min-width: 720px)  { .footer { padding-inline: var(--pad-tablet); } }
@media (min-width: 1080px) { .footer { padding-inline: var(--pad-desktop); } }
.footer__inner {
  width: 100%; max-width: var(--max); margin-inline: auto;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  font-size: var(--fs-sm);
}
@media (min-width: 720px)  { .footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1.6fr; gap: 3rem; } }

.footer__col { display: flex; flex-direction: column; gap: .55rem; }
.footer__brand {
  font-size: var(--fs-md); font-weight: 600; color: var(--c-white); letter-spacing: -.01em;
  margin-bottom: .3rem;
}
.footer__heading {
  font-size: var(--fs-xs); letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.45);
  margin-bottom: .35rem;
}
.footer__col a { color: rgba(255,255,255,.7); transition: color var(--t); }
.footer__col a:hover { color: var(--c-white); }
.footer__small { font-size: var(--fs-sm); line-height: 1.55; color: rgba(255,255,255,.55); }
.footer__col--meta { gap: .8rem; }
.footer__disclaimer { font-size: var(--fs-xs); color: rgba(255,255,255,.5); line-height: 1.55; }
.footer__copy { font-size: var(--fs-xs); color: rgba(255,255,255,.4); }

/* ==========================================================
   STICKY CTA
   ========================================================== */
.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  height: 48px;
  padding: 0 1.1rem;
  border-radius: var(--r-pill);
  background: var(--c-accent);
  color: var(--c-white);
  font-size: var(--fs-btn);
  font-weight: 600;
  box-shadow:
    0 1px 0 rgba(255,255,255,.12) inset,
    0 18px 40px -16px rgba(37,50,57,.55);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), background-color var(--t);
}
.sticky-cta:hover { background: var(--c-accent-hover); }
.sticky-cta:active { transform: translateY(1px); }
.sticky-cta--visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
@media (min-width: 720px) {
  .sticky-cta { right: 1.6rem; bottom: 1.6rem; }
}

/* ==========================================================
   COOKIE BANNER
   ========================================================== */
.cookie {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 55;
  background: var(--c-white);
  border: var(--line);
  border-radius: var(--r-lg);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  font-size: var(--fs-sm);
  color: var(--c-500);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.18);
  max-width: 540px;
}
.cookie p { line-height: 1.5; }
.cookie a { color: var(--c-900); border-bottom: 1px solid var(--c-300); }
.cookie__actions { display: flex; gap: .5rem; justify-content: flex-end; }

@media (min-width: 720px) { .cookie { left: auto; right: 1.6rem; bottom: 1.6rem; } }
@media (max-width: 540px) {
  .sticky-cta--with-cookie { bottom: 9.5rem; }
}

/* ==========================================================
   PLACEHOLDER MARK — neutro (brand é estritamente monocromática)
   Marcado em itálico + sublinhado pontilhado para distinguir
   conteúdo a confirmar com o cliente.
   ========================================================== */
[data-placeholder] {
  font-style: italic;
  color: var(--c-500);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--c-300);
  text-underline-offset: 3px;
}

/* ==========================================================
   SCROLL REVEAL (CSS-only com IntersectionObserver no JS)
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

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

/* ==========================================================
   NEW COMPONENTS — v2 (post-feedback)
   ========================================================== */

/* LINK-ARROW — secondary CTA leve, sem peso de botão */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: var(--fs-btn);
  font-weight: 500;
  color: var(--c-900);
  padding: 12px 4px;
  border-bottom: 1px solid transparent;
  transition: color var(--t), border-color var(--t), gap var(--t);
}
.link-arrow:hover { color: var(--c-accent); border-bottom-color: var(--c-accent); gap: .55rem; }
.link-arrow svg { transition: transform var(--t); }
.link-arrow:hover svg { transform: translateX(2px); }

/* HERO PROOF — microbloco discreto de credibilidade */
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--c-200);
  font-size: var(--fs-sm);
  color: var(--c-500);
}
.hero__proof-item { display: inline-flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.hero__proof-stars { color: var(--c-900); letter-spacing: .05em; font-size: .95em; }
.hero__proof-label { color: var(--c-500); }
.hero__proof-label a { color: var(--c-900); border-bottom: 1px solid var(--c-300); transition: border-color var(--t); }
.hero__proof-label a:hover { border-color: var(--c-900); }
.hero__proof-divider { width: 1px; height: 18px; background: var(--c-200); }
.hero__proof-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  border: 1px solid var(--c-300);
  border-radius: var(--r-sm);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--c-500);
}

/* PROBLEMS — tag de área inline + CTA contextual no fim */
.problems__item {
  grid-template-columns: 60px auto 1fr;
  gap: 1.2rem;
}
@media (min-width: 720px) { .problems__item { grid-template-columns: 90px auto 1fr; gap: 1.5rem; } }
.problems__tag {
  font-size: var(--fs-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-500);
  padding: 4px 9px;
  border: 1px solid var(--c-200);
  border-radius: var(--r-pill);
  white-space: nowrap;
  align-self: center;
  font-weight: 500;
  transition: color .5s cubic-bezier(.16,.84,.24,1), border-color .5s cubic-bezier(.16,.84,.24,1);
}
.problems__item:hover .problems__tag { color: var(--c-900); border-color: var(--c-400); }
.problems__cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: var(--line);
  display: flex;
  flex-direction: column;
  gap: .8rem;
  align-items: flex-start;
}
.problems__cta p {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--c-900);
  letter-spacing: -.01em;
}
@media (min-width: 720px) {
  .problems__cta { flex-direction: row; align-items: center; justify-content: space-between; gap: 1.5rem; }
}

/* HOWTO — entregáveis + timeline + callout diferenciador */
.howto__deliver {
  margin-top: .55rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.howto__deliver li {
  position: relative;
  padding-left: 1rem;
  font-size: var(--fs-sm);
  color: var(--c-500);
  line-height: 1.5;
}
.howto__deliver li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-400);
}

.howto__timeline {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--c-300);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .65rem 1rem;
  list-style: none;
}
.howto__timeline-step {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-900);
  background: var(--c-white);
  border: 1px solid var(--c-300);
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.howto__timeline-arrow {
  color: var(--c-400);
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 300;
}

.howto__callout {
  margin-top: 2rem;
  padding: 1.2rem 1.4rem;
  background: var(--c-white);
  border: 1px solid var(--c-900);
  border-radius: var(--r-lg);
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  max-width: 560px;
  margin-inline: auto;
}
.howto__callout-mark {
  flex: none;
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-900);
  color: var(--c-white);
  border-radius: 50%;
}
.howto__callout div { display: flex; flex-direction: column; gap: .15rem; }
.howto__callout strong {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--c-900);
  letter-spacing: -.005em;
}
.howto__callout span { font-size: var(--fs-sm); color: var(--c-500); }

/* ÁREAS — caso típico fica sempre no fundo do card (alinhamento entre colunas) */
.area__case {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--c-300);
  font-size: var(--fs-sm);
  color: var(--c-500);
  line-height: 1.45;
  transition: color .35s cubic-bezier(.2,.7,.2,1), border-color .35s cubic-bezier(.2,.7,.2,1);
}
/* Espaçamento extra entre a descrição e o caso típico */
.area__desc { margin-bottom: 1.4rem; }
.area__case em {
  font-style: normal;
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-900);
  font-weight: 500;
  display: block;
  margin-bottom: .25rem;
}
.area:hover .area__case { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.25); }
.area:hover .area__case em { color: var(--c-white); }

/* ABOUT — vídeo placeholder + bio com strong */
.about__bio strong {
  color: var(--c-900);
  font-weight: 600;
  margin-right: .2rem;
}
.about__video {
  margin: 1.2rem 0 .4rem;
  width: 100%;
  max-width: 480px;
}
.about__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--c-900);
  color: rgba(255,255,255,.6);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  overflow: hidden;
}
.about__video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 50%, rgba(255,255,255,.06), transparent 70%);
  pointer-events: none;
}
.about__video-label {
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* BOOKING — bullets como flex (5 ícones) + slots-preview */
.booking__bullets {
  gap: .8rem;
}
.booking__bullets li {
  align-items: flex-start;
  gap: .75rem;
}
.booking__bullets li > div { flex: 1; line-height: 1.45; }
.booking__bullets strong {
  color: var(--c-white);
  font-weight: 600;
}
.booking__bullets svg { margin-top: .15em; }

.slots-preview {
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  background: var(--c-100);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.slots-preview__label {
  font-size: var(--fs-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-500);
  font-weight: 500;
}
.slots-preview__list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}
.slots-preview__slot {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 8px 12px;
  background: var(--c-white);
  border: 1px solid var(--c-300);
  border-radius: var(--r);
  color: var(--c-900);
  font-variant-numeric: tabular-nums;
  transition: border-color var(--t), background-color var(--t), transform var(--t);
  cursor: pointer;
}
.slots-preview__slot:hover { border-color: var(--c-900); }
.slots-preview__slot:active { transform: translateY(1px); }
.slots-preview__day {
  font-size: var(--fs-xs);
  color: var(--c-500);
  text-transform: lowercase;
}
.slots-preview__time {
  font-size: var(--fs-sm);
  font-weight: 600;
}
.slots-preview__more {
  font-size: var(--fs-sm);
  color: var(--c-500);
  padding: 8px 4px;
  transition: color var(--t);
}
.slots-preview__more:hover { color: var(--c-900); }

/* FOOTER — marcas institucionais */
.footer__marks {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  margin: .3rem 0 .4rem;
}
.footer__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-sm);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
}
.footer__mark-sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.15);
}
