:root {
  --white: oklch(1 0 0);
  --ink: oklch(0.12 0.008 260);
  --anthracite: oklch(0.22 0.01 260);
  --muted: oklch(0.42 0.012 260);
  --soft: oklch(0.965 0.004 260);
  --soft-2: oklch(0.925 0.006 260);
  --line: oklch(0.86 0.008 260);
  --line-strong: oklch(0.77 0.01 260);
  --red: oklch(0.56 0.235 28);
  --red-dark: oklch(0.45 0.2 28);
  --red-soft: oklch(0.95 0.035 28);
  --red-on-dark: oklch(0.76 0.16 28);
  --shadow-tight: 0 6px 14px oklch(0.12 0.008 260 / 0.12);
  --shadow-panel: 0 16px 34px oklch(0.12 0.008 260 / 0.16);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 150ms;
  --motion-med: 300ms;
  --font-display: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ui: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wide: min(1480px, calc(100% - clamp(32px, 5vw, 72px)));
  --shell: min(1180px, calc(100% - clamp(28px, 5vw, 64px)));
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

picture {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 30;
  translate: 0 -160%;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 900;
}

.skip-link:focus {
  translate: 0 0;
}

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

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  color: currentColor;
  flex: 0 0 auto;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: var(--wide);
  min-height: 78px;
  margin: 0 auto;
  background: color-mix(in oklch, var(--white) 90%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.brand img {
  width: 52px;
  height: 52px;
  padding: 3px;
  border: 1px solid oklch(0.88 0.006 260);
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.brand strong,
.brand em {
  display: block;
  font-style: normal;
  letter-spacing: 0;
}

.brand em {
  color: var(--anthracite);
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 38px);
  color: var(--anthracite);
  font-size: 14px;
  font-weight: 900;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-fast) var(--ease-out);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  border: 0;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 900;
  letter-spacing: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  background: var(--red);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.academy-hero {
  width: var(--wide);
  margin: 8px auto 0;
  display: grid;
  grid-template-columns: minmax(238px, 0.24fr) minmax(0, 1fr);
  grid-template-areas: "rail main";
  gap: clamp(18px, 2.2vw, 32px);
  min-height: min(780px, calc(100svh - 96px));
  min-width: 0;
}

.hero-rail {
  grid-area: rail;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, oklch(0.18 0.012 260), var(--ink) 46%, oklch(0.12 0.03 28)),
    var(--ink);
  color: var(--white);
  padding: clamp(20px, 2.2vw, 30px);
  min-width: 0;
}

.hero-rail::after {
  content: "";
  min-height: 126px;
  margin: auto -30px -30px;
  background:
    linear-gradient(90deg, transparent 49%, oklch(1 0 0 / 0.1) 49.5% 50.5%, transparent 51%),
    radial-gradient(circle at center, transparent 0 42px, oklch(1 0 0 / 0.11) 43px 44px, transparent 45px);
  opacity: 0.7;
}

.rail-mark {
  width: 96px;
  height: 96px;
  padding: 8px;
  border: 1px solid oklch(1 0 0 / 0.28);
  border-radius: 10px;
  object-fit: contain;
  background: var(--white);
}

.hero-rail p {
  margin: 0;
  max-width: 26ch;
  color: oklch(0.9 0.004 260);
  font-size: 15px;
  line-height: 1.55;
}

.rail-proof {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid oklch(1 0 0 / 0.14);
  border-radius: var(--radius);
  background: oklch(1 0 0 / 0.12);
}

.rail-proof div {
  padding: 16px;
  background: oklch(1 0 0 / 0.06);
}

.rail-proof dt {
  font-family: var(--font-display);
  font-size: 39px;
  font-weight: 900;
  line-height: 0.85;
}

.rail-proof dd {
  margin: 7px 0 0;
  color: oklch(0.82 0.006 260);
  font-size: 12px;
  font-weight: 900;
}

.rail-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
  font-weight: 900;
}

