:root {
  --navy: #050716;
  --navy-2: #0a0d22;
  --navy-3: #11152d;
  --coral: #fe5e37;
  --coral-deep: #e94e2b;
  --paper: #f2f3f3;
  --paper-soft: #e8e9e8;
  --white: #f7f8f8;
  --muted: #a7aab7;
  --ink: #101226;
  --line-dark: rgba(255, 255, 255, .12);
  --line-light: rgba(5, 7, 22, .14);
  --display: "Archivo", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --page: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.container { width: var(--page); margin-inline: auto; }
.coral { color: var(--coral); }
.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 24px;
  color: var(--coral);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.booking-light .eyebrow { color: var(--coral-deep); }
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--display);
  font-size: .94rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: var(--navy); }
.btn-primary:hover { background: #ff7858; }
.arrow { font-size: 1.2em; line-height: 1; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }

/* Header, idêntico à Home */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(5, 7, 22, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo { width: 142px; flex: 0 0 auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  margin-left: auto;
  white-space: nowrap;
}
.nav-links a {
  color: #c7c9d1;
  font-size: .92rem;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--white); }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.menu-button span,
.menu-button span::before,
.menu-button span::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button span { position: relative; }
.menu-button span::before,
.menu-button span::after { content: ""; position: absolute; left: 0; }
.menu-button span::before { top: -6px; }
.menu-button span::after { top: 6px; }
body.menu-open .menu-button span { background: transparent; }
body.menu-open .menu-button span::before { top: 0; transform: rotate(45deg); background: var(--coral); }
body.menu-open .menu-button span::after { top: 0; transform: rotate(-45deg); background: var(--coral); }

/* Primeira dobra */
.booking-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(148px, 16vh, 190px) 0 clamp(72px, 8vh, 108px);
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 82% 28%, rgba(254, 94, 55, .13), transparent 28%),
    linear-gradient(140deg, #050716 0%, #080a1b 66%, #0b0d21 100%);
}
.booking-hero::after {
  content: "30";
  position: absolute;
  right: -.04em;
  top: .22em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .055);
  font-family: var(--display);
  font-size: clamp(18rem, 34vw, 38rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.09em;
  pointer-events: none;
}
.booking-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .72fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: end;
}
.booking-hero__eyebrow { margin-bottom: 26px; }
.booking-hero__title {
  max-width: 12.2ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.9vw, 5.65rem);
  font-weight: 700;
  line-height: .97;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.booking-hero__lead {
  max-width: 58ch;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.7;
}
.booking-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
}
.booking-hero__note { color: #7f8290; font-size: .8rem; }

.booking-brief {
  position: relative;
  border: 1px solid var(--line-dark);
  background: rgba(10, 13, 34, .78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.booking-brief__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: 30px;
  border-bottom: 1px solid var(--line-dark);
}
.booking-brief__number {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: .8;
  letter-spacing: -.07em;
}
.booking-brief__number span {
  display: block;
  margin-top: 14px;
  color: var(--coral);
  font-family: var(--body);
  font-size: .65rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.booking-brief__promise {
  max-width: 15ch;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  text-wrap: balance;
}
.booking-brief__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 22px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.booking-brief__item:last-child { border-bottom: 0; }
.booking-brief__index {
  color: var(--coral);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.booking-brief__item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--display);
  font-size: .94rem;
}
.booking-brief__item p {
  margin: 0;
  color: #858896;
  font-size: .83rem;
  line-height: 1.55;
}
.booking-context {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(56px, 7vw, 90px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.booking-context__item {
  padding: 22px 28px;
  border-right: 1px solid var(--line-dark);
}
.booking-context__item:first-child { padding-left: 0; }
.booking-context__item:last-child { border-right: 0; }
.booking-context__item strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: .9rem;
}
.booking-context__item span { color: #7f8290; font-size: .78rem; line-height: 1.5; }

/* Seções claras */
.booking-light { position: relative; background: var(--paper); color: #5d606b; }
.booking-light h2,
.booking-light h3,
.booking-light strong { color: var(--ink); }

.booking-calendar-section {
  padding: clamp(78px, 8vw, 120px) 0;
  scroll-margin-top: 76px;
}
.booking-calendar-head {
  max-width: 1180px;
  margin-bottom: 48px;
}
.booking-calendar-head h2,
.booking-analysis__head h2,
.booking-prep h2,
.booking-proof__head h2,
.booking-final h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.booking-calendar-head h2 {
  max-width: none;
  font-size: min(5rem, 6.3vw);
}
.booking-calendar-head h2 span { display: block; white-space: nowrap; }
.booking-calendar-head p {
  max-width: 52ch;
  margin: 30px 0 0;
  font-size: 1rem;
  line-height: 1.7;
}
.booking-calendar-frame {
  min-height: 720px;
  overflow: hidden;
  border: 1px solid #d5d6d5;
  background: #fff;
  box-shadow: 18px 18px 0 var(--coral);
}
.booking-calendar-frame iframe { display: block; min-height: 720px; background: #fff; }
.booking-calendar-foot {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-top: 28px;
  color: #72757f;
  font-size: .8rem;
  line-height: 1.55;
}
.booking-calendar-foot strong { font-weight: 600; }

/* Leitura da operação */
.booking-analysis { padding: clamp(82px, 8vw, 124px) 0; background: #080a1c; }
.booking-analysis__head {
  max-width: 1180px;
  margin-bottom: clamp(48px, 6vw, 76px);
}
.booking-analysis__head h2 { max-width: none; font-size: clamp(2.55rem, 5.2vw, 5rem); }
.booking-analysis__head h2 span { display: block; white-space: nowrap; }
.booking-analysis__head p { max-width: 52ch; margin: 30px 0 0; color: #8f929f; font-size: 1rem; line-height: 1.7; }
.booking-analysis__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.booking-analysis__item {
  min-height: 250px;
  padding: 34px 38px 38px 0;
  border-right: 1px solid var(--line-dark);
}
.booking-analysis__item + .booking-analysis__item { padding-left: 38px; }
.booking-analysis__item:last-child { border-right: 0; }
.booking-analysis__index {
  display: block;
  margin-bottom: 48px;
  color: var(--coral);
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.booking-analysis__item h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.booking-analysis__item p { max-width: 33ch; margin: 0; color: #8f929f; font-size: .9rem; line-height: 1.65; }

/* Prova */
.booking-proof {
  padding: clamp(82px, 8vw, 124px) 0;
  border-block: 1px solid var(--line-dark);
  background: var(--navy-2);
}
.booking-proof__head {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
  margin-bottom: clamp(44px, 5vw, 68px);
}
.booking-proof__head h2 { max-width: none; font-size: min(4.35rem, 7.2vw); }
.booking-proof__head h2 span { display: block; white-space: nowrap; }
.booking-proof__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  color: #c7c9d1;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease;
}
.booking-proof__link:hover { color: var(--coral); border-color: var(--coral); }
.booking-proof__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(38px, 7vw, 90px); }
.booking-quote { margin: 0; padding-top: 34px; border-top: 1px solid var(--line-dark); }
.booking-quote__text {
  max-width: 22ch;
  min-height: 3.3em;
  margin: 0 0 34px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.booking-quote__person { display: flex; align-items: center; gap: 16px; }
.booking-quote__person img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; filter: saturate(.82); }
.booking-quote__person strong { display: block; margin-bottom: 2px; font-family: var(--display); font-size: .9rem; }
.booking-quote__person span { display: block; color: #7f8290; font-size: .78rem; }

/* Preparação */
.booking-prep { padding: clamp(82px, 8vw, 124px) 0; }
.booking-prep__grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}
.booking-prep h2 { max-width: 10ch; font-size: clamp(2.55rem, 5.2vw, 5rem); }
.booking-prep__intro { max-width: 42ch; margin: 26px 0 0; font-size: .94rem; line-height: 1.7; }
.booking-prep__list { border-top: 1px solid #cdcece; }
.booking-prep__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #cdcece;
}
.booking-prep__index { color: var(--coral-deep); font-family: var(--display); font-size: .72rem; font-weight: 700; letter-spacing: .08em; }
.booking-prep__item strong { display: block; margin-bottom: 4px; font-family: var(--display); font-size: .95rem; }
.booking-prep__item p { max-width: 50ch; margin: 0; font-size: .86rem; line-height: 1.6; }
.booking-prep__reassurance { margin: 26px 0 0; padding-left: 18px; border-left: 3px solid var(--coral); color: #686b75; font-size: .86rem; line-height: 1.65; }

/* Fechamento */
.booking-final {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 9vw, 136px) 0;
  background: var(--navy);
}
.booking-final::after {
  content: "";
  position: absolute;
  width: min(44rem, 70vw);
  aspect-ratio: 1;
  right: -20%;
  bottom: -90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 94, 55, .18), transparent 66%);
  pointer-events: none;
}
.booking-final__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
}
.booking-final h2 { max-width: none; font-size: clamp(2.7rem, 4.8vw, 5rem); }
.booking-final h2 span { display: block; white-space: nowrap; }
.booking-final p { max-width: 54ch; margin: 28px 0 0; color: #858896; font-size: 1rem; line-height: 1.7; }
.booking-final__inner .btn { display: flex; width: max-content; margin-top: 36px; }

/* Rodapé, idêntico à Home */
.footer { padding: 54px 0 38px; background: var(--navy); }
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: start;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand img { width: 134px; }
.footer-brand p { max-width: 390px; margin: 18px 0 0; color: #777a88; font-size: .9rem; }
.footer-company { max-width: 520px; margin-top: 26px; color: #9295a2; font-size: .82rem; font-style: normal; line-height: 1.65; }
.footer-company strong,
.footer-company span,
.footer-company a { display: block; }
.footer-company strong { color: #c3c5ce; font-family: var(--display); font-size: .86rem; }
.footer-company a { width: max-content; margin-top: 4px; color: var(--coral); }
.footer-company a:hover { color: var(--white); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px 30px; max-width: 600px; color: #a8abb6; font-size: .86rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 26px; color: #646775; font-size: .76rem; }

@media (max-width: 980px) {
  :root { --page: min(100% - 36px, 760px); }
  .site-header { background: var(--navy); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-links {
    position: fixed;
    z-index: 31;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin: 0;
    min-height: 100vh;
    height: 100dvh;
    padding: 86px 28px 40px;
    background: var(--navy);
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.open { display: flex; opacity: 1; pointer-events: auto; transform: none; }
  .nav-links a { padding: 0; border: 0; font-family: var(--display); font-size: 1.55rem; font-weight: 700; }
  .menu-button { position: relative; z-index: 32; display: inline-flex; }
  .booking-hero__grid,
  .booking-calendar-head,
  .booking-analysis__head,
  .booking-prep__grid,
  .booking-final__inner { grid-template-columns: 1fr; }
  .booking-brief { max-width: 680px; }
  .booking-proof__head { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  :root { --page: calc(100% - 36px); }
  .booking-hero { padding: 126px 0 58px; }
  .booking-hero::after { top: .62em; right: -.18em; font-size: 18rem; }
  .booking-hero__grid { gap: 42px; }
  .booking-hero__title { max-width: 13ch; font-size: clamp(2.7rem, 12.8vw, 4rem); }
  .booking-hero__lead { margin-top: 24px; font-size: 1rem; }
  .booking-hero__actions { align-items: stretch; flex-direction: column; margin-top: 30px; }
  .booking-hero__actions .btn { width: 100%; }
  .booking-brief__head { padding: 24px; }
  .booking-brief__item { padding: 22px 24px; }
  .booking-context { grid-template-columns: 1fr; margin-top: 52px; }
  .booking-context__item,
  .booking-context__item:first-child { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .booking-context__item:last-child { border-bottom: 0; }
  .booking-calendar-section,
  .booking-analysis,
  .booking-proof,
  .booking-prep,
  .booking-final { padding: 84px 0; }
  .booking-calendar-head,
  .booking-analysis__head { margin-bottom: 36px; }
  .booking-analysis__head h2,
  .booking-prep h2 { max-width: 100%; font-size: clamp(2.35rem, 11vw, 3.45rem); }
  .booking-analysis__head h2 span { white-space: normal; }
  .booking-final h2 span { white-space: normal; }
  .booking-calendar-frame { margin-right: 10px; min-height: 800px; box-shadow: 10px 10px 0 var(--coral); }
  .booking-calendar-frame iframe { min-height: 800px; }
  .booking-calendar-foot { flex-direction: column; gap: 12px; }
  .booking-analysis__grid { grid-template-columns: 1fr; }
  .booking-analysis__item,
  .booking-analysis__item + .booking-analysis__item { min-height: 0; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .booking-analysis__item:last-child { border-bottom: 0; }
  .booking-analysis__index { margin-bottom: 24px; }
  .booking-proof__head h2 { max-width: none; }
  .booking-proof__grid { grid-template-columns: 1fr; gap: 52px; }
  .booking-quote__text { min-height: 0; }
  .booking-final__inner .btn { width: 100%; margin-top: 30px; }
  .footer-top,
  .footer-bottom { grid-template-columns: 1fr; display: grid; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 420px) {
  .booking-brief__head { align-items: flex-start; flex-direction: column; }
  .booking-brief__promise { max-width: 24ch; }
}

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