:root {
  --charcoal: #0d0f10;
  --charcoal-soft: #171a1c;
  --green: #a6d52f;
  --green-dark: #73951c;
  --blue: #1c4f9b;
  --magenta: #d91aa8;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --gray: #697075;
  --line: rgba(13, 15, 16, 0.15);
  --container: 1180px;
  --header-height: 76px;
  --radius: 4px;
  --font-display: "Bahnschrift Condensed", "Arial Narrow", "Roboto Condensed", Impact, Haettenschweiler, sans-serif;
  --font-body: Inter, Manrope, "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--charcoal);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.section { padding: 5rem 0; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(13, 15, 16, 0.86);
  backdrop-filter: blur(16px);
  transition: height 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(13, 15, 16, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  position: relative;
  z-index: 102;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.brand-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  overflow: hidden;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12);
}

.brand img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  transform: scale(1.12);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  font-stretch: condensed;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-name-accent { color: var(--green); }

.menu-toggle {
  position: relative;
  z-index: 102;
  display: grid;
  gap: 5px;
  width: 46px;
  height: 46px;
  place-content: center;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 6rem 2rem 2rem;
  background: var(--charcoal);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
}

.main-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.main-nav > a:not(.button) {
  position: relative;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 8vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.button-small { min-height: 42px; padding: 0.7rem 1rem; font-size: 0.8rem; }

.button-primary { color: var(--charcoal); background: var(--green); }
.button-primary:hover { background: #b8e743; box-shadow: 0 10px 28px rgba(166, 213, 47, .2); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(13,15,16,.2); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.button-dark { color: var(--white); background: var(--charcoal); }
.button-dark:hover { background: var(--blue); }
.button-light { color: var(--charcoal); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--charcoal); }

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 760px;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-media,
.hero-scrim,
.hero-lines { position: absolute; inset: 0; }

.hero-media {
  background-image: url("assets/treino-grupo.jpg");
  background-position: 63% center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-scrim {
  background: linear-gradient(90deg, rgba(13,15,16,.97) 0%, rgba(13,15,16,.88) 42%, rgba(13,15,16,.24) 78%), linear-gradient(0deg, rgba(13,15,16,.68) 0%, transparent 45%);
}

.hero-lines {
  opacity: .17;
  background-image: linear-gradient(90deg, transparent 24.8%, rgba(255,255,255,.3) 25%, transparent 25.2%, transparent 74.8%, rgba(255,255,255,.3) 75%, transparent 75.2%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 3.5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.2rem;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span { width: 28px; height: 3px; background: currentColor; }
.eyebrow.light { color: var(--green); }
.eyebrow.dark { color: var(--blue); }
.hero-eyebrow { color: var(--green); }

.hero h1,
.section-heading h2,
.schedule h2,
.location h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: .96;
}

.hero h1 {
  max-width: 870px;
  font-size: clamp(3.35rem, 12vw, 7.3rem);
  text-shadow: 0 8px 28px rgba(0,0,0,.2);
}

.hero h1 em { color: var(--green); font-style: normal; }

.hero-copy {
  max-width: 580px;
  margin: 1.5rem 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
}

.hero-actions { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 580px;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.2);
}

.hero-meta div { padding-right: .5rem; }
.hero-meta div + div { padding-left: .75rem; border-left: 1px solid rgba(255,255,255,.2); }
.hero-meta strong { display: block; color: var(--white); font-family: var(--font-display); font-size: clamp(1.3rem,4vw,2rem); line-height: 1; }
.hero-meta span { display: block; margin-top: .35rem; color: rgba(255,255,255,.62); font-size: .68rem; line-height: 1.3; }

.hero-photo-label {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  display: none;
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .68rem;
}

.intro { background: var(--off-white); }
.intro-grid { display: grid; gap: 2.5rem; }

.section-heading h2,
.schedule h2,
.location h2,
.faq h2,
.final-cta h2 { font-size: clamp(2.8rem, 9vw, 5rem); }

.intro .section-heading h2 { max-width: 650px; }
.intro-copy { max-width: 590px; }
.intro-copy p { color: #4a5054; }
.intro-copy .lead { margin-top: 0; color: var(--charcoal); font-size: clamp(1.25rem, 3vw, 1.65rem); font-weight: 680; line-height: 1.42; }

.text-link {
  display: inline-block;
  margin-top: .8rem;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
  border-bottom: 2px solid var(--green);
}

.text-link:hover { color: var(--charcoal); }

.modalities { position: relative; overflow: hidden; color: var(--white); background: var(--blue); }
.modalities::before { content: "M"; position: absolute; right: -3vw; bottom: -17vw; color: rgba(255,255,255,.035); font-family: var(--font-display); font-size: 44vw; font-weight: 900; line-height: 1; }
.modalities .container { position: relative; }
.section-heading-row { display: grid; gap: 1.5rem; margin-bottom: 2.5rem; }
.section-heading-row > p { max-width: 430px; margin: 0; color: rgba(255,255,255,.72); }
.modality-grid { display: grid; gap: 1px; background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.22); }

.modality-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem;
  align-items: start;
  min-height: 190px;
  padding: 1.4rem;
  background: var(--blue);
  transition: color 200ms ease, background 200ms ease;
}

.modality-card:hover { color: var(--charcoal); background: var(--green); }
.modality-number { color: var(--green); font-family: var(--font-display); font-size: .85rem; font-weight: 900; }
.modality-card:hover .modality-number { color: var(--blue); }
.modality-card h3 { margin: 0; font-family: var(--font-display); font-size: clamp(2.1rem, 8vw, 3.6rem); line-height: .95; }
.modality-card p { max-width: 250px; margin: .85rem 0 0; color: rgba(255,255,255,.7); font-size: .88rem; }
.modality-card:hover p { color: rgba(13,15,16,.75); }
.card-arrow { font-size: 1.5rem; line-height: 1; }
.modality-note { margin: 1.1rem 0 0; color: rgba(255,255,255,.65); font-size: .78rem; }

.class-timetable { background: var(--white); }
.class-timetable-heading { display: grid; gap: 1.5rem; margin-bottom: 2.5rem; }
.class-timetable-heading .section-heading h2 { max-width: 740px; }
.class-timetable-heading > p { max-width: 490px; margin: 0; color: #555d61; }
.timetable-layout { display: grid; gap: 1.2rem; }
.timetable-image { margin: 0; padding: .65rem; background: var(--off-white); border: 1px solid var(--line); }
.timetable-image img { width: 100%; height: auto; background: var(--white); }
.timetable-image figcaption { padding: .65rem .2rem .1rem; color: var(--gray); font-size: .7rem; }
.timetable-image.image-error { position: relative; min-height: 280px; background: linear-gradient(135deg, var(--blue), var(--charcoal)); }
.timetable-image.image-error::before { content: "Grade temporariamente indisponível"; position: absolute; inset: 0; display: grid; place-items: center; padding: 1rem; color: var(--white); font-size: .85rem; text-align: center; }
.timetable-image.image-error img { opacity: 0; }
.timetable-summary { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.timetable-summary article { padding: 1.35rem; background: var(--off-white); }
.timetable-summary article > span { color: var(--blue); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.timetable-summary h3 { margin: .35rem 0 1rem; font-family: var(--font-display); font-size: 1.8rem; line-height: 1; }
.timetable-summary p { margin: .48rem 0; color: #50575b; font-size: .82rem; line-height: 1.5; }
.timetable-summary strong { color: var(--charcoal); }

.pricing { position: relative; overflow: hidden; color: var(--white); background: var(--charcoal); }
.pricing::after { content: ""; position: absolute; top: -150px; right: -120px; width: 360px; height: 360px; border: 70px solid rgba(166,213,47,.09); border-radius: 50%; pointer-events: none; }
.pricing .container { position: relative; z-index: 1; }
.pricing-heading { display: grid; gap: 1.5rem; margin-bottom: 2.5rem; }
.pricing-heading .section-heading h2 { max-width: 800px; }
.pricing-heading > p { max-width: 470px; margin: 0; color: rgba(255,255,255,.62); }
.price-grid { display: grid; gap: .75rem; }
.price-card { display: flex; flex-direction: column; min-height: 300px; padding: 1.4rem; border: 1px solid rgba(255,255,255,.16); background: var(--charcoal-soft); }
.price-card.featured { color: var(--charcoal); background: var(--green); border-color: var(--green); }
.price-card-head { padding-bottom: 1.2rem; border-bottom: 1px solid rgba(255,255,255,.16); }
.featured .price-card-head { border-color: rgba(13,15,16,.18); }
.price-kicker { color: var(--green); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.featured .price-kicker { color: var(--blue); }
.price-card h3 { margin: .4rem 0 0; font-family: var(--font-display); font-size: clamp(2rem, 8vw, 3rem); line-height: .95; }
.price-card dl { margin: auto 0 0; }
.price-card dl > div { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.featured dl > div { border-color: rgba(13,15,16,.14); }
.price-card dt { color: rgba(255,255,255,.58); font-size: .77rem; }
.featured dt { color: rgba(13,15,16,.62); }
.price-card dd { margin: 0; font-family: var(--font-display); font-size: 1.45rem; font-weight: 900; text-align: right; }
.strength-promo { display: grid; gap: 1.4rem; margin-top: .75rem; padding: 1.5rem; color: var(--charcoal); background: var(--white); border-left: 6px solid var(--blue); }
.promo-badge { display: inline-block; padding: .25rem .5rem; color: var(--white); background: var(--blue); font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.strength-promo h3 { margin: .55rem 0 0; font-family: var(--font-display); font-size: clamp(2.6rem, 9vw, 4.2rem); line-height: .9; }
.strength-promo p { margin: .6rem 0 0; color: var(--gray); font-size: .8rem; }
.promo-option { padding-top: 1rem; border-top: 1px solid var(--line); }
.promo-option span { display: block; color: var(--gray); font-size: .72rem; font-weight: 800; }
.promo-option strong { display: block; margin-top: .2rem; font-family: var(--font-display); font-size: clamp(2rem, 7vw, 3rem); line-height: 1; }
.promo-option small { color: var(--blue); font-weight: 850; }
.promo-highlight strong { color: var(--blue); }
.pricing-footer { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; margin-top: 1.4rem; }
.pricing-footer p { max-width: 700px; margin: 0; color: rgba(255,255,255,.55); font-size: .75rem; }

.gallery-section { background: var(--white); }
.gallery-heading { display: grid; gap: 2rem; margin-bottom: 2.5rem; }
.gallery-heading .section-heading h2 { max-width: 770px; }
.photo-disclaimer { max-width: 470px; padding: 1.1rem 1.2rem; border-left: 4px solid var(--green); background: var(--off-white); }
.photo-disclaimer strong { color: var(--blue); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.photo-disclaimer p { margin: .25rem 0 0; color: #555d61; font-size: .78rem; line-height: 1.5; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: .6rem; }
.gallery-item { position: relative; min-width: 0; margin: 0; overflow: hidden; background: var(--charcoal-soft); }
.gallery-item::after { content: "Referência visual"; position: absolute; right: .65rem; bottom: .5rem; padding: .25rem .45rem; color: rgba(255,255,255,.8); background: rgba(13,15,16,.72); font-size: .55rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-wide { grid-column: 1 / -1; }
.gallery-tall { grid-row: span 2; }
.gallery-square { min-height: 0; }
.gallery-item.image-error::before { content: "Imagem temporariamente indisponível"; position: absolute; inset: 0; display: grid; place-items: center; padding: 1rem; color: var(--white); font-size: .8rem; text-align: center; background: linear-gradient(135deg, var(--blue), var(--charcoal)); }
.gallery-item.image-error img { opacity: 0; }

.testimonials { background: var(--off-white); }
.testimonials-heading { display: grid; gap: 1.5rem; align-items: end; margin-bottom: 2.5rem; }
.testimonials-heading .section-heading h2 { max-width: 760px; }
.testimonials-heading .text-link { justify-self: start; margin-top: 0; }
.testimonial-grid { display: grid; gap: .75rem; }
.testimonial-card { display: flex; flex-direction: column; min-width: 0; min-height: 270px; padding: 1.5rem; background: var(--white); border: 1px solid var(--line); }
.testimonial-card:nth-child(2) { color: var(--white); background: var(--blue); border-color: var(--blue); }
.stars { color: var(--green-dark); font-size: .9rem; letter-spacing: .12em; }
.testimonial-card:nth-child(2) .stars { color: var(--green); }
.testimonial-card blockquote { margin: 1.35rem 0 2rem; font-family: var(--font-display); font-size: clamp(1.65rem, 6vw, 2.25rem); font-weight: 800; line-height: 1.12; }
.testimonial-card > p { margin: auto 0 0; }
.testimonial-card > p strong, .testimonial-card > p span { display: block; }
.testimonial-card > p strong { font-size: .82rem; }
.testimonial-card > p span { margin-top: .1rem; color: var(--gray); font-size: .68rem; }
.testimonial-card:nth-child(2) > p span { color: rgba(255,255,255,.6); }

.schedule { color: var(--white); background: var(--charcoal); }
.schedule-grid { display: grid; gap: 2.7rem; }
.schedule-intro > p:not(.eyebrow) { max-width: 450px; color: rgba(255,255,255,.68); }
.schedule-intro .button { margin-top: 1rem; }
.schedule-card { border-top: 1px solid rgba(255,255,255,.24); }
.schedule-row { display: grid; grid-template-columns: 1fr; gap: .65rem; padding: 1.35rem 0; border-bottom: 1px solid rgba(255,255,255,.24); }
.schedule-row span { font-weight: 800; }
.schedule-row small { display: block; margin-top: .12rem; color: rgba(255,255,255,.48); }
.schedule-row strong { font-family: var(--font-display); font-size: clamp(1.8rem, 7vw, 3rem); line-height: 1; }
.schedule-row i { color: var(--green); font-style: normal; }
.schedule-row.closed strong { color: var(--green); }

.location { background: var(--off-white); }
.location-grid { display: grid; gap: 3rem; align-items: center; }
.location-visual { position: relative; min-height: 420px; overflow: hidden; background: #e5e8df; border: 1px solid #d5d9cf; }
.map-grid { position: absolute; inset: 0; opacity: .6; background-image: linear-gradient(rgba(28,79,155,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(28,79,155,.1) 1px, transparent 1px); background-size: 42px 42px; transform: rotate(-8deg) scale(1.2); }
.map-route { position: absolute; height: 18px; background: var(--white); border: 1px solid rgba(13,15,16,.12); box-shadow: 0 1px 0 rgba(13,15,16,.08); }
.route-one { top: 46%; left: -10%; width: 125%; transform: rotate(-21deg); }
.route-two { top: 0; left: 48%; width: 18px; height: 110%; transform: rotate(12deg); }
.map-pin { position: absolute; top: 47%; left: 53%; display: grid; place-items: center; width: 64px; height: 64px; background: var(--blue); border: 7px solid var(--white); border-radius: 50% 50% 50% 0; box-shadow: 0 10px 30px rgba(28,79,155,.32); transform: translate(-50%,-50%) rotate(-45deg); }
.map-pin span { width: 15px; height: 15px; background: var(--green); border-radius: 50%; }
.map-label { position: absolute; top: calc(47% + 45px); left: 53%; padding: .35rem .65rem; color: var(--white); background: var(--charcoal); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; transform: translateX(-50%); }
.location-content address { margin: 1.6rem 0; color: var(--blue); font-size: clamp(1.1rem, 3vw, 1.35rem); font-style: normal; font-weight: 800; line-height: 1.5; }
.location-content > p:not(.eyebrow) { max-width: 480px; color: #545b5f; }
.location-content .button { margin-top: 1rem; }

.faq { background: var(--white); }
.faq-layout { display: grid; gap: 3rem; }
.faq-intro { align-self: start; }
.faq-intro h2 { max-width: 560px; margin: 0; font-family: var(--font-display); font-weight: 900; letter-spacing: -.045em; line-height: .96; }
.faq-intro > p:not(.eyebrow) { max-width: 480px; color: #555d61; }
.faq-intro .button { margin-top: 1rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; font-weight: 820; line-height: 1.35; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 26px; width: 26px; height: 26px; border: 1px solid var(--charcoal); border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1.5px; background: currentColor; transform: translate(-50%,-50%); transition: transform 180ms ease; }
.faq-list summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-list details[open] summary { color: var(--blue); }
.faq-list details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
.faq-list details p { max-width: 680px; margin: -.2rem 0 1.4rem; padding-right: 2.6rem; color: #555d61; font-size: .9rem; }

.final-cta { position: relative; overflow: hidden; padding: 5rem 0; color: var(--white); background: var(--blue); }
.final-cta-shape { position: absolute; top: -80px; right: -80px; width: 270px; height: 270px; border: 55px solid var(--green); border-radius: 50%; opacity: .2; }
.final-cta-inner { position: relative; display: grid; gap: 2rem; align-items: end; }
.final-cta h2 { max-width: 720px; }
.final-cta p:not(.eyebrow) { max-width: 650px; margin-bottom: 0; color: rgba(255,255,255,.75); }

.site-footer { padding: 4rem 0 1.5rem; color: var(--white); background: var(--charcoal); }
.footer-grid { display: grid; gap: 2.5rem; }
.footer-brand img { width: 82px; height: 92px; object-fit: contain; padding: 4px; background: var(--white); }
.footer-brand p { max-width: 280px; color: rgba(255,255,255,.6); }
.site-footer h2 { margin: 0 0 .75rem; color: var(--green); font-family: var(--font-display); font-size: 1.25rem; }
.site-footer address, .site-footer p { color: rgba(255,255,255,.62); font-size: .82rem; font-style: normal; }
.site-footer a { font-weight: 760; text-decoration-color: var(--green); text-underline-offset: 4px; }
.site-footer a:hover { color: var(--green); }
.footer-social { display: block; margin-top: .45rem; color: rgba(255,255,255,.72); font-size: .78rem; }
.footer-bottom { display: flex; flex-direction: column; gap: .5rem; margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255,255,255,.42); font-size: .7rem; font-weight: 600; }

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--charcoal);
  background: var(--green);
  border: 3px solid var(--charcoal);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,.26);
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-float:hover { background: #b8e743; transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 28px; fill: currentColor; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 540px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .button { min-width: 210px; }
  .schedule-row { grid-template-columns: 1fr auto; align-items: center; gap: 1rem; }
  .schedule-row strong { text-align: right; }
  .gallery { grid-auto-rows: 230px; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .strength-promo { grid-template-columns: 1fr 1fr; }
  .strength-promo > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 768px) {
  .section { padding: 7rem 0; }
  .hero-content { padding-bottom: 5rem; }
  .hero-photo-label { display: block; }
  .intro-grid { grid-template-columns: 1.15fr .85fr; align-items: start; gap: 4rem; }
  .section-heading-row { grid-template-columns: 1.4fr .6fr; align-items: end; }
  .class-timetable-heading, .pricing-heading { grid-template-columns: 1.35fr .65fr; align-items: end; }
  .timetable-summary { grid-template-columns: 1fr 1fr; }
  .modality-grid { grid-template-columns: 1fr 1fr; }
  .modality-card { min-height: 235px; padding: 1.8rem; }
  .gallery-heading { grid-template-columns: 1.25fr .75fr; align-items: end; }
  .gallery { grid-template-columns: 1.3fr .7fr 1fr; grid-auto-rows: 220px; gap: .8rem; }
  .gallery-wide { grid-column: 1 / 3; }
  .gallery-tall { grid-column: 3; grid-row: 1 / span 2; }
  .testimonials-heading { grid-template-columns: 1fr auto; }
  .testimonial-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .schedule-grid { grid-template-columns: .8fr 1.2fr; gap: 6rem; align-items: center; }
  .location-grid { grid-template-columns: 1.1fr .9fr; gap: 5rem; }
  .location-visual { min-height: 530px; }
  .faq-layout { grid-template-columns: .85fr 1.15fr; gap: 5rem; }
  .faq-intro { position: sticky; top: calc(var(--header-height) + 35px); }
  .final-cta { padding: 6.5rem 0; }
  .final-cta-inner { grid-template-columns: 1fr auto; gap: 4rem; }
  .final-cta .button { min-width: 220px; }
  .footer-grid { grid-template-columns: 1.25fr 1fr 1fr; gap: 4rem; }
}

@media (min-width: 980px) {
  :root { --header-height: 86px; }
  .container { width: min(calc(100% - 4rem), var(--container)); }
  .brand { gap: 0.75rem; }
  .brand-icon { width: 68px; height: 68px; }
  .brand-name { font-size: 2rem; }
  .menu-toggle { display: none; }
  .main-nav { position: static; flex-direction: row; justify-content: flex-end; gap: 1.55rem; padding: 0; background: transparent; visibility: visible; opacity: 1; transform: none; }
  .main-nav > a:not(.button) { font-family: var(--font-body); font-size: .77rem; font-weight: 760; letter-spacing: 0; }
  .nav-cta { margin-left: .25rem; }
  .hero-media { background-position: center 45%; }
  .hero-content { padding-bottom: 6.5rem; }
  .hero-meta { margin-top: 3.2rem; }
  .hero-meta span { font-size: .72rem; }
  .timetable-layout { grid-template-columns: 1.4fr .6fr; align-items: stretch; }
  .timetable-summary { grid-template-columns: 1fr; }
  .modality-grid { grid-template-columns: repeat(4,1fr); }
  .modality-card { min-height: 330px; grid-template-columns: 1fr auto; grid-template-rows: auto 1fr; }
  .modality-card > div { grid-column: 1 / -1; align-self: end; }
  .modality-card p { min-height: 3.9em; }
  .price-grid { grid-template-columns: repeat(4,1fr); }
  .price-card { min-height: 340px; }
  .strength-promo { grid-template-columns: 1.1fr .8fr .8fr; align-items: center; padding: 2rem; }
  .strength-promo > div:first-child { grid-column: auto; }
  .promo-option { padding: .5rem 0 .5rem 1.5rem; border-top: 0; border-left: 1px solid var(--line); }
  .pricing-footer { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
}

@media (min-width: 1300px) {
  .hero h1 { max-width: 980px; font-size: 7.15rem; }
}

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