.hero-main {
  grid-area: main;
  display: grid;
  grid-template-columns: minmax(345px, 0.78fr) minmax(520px, 1.1fr);
  gap: clamp(22px, 3.6vw, 54px);
  align-items: center;
  min-width: 0;
}

.hero-copy {
  padding: 26px 0 36px;
  min-width: 0;
}

.location-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--anthracite);
  font-size: 15px;
  font-weight: 900;
}

.location-line .icon {
  color: var(--red);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
  overflow-wrap: break-word;
}

h1 {
  max-width: 12.4ch;
  font-family: var(--font-display);
  font-size: clamp(3.9rem, 5.1vw, 5rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

h1::after,
.section-copy h2::after,
.staff-head h2::after,
.gallery-head h2::after {
  content: "";
  display: block;
  width: min(220px, 58%);
  height: 8px;
  margin-top: 14px;
  background: var(--red);
  transform: skewX(-18deg);
}

h2 {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.1vw, 4.65rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  font-size: 18px;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 58ch;
  margin: 28px 0 0;
  color: var(--anthracite);
  font-size: 1.18rem;
}

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

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  transition:
    transform var(--motion-fast) var(--ease-out),
    background-color var(--motion-fast) ease,
    border-color var(--motion-fast) ease;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 35%, oklch(1 0 0 / 0.24) 45%, transparent 56%),
    radial-gradient(circle at 12% 0%, oklch(1 0 0 / 0.22), transparent 35%);
  opacity: 0;
  transform: translateX(-24%);
  transition: opacity var(--motion-med) ease, transform 420ms var(--ease-out);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button-primary:hover,
.header-cta:hover,
.sticky-whatsapp:hover {
  background: var(--red-dark);
}

.button-primary:hover::before {
  opacity: 1;
  transform: translateX(18%);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.button-secondary:hover {
  border-color: var(--ink);
}

.button:hover,
.header-cta:hover,
.sticky-whatsapp:hover {
  transform: translateY(-1px);
}

.hero-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.55fr);
  grid-template-rows: minmax(360px, 1fr) 178px;
  gap: 12px;
  min-height: min(720px, calc(100svh - 120px));
  min-width: 0;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--soft);
  min-width: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo picture,
.confidence-photo picture {
  width: 100%;
  height: 100%;
}

.hero-photo-main {
  grid-row: 1 / span 2;
}

.hero-photo-main::after,
.field-main::after,
.gallery-large::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid oklch(1 0 0 / 0.5);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 49%, oklch(1 0 0 / 0.18) 49.5% 50.5%, transparent 51%),
    linear-gradient(0deg, transparent 49%, oklch(1 0 0 / 0.14) 49.5% 50.5%, transparent 51%);
  pointer-events: none;
}

.hero-photo-wide img {
  object-position: center 38%;
}

.hero-photo-kit {
  background: var(--ink);
}

.hero-photo-kit img {
  object-fit: contain;
  padding: 10px;
}

.hero-program-card {
  position: absolute;
  left: clamp(14px, 3vw, 34px);
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid oklch(1 0 0 / 0.52);
  border-radius: var(--radius);
  background: oklch(1 0 0 / 0.82);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-tight);
}

.hero-program-card div,
.hero-program-card p {
  margin: 0;
  padding: 16px;
  background: oklch(1 0 0 / 0.76);
}

.hero-program-card span {
  display: block;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.hero-program-card strong {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  font-weight: 900;
}

.hero-program-card p {
  display: grid;
  place-items: center;
  color: var(--anthracite);
  font-size: 13px;
  font-weight: 900;
}

.signal-strip {
  width: var(--wide);
  margin: clamp(26px, 4vw, 48px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.signal-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  align-items: center;
  min-height: 104px;
  padding: 20px;
  background: var(--white);
}

.signal-item .icon {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  color: var(--red);
}

.signal-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.signal-item strong {
  font-size: 15px;
  line-height: 1.25;
}

.section {
  padding: clamp(76px, 10vw, 136px) 0;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.section-copy p,
.staff-head p,
.final-layout p {
  max-width: 62ch;
  color: var(--anthracite);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--red);
  font-weight: 900;
}

.parent-confidence {
  padding: clamp(58px, 8vw, 96px) 0 0;
}

.confidence-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(220px, 0.38fr) minmax(280px, 0.52fr);
  gap: 14px;
  align-items: stretch;
}

.confidence-copy,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(22px, 3vw, 34px);
}

