:root {
  --black: #0a0806;
  --black-soft: #120f0a;
  --black-card: #17110b;
  --accent: #e8521a;
  --accent-soft: rgba(232, 82, 26, 0.14);
  --accent-line: rgba(232, 82, 26, 0.34);
  --tan: #c4956a;
  --white: #f5f0e8;
  --muted: rgba(245, 240, 232, 0.68);
  --faint: rgba(245, 240, 232, 0.1);
  --line: rgba(245, 240, 232, 0.12);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  --radius: 8px;
  --max: 1180px;
  --marquee-h: 34px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(232, 82, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 82, 26, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 82%, transparent);
}

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

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

button {
  font: inherit;
}

.image-slot {
  position: relative;
  overflow: hidden;
  background: var(--black-card);
}

.image-slot > img,
.image-slot > a > img {
  object-position: var(--x, 50%) var(--y, 50%);
  transform: scale(var(--scale, 1));
  transform-origin: var(--x, 50%) var(--y, 50%);
  filter: brightness(var(--brightness, 1)) saturate(var(--saturation, 1));
}


.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  transform: translateY(-140%);
  z-index: 1000;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: none;
}

.site-nav {
  position: fixed;
  inset: var(--marquee-h) 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(10, 8, 6, 0.74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.ticker-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: var(--marquee-h);
  overflow: hidden;
  background: var(--accent);
  border-bottom: 1px solid rgba(10, 8, 6, 0.28);
  contain: paint;
}

.ticker-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-item {
  flex-shrink: 0;
  padding: 0 36px;
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker-sep {
  flex-shrink: 0;
  color: rgba(10, 8, 6, 0.35);
  padding: 0 4px;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 138px;
}

.brand-logo {
  display: block;
  width: clamp(118px, 11vw, 168px);
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.btn,
.nav-cta,
.program-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  white-space: normal;
}

.btn.secondary {
  background: rgba(245, 240, 232, 0.08);
  color: var(--white);
  border-color: var(--line);
}

.btn[href*="wa.me"],
.nav-cta[href*="wa.me"],
.program-card button[href*="wa.me"] {
  background: #25d366;
  color: #06130a;
  border-color: rgba(37, 211, 102, 0.75);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.28);
}

.btn:hover,
.btn:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.program-card button:hover,
.program-card button:focus-visible {
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.btn[href*="wa.me"]:hover,
.btn[href*="wa.me"]:focus-visible,
.nav-cta[href*="wa.me"]:hover,
.nav-cta[href*="wa.me"]:focus-visible {
  background: #1fc15d;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.34), 0 0 0 4px rgba(37, 211, 102, 0.16);
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 56px);
  scroll-margin-top: calc(var(--marquee-h) + 88px);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(10, 8, 6, 0.82);
}

.eyebrow::after {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--accent);
}

.section-title,
.hero-title {
  margin: 0;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow:
    0 2px 2px rgba(10, 8, 6, 0.5),
    0 10px 28px rgba(10, 8, 6, 0.72),
    0 0 52px rgba(10, 8, 6, 0.52);
}

.section-title {
  max-width: 820px;
  font-size: clamp(42px, 6.3vw, 86px);
}

.section-title span,
.hero-title span {
  color: var(--accent);
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  text-shadow: 0 3px 18px rgba(10, 8, 6, 0.76);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--marquee-h) + 112px) clamp(18px, 6vw, 92px) 64px;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 19% 47%, rgba(10, 8, 6, 0.52) 0%, rgba(10, 8, 6, 0.28) 28%, rgba(10, 8, 6, 0.04) 58%, rgba(10, 8, 6, 0) 78%),
    linear-gradient(90deg, rgba(10, 8, 6, 0.3) 0%, rgba(10, 8, 6, 0.14) 34%, rgba(10, 8, 6, 0.02) 70%, rgba(10, 8, 6, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 8, 6, 0.08), rgba(10, 8, 6, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  filter: drop-shadow(0 18px 38px rgba(10, 8, 6, 0.54));
}

.hero-frame {
  position: absolute;
  inset: calc(var(--marquee-h) + 72px + 18px) 18px 18px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid var(--accent-line);
  border-radius: 4px;
  box-shadow: inset 0 0 32px rgba(232, 82, 26, 0.08), 0 0 24px rgba(232, 82, 26, 0.12);
}

.hero-vline {
  position: absolute;
  left: 40px;
  top: calc(var(--marquee-h) + 72px + 18px);
  bottom: 18px;
  z-index: 1;
  width: 1px;
  pointer-events: none;
  opacity: 0.3;
  background: linear-gradient(to bottom, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
}

.hero-corner {
  position: absolute;
  top: calc(var(--marquee-h) + 72px + 34px);
  right: 32px;
  z-index: 3;
  pointer-events: none;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.72;
}

.hero-title {
  font-size: clamp(64px, 10vw, 142px);
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(245, 240, 232, 0.82);
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 650;
  text-shadow:
    0 2px 2px rgba(10, 8, 6, 0.58),
    0 8px 22px rgba(10, 8, 6, 0.72);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.about {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  padding-top: clamp(84px, 7vw, 118px);
  padding-bottom: clamp(84px, 7vw, 118px);
  background-image:
    radial-gradient(ellipse at 22% 62%, rgba(10, 8, 6, 0.48) 0%, rgba(10, 8, 6, 0.25) 35%, rgba(10, 8, 6, 0.03) 72%),
    linear-gradient(90deg, rgba(10, 8, 6, 0.5), rgba(10, 8, 6, 0.22) 46%, rgba(10, 8, 6, 0.02)),
    linear-gradient(180deg, rgba(10, 8, 6, 0.03), rgba(10, 8, 6, 0.24)),
    url("images/IMG_8339.jpg");
  background-size: cover;
  background-position: center 45%;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.62fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.about-panel {
  display: grid;
  justify-self: end;
  width: min(100%, 560px);
  gap: 18px;
  padding: clamp(20px, 2.2vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 15, 10, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.about-proof {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 16 / 8;
  background: var(--black-card);
}

.about-proof img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.9;
}

.about-proof figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(10, 8, 6, 0.78);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.owner-note {
  display: grid;
  gap: 14px;
}

.owner-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.owner-quote {
  margin: 0;
  color: var(--white);
  font-size: clamp(19px, 1.45vw, 24px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow:
    0 2px 2px rgba(10, 8, 6, 0.58),
    0 10px 28px rgba(10, 8, 6, 0.68);
}

.owner-copy {
  color: var(--muted);
  font-size: 16px;
}

.owner-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.owner-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  background: rgba(232, 82, 26, 0.14);
  color: var(--accent);
  font-weight: 900;
}

.owner-signature strong,
.owner-signature span {
  display: block;
}

.owner-signature span {
  color: var(--muted);
  font-size: 13px;
}

.about-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.about-panel p + p {
  margin-top: 16px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.tag {
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(232, 82, 26, 0.08);
  color: var(--tan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

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

.program-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-card);
  min-height: 100%;
}

.program-card .image-slot {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.program-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.program-card-body {
  padding: 22px;
}

.program-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
}

.program-age {
  margin: 8px 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-card p {
  color: var(--muted);
  margin: 0 0 20px;
}

.kids-note {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 240, 232, 0.04);
  color: var(--muted);
}

.promo-gear {
  background: linear-gradient(180deg, var(--black), var(--black-soft));
}

.promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.promo-card {
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 44px);
  background: linear-gradient(135deg, rgba(232, 82, 26, 0.16), rgba(245, 240, 232, 0.04));
  box-shadow: var(--shadow);
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: end;
  margin-top: 22px;
}

.price-line strong {
  color: var(--white);
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.9;
}

.price-line span {
  color: var(--tan);
  font-weight: 800;
}

.promo-support {
  position: relative;
  display: grid;
  gap: 14px;
}

.promo-support img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.promo-support .image-slot {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.promo-support .image-slot img {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.promo-steps {
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius);
  background: rgba(10, 8, 6, 0.54);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  text-shadow: 0 3px 16px rgba(10, 8, 6, 0.74);
}

.promo-steps h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.02;
}

.promo-steps ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: promo;
}

.promo-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.promo-steps li::before {
  counter-increment: promo;
  content: counter(promo, decimal-leading-zero);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.promo-equipment {
  margin-top: 16px;
  color: var(--tan);
  font-size: 13px;
  font-weight: 800;
}

.contact-box .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 18px;
  line-height: 1.18;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 110;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 58px;
  max-width: 58px;
  min-height: 58px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #25d366;
  color: #06130a;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42), 0 0 0 6px rgba(37, 211, 102, 0.13);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.whatsapp-float svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.whatsapp-float small {
  display: block;
  color: rgba(6, 19, 10, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.17);
  width: auto;
  max-width: min(310px, calc(100vw - 32px));
  padding: 12px 18px 12px 14px;
}

.whatsapp-float:hover span,
.whatsapp-float:focus-visible span {
  position: static;
  display: grid;
  width: auto;
  height: auto;
  gap: 2px;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.split-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.location-media {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
}

.map-frame {
  overflow: hidden;
  aspect-ratio: 466 / 447;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-card);
}

.map-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  opacity: 0.86;
}

.map-frame a {
  position: relative;
  display: block;
  height: 100%;
}


.map-frame a::after {
  content: "Abrir no Google Maps";
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(10, 8, 6, 0.78);
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.location-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-card);
}

.location-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: 50% 54%;
  opacity: 0.88;
}

.location-photo figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(10, 8, 6, 0.78);
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.contact-box {
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  background: rgba(23, 17, 11, 0.92);
  box-shadow: var(--shadow);
}

.contact-box h2 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 36px clamp(18px, 4vw, 56px);
  color: var(--muted);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr repeat(2, minmax(180px, 0.3fr));
  gap: 24px;
}

