@font-face {
  font-family: "Lufga";
  src: url("../fonts/Lufga-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/Lufga-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/Lufga-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/Lufga-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Heading Now 47";
  src: url("../fonts/HeadingNowTrial-47Extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0b0b0b;
  --graphite: #373838;
  --graphite-2: #222323;
  --paper: #f7f7f2;
  --white: #fefefe;
  --mist: #e9e9e2;
  --muted: #6a6b68;
  --primary: #e50914;
  --primary-ink: #ffffff;
  --primary-soft: #fff1f2;
  --primary-glow: rgba(229, 9, 20, 0.22);
  --cta: #2fdb6f;
  --cta-hover: #67f394;
  --cta-ink: #05170b;
  --lime: var(--primary);
  --lime-bright: var(--primary);
  --lime-ink: var(--primary-ink);
  --error: #b42318;
  --error-soft: #fff1ef;
  --success: #216e16;
  --success-soft: #edf8e9;
  --warning: #795500;
  --warning-soft: #fff7da;
  --info: #174b75;
  --info-soft: #eef7ff;
  --border: #d6d7cf;
  --shadow: 0 22px 56px rgba(11, 11, 11, 0.12), 0 2px 8px rgba(11, 11, 11, 0.06);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1220px;
  --header-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Lufga", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.is-dark {
  background: var(--ink);
}

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

[hidden] {
  display: none !important;
}

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

button,
a {
  -webkit-tap-highlight-color: rgba(229, 9, 20, 0.24);
  touch-action: manipulation;
}

a {
  color: inherit;
}

button {
  border: 0;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
}

:focus-visible {
  outline: 3px solid var(--lime-bright);
  outline-offset: 4px;
}

h1[tabindex="-1"]:focus {
  outline: none;
}

h1,
h2,
h3,
.positioning-band blockquote {
  font-family: "Heading Now 47", "Arial Black", sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.title-accent {
  color: var(--lime);
}

.section--white .title-accent,
.section--tint .title-accent {
  color: var(--primary);
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.demo-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 20px;
  background: var(--lime);
  color: var(--lime-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-align: center;
}

.site-header,
.flow-header {
  position: relative;
  z-index: 30;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header {
  position: absolute;
  inset: 36px 0 auto;
  color: var(--white);
}

.site-header.is-sticky {
  position: fixed;
  inset: 0 0 auto;
  height: 66px;
  background: rgba(11, 11, 11, 0.94);
  backdrop-filter: blur(14px);
  animation: stickyIn 240ms var(--ease) both;
}

@keyframes stickyIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.site-header__inner,
.flow-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 44px;
}

.brand img {
  width: 174px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a:not(.button) {
  text-decoration: none;
  color: rgba(254, 254, 254, 0.76);
  transition: color 160ms ease;
}

.site-nav a:not(.button):hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--cta);
  color: var(--cta-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms var(--ease), background-color 180ms ease, border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--cta-hover);
}

.button:active {
  transform: translateY(0);
}

.button.is-loading::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: buttonSpin 700ms linear infinite;
}

@keyframes buttonSpin {
  to {
    transform: rotate(360deg);
  }
}

.button:disabled,
.button[aria-disabled="true"] {
  transform: none;
  background: #d4d5ce;
  color: #777872;
  cursor: not-allowed;
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover {
  background: var(--graphite);
}

.button--outline {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.button--outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost {
  border-color: var(--border);
  background: transparent;
  color: var(--graphite);
}

.button--ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}

.button--danger {
  border-color: #e8b4ae;
  background: var(--error-soft);
  color: var(--error);
}

.button--danger:hover {
  background: #ffe3df;
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 11px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 0;
  padding: 4px 0;
  background: transparent;
  color: var(--graphite);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to right, transparent, #000 35%, #000);
}

.hero::after {
  content: "";
  position: absolute;
  right: -11vw;
  bottom: -38vw;
  width: 72vw;
  height: 72vw;
  border: 1px solid rgba(229, 9, 20, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(229, 9, 20, 0.025), 0 0 0 16vw rgba(229, 9, 20, 0.018);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
  align-items: center;
  gap: clamp(34px, 4vw, 64px);
  min-height: 820px;
  padding-top: calc(var(--header-height) + 52px);
  padding-bottom: 62px;
}

.kicker,
.eyebrow {
  margin: 0 0 24px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.display,
.flow-title,
.stage-title {
  margin: 0;
  font-family: "Heading Now 47", "Arial Black", sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(52px, 5.4vw, 82px);
}

.hero__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(254, 254, 254, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  margin-top: 36px;
}

.hero__note {
  margin: 0;
  color: rgba(254, 254, 254, 0.58);
  font-size: 13px;
}

.hero-diagnostic {
  position: relative;
  width: min(108%, 640px);
  margin: 0;
  justify-self: end;
  isolation: isolate;
}

.hero-diagnostic::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.08), transparent 68%);
}

.hero-diagnostic img {
  width: 100%;
  height: auto;
}

.section {
  position: relative;
  padding: clamp(92px, 10vw, 150px) 0;
  scroll-margin-top: var(--header-height);
}

.section--white {
  background: var(--white);
}

.section--tint {
  background: var(--paper);
}

.section--dark {
  background: var(--graphite-2);
  color: var(--white);
}

.section--lime {
  background: var(--lime);
  color: var(--lime-ink);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(48px, 8vw, 128px);
}

.section-grid--solo {
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 0.26fr);
}

.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-index::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--lime);
}