.confidence-copy h2 {
  max-width: 12ch;
}

.confidence-copy p {
  max-width: 56ch;
  color: var(--anthracite);
  font-size: 18px;
}

.confidence-photo {
  overflow: hidden;
  min-height: 420px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--soft);
}

.confidence-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.intent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.intent-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid color-mix(in oklch, var(--red) 34%, var(--line));
  border-radius: var(--radius);
  color: var(--red);
  font-weight: 900;
}

.contact-card {
  background:
    linear-gradient(135deg, var(--white), var(--soft) 70%, var(--red-soft)),
    var(--white);
}

.contact-card dl {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 18px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.contact-card div {
  padding: 16px;
  background: color-mix(in oklch, var(--white) 92%, var(--soft));
}

.contact-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.contact-card dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
}

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

.offer-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.52fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: end;
  margin-bottom: 28px;
}

.offer-head h2 {
  max-width: 10ch;
}

.offer-head p {
  margin: 0;
  color: var(--anthracite);
  font-size: 18px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.02;
}

.offer-card p {
  margin: 14px 0 22px;
  color: var(--anthracite);
  font-weight: 750;
}

.offer-card a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
}

.offer-card-strong {
  background: var(--ink);
}

.offer-card-strong h3 {
  color: var(--white);
}

.offer-card-strong p {
  color: oklch(0.86 0.006 260);
}

.offer-card-strong a {
  color: var(--red-on-dark);
}

.decision-section {
  padding-top: clamp(42px, 6vw, 82px);
  background: var(--white);
}

.decision-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.decision-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  padding: clamp(24px, 3.6vw, 42px);
  border-radius: var(--radius);
  background: var(--ink);
}

.decision-copy .section-label {
  color: var(--red-on-dark);
}

.decision-copy h2 {
  color: var(--white);
}

.decision-copy p {
  color: oklch(0.88 0.006 260);
}

.decision-copy .button {
  width: fit-content;
  margin-top: 26px;
}

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

.decision-card {
  min-height: 208px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--white), var(--soft) 76%),
    var(--white);
}

.decision-card span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.decision-card h3 {
  font-size: 24px;
}

.decision-card p {
  margin: 10px 0 0;
  color: var(--anthracite);
  font-weight: 750;
}

.program-section {
  margin-top: clamp(50px, 7vw, 88px);
  background: var(--soft);
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

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

.development-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 164px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.development-card > .icon,
.development-card div > .icon {
  width: 32px;
  height: 32px;
  color: var(--red);
}

.development-card h3 {
  font-size: 20px;
}

.development-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.42;
}

.development-card-media {
  grid-column: span 2;
  grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 282px;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(90deg, transparent 49%, oklch(0.12 0.008 260 / 0.055) 49.5% 50.5%, transparent 51%),
    radial-gradient(circle at center, transparent 0 54px, oklch(0.12 0.008 260 / 0.06) 55px 56px, transparent 57px),
    var(--white);
}

.development-card-media figure {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.development-card-media img {
  width: 100%;
  height: 100%;
  min-height: 282px;
  object-fit: cover;
}

.development-card-media > div {
  align-self: center;
  padding: 24px;
}

.development-note {
  background: var(--ink);
}

.development-note h3 {
  color: var(--white);
}

.development-note p {
  color: oklch(0.86 0.006 260);
}

.field-section {
  padding-bottom: 0;
}

.field-visuals {
  width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 12px;
}

.field-visuals figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--soft);
}

.field-main {
  aspect-ratio: 16 / 7;
}

.field-small {
  aspect-ratio: 4 / 3;
}

.field-visuals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-content {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 86px);
  margin-top: 46px;
  align-items: start;
}

.training-list {
  display: grid;
  gap: 16px;
}

.training-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
}