.footer h3,
.footer h4 {
  margin: 0 0 10px;
  color: var(--white);
}

.footer ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 8, 6, 0.82);
}

.modal.is-open {
  display: flex;
}

.modal-panel {
  width: min(860px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  background: var(--black-soft);
  box-shadow: var(--shadow);
}

.modal-media {
  width: 100%;
  height: min(360px, 42vh);
  object-fit: cover;
}

.modal-body {
  padding: clamp(24px, 4vw, 42px);
}

.modal-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.modal-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 240, 232, 0.06);
  color: var(--white);
  cursor: pointer;
}

.modal-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.95;
}

.modal-copy {
  color: var(--muted);
  font-size: 18px;
}

.modal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.modal-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(245, 240, 232, 0.04);
}

.page-hero {
  padding: 140px clamp(18px, 4vw, 56px) 64px;
  background:
    radial-gradient(ellipse at 21% 58%, rgba(10, 8, 6, 0.46), rgba(10, 8, 6, 0.14) 56%, rgba(10, 8, 6, 0.02)),
    linear-gradient(90deg, rgba(10, 8, 6, 0.46), rgba(10, 8, 6, 0.12)),
    url("images/IMG_8338.jpg") center / cover;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-card,
.schedule-day-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--black-card);
}

.detail-card.featured {
  border-color: var(--accent-line);
  background: linear-gradient(135deg, rgba(232, 82, 26, 0.13), rgba(23, 17, 11, 0.96));
}

.detail-card h2,
.schedule-day-card h2 {
  margin: 0 0 12px;
}

.detail-card ul,
.schedule-day-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.schedule-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.slot {
  display: grid;
  gap: 3px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.slot:last-child {
  border-bottom: 0;
}

.slot time {
  color: var(--accent);
  font-weight: 900;
}

.slot strong {
  color: var(--white);
}

.slot span {
  color: var(--muted);
}

.path-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 12px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.03), rgba(10, 8, 6, 0.78)),
    var(--black-card);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
  transition: border-color 160ms ease, transform 160ms ease;
}

.path-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
}

.path-card.featured {
  border-color: var(--accent-line);
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.04), rgba(10, 8, 6, 0.82)),
    linear-gradient(135deg, rgba(232, 82, 26, 0.35), rgba(23, 17, 11, 0.92));
}

.path-card span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-card strong {
  max-width: 360px;
  color: var(--white);
  font-size: clamp(25px, 2.8vw, 38px);
  line-height: 0.98;
}

.path-card p {
  margin: 0;
  color: var(--muted);
}

.events-hero {
  min-height: 620px;
  display: grid;
  align-items: end;
  background:
    radial-gradient(ellipse at 22% 58%, rgba(10, 8, 6, 0.72), rgba(10, 8, 6, 0.22) 55%, rgba(10, 8, 6, 0.04)),
    linear-gradient(90deg, rgba(10, 8, 6, 0.72), rgba(10, 8, 6, 0.18)),
    url("images/events/muro-modular-transporte.jpg") center 46% / cover;
}

.events-hero .section-inner {
  width: 100%;
}

.kids-events-hero {
  min-height: 700px;
  background:
    linear-gradient(90deg, rgba(10, 8, 6, 0.84), rgba(10, 8, 6, 0.48) 48%, rgba(10, 8, 6, 0.08)),
    linear-gradient(0deg, rgba(10, 8, 6, 0.34), rgba(10, 8, 6, 0) 46%),
    url("images/kids-drive-action-side.jpg") 66% 44% / cover;
}

.kids-events-hero .section-inner {
  max-width: 760px;
}

.kids-promo-merged-hero .section-inner {
  max-width: 1040px;
}

.kids-events-hero .eyebrow,
.kids-events-hero .section-title,
.kids-events-hero .lead {
  text-shadow:
    0 2px 1px rgba(10, 8, 6, 0.78),
    0 10px 28px rgba(10, 8, 6, 0.86),
    0 0 60px rgba(10, 8, 6, 0.72);
}

.kids-events-hero .section-title {
  color: var(--white);
}

.kids-events-hero .lead {
  color: rgba(245, 240, 232, 0.9);
}

.kids-promo-merged-hero .lead {
  max-width: 720px;
}

.kids-hero-offer {
  display: grid;
  gap: clamp(14px, 2vw, 18px);
  max-width: 960px;
  margin-top: clamp(22px, 3vw, 34px);
}

.kids-hero-validity {
  display: grid;
  gap: 6px;
  width: fit-content;
  max-width: min(100%, 420px);
  padding: 16px 18px;
  border: 1px solid rgba(245, 240, 232, 0.28);
  border-radius: 8px;
  background: rgba(232, 82, 26, 0.96);
  box-shadow: 0 18px 44px rgba(10, 8, 6, 0.28);
}

.kids-hero-validity span {
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.kids-hero-validity strong {
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.03;
}

.kids-hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.kids-hero-benefits article {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 128px;
  padding: 16px;
  border: 1px solid rgba(245, 240, 232, 0.24);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.94);
  box-shadow: 0 18px 44px rgba(10, 8, 6, 0.22);
}

.kids-hero-benefits strong {
  color: var(--kids-ink);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 900;
  line-height: 1.08;
}

.kids-hero-benefits span {
  color: rgba(64, 61, 61, 0.78);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
}

.events-intro {
  padding-bottom: clamp(36px, 6vw, 72px);
}

.events-page::before {
  display: none;
}

.events-page main {
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.68), rgba(10, 8, 6, 0.76)),
    url("images/schedule-bg.jpeg") center / cover fixed no-repeat;
}

.events-page main .section {
  position: relative;
  background: transparent;
}

.events-page .events-intro,
.events-page .events-solutions,
.events-page .event-split-section,
.events-page .events-experiences,
.events-page .events-gallery-section {
  background: transparent;
}