.section--dark .section-index {
  color: rgba(254, 254, 254, 0.5);
}

.display {
  font-size: clamp(46px, 5.25vw, 78px);
}

.display--medium {
  font-size: clamp(38px, 4.3vw, 64px);
}

.section-intro {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section--dark .section-intro {
  color: rgba(254, 254, 254, 0.62);
}

.editorial-list {
  margin: 56px 0 0;
  border-top: 1px solid var(--border);
}

.section--dark .editorial-list {
  border-color: rgba(254, 254, 254, 0.17);
}

.editorial-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
}

.section--dark .editorial-row {
  border-color: rgba(254, 254, 254, 0.17);
}

.editorial-row__mark {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime-ink);
  background: var(--lime);
  font-size: 12px;
  font-weight: 700;
}

.section-closing {
  margin: 34px 0 0;
  padding-left: 24px;
  border-left: 3px solid var(--lime);
  color: var(--graphite);
  font-size: 16px;
}

.section--dark .section-closing {
  color: rgba(254, 254, 254, 0.72);
}

.opportunity-lines {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid rgba(254, 254, 254, 0.18);
}

.opportunity-line {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 20px;
  min-height: 86px;
  border-bottom: 1px solid rgba(254, 254, 254, 0.18);
}

.opportunity-line__number {
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}

.opportunity-line__name {
  font-size: 16px;
}

.opportunity-line__arrow {
  color: var(--lime);
  font-size: 22px;
}

.process-steps {
  position: relative;
  margin: 68px 0 0;
  counter-reset: step;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  counter-increment: step;
}

.process-step:last-child {
  border-bottom: 1px solid var(--border);
}

.process-step__number {
  color: var(--lime-ink);
  font-family: "Lufga", sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
}

.process-step__number::before {
  content: "0" counter(step);
}

.process-step h3,
.deliverable h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.process-step p,
.deliverable p {
  margin: 0;
  color: var(--muted);
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 42px;
}

.deliverables {
  margin-top: 62px;
  border-top: 1px solid rgba(254, 254, 254, 0.18);
}

.deliverable {
  display: grid;
  grid-template-columns: 64px minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(254, 254, 254, 0.18);
}

.deliverable__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(229, 9, 20, 0.45);
  border-radius: 50%;
  color: var(--lime);
  font-size: 19px;
}

.deliverable p {
  color: rgba(254, 254, 254, 0.62);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 44px;
  margin-top: 54px;
  border-top: 1px solid var(--border);
}

.audience-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.audience-item::before {
  content: "↗";
  color: var(--primary);
  font-weight: 700;
}

.positioning-band {
  padding: 80px 0;
  background: var(--lime);
}

.positioning-band blockquote {
  max-width: 1050px;
  margin: 0;
  font-family: "Heading Now 47", sans-serif;
  font-size: clamp(40px, 5.2vw, 76px);
  letter-spacing: -0.015em;
  line-height: 0.98;
}