.training-list .icon {
  width: 34px;
  height: 34px;
  color: var(--red);
}

.training-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.kit-section {
  background:
    linear-gradient(180deg, var(--white), var(--soft)),
    var(--white);
  color: var(--ink);
}

.kit-section h2,
.kit-section h3 {
  color: var(--ink);
}

.kit-section .section-copy p {
  color: var(--anthracite);
}

.kit-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.kit-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  margin: 0;
  border-radius: var(--radius);
  background: oklch(0.16 0.008 260);
}

.kit-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transform: scale(1.02);
  transition: transform var(--motion-med) var(--ease-out);
}

.kit-card:hover img {
  transform: scale(1.06);
}

.kit-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: oklch(0.08 0.004 260 / 0.72);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

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

.staff-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: end;
  margin-bottom: 38px;
}

.staff-head h2 {
  max-width: 11ch;
}

.staff-head p {
  margin: 0;
}

.coach-tiers {
  display: grid;
  gap: 26px;
}

.coach-group {
  display: grid;
  gap: 14px;
}

.tier-label {
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.coach-tier {
  display: grid;
  gap: 14px;
}

.coach-tier-lead {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coach-tier-support {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

.coach-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.coach-tier-lead .coach-card figure {
  aspect-ratio: 3 / 3.55;
}

.coach-card figure {
  margin: 0;
  background: var(--ink);
  aspect-ratio: 4 / 3;
}

.coach-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.coach-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.02;
}

.coach-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.38;
}

.coach-tier-support .coach-card p {
  font-size: 14px;
}

.coach-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: auto;
  padding-top: 14px;
  color: var(--red);
  font-weight: 900;
}

.coach-card a .icon {
  width: 18px;
  height: 18px;
}

.coach-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
  color: var(--anthracite);
  font-size: 13px;
  font-weight: 800;
}

.coach-card li {
  position: relative;
  padding-left: 16px;
}

.coach-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.gallery-section {
  background: var(--soft);
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.gallery-head h2 {
  max-width: 14ch;
}

.gallery-grid {
  width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr 0.62fr;
  grid-auto-rows: 260px;
  gap: 12px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--line);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion-med) var(--ease-out);
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

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

.instagram-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.44fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.instagram-layout h2 {
  max-width: 12ch;
}

.instagram-frame {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--soft), var(--white) 55%, var(--red-soft)),
    var(--soft);
}

.instagram-fallback {
  display: grid;
  min-height: 620px;
  padding: clamp(18px, 3vw, 34px);
  grid-template-rows: auto auto auto 1fr auto;
  gap: 18px;
  color: var(--ink);
}

.live-pill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid color-mix(in oklch, var(--red) 34%, var(--line));
  border-radius: 999px;
  background: var(--white);
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.live-pill .icon {
  width: 17px;
  height: 17px;
}

.instagram-fallback strong {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
}

.instagram-fallback p {
  max-width: 44ch;
  margin: 0;
  color: var(--anthracite);
  font-weight: 700;
}

.instagram-preview-grid {
  display: grid;
  min-height: 280px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.instagram-preview-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-tight);
}

.instagram-preview-grid img:first-child {
  grid-row: span 2;
}

.instagram-preview-grid img:nth-child(2) {
  grid-column: span 2;
}

.instagram-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  min-height: 44px;
  padding: 0 16px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.instagram-open .icon {
  width: 18px;
  height: 18px;
}

.faq-section {
  background: var(--soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--anthracite);
  font-weight: 700;
}

.final-cta {
  padding: clamp(70px, 9vw, 120px) 0;
  background: var(--ink);
  color: var(--white);
}

.final-cta h2 {
  color: var(--white);
  max-width: 10ch;
}

.final-cta .section-label {
  color: oklch(0.74 0.18 28);
}

.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(30px, 7vw, 84px);
  align-items: end;
}

.final-layout p {
  color: oklch(0.88 0.006 260);
}

.registration-steps {
  display: grid;
  gap: 10px;
  max-width: 60ch;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  counter-reset: steps;
}