.events-intro .path-card {
  border: 1px solid var(--line);
  background: rgba(23, 17, 11, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.events-intro .path-card.featured {
  border-color: var(--accent-line);
  background:
    linear-gradient(135deg, rgba(232, 82, 26, 0.16), rgba(23, 17, 11, 0.96) 52%),
    var(--black-card);
}

.events-page .program-head {
  display: grid;
  justify-content: start;
  align-items: start;
  gap: 20px;
  max-width: 880px;
  margin-bottom: 36px;
}

.events-page .program-head > div {
  width: 100%;
  max-width: 760px;
}

.events-page .program-head > .lead {
  width: 100%;
  max-width: 700px;
  margin-top: 0;
}

.events-page .program-head .section-title {
  max-width: 760px;
  width: 100%;
}

.event-path-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.events-solutions {
  padding-top: clamp(36px, 6vw, 72px);
}

.event-feature-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.event-feature-card {
  display: grid;
  grid-template-columns: minmax(270px, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: stretch;
  min-height: 520px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-card);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.event-feature-card:nth-child(even) {
  grid-template-columns: minmax(0, 0.52fr) minmax(270px, 0.48fr);
}

.event-feature-card:nth-child(even) figure {
  order: 2;
}

.event-feature-card figure {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
}

.event-feature-card img,
.event-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-image-focus-low img {
  object-position: center 72%;
}

.event-feature-card > div {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(12px, 2vw, 24px);
}

.event-feature-card h3,
.event-copy-panel h3,
.event-service-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 0.98;
}

.event-feature-card p,
.event-copy-panel p,
.event-service-card p,
.event-photo-card figcaption {
  margin: 0;
  color: var(--muted);
}

.event-feature-card ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.event-feature-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

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

.event-split-section {
  padding-top: clamp(56px, 8vw, 108px);
  padding-bottom: clamp(56px, 8vw, 108px);
}

.event-split {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.event-split-copy {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(232, 82, 26, 0.14), rgba(23, 17, 11, 0.92) 58%),
    rgba(23, 17, 11, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.event-split-copy .section-title {
  color: var(--white);
  text-shadow:
    0 2px 2px rgba(10, 8, 6, 0.48),
    0 10px 28px rgba(10, 8, 6, 0.62);
}

.event-split-copy .lead {
  margin-top: 0;
  color: var(--muted);
  text-shadow: none;
}

#birthday-title {
  max-width: 100%;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 0.98;
}

.event-copy-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232, 82, 26, 0.18), rgba(232, 82, 26, 0) 52%),
    linear-gradient(135deg, rgba(23, 17, 11, 0.94), rgba(23, 17, 11, 0.86)),
    rgba(23, 17, 11, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.event-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.event-pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-note {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.events-experiences {
}

.event-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.event-service-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 304px;
  padding: clamp(22px, 2.4vw, 30px);
  border-color: rgba(245, 240, 232, 0.14);
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.045), rgba(10, 8, 6, 0.22)),
    rgba(23, 17, 11, 0.88);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.28);
}

.event-service-card .eyebrow {
  align-items: center;
  min-height: 28px;
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-shadow: none;
}

.event-service-card .eyebrow::after {
  margin-left: auto;
  opacity: 0.85;
}

.event-service-card h3 {
  max-width: 100%;
  font-size: clamp(25px, 2.25vw, 32px);
  line-height: 1.04;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.event-service-card p:not(.eyebrow) {
  color: rgba(245, 240, 232, 0.72);
  font-size: 16px;
  line-height: 1.48;
}

.event-gallery-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.9fr;
  gap: 16px;
  margin-top: 28px;
  align-items: stretch;
}

.event-photo-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-card);
}

.event-photo-card.tall {
  min-height: 560px;
}

.event-photo-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 8, 6, 0.78);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.events-final-panel {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(10, 8, 6, 0.86), rgba(10, 8, 6, 0.6) 48%, rgba(10, 8, 6, 0.18)),
    url("images/events/muro-modular-transporte.jpg") center / cover;
  overflow: hidden;
}

.schedule-page {
  background: var(--black);
}

.schedule-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding-top: calc(var(--marquee-h) + 128px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 22% 62%, rgba(232, 82, 26, 0.16), rgba(232, 82, 26, 0) 50%),
    linear-gradient(135deg, rgba(10, 8, 6, 0.92), rgba(10, 8, 6, 0.68) 48%, rgba(10, 8, 6, 0.42)),
    url("images/IMG_8339.jpg") center 58% / cover;
}

.schedule-hero .section-inner {
  position: relative;
  z-index: 1;
}

.schedule-hero .section-title {
  max-width: 760px;
}

.schedule-page-section {
  background:
    radial-gradient(ellipse at 78% 12%, rgba(232, 82, 26, 0.12), rgba(232, 82, 26, 0) 46%),
    linear-gradient(180deg, var(--black), var(--black-soft));
}

.schedule-page .schedule-header {
  margin-bottom: 44px;
}

.schedule-page .schedule-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(23, 17, 11, 0.78);
  box-shadow: var(--shadow);
}

.schedule-page .schedule-col {
  border-right: 1px solid var(--line);
}

.schedule-page .schedule-col:last-child {
  border-right: 0;
}

.schedule-page .schedule-day {
  padding: 20px 16px;
  border-bottom: 2px solid var(--accent);
  background: rgba(10, 8, 6, 0.62);
  color: var(--tan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.schedule-page .schedule-slots {
  display: flex;
  flex-direction: column;
}

.schedule-page .schedule-slot {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.schedule-page .schedule-slot:last-child {
  border-bottom: 0;
}

.schedule-page .schedule-slot.empty {
  opacity: 0.28;
}

.schedule-page .schedule-slot-time {
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.schedule-page .schedule-slot-name {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.schedule-page .schedule-slot-tag,
.schedule-page .schedule-slot-trainer,
.schedule-page .legend-item {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.schedule-page .schedule-slot-trainer {
  position: relative;
  margin-top: 5px;
  padding-left: 14px;
}

.schedule-page .schedule-slot-trainer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.schedule-page .schedule-slot.empty .schedule-slot-trainer {
  display: none;
}

.schedule-page .schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 26px;
}

.schedule-page .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.schedule-page .legend-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--accent);
}

.schedule-page .schedule-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.schedule-page .schedule-note-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 240, 232, 0.04);
}

.schedule-page .schedule-note-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 15px;
}

.schedule-page .schedule-note-card span {
  color: var(--muted);
}

@media (max-width: 1020px) {
  .schedule-page .schedule-grid,
  .schedule-page .schedule-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schedule-page .schedule-col {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .schedule-page .schedule-col:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .schedule-hero {
    min-height: 560px;
    padding-top: calc(var(--marquee-h) + 110px);
  }

  .schedule-page .schedule-grid,
  .schedule-page .schedule-note-grid {
    grid-template-columns: 1fr;
  }

  .schedule-page .schedule-col:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .schedule-page .schedule-col:last-child {
    border-bottom: 0;
  }

  .schedule-page .schedule-slot {
    min-height: auto;
    padding: 15px 18px;
  }
}

.kids-note a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.kids-page {
  --kids-ink: #403d3d;
  --kids-orange: #ff6700;
  --kids-mint: #8e65bd;
  --kids-lilac: #d9c6ff;
  --kids-pink: #f55f88;
  --kids-yellow: #ffb900;
  --kids-purple: #8e65bd;
  --kids-green: #77bd3a;
  --kids-cream: #fff8ea;
  --kids-paper: #fffdf8;
  --kids-line: rgba(64, 61, 61, 0.13);
  --kids-shadow: 0 24px 60px rgba(64, 61, 61, 0.12);
  background:
    radial-gradient(circle at 10% 18%, rgba(142, 101, 189, 0.18), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 185, 0, 0.2), transparent 24%),
    radial-gradient(circle at 84% 76%, rgba(245, 95, 136, 0.16), transparent 28%),
    var(--kids-paper);
  color: var(--kids-ink);
}

.kids-page::before {
  background:
    linear-gradient(rgba(142, 101, 189, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 103, 0, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: none;
}

.kids-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: var(--marquee-h);
  overflow: hidden;
  background: var(--accent);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(64, 61, 61, 0.1);
  contain: paint;
}

.kids-ticker .ticker-sep {
  color: rgba(10, 8, 6, 0.35);
}

.kids-nav {
  position: fixed;
  inset: var(--marquee-h) 0 auto;
  z-index: 80;
  top: var(--marquee-h);
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 8, 6, 0.86);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(10, 8, 6, 0.22);
  backdrop-filter: blur(18px);
}