.final-cta {
  padding: clamp(100px, 12vw, 176px) 0 80px;
  background: var(--ink);
  color: var(--white);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: 80px;
  align-items: end;
}

.final-cta .display {
  max-width: 860px;
}

.final-cta__aside {
  padding-top: 28px;
  border-top: 1px solid rgba(254, 254, 254, 0.2);
}

.final-cta__aside p {
  margin: 0 0 24px;
  color: rgba(254, 254, 254, 0.65);
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.availability::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(229, 9, 20, 0.12);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(254, 254, 254, 0.14);
  background: var(--ink);
  color: rgba(254, 254, 254, 0.5);
  font-size: 12px;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

[data-reveal] {
  transform: none;
  opacity: 1;
}

.reveal-ready [data-reveal] {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 700ms var(--ease), opacity 700ms ease;
}

.reveal-ready [data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

.hero [data-hero] {
  animation: heroIn 780ms var(--ease) both;
}

.hero [data-hero="2"] {
  animation-delay: 100ms;
}

.hero [data-hero="3"] {
  animation-delay: 180ms;
}

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

/* Checkout e aplicativo */
.flow-page {
  min-height: 100vh;
  background: var(--paper);
}

.flow-header {
  border-color: var(--border);
  background: rgba(247, 247, 242, 0.94);
  backdrop-filter: blur(14px);
}

.flow-header .brand img {
  width: 152px;
}

.flow-header__back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.flow-main {
  padding: 60px 0 90px;
}

.flow-page .button--dark {
  background: var(--cta);
  color: var(--cta-ink);
}

.flow-page .button--dark:hover {
  background: var(--cta-hover);
}

.flow-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.flow-title {
  max-width: 770px;
  font-size: clamp(44px, 5vw, 72px);
}

.flow-intro__support {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 36px;
  align-items: start;
}

.form-surface,
.summary-surface,
.stage-surface {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(11, 11, 11, 0.03);
}

.form-surface {
  padding: clamp(28px, 4vw, 48px);
}

.summary-surface {
  position: sticky;
  top: 24px;
  padding: 30px;
}

.surface-heading {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.25;
}

.surface-support {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 14px;
}

.form-section + .form-section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--border);
}