.registration-steps li {
  counter-increment: steps;
  position: relative;
  padding-left: 44px;
  color: oklch(0.9 0.004 260);
  font-weight: 800;
}

.registration-steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.message-card {
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 22px;
}

.message-card p {
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 900;
}

.message-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  color: var(--anthracite);
  font-weight: 800;
}

.message-card li {
  position: relative;
  padding-left: 18px;
}

.message-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.message-card .button {
  width: 100%;
}

.site-footer {
  padding: 30px 0 94px;
  background: var(--ink);
  color: oklch(0.86 0.004 260);
  border-top: 1px solid oklch(1 0 0 / 0.14);
}

.site-footer .brand em {
  color: oklch(0.86 0.006 260);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand img {
  width: 44px;
  height: 44px;
}

.footer-grid p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 900;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.sticky-whatsapp {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 21;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(292px, calc(100% - 32px));
  min-height: 54px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow-panel);
}

:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--red) 72%, white);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  body.can-reveal [data-reveal] {
    transform: translateY(18px);
    transition: transform 520ms var(--ease-out);
  }

  body.can-reveal [data-reveal].is-visible {
    transform: translateY(0);
  }
}

.landing-page {
  background: var(--white);
}

.landing-main {
  padding-bottom: clamp(70px, 9vw, 120px);
}

.landing-hero {
  width: var(--wide);
  margin: 8px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  padding: clamp(36px, 6vw, 76px) 0;
}