.kids-page:not(.kids-landing) .kids-nav {
  inset: var(--marquee-h) 0 auto;
  top: var(--marquee-h);
}

.kids-brand .brand-logo {
  width: clamp(150px, 13vw, 190px);
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.kids-nav .nav-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kids-nav .nav-links a:hover {
  color: var(--white);
}

.kids-nav .nav-cta,
.kids-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  background: var(--kids-orange);
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 103, 0, 0.24);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.kids-btn.secondary {
  border: 2px solid var(--kids-orange);
  background: #fff;
  color: var(--kids-orange);
  box-shadow: none;
}

.kids-hero,
.kids-detail-hero {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  min-height: 100vh;
  padding: calc(var(--marquee-h) + 132px) clamp(18px, 5vw, 70px) 84px;
}

.kids-detail-hero {
  min-height: 74vh;
  padding-top: 140px;
  background:
    linear-gradient(130deg, rgba(255, 248, 234, 0.94), rgba(255, 253, 248, 0.78)),
    url("images/kids-class.jpg") center / cover;
}

.kids-detail-hero.summer-camp {
  background:
    linear-gradient(130deg, rgba(255, 248, 234, 0.95), rgba(255, 253, 248, 0.76)),
    url("images/action-climbers.jpg") center / cover;
}

.kids-logo-bubble {
  justify-self: center;
  width: min(360px, 70vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--kids-shadow);
  overflow: hidden;
}

.kids-logo-bubble img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

.kids-hero-copy {
  max-width: 680px;
}

.kids-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--kids-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kids-pill::before {
  content: "";
  width: 32px;
  height: 6px;
  border-radius: 999px;
  background: var(--kids-mint);
  box-shadow: 44px 0 0 var(--kids-pink);
}

.kids-hero h1,
.kids-detail-hero h1,
.kids-section h2,
.kids-cta-panel h2 {
  margin: 0;
  color: var(--kids-ink);
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.kids-section h2,
.kids-cta-panel h2 {
  font-size: clamp(34px, 4.8vw, 68px);
}

.kids-hero p,
.kids-detail-hero p,
.kids-cta-panel p {
  max-width: 640px;
  color: rgba(64, 61, 61, 0.78);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 600;
  line-height: 1.58;
}

.kids-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.kids-hero-art {
  position: relative;
}

.kids-hero-art > img {
  width: min(560px, 88vw);
  margin-inline: auto;
  border-radius: 28px;
  transform: rotate(-2deg);
  filter: drop-shadow(0 26px 36px rgba(64, 61, 61, 0.16));
}

.kids-note-card {
  position: absolute;
  right: 0;
  bottom: 4%;
  display: grid;
  gap: 8px;
  max-width: 270px;
  padding: 18px;
  border: 3px solid rgba(255, 103, 0, 0.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--kids-shadow);
  transform: rotate(2deg);
}

.kids-note-card strong,
.kids-program-card h3,
.kids-info-grid strong,
.kids-checklist strong {
  color: var(--kids-ink);
  font-weight: 900;
}

.kids-note-card span,
.kids-program-card span,
.kids-info-grid span,
.kids-checklist span {
  color: rgba(64, 61, 61, 0.72);
}

.kids-section {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 70px);
}

.kids-landing .kids-wood-intro {
  background: url("images/schedule-bg.jpeg") center / cover fixed no-repeat;
}

.kids-landing .kids-trust-section {
  padding-bottom: clamp(32px, 5vw, 64px);
  background: url("images/schedule-bg.jpeg") center / cover fixed no-repeat;
}

.kids-landing .kids-trust-section .kids-section-head h2 {
  color: #fff;
  text-shadow:
    0 2px 8px rgba(10, 8, 6, 0.34),
    0 8px 24px rgba(10, 8, 6, 0.24);
}

.kids-landing #proximo-passo {
  max-width: none;
  margin: 0;
  justify-items: center;
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 70px) clamp(72px, 9vw, 120px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(10, 8, 6, 0.64), rgba(10, 8, 6, 0.36) 58%, rgba(10, 8, 6, 0.18)),
    url("images/schedule-bg.jpeg") center / cover fixed no-repeat;
  box-shadow: none;
}

.kids-landing #proximo-passo > * {
  position: relative;
  z-index: 1;
}

.kids-landing #proximo-passo > div {
  display: grid;
  justify-items: center;
  max-width: 820px;
  text-align: center;
}

.kids-landing #proximo-passo h2,
.kids-landing #proximo-passo p:not(.kids-pill) {
  color: #fff;
  text-shadow: 0 2px 12px rgba(10, 8, 6, 0.44);
}

.kids-landing #proximo-passo .kids-pill {
  color: var(--accent);
  text-shadow: 0 2px 10px rgba(10, 8, 6, 0.42);
}

.kids-landing #proximo-passo .kids-btn {
  justify-self: center;
}

.kids-landing .kids-wood-intro .kids-section-head h2 {
  color: var(--kids-ink);
  text-shadow: none;
}

.kids-landing .kids-wood-intro .kids-section-head {
  width: min(1120px, 100%);
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(64, 61, 61, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(64, 61, 61, 0.12);
}

.kids-landing .kids-wood-intro .kids-section-head .kids-pill {
  text-shadow: none;
}

.kids-landing .kids-wood-intro .kids-gallery-strip {
  width: min(1120px, 100%);
  max-width: 1120px;
  margin-inline: auto;
}

.kids-july-promo {
  scroll-margin-top: calc(var(--marquee-h) + 92px);
  position: relative;
  overflow: hidden;
  background: #15100d;
  color: #fff;
}

.kids-promo-shell {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  width: min(1220px, 100%);
  margin-inline: auto;
}

.kids-promo-details-section {
  padding-top: clamp(56px, 8vw, 92px);
}

.kids-promo-details-heading {
  display: grid;
  gap: clamp(12px, 2vw, 18px);
  max-width: 840px;
}

.kids-promo-details-heading .kids-pill {
  margin-bottom: 0;
  color: var(--kids-orange);
}

.kids-promo-details-heading h2 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.04;
  text-shadow: 0 12px 36px rgba(10, 8, 6, 0.42);
}

.kids-promo-details-heading .kids-section-support {
  max-width: 700px;
  margin-top: 0;
  color: rgba(245, 240, 232, 0.82);
  text-shadow: 0 8px 26px rgba(10, 8, 6, 0.34);
}

.kids-promo-details {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.92fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.kids-promo-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  min-height: auto;
}

.kids-promo-intro {
  display: grid;
  align-content: center;
  gap: clamp(14px, 2vw, 20px);
  max-width: min(1120px, 100%);
}

.kids-promo-hero h2 {
  max-width: 1040px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5.7vw, 82px);
  line-height: 1.02;
  text-shadow: 0 12px 36px rgba(10, 8, 6, 0.45);
}

.kids-promo-hero .kids-section-support {
  max-width: 760px;
  color: rgba(245, 240, 232, 0.86);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 750;
  text-shadow: 0 8px 26px rgba(10, 8, 6, 0.42);
}

.kids-promo-validity,
.kids-promo-benefits article,
.kids-promo-copy,
.kids-promo-groups,
.kids-promo-development {
  border: 1px solid rgba(245, 240, 232, 0.28);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(10, 8, 6, 0.18);
}

.kids-promo-validity {
  display: grid;
  gap: 8px;
  width: fit-content;
  max-width: min(100%, 420px);
  margin-top: 4px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--accent);
  color: #fff;
}

.kids-promo-validity span {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.kids-promo-validity strong {
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.04;
}

.kids-promo-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.kids-promo-confidence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: clamp(14px, 2vw, 18px) 0;
  border-top: 1px solid rgba(245, 240, 232, 0.24);
  border-bottom: 1px solid rgba(245, 240, 232, 0.24);
}

.kids-promo-confidence span {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding-left: 18px;
  color: rgba(245, 240, 232, 0.9);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.kids-promo-confidence span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kids-orange);
  box-shadow: 0 0 0 5px rgba(255, 103, 0, 0.16);
}