.form-section__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.form-section__number {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.form-section__head h2,
.form-section__head h3 {
  margin: 0;
  font-size: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field-label,
.question-label {
  display: block;
  margin-bottom: 9px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 700;
}

.field label .optional,
.optional {
  color: var(--muted);
  font-weight: 400;
}

.field input,
.field textarea,
.field select,
.input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  padding: 13px 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field input:hover,
.field textarea:hover,
.field select:hover,
.input:hover {
  border-color: #a4a59e;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.12);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--error);
  background: var(--error-soft);
}

.field-help,
.field-error {
  display: block;
  min-height: 19px;
  margin-top: 7px;
  font-size: 12px;
}

.field-help {
  color: var(--muted);
}

.field-error {
  color: var(--error);
}

.coupon-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.coupon-line .button {
  border-radius: var(--radius-sm);
}

.coupon-feedback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 50px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.coupon-feedback:empty {
  display: none;
}

.coupon-feedback--success {
  background: var(--success-soft);
  color: var(--success);
}

.coupon-feedback--error {
  background: var(--error-soft);
  color: var(--error);
}

.product-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-title {
  margin: 0;
  font-family: "Heading Now 47", sans-serif;
  font-size: 36px;
  line-height: 0.98;
}

.product-meta {
  margin: 12px 0 28px;
  color: var(--muted);
  font-size: 13px;
}

.price-lines {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 17px 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0;
  color: var(--muted);
  font-size: 14px;
}

.price-row strong {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.price-row--discount {
  color: var(--success);
}

.price-row--discount strong {
  color: var(--success);
}

.price-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
}

.price-total span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-total strong {
  font-family: "Lufga", sans-serif;
  font-size: 36px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.checkout-action {
  width: 100%;
}

.checkout-feedback,
.booking-feedback {
  min-height: 20px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.checkout-feedback--info,
.booking-feedback--info {
  color: var(--info);
}

.checkout-feedback--success,
.booking-feedback--success {
  color: var(--success);
}

.checkout-feedback--error,
.booking-feedback--error,
.dialog-error {
  color: var(--error);
}

.secure-note {
  display: flex;
  gap: 10px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.commercial-path {
  margin-top: 18px;
  padding: 17px;
  border: 1px solid #e6d18c;
  border-radius: var(--radius-sm);
  background: var(--warning-soft);
  color: var(--warning);
  font-size: 13px;
}

.commercial-path[hidden] {
  display: none;
}

.commercial-path p {
  margin: 0 0 12px;
}

.commercial-path .button {
  width: 100%;
}

.feedback {
  display: flex;
  gap: 12px;
  padding: 15px 17px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.feedback--info {
  background: var(--info-soft);
  color: var(--info);
}

.feedback--success {
  background: var(--success-soft);
  color: var(--success);
}

.feedback--warning {
  background: var(--warning-soft);
  color: var(--warning);
}

.feedback--error {
  background: var(--error-soft);
  color: var(--error);
}

.feedback strong {
  display: block;
}

/* Diagnóstico */
.app-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.app-rail {
  position: sticky;
  top: 24px;
  min-width: 0;
}

.rail-label {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rail-customer {
  margin: 0 0 28px;
  font-weight: 600;
}

.journey-current {
  display: none;
}

.journey-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  min-height: 54px;
  color: #8a8b85;
  font-size: 13px;
}

.journey-item::after {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 0;
  left: 13px;
  width: 1px;
  background: var(--border);
}

.journey-item:last-child::after {
  display: none;
}

.journey-item__dot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--paper);
  color: inherit;
  font-size: 11px;
  font-weight: 700;
}

.journey-item.is-active {
  color: var(--ink);
  font-weight: 700;
}

.journey-item.is-active .journey-item__dot {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--primary-ink);
}

.journey-item.is-complete {
  color: var(--graphite);
}

.journey-item.is-complete .journey-item__dot {
  border-color: var(--graphite);
  background: var(--graphite);
  color: var(--white);
}

.stage-surface {
  min-width: 0;
  min-height: 600px;
  overflow: hidden;
}

.stage-header {
  padding: clamp(28px, 5vw, 54px);
  border-bottom: 1px solid var(--border);
}

.stage-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-title {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 68px);
}

.stage-lead {
  max-width: 740px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.stage-body {
  padding: clamp(28px, 5vw, 54px);
}

.stage-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.stage-actions--end {
  justify-content: flex-end;
}

.tracking-submit-error {
  margin-top: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(193, 54, 54, 0.3);
  border-radius: 12px;
  background: rgba(193, 54, 54, 0.07);
  color: #842626;
  font-size: 13px;
}

.tracking-submit-error[hidden] {
  display: none;
}

.progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--mist);
}

.progress-track__bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
  transition: width 350ms var(--ease);
}

.question-group + .question-group {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}

.question-group h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.question-support {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px 12px 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--graphite);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.choice:hover {
  border-color: #a3a49e;
  transform: translateY(-1px);
}

.choice input {
  position: absolute;
  top: 16px;
  left: 15px;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--primary);
}

.choice:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--ink);
}

.choice--wide {
  grid-column: 1 / -1;
}

.conditional {
  margin-top: 16px;
}

.conditional[hidden] {
  display: none;
}

.triad {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.triad .choice {
  min-width: 118px;
  flex: 0 0 auto;
}

.participant-list {
  display: grid;
  gap: 12px;
}

.participant-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: start;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.icon-button:hover {
  border-color: #e8b4ae;
  background: var(--error-soft);
  color: var(--error);
}

.add-participant {
  margin-top: 12px;
}

.completion-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--lime-ink);
  font-family: "Lufga", sans-serif;
  font-size: 30px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 32px;
}

.date-groups {
  display: grid;
  gap: 12px;
}

