:root {
  --red: #e5262d;
  --red-dark: #b8171d;
  --navy: #173f68;
  --navy-soft: #e9f0f7;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #dce3ec;
  --canvas: #f6f8fb;
  --surface: #ffffff;
  --success: #117a4d;
  --shadow: 0 18px 44px rgba(17, 24, 39, 0.12);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--navy);
}

.brand span {
  display: block;
  font-size: 15px;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #2d3748;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a[aria-current="page"] {
  color: var(--red-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: var(--navy);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: #0f2f51;
}

.btn.ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: var(--navy-soft);
  border-color: var(--navy);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 14;
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 10px;
  background: var(--red);
}

.hero-mark {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  top: 76px;
  width: min(520px, 40vw);
  opacity: 0.16;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  min-height: 680px;
  margin: 0 auto;
  padding: 78px 24px 62px;
  display: grid;
  align-items: center;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 76px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.lead {
  max-width: 720px;
  color: #2f3b4a;
  font-size: 20px;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin-top: 44px;
}

.proof-item {
  min-height: 112px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.proof-item span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 88px 24px;
}

.section.tight {
  padding-top: 58px;
  padding-bottom: 58px;
}

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

.section.red {
  background: var(--red);
  color: #fff;
}

.section.navy {
  background: var(--navy);
  color: #fff;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section.red .section-head p,
.section.navy .section-head p,
.section.red .muted,
.section.navy .muted {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-width: 0;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.section.red .card,
.section.navy .card {
  color: var(--ink);
}

.card.accent {
  border-top: 4px solid var(--red);
}

.card.dark {
  background: #0f2f51;
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.card.dark p,
.card.dark .muted {
  color: rgba(255, 255, 255, 0.74);
}

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

.stat {
  display: block;
  color: var(--red);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

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

.list-clean li {
  position: relative;
  padding-left: 24px;
}

.list-clean li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px #fde8e9;
}

.program-card {
  display: grid;
  gap: 14px;
}

.age-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--navy-soft);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.schedule-table,
.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.schedule-table th,
.schedule-table td,
.price-table th,
.price-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.schedule-table th,
.price-table th {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
}

.schedule-table tr:last-child td,
.price-table tr:last-child td {
  border-bottom: 0;
}

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

.coach-avatar {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f2f5f9;
  color: #344256;
  font-size: 12px;
  font-weight: 800;
}

.media-year {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.media-year.media-year-simple {
  grid-template-columns: auto 1fr;
}

.media-year.media-year-simple .tag-row {
  justify-content: flex-end;
}

.year-number {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  min-height: 360px;
  padding: 74px 24px;
  display: grid;
  align-items: center;
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero p {
  max-width: 780px;
}

.portrait-layout {
  display: grid;
  grid-template-columns: minmax(260px, 390px) 1fr;
  gap: 38px;
  align-items: start;
}

.portrait {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.portrait figcaption {
  padding: 16px;
  color: var(--muted);
  font-size: 14px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline-item strong {
  color: var(--red-dark);
}

.process-step {
  counter-increment: process;
  position: relative;
  padding-top: 58px;
}

.process-step::before {
  content: counter(process);
  position: absolute;
  top: 20px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.process-grid {
  counter-reset: process;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

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

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.map-frame {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.source-links a {
  color: var(--navy);
  font-weight: 800;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.site-footer {
  background: #0e1726;
  color: #fff;
  padding: 44px 24px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}



.site-footer .muted {
  color: rgba(255, 255, 255, 0.68);
}

.footer-title {
  margin-bottom: 12px;
  font-weight: 900;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.socials a {
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 980px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .nav {
    align-items: center;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 79px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-actions .btn.secondary {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 56px;
  }

  .hero-mark {
    top: 120px;
    width: 480px;
    opacity: 0.1;
  }

  .hero-proof,
  .grid.four,
  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portrait-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .nav {
    padding: 10px 16px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

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

  .brand small {
    display: none;
  }

  .nav-actions .btn {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 14px;
  }

  .section {
    padding: 64px 16px;
  }

  .section-head,
  .cta-band {
    display: grid;
    align-items: start;
  }

  .hero-inner {
    padding: 48px 16px 54px;
  }

  .hero-proof,
  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .lead {
    font-size: 18px;
  }

  .proof-item {
    min-height: 0;
  }

  .media-year {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .schedule-table,
  .price-table {
    display: grid;
    gap: 12px;
    overflow: visible;
    border: 0;
    background: transparent;
    white-space: normal;
  }

  .schedule-table thead,
  .price-table thead {
    display: none;
  }

  .schedule-table tbody,
  .price-table tbody {
    display: grid;
    gap: 12px;
  }

  .schedule-table tr,
  .price-table tr {
    display: grid;
    gap: 10px;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .schedule-table td,
  .price-table td {
    display: grid;
    grid-template-columns: minmax(92px, 0.42fr) 1fr;
    gap: 12px;
    padding: 0;
    border-bottom: 0;
    white-space: normal;
  }

  .schedule-table td::before,
  .price-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }
}