.kids-promo-benefits article,
.kids-promo-copy,
.kids-promo-groups,
.kids-promo-development {
  background: #fff;
  color: var(--kids-ink);
}

.kids-promo-benefits article {
  display: grid;
  gap: 10px;
  align-content: center;
  min-height: 170px;
  padding: clamp(20px, 2.8vw, 28px);
  border: 2px solid rgba(255, 103, 0, 0.24);
  background: #fff8ea;
}

.kids-promo-benefits article:nth-child(1) {
  transform: rotate(-1.4deg);
}

.kids-promo-benefits article:nth-child(2) {
  transform: rotate(1deg);
}

.kids-promo-benefits article:nth-child(3) {
  transform: rotate(-0.6deg);
}

.kids-promo-benefits strong,
.kids-promo-copy h3,
.kids-promo-groups h3,
.kids-promo-development strong {
  color: var(--kids-ink);
  font-weight: 900;
}

.kids-promo-benefits strong {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.08;
}

.kids-promo-benefits span,
.kids-promo-copy p,
.kids-promo-groups span,
.kids-promo-development li {
  color: rgba(64, 61, 61, 0.74);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.kids-promo-copy,
.kids-promo-groups {
  padding: clamp(24px, 4vw, 42px);
}

.kids-promo-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.kids-promo-copy h3,
.kids-promo-groups h3 {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.08;
}

.kids-promo-copy p {
  max-width: 660px;
  margin: 0;
}

.kids-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.kids-promo-actions-top {
  margin-top: clamp(12px, 2vw, 18px);
}

.kids-promo-groups {
  display: grid;
  gap: 24px;
}

.kids-promo-ages ul,
.kids-promo-development ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.kids-promo-ages li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(64, 61, 61, 0.1);
}

.kids-promo-ages li:last-child {
  border-bottom: 0;
}

.kids-promo-ages strong,
.kids-promo-schedule strong {
  color: var(--kids-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kids-promo-schedule {
  display: grid;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(64, 61, 61, 0.1);
}

.kids-promo-schedule div {
  display: grid;
  gap: 7px;
}

.kids-promo-development {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
}

.kids-promo-development strong {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.08;
}

.kids-promo-development ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 0;
}

.kids-promo-development li {
  position: relative;
  padding-left: 20px;
}

.kids-promo-development li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--kids-orange);
}

.kids-seasonal-block {
  display: grid;
  gap: 18px;
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(245, 240, 232, 0.44);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(10, 8, 6, 0.16);
}

.kids-seasonal-head {
  max-width: 980px;
  margin-bottom: 0;
}

.kids-seasonal-head h2 {
  max-width: 920px;
  margin: 0;
  color: var(--kids-ink);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  text-shadow: none;
}

.kids-seasonal-head .kids-section-support {
  max-width: 760px;
}

.kids-seasonal-grid {
  margin-top: 0;
}

.kids-section-head {
  max-width: 920px;
  margin-bottom: 34px;
}

.kids-program-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 18px;
}

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

.kids-class-bridge {
  background: transparent;
}

.kids-routine-combined {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  background: url("images/schedule-bg.jpeg") center / cover fixed no-repeat;
}

.kids-routine-heading {
  max-width: 980px;
}

.kids-routine-heading h2 {
  color: var(--kids-ink);
  text-shadow: none;
}

.kids-landing main > .kids-routine-combined {
  background: url("images/schedule-bg.jpeg") center / cover fixed no-repeat;
}

.kids-routine-main {
  display: block;
}

.kids-routine-main .kids-checklist {
  margin-top: 18px;
}

.kids-routine-card {
  overflow: hidden;
  gap: 0;
  border: 1px solid rgba(64, 61, 61, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.kids-routine-body {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(245, 240, 232, 0.44);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(10, 8, 6, 0.16);
}

.kids-routine-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.92fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
}

.kids-routine-main,
.kids-routine-combined .kids-class-bridge {
  min-width: 0;
}

.kids-routine-combined .kids-class-bridge {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.kids-routine-combined .kids-class-bridge .kids-section-head {
  max-width: none;
  margin-bottom: 18px;
}

.kids-section-intro {
  max-width: 620px;
  margin: 0;
  color: var(--kids-ink);
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.kids-section-support {
  display: block;
  max-width: 680px;
  margin-top: 10px;
  color: rgba(64, 61, 61, 0.74);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.kids-routine-combined .kids-class-bridge .kids-section-head h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 54px);
}

.kids-routine-combined .kids-info-grid article {
  transform: none;
}

.kids-routine-combined .kids-class-list {
  grid-template-columns: 1fr;
}

.kids-routine-combined .kids-class-list article {
  gap: 0;
  padding: 0;
}

.kids-routine-combined .kids-class-list article > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
  padding: 17px 20px;
  border-bottom: 1px solid rgba(64, 61, 61, 0.1);
}

.kids-routine-combined .kids-class-list article > div:last-child {
  border-bottom: 0;
}

.kids-routine-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(64, 61, 61, 0.1);
  text-align: left;
}

.kids-trust-block {
  padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid rgba(64, 61, 61, 0.1);
}

.kids-trust-block .kids-section-head {
  max-width: 820px;
  margin-bottom: 22px;
}

.kids-routine-cta .kids-inline-note,
.kids-routine-cta .kids-inline-cta {
  margin: 0;
}

.kids-inline-note {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(64, 61, 61, 0.74);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.55;
}

.kids-inline-cta {
  margin-top: 18px;
}

.kids-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.kids-gallery-strip:has(img:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kids-gallery-strip img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 20px 58px rgba(10, 8, 6, 0.22);
}

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

.kids-program-card,
.kids-info-grid article,
.kids-checklist div {
  overflow: hidden;
  border: 1px solid var(--kids-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--kids-shadow);
}

.kids-program-card {
  min-height: 250px;
}

.kids-program-card-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(136px, 190px);
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
}

.kids-program-card > div,
.kids-info-grid article,
.kids-checklist div {
  display: grid;
  gap: 9px;
  padding: 26px;
}

.kids-routine-card div {
  border: 0;
  border-bottom: 1px solid rgba(64, 61, 61, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.kids-routine-card div:last-child {
  border-bottom: 0;
}

.kids-program-card p {
  margin: 0;
  color: var(--kids-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kids-program-card h3 {
  margin: 0;
  font-size: 28px;
}

.kids-program-card a {
  color: var(--kids-orange);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.kids-program-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.kids-card-logo {
  width: min(170px, 17vw);
  min-width: 136px;
  justify-self: center;
  margin-right: clamp(18px, 3vw, 34px);
  filter: drop-shadow(0 18px 28px rgba(64, 61, 61, 0.14));
}

.kids-split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: rgba(255, 248, 234, 0.72);
}

.kids-routine-combined {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  background: url("images/schedule-bg.jpeg") center / cover fixed no-repeat;
}

.kids-checklist {
  display: grid;
  gap: 14px;
}

.kids-checklist div {
  position: relative;
}

.kids-routine-card {
  gap: 0 !important;
}

.kids-routine-card > div {
  border: 0 !important;
  border-bottom: 1px solid rgba(64, 61, 61, 0.1) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.kids-routine-card > div:last-child {
  border-bottom: 0 !important;
}

.kids-info-grid article:nth-child(2) {
  transform: translateY(18px);
}

.kids-info-grid article:nth-child(3) {
  transform: translateY(-10px);
}

.kids-cta-panel {
  display: grid;
  align-items: center;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 28px;
  margin: clamp(28px, 5vw, 70px);
  padding: clamp(24px, 4vw, 42px);
  border-radius: 26px;
  background: var(--kids-lilac);
  color: var(--kids-ink);
  box-shadow: var(--kids-shadow);
}

.kids-cta-panel img {
  width: 140px;
  border-radius: 22px;
  background: #fff;
}

.kids-cta-panel .kids-pill {
  color: #403151;
}

.kids-variant-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.kids-variant-links a {
  display: inline-flex;
  border: 1px solid rgba(142, 101, 189, 0.22);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--kids-purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kids-alt-soft {
  --kids-paper: #fff6f1;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 185, 0, 0.22), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(245, 95, 136, 0.18), transparent 24%),
    linear-gradient(180deg, #fffaf3, #fff3ec 52%, #fffdf8);
}

.kids-alt-soft .kids-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
}

.kids-alt-soft .kids-hero::after,
.kids-alt-lilac .kids-hero::after {
  content: "";
  position: absolute;
  inset: auto clamp(18px, 5vw, 70px) 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--kids-orange), var(--kids-pink), var(--kids-purple));
}

.kids-hero {
  position: relative;
}

.kids-collage {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 14px;
  align-items: end;
}

.kids-collage img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: 26px;
  box-shadow: var(--kids-shadow);
}

.kids-collage img:first-child {
  transform: rotate(-3deg);
}

.kids-collage img:nth-child(2) {
  min-height: 430px;
  transform: rotate(2deg);
}

.kids-collage-badge {
  grid-column: 1 / -1;
  justify-self: end;
  display: grid;
  gap: 4px;
  max-width: 330px;
  margin-top: -28px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--kids-purple);
  color: #fff;
  box-shadow: var(--kids-shadow);
  transform: rotate(-1deg);
}

.kids-collage-badge strong {
  font-size: 24px;
  line-height: 1;
}

.kids-collage-badge span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 650;
}

.kids-alt-lilac {
  --kids-ink: #fff8ea;
  --kids-paper: #6f4caf;
  --kids-line: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 185, 0, 0.26), transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(255, 103, 0, 0.22), transparent 24%),
    radial-gradient(circle at 52% 84%, rgba(245, 95, 136, 0.22), transparent 28%),
    linear-gradient(135deg, #6c49aa, #9b73d4 56%, #7b55bf);
  color: #fff8ea;
}