.date-group {
  display: grid;
  grid-template-columns: minmax(160px, 0.48fr) minmax(0, 0.52fr);
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.date-group:first-child {
  border-top: 1px solid var(--border);
}

.date-group__label {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}

.time-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.time-option {
  position: relative;
}

.time-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.time-option label,
.time-option__surface {
  display: grid;
  place-items: center;
  gap: 2px;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.time-option__surface {
  cursor: not-allowed;
}

.time-option strong {
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.slot-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.time-option--available .slot-status {
  color: var(--primary);
}

.time-option--filled .time-option__surface,
.time-option--conflict label {
  border-style: dashed;
  background: #efefe9;
  color: #777872;
}

.time-option--conflict label {
  cursor: not-allowed;
}

.time-option label:hover {
  border-color: var(--primary);
}

.time-option input:checked + label {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--lime-ink);
}

.time-option input:focus-visible + label {
  outline: 3px solid var(--lime-bright);
  outline-offset: 3px;
}

.booking-consent {
  margin-top: 30px;
}

.booking-skeleton {
  display: grid;
  gap: 14px;
}

.skeleton-line {
  display: block;
  height: 72px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #e8e8e1;
}

.skeleton-line::after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: skeletonSweep 1.2s ease-in-out infinite;
}

@keyframes skeletonSweep {
  to {
    transform: translateX(300%);
  }
}

.loading-spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 24px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: buttonSpin 800ms linear infinite;
}