.breadcrumb {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.landing-hero h1 {
  max-width: 12.8ch;
  font-size: clamp(3.35rem, 6.2vw, 5.1rem);
}

.landing-lead {
  max-width: 64ch;
  margin: 26px 0 0;
  color: var(--anthracite);
  font-size: 20px;
}

.landing-panel {
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.landing-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-section {
  padding: clamp(54px, 8vw, 96px) 0;
}

.page-section-soft {
  background: var(--soft);
}

.page-grid {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.page-copy h2 {
  max-width: 13ch;
}

.page-copy p,
.page-copy li {
  color: var(--anthracite);
  font-size: 18px;
  font-weight: 650;
}

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

.info-card {
  min-height: 164px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.info-card strong {
  display: block;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}

.info-card span {
  display: block;
  margin-top: 12px;
  color: var(--anthracite);
  font-weight: 850;
}

.page-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-list li {
  position: relative;
  padding-left: 22px;
}

.page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.page-cta {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.page-cta h2 {
  color: var(--white);
  max-width: 14ch;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
}

.page-cta p {
  max-width: 64ch;
  color: oklch(0.88 0.006 260);
  font-size: 18px;
}

@media (max-width: 1320px) {
  .academy-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "rail";
    min-height: unset;
  }

  .hero-rail {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .hero-rail::after {
    display: none;
  }

  .rail-proof {
    grid-template-columns: repeat(3, 1fr);
  }

  .rail-phone {
    justify-self: end;
  }

  .hero-main {
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
  }
}

@media (max-width: 1180px) {
  .academy-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "rail";
    min-height: unset;
  }

  .hero-rail {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .hero-rail::after {
    display: none;
  }

  .rail-proof {
    grid-template-columns: repeat(3, 1fr);
  }

  .rail-phone {
    justify-self: end;
  }

  .hero-main {
    grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1fr);
  }

  .program-layout,
  .kit-layout,
  .confidence-layout,
  .decision-layout,
  .landing-hero {
    grid-template-columns: 1fr;
  }

  .decision-copy {
    min-height: 0;
  }

  .kit-grid,
  .coach-tier-support,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .confidence-photo {
    min-height: 340px;
  }
}

@media (max-width: 920px) {
  :root {
    --wide: min(100% - 28px, 720px);
    --shell: min(100% - 28px, 720px);
  }

  .site-header {
    min-height: 70px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .primary-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
  }

  .site-header.is-open .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    justify-self: stretch;
    display: grid;
    width: 100%;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-tight);
  }

  .site-header.is-open .primary-nav a {
    min-height: 50px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .primary-nav a:last-child {
    border-bottom: 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .academy-hero {
    margin-top: 4px;
    gap: 18px;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-copy {
    padding: 18px 0 0;
  }

  h1 {
    max-width: 11.6ch;
    font-size: clamp(3.8rem, 8.4vw, 5rem);
    line-height: 0.94;
  }

  h2 {
    max-width: min(15ch, 100%);
    font-size: clamp(3rem, 7.2vw, 3.6rem);
    line-height: 0.96;
  }

  .confidence-copy h2,
  .offer-head h2,
  .decision-copy h2,
  .staff-head h2,
  .gallery-head h2,
  .instagram-layout h2,
  .final-cta h2,
  .page-copy h2,
  .page-cta h2 {
    max-width: min(15ch, 100%);
  }

  h1::after,
  .section-copy h2::after,
  .staff-head h2::after,
  .gallery-head h2::after {
    height: 7px;
  }

  .hero-lead {
    max-width: 35ch;
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    max-width: 360px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 58px;
  }

  .hero-board {
    grid-template-columns: 1fr 0.58fr;
    grid-template-rows: 360px 150px;
    min-height: unset;
  }

  .hero-program-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-rail {
    grid-template-columns: auto 1fr;
    gap: 18px;
  }

  .hero-rail p {
    max-width: none;
  }

  .rail-proof {
    grid-column: 1 / -1;
  }

  .rail-phone {
    justify-self: start;
  }

  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-layout,
  .field-content,
  .staff-head,
  .gallery-head,
  .instagram-layout,
  .faq-layout,
  .final-layout,
  .footer-grid,
  .offer-head,
  .page-grid,
  .page-cta {
    grid-template-columns: 1fr;
  }

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

  .field-main,
  .field-small {
    aspect-ratio: 4 / 3;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: span 2;
  }

  .instagram-frame,
  .instagram-fallback {
    min-height: 580px;
    height: 580px;
  }

  .instagram-preview-grid {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .instagram-preview-grid img:first-child,
  .instagram-preview-grid img:nth-child(2) {
    grid-row: auto;
    grid-column: auto;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .landing-actions,
  .page-cta .button {
    width: 100%;
  }

  .sticky-whatsapp {
    display: inline-flex;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, calc(100% + 24px));
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.has-scrolled .sticky-whatsapp {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  body.menu-open .sticky-whatsapp,
  body.near-final-cta .sticky-whatsapp {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, calc(100% + 24px));
  }
}

@media (max-width: 560px) {
  :root {
    --wide: calc(100% - 24px);
    --shell: calc(100% - 24px);
  }

  .brand span {
    font-size: 14px;
  }

  .hero-board {
    grid-template-columns: 1fr;
    grid-template-rows: 420px 170px 190px;
  }

  .hero-photo-main {
    grid-row: auto;
  }

  .hero-photo-kit {
    display: none;
  }

  .hero-program-card {
    position: static;
    grid-template-columns: 1fr;
  }

  .rail-proof,
  .signal-strip,
  .kit-grid,
  .development-board,
  .coach-tier-lead,
  .coach-tier-support,
  .gallery-grid,
  .offer-grid,
  .decision-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 10.4vw, 3.05rem);
    line-height: 0.98;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9.8vw, 2.55rem);
    line-height: 1;
  }

  .confidence-copy h2,
  .offer-head h2,
  .decision-copy h2,
  .staff-head h2,
  .gallery-head h2,
  .instagram-layout h2,
  .final-cta h2,
  .page-copy h2,
  .page-cta h2 {
    max-width: 100%;
  }

  .development-card-media {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .development-card-media img {
    min-height: 240px;
  }

  .signal-item {
    min-height: 86px;
  }

  .kit-card {
    min-height: 340px;
  }

  .confidence-photo {
    min-height: 300px;
  }

  .offer-card {
    min-height: 220px;
  }

  .landing-hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 3.25rem);
    line-height: 0.96;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: auto;
  }

  .development-card,
  .training-list article {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .instagram-fallback strong {
    font-size: clamp(28px, 9vw, 42px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