.kids-alt-lilac::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
}

.kids-alt-lilac .kids-ticker {
  background: #ffb900;
  color: #3f2d57;
}

.kids-alt-lilac .kids-nav {
  background: rgba(63, 45, 87, 0.76);
  color: #fff8ea;
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.kids-alt-lilac .kids-nav .nav-links a,
.kids-alt-lilac .kids-hero p {
  color: rgba(255, 248, 234, 0.8);
}

.kids-alt-lilac .kids-hero h1,
.kids-alt-lilac .kids-section h2,
.kids-alt-lilac .kids-cta-panel h2 {
  color: #fff8ea;
}

.kids-alt-lilac .kids-pill {
  color: #ffd271;
}

.kids-alt-lilac .kids-pill::before {
  background: #ff8bb0;
  box-shadow: 44px 0 0 #ffd271;
}

.kids-alt-lilac .kids-hero-art > img {
  border-radius: 50%;
  background: #fff;
  transform: rotate(2deg);
}

.kids-alt-lilac .kids-note-card {
  background: #fff8ea;
  color: #403d3d;
}

.kids-alt-lilac .kids-section {
  background: rgba(255, 248, 234, 0.08);
}

.kids-alt-lilac .kids-program-card,
.kids-alt-lilac .kids-info-grid article,
.kids-alt-lilac .kids-checklist div {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 248, 234, 0.94);
}

.kids-alt-lilac .kids-cta-panel {
  background: #fff8ea;
  color: #403d3d;
}

.kids-cohesion-1::before {
  background:
    linear-gradient(rgba(232, 82, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 82, 26, 0.032) 1px, transparent 1px);
  background-size: 72px 72px;
}

.kids-cohesion-1 .kids-ticker {
  background: var(--accent);
  color: var(--black);
}

.kids-cohesion-1 .kids-ticker .ticker-sep {
  color: rgba(10, 8, 6, 0.48);
}

.kids-cohesion-1 .kids-nav {
  border-bottom: 1px solid rgba(232, 82, 26, 0.2);
  background: rgba(255, 253, 248, 0.94);
}

.kids-cohesion-1 .kids-nav .nav-cta,
.kids-cohesion-1 .kids-btn {
  background: var(--accent);
  box-shadow: 0 14px 34px rgba(232, 82, 26, 0.26);
}

.kids-cohesion-1 .kids-btn.secondary {
  border-color: var(--accent-line);
  background: #fff;
  color: var(--accent);
  box-shadow: none;
}

.kids-cohesion-1 .kids-pill {
  color: var(--accent);
}

.kids-cohesion-1 .kids-pill::before {
  background: var(--kids-purple);
  box-shadow: 44px 0 0 var(--accent);
}

.kids-cohesion-2 .kids-program-card,
.kids-cohesion-2 .kids-info-grid article,
.kids-cohesion-2 .kids-checklist div,
.kids-cohesion-2 .kids-note-card,
.kids-cohesion-2 .kids-cta-panel {
  border-radius: var(--radius);
}

.kids-cohesion-2 .kids-program-card,
.kids-cohesion-2 .kids-info-grid article,
.kids-cohesion-2 .kids-checklist div {
  border-color: rgba(232, 82, 26, 0.14);
  box-shadow: 0 22px 70px rgba(64, 61, 61, 0.1);
}

.kids-cohesion-2 .kids-program-card h3 {
  font-size: 26px;
  line-height: 1.05;
}

.kids-cohesion-2 .kids-checklist div::before {
  width: 30px;
  height: 6px;
  border-radius: 999px;
  background: var(--kids-purple);
  box-shadow: 0 18px 0 var(--accent), 0 36px 0 var(--kids-pink);
}

.kids-cohesion-2 .kids-split {
  background:
    linear-gradient(135deg, rgba(232, 82, 26, 0.08), rgba(142, 101, 189, 0.08)),
    rgba(255, 248, 234, 0.72);
}

.kids-cohesion-3 .kids-hero {
  overflow: hidden;
  grid-template-columns: minmax(0, 0.96fr) minmax(330px, 0.78fr);
  gap: clamp(34px, 5vw, 68px);
  min-height: calc(100vh - var(--marquee-h));
  padding-top: calc(var(--marquee-h) + 118px);
  padding-bottom: clamp(54px, 7vw, 82px);
}

.kids-cohesion-3 .kids-hero::before {
  content: "";
  position: absolute;
  inset: calc(var(--marquee-h) + 84px) clamp(18px, 3vw, 38px) 28px;
  border: 1px solid rgba(232, 82, 26, 0.2);
  pointer-events: none;
}

.kids-cohesion-3 .kids-hero::after {
  content: "";
  position: absolute;
  left: clamp(36px, 6vw, 76px);
  top: calc(var(--marquee-h) + 108px);
  bottom: 42px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent) 26%, var(--kids-purple) 72%, transparent);
  pointer-events: none;
}

.kids-cohesion-3 .kids-hero-copy,
.kids-cohesion-3 .kids-hero-art {
  position: relative;
  z-index: 1;
}

.kids-cohesion-3 .kids-hero-copy {
  padding-left: clamp(16px, 3vw, 36px);
}

.kids-cohesion-3 .kids-hero h1 {
  max-width: 680px;
  font-size: clamp(42px, 5.2vw, 68px);
}

.kids-cohesion-3 .kids-hero p {
  max-width: 610px;
}

.kids-photo-feature {
  display: grid;
  align-items: end;
  justify-items: center;
}