.booking-summary {
  align-self: start;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.booking-summary h3 {
  margin: 0 0 24px;
  font-size: 20px;
}

.summary-list {
  margin: 0;
}

.summary-list div {
  display: grid;
  gap: 3px;
  padding: 14px 0;
  border-top: 1px solid rgba(254, 254, 254, 0.15);
}

.summary-list dt {
  color: rgba(254, 254, 254, 0.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.summary-list--light div {
  border-color: var(--border);
}

.summary-list--light dt {
  color: var(--muted);
}

.empty-state,
.recovery-state {
  padding: 64px 28px;
  text-align: center;
}

.empty-state h2,
.recovery-state h1 {
  margin: 0;
  font-family: "Heading Now 47", sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
}

.empty-state p,
.recovery-state p {
  max-width: 580px;
  margin: 20px auto 28px;
  color: var(--muted);
}

.empty-state--compact {
  padding: 38px 20px 20px;
}

.empty-state__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.empty-state > .feedback {
  max-width: 680px;
  margin-inline: auto;
  text-align: left;
}

.external-link {
  color: var(--lime);
  font-weight: 700;
  text-underline-offset: 3px;
}

.summary-list--light .external-link {
  color: var(--primary);
}

.text-link--inline {
  min-height: 30px;
  margin-left: 8px;
  font-size: 12px;
}

.management-link {
  margin-top: 28px;
  padding: 18px;
  border: 1px dashed #a7a89f;
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.management-link label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
}

.management-link__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.management-link input {
  min-width: 0;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

dialog {
  width: min(calc(100% - 32px), 520px);
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(11, 11, 11, 0.66);
  backdrop-filter: blur(4px);
}

.dialog-body {
  padding: 30px;
}

.dialog-body h2 {
  margin: 0 0 10px;
}

.dialog-body p {
  margin: 0;
  color: var(--muted);
}

.dialog-body .dialog-error {
  min-height: 20px;
  margin-top: 14px;
  color: var(--error);
  font-size: 13px;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 28px;
}

.toast {
  position: fixed;
  z-index: 100;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  max-width: min(420px, calc(100% - 40px));
  transform: translateY(20px);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms var(--ease), opacity 220ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.trial-note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 1040px) {
  .site-nav a:not(.button) {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.88fr);
    gap: 34px;
  }

  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .app-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 26px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    inset: 36px 0 auto;
  }

  .brand img {
    width: 148px;
  }

  .site-nav .button {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-height) + 96px);
  }

  .hero h1 {
    max-width: 680px;
  }

  .hero-diagnostic {
    width: min(100%, 620px);
    justify-self: center;
  }

  .section-grid,
  .section-grid--solo,
  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .process-step,
  .deliverable {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .process-step p,
  .deliverable p {
    grid-column: 2;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .flow-intro {
    display: block;
  }

  .flow-intro__support {
    margin-top: 20px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .summary-surface {
    position: static;
  }

  .app-layout {
    grid-template-columns: 1fr;
  }

  .app-rail {
    position: static;
  }

  .rail-customer {
    margin-bottom: 16px;
  }

  .journey-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    padding-bottom: 8px;
  }

  .journey-item {
    display: block;
    min-width: 0;
    padding-top: 36px;
    padding-right: 8px;
    font-size: 11px;
    line-height: 1.25;
  }

  .journey-item::after {
    top: 13px;
    right: 0;
    bottom: auto;
    left: 28px;
    width: calc(100% - 28px);
    height: 1px;
  }

  .journey-item__dot {
    position: absolute;
    top: 0;
    left: 0;
  }

}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .site-header {
    inset: 42px 0 auto;
  }

  .site-nav .button {
    display: none;
  }

  .brand img {
    width: 138px;
  }

  .hero__inner {
    padding-top: calc(var(--header-height) + 44px);
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(46px, 13.5vw, 58px);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero-diagnostic {
    width: calc(100% + 32px);
    margin-inline: -16px;
    overflow: hidden;
  }

  .hero-diagnostic img {
    width: 134%;
    max-width: none;
    margin-left: -17%;
  }

  .section {
    padding: 78px 0;
  }

  .display {
    font-size: clamp(42px, 13vw, 58px);
  }

  .editorial-row {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
  }

  .process-step,
  .deliverable {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .process-step__number {
    font-size: 34px;
  }

  .section-action .button {
    width: 100%;
  }

  .positioning-band {
    padding: 64px 0;
  }

  .final-cta {
    padding-top: 88px;
  }

  .site-footer__inner {
    display: grid;
  }

  .flow-header__back {
    max-width: 120px;
    line-height: 1.2;
    text-align: right;
  }

  .flow-main {
    padding: 42px 0 72px;
  }

  .form-surface,
  .summary-surface,
  .stage-surface {
    border-radius: var(--radius);
  }

  .form-surface,
  .stage-header,
  .stage-body {
    padding: 22px 18px;
  }

  .summary-surface {
    padding: 24px 20px;
  }

  .field-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .field--full,
  .choice--wide {
    grid-column: auto;
  }

  .field input,
  .field textarea,
  .field select,
  .input {
    font-size: 16px;
  }

  .coupon-line {
    grid-template-columns: 1fr;
  }

  .coupon-line .button {
    width: 100%;
  }

  .stage-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .stage-title {
    font-size: clamp(34px, 10.5vw, 43px);
    line-height: 0.98;
  }

  .stage-lead {
    margin-top: 14px;
    font-size: 15px;
  }

  .stage-kicker {
    margin-bottom: 14px;
  }

  .stage-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 32px;
    padding-top: 20px;
  }

  .stage-actions > div {
    display: grid;
    gap: 10px;
  }

  .stage-actions .button {
    width: 100%;
  }

  .triad {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1.4fr);
    gap: 6px;
  }

  .triad .choice {
    min-width: 0;
    min-height: 54px;
    padding: 9px 7px 9px 33px;
    font-size: 13px;
    line-height: 1.15;
  }

  .triad .choice input {
    top: 16px;
    left: 9px;
    width: 18px;
    height: 18px;
  }

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

  .journey-current {
    display: block;
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 12px;
  }

  #questionnaire-form > .stage-actions {
    position: fixed;
    z-index: 12;
    right: 16px;
    bottom: 0;
    left: 16px;
    max-width: 588px;
    margin: 0 auto;
    padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
    border: 1px solid var(--border);
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -14px 34px rgba(19, 20, 18, 0.08);
    backdrop-filter: blur(14px);
  }

  #questionnaire-form {
    padding-bottom: calc(152px + env(safe-area-inset-bottom));
  }

  #questionnaire-form :is(input, textarea, select, button, [role="checkbox"], [role="radio"]) {
    scroll-margin-bottom: 150px;
  }

  #questionnaire-form > .stage-actions > div {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  }

  .participant-row {
    grid-template-columns: 1fr 44px;
  }

  .participant-row .participant-email {
    grid-column: 1 / -1;
  }

  .participant-row .icon-button {
    grid-column: 2;
    grid-row: 1;
  }

  .date-group {
    grid-template-columns: 1fr;
  }

  .management-link__row {
    grid-template-columns: 1fr;
  }

  .confirmation-actions {
    display: grid;
  }

  .confirmation-actions .button {
    width: 100%;
  }

  .dialog-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready [data-reveal] {
    transform: none;
    opacity: 1;
  }
}