.kids-photo-feature .kids-feature-photo {
  width: min(520px, 100%);
  margin: 0;
  aspect-ratio: 4 / 4.55;
  object-fit: cover;
  object-position: 50% 38%;
  border: 1px solid rgba(232, 82, 26, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(64, 61, 61, 0.16);
  filter: none;
  transform: none;
}

.kids-feature-slot {
  width: min(520px, 100%);
  aspect-ratio: 4 / 4.55;
  border: 1px solid rgba(232, 82, 26, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(64, 61, 61, 0.16);
}

.kids-photo-feature .kids-feature-slot {
  aspect-ratio: 16 / 12;
}

.kids-placeholder {
  background:
    linear-gradient(rgba(232, 82, 26, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 82, 26, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 22% 18%, rgba(255, 103, 0, 0.18), transparent 28%),
    radial-gradient(circle at 76% 78%, rgba(142, 101, 189, 0.18), transparent 30%),
    linear-gradient(135deg, #fffdf8, #f6effc);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.kids-placeholder-visual {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--kids-ink);
}

.kids-placeholder-visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 22%, var(--accent) 0 10px, transparent 11px),
    radial-gradient(circle at 38% 14%, var(--kids-purple) 0 8px, transparent 9px),
    radial-gradient(circle at 68% 24%, #e8a923 0 11px, transparent 12px),
    radial-gradient(circle at 84% 48%, var(--accent) 0 8px, transparent 9px),
    radial-gradient(circle at 54% 62%, var(--kids-purple) 0 13px, transparent 14px),
    radial-gradient(circle at 26% 76%, #397f24 0 10px, transparent 11px),
    radial-gradient(circle at 74% 84%, #c82f4e 0 9px, transparent 10px);
  opacity: 0.7;
}

.kids-placeholder-visual::after {
  content: "Vértice Kids";
  position: absolute;
  left: 18px;
  top: 18px;
  color: rgba(64, 61, 61, 0.5);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kids-placeholder-visual span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(232, 82, 26, 0.24);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--kids-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(64, 61, 61, 0.12);
}

.kids-photo-feature .kids-feature-slot .kids-feature-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-position: var(--x, 44%) var(--y, 52%);
}

.kids-page .kids-pill {
  position: relative;
  padding-left: 82px;
}

.kids-page .kids-pill::before,
.kids-page .kids-pill::after {
  content: "";
  position: absolute;
  top: 0.74em;
  height: 6px;
  border-radius: 999px;
}

.kids-page .kids-pill::before {
  left: 0;
  width: 32px;
  background: var(--kids-purple);
  box-shadow: none;
}

.kids-page .kids-pill::after {
  left: 44px;
  width: 24px;
  background: var(--accent);
}

.kids-page .kids-section .kids-pill,
.kids-page .kids-hero .kids-pill,
.kids-page .kids-cta-panel .kids-pill {
  padding-left: 0;
}

.kids-page .kids-section .kids-pill::before,
.kids-page .kids-section .kids-pill::after,
.kids-page .kids-hero .kids-pill::before,
.kids-page .kids-hero .kids-pill::after,
.kids-page .kids-cta-panel .kids-pill::before,
.kids-page .kids-cta-panel .kids-pill::after {
  content: none !important;
  display: none !important;
}

.kids-cohesion-3 .kids-note-card {
  right: -8px;
  bottom: 38px;
  max-width: 250px;
  border: 1px solid var(--accent-line);
  transform: none;
}

.kids-cohesion-3 .kids-section-head {
  border-left: 3px solid var(--accent);
  padding-left: 22px;
}

.kids-cohesion-3 .kids-cta-panel {
  border: 1px solid var(--accent-line);
  background:
    linear-gradient(135deg, rgba(232, 82, 26, 0.12), rgba(142, 101, 189, 0.12)),
    var(--kids-lilac);
}

.kids-page .kids-cta-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: min(var(--max), calc(100% - clamp(36px, 10vw, 140px)));
  margin-inline: auto;
  border-left: 6px solid var(--accent);
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 234, 0.9)),
    #fff;
}

.kids-page .kids-cta-panel h2 {
  max-width: 720px;
  font-size: clamp(36px, 4.7vw, 64px);
}

.kids-page .kids-cta-panel p:not(.kids-pill) {
  max-width: 620px;
  margin-bottom: 0;
}

.kids-page .kids-cta-panel .kids-btn {
  align-self: center;
  white-space: nowrap;
}

.kids-page .kids-whatsapp-cta {
  min-height: 58px;
  padding: 18px 28px;
  font-size: 14px;
  letter-spacing: 0.06em;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.32), 0 0 0 6px rgba(37, 211, 102, 0.1);
}

.kids-map-section {
  width: 100vw;
  height: 400px;
  margin: clamp(44px, 6vw, 84px) 0 0 50%;
  transform: translateX(-50%);
  overflow: hidden;
  border-top: 1px solid rgba(232, 82, 26, 0.22);
  background: var(--black-card);
}

.kids-map-section iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  filter: saturate(0.88) contrast(1.03);
}

.kids-cohesion-3 .kids-program-card,
.kids-cohesion-3 .kids-info-grid article {
  transform: none;
}

.kids-cohesion-3 .kids-split {
  align-items: center;
}

.kids-gallery-section {
  padding-top: clamp(24px, 4vw, 52px);
}

.kids-photo-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  grid-auto-rows: minmax(220px, 18vw);
  gap: 14px;
}

.kids-photo-tile {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 82, 26, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 70px rgba(64, 61, 61, 0.1);
}

.kids-photo-tile.wide {
  grid-column: span 2;
}

.kids-photo-tile.tall {
  grid-row: span 2;
}

.kids-photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--x, 50%) var(--y, 48%);
}

.kids-photo-tile figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  width: max-content;
  max-width: calc(100% - 24px);
  border: 1px solid rgba(232, 82, 26, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--kids-ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(64, 61, 61, 0.12);
}

.kids-cta-logo {
  width: 140px;
  aspect-ratio: 1;
  border-radius: 22px;
  background: #fff;
}

.kids-cta-panel .kids-cta-logo img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: contain;
  object-position: var(--x, 50%) var(--y, 50%);
}

.kids-page .kids-nav .nav-cta[href*="wa.me"],
.kids-page .kids-btn[href*="wa.me"] {
  gap: 9px;
  background: #25d366;
  color: #06130a;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.26);
}

.kids-page .kids-nav .nav-cta[href*="wa.me"]::before,
.kids-page .kids-btn[href*="wa.me"]::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3.2A12.62 12.62 0 0 0 5.1 22.14L3.2 29l7.02-1.84A12.62 12.62 0 1 0 16.02 3.2Zm0 2.25a10.37 10.37 0 0 1 8.86 15.76 10.35 10.35 0 0 1-13.96 3.72l-.5-.3-4.17 1.1 1.12-4.05-.33-.52A10.37 10.37 0 0 1 16.02 5.45Zm-4.34 5.58c-.22 0-.57.08-.87.41-.3.33-1.14 1.11-1.14 2.71 0 1.6 1.17 3.15 1.33 3.37.16.22 2.26 3.62 5.57 4.93 2.75 1.08 3.31.87 3.9.82.6-.06 1.93-.79 2.2-1.55.27-.76.27-1.41.19-1.55-.08-.14-.3-.22-.63-.38-.33-.16-1.93-.95-2.23-1.06-.3-.11-.52-.16-.74.16-.22.33-.85 1.06-1.04 1.28-.19.22-.38.24-.71.08-.33-.16-1.39-.51-2.65-1.64-.98-.87-1.64-1.95-1.83-2.28-.19-.33-.02-.51.14-.67.15-.15.33-.38.49-.57.16-.19.22-.33.33-.55.11-.22.05-.41-.03-.57-.08-.16-.74-1.79-1.01-2.45-.27-.64-.54-.55-.74-.56h-.52Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.kids-page .kids-nav .nav-cta[href*="wa.me"]:hover,
.kids-page .kids-nav .nav-cta[href*="wa.me"]:focus-visible,
.kids-page .kids-btn[href*="wa.me"]:hover,
.kids-page .kids-btn[href*="wa.me"]:focus-visible {
  background: #1fc15d;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.34);
}

.kids-page .kids-nav,
.kids-page.kids-cohesion-1 .kids-nav,
.kids-page.kids-alt-lilac .kids-nav {
  gap: 18px;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 8, 6, 0.86);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(10, 8, 6, 0.22);
  backdrop-filter: blur(18px);
}

.kids-page .kids-nav .nav-links a,
.kids-page.kids-alt-lilac .kids-nav .nav-links a {
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.kids-page .kids-nav .nav-links {
  gap: clamp(12px, 1.5vw, 22px);
}

.kids-page .kids-nav .nav-links a:hover,
.kids-page .kids-nav .nav-links a:focus-visible {
  color: var(--white);
}

@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }

  .about-grid,
  .event-feature-card,
  .event-feature-card:nth-child(even),
  .event-split,
  .promo-grid,
  .split-cta,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .about {
    min-height: auto;
    align-items: start;
  }

  .about-panel {
    justify-self: stretch;
    width: 100%;
  }

  .program-grid,
  .detail-grid,
  .schedule-board,
  .event-gallery-grid,
  .event-path-grid,
  .event-service-grid,
  .kids-program-grid,
  .kids-gallery-strip,
  .kids-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-feature-card:nth-child(even) figure {
    order: 0;
  }

  .kids-program-grid {
    grid-template-columns: 1fr;
  }

  .kids-promo-details {
    grid-template-columns: 1fr;
  }

  .kids-promo-benefits,
  .kids-promo-development ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kids-promo-confidence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kids-hero,
  .kids-detail-hero,
  .kids-split,
  .kids-routine-combined,
  .kids-routine-columns,
  .kids-cta-panel {
    grid-template-columns: 1fr;
  }

  .kids-cta-panel {
    justify-items: start;
  }

  .kids-page .kids-cta-panel {
    grid-template-columns: 1fr;
    max-width: calc(100% - 36px);
  }

  .kids-cohesion-3 .kids-hero {
    grid-template-columns: 1fr;
  }

  .kids-photo-feature {
    justify-items: start;
  }

  .kids-feature-slot {
    width: min(520px, 100%);
    aspect-ratio: 16 / 12;
  }

  .kids-cohesion-3 .kids-note-card {
    right: 16px;
    bottom: 16px;
  }

  .kids-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(220px, 28vw);
  }
}

@media (max-width: 680px) {
  .section {
    scroll-margin-top: calc(var(--marquee-h) + 10px);
  }


  .site-nav {
    position: absolute;
  }

  .kids-nav {
    position: fixed;
    inset: var(--marquee-h) 0 auto;
    top: var(--marquee-h);
  }

  .hero {
    padding-top: calc(var(--marquee-h) + 96px);
  }

  .hero-frame {
    inset: calc(var(--marquee-h) + 72px + 12px) 12px 12px;
  }

  .hero-vline {
    left: 24px;
    top: calc(var(--marquee-h) + 72px + 12px);
    bottom: 12px;
  }

  .hero-corner {
    top: calc(var(--marquee-h) + 72px + 24px);
    right: 20px;
  }

  .hero-title {
    font-size: clamp(54px, 18vw, 74px);
  }

  .program-head {
    display: block;
  }

  .kids-program-card-feature {
    grid-template-columns: 1fr;
  }

  .kids-card-logo {
    width: min(150px, 42vw);
    min-width: 0;
    justify-self: start;
    margin: 0 26px 26px;
  }

  .program-grid,
  .detail-grid,
  .schedule-board,
  .event-path-grid,
  .event-service-grid,
  .kids-program-grid,
  .kids-gallery-strip,
  .kids-info-grid,
  .modal-list {
    grid-template-columns: 1fr;
  }

  .events-hero {
    min-height: 660px;
  }

  .kids-events-hero {
    background:
      radial-gradient(ellipse at 20% 58%, rgba(10, 8, 6, 0.42), rgba(10, 8, 6, 0.12) 54%, rgba(10, 8, 6, 0)),
      linear-gradient(90deg, rgba(10, 8, 6, 0.46), rgba(10, 8, 6, 0.08) 62%, rgba(10, 8, 6, 0)),
      linear-gradient(0deg, rgba(10, 8, 6, 0.3), rgba(10, 8, 6, 0) 46%),
      url("images/kids-hero-class-session.jpg") 42% 52% / cover;
  }

  .kids-promo-merged-hero {
    min-height: auto;
    padding-bottom: clamp(52px, 14vw, 82px);
  }

  .kids-hero-validity {
    width: 100%;
    max-width: none;
  }

  .kids-hero-benefits {
    grid-template-columns: 1fr;
  }

  .kids-hero-benefits article {
    min-height: auto;
    padding-right: clamp(72px, 22vw, 92px);
  }

  .path-card {
    min-height: 210px;
  }

  .event-feature-card,
  .event-feature-card:nth-child(even),
  .event-gallery-grid {
    grid-template-columns: 1fr;
  }

  .event-feature-card {
    min-height: auto;
  }

  .event-feature-card figure {
    height: 360px;
    min-height: 360px;
  }

  .event-photo-card,
  .event-photo-card.tall {
    min-height: 380px;
  }

  .kids-hero,
  .kids-detail-hero {
    min-height: auto;
    padding-top: 108px;
  }

  .kids-landing .kids-hero {
    padding-top: calc(var(--marquee-h) + 92px);
  }

  .kids-hero h1,
  .kids-detail-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .kids-note-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -28px;
  }

  .kids-info-grid article,
  .kids-program-card {
    transform: none !important;
  }

  .kids-july-promo {
    scroll-margin-top: calc(var(--marquee-h) + 82px);
    padding-top: clamp(56px, 14vw, 82px);
    padding-bottom: clamp(56px, 14vw, 82px);
  }

  .kids-promo-hero h2 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .kids-promo-validity {
    width: 100%;
    max-width: none;
    padding-right: 96px;
  }

  .kids-promo-validity strong {
    font-size: clamp(25px, 8vw, 34px);
  }

  .kids-promo-confidence {
    grid-template-columns: 1fr;
  }

  .kids-promo-benefits,
  .kids-promo-development ul {
    grid-template-columns: 1fr;
  }

  .kids-promo-benefits article {
    min-height: auto;
    transform: none !important;
  }

  .kids-promo-actions .kids-btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .kids-promo-ages li {
    display: grid;
    gap: 4px;
  }

  .kids-cohesion-3 .kids-hero::before {
    inset: calc(var(--marquee-h) + 76px) 12px 18px;
  }

  .kids-cohesion-3 .kids-hero::after {
    left: 24px;
    top: calc(var(--marquee-h) + 92px);
    bottom: 28px;
  }

  .kids-feature-slot {
    aspect-ratio: 4 / 4.6;
  }

  .kids-cohesion-3 .kids-note-card {
    right: auto;
    bottom: auto;
  }

  .kids-photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .kids-photo-tile,
  .kids-photo-tile.wide,
  .kids-photo-tile.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .kids-photo-tile.tall {
    aspect-ratio: 4 / 4.8;
  }

  .kids-cta-panel {
    margin: 18px;
  }

  .kids-page .kids-cta-panel {
    margin: 18px;
    max-width: none;
    padding: 26px 22px;
  }

  .kids-page .kids-cta-panel h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .kids-page .kids-cta-panel .kids-btn {
    width: 100%;
    white-space: normal;
  }

  .location-photo,
  .location-photo img {
    min-height: 230px;
  }

  .about {
    min-height: auto;
    padding-top: clamp(72px, 16vw, 96px);
    padding-bottom: clamp(72px, 16vw, 96px);
    background-position: center;
  }

  .about-proof {
    aspect-ratio: 4 / 3;
  }

  .owner-quote {
    font-size: 20px;
  }

  .promo-steps {
    position: static;
    margin-top: 12px;
  }

  .whatsapp-float {
    left: auto;
    right: 16px;
    width: 58px;
    max-width: 58px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 1020px) {
  .kids-page .kids-nav .nav-links {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .kids-page .kids-nav .nav-links::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 900px) {
  .kids-page .kids-nav .nav-links .nav-cta {
    display: none;
  }
}

@media (max-width: 680px) {
  .kids-page .kids-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
  }

  .kids-page .kids-brand {
    min-width: 0;
  }

  .kids-page .kids-brand .brand-logo {
    width: 132px;
    height: 42px;
  }

  .kids-page .kids-nav .nav-links {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .kids-page .kids-nav .nav-cta {
    display: none;
  }

  .kids-hero,
  .kids-detail-hero,
  .kids-landing .kids-hero {
    padding-top: calc(var(--marquee-h) + 124px);
  }
}

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