:root {
  --bg: #050506;
  --bg-soft: #111114;
  --bg-card: rgba(15, 15, 18, 0.78);
  --bg-card-strong: rgba(10, 10, 13, 0.94);
  --surface-light: #f3f1f4;
  --surface-light-2: #eae6ed;
  --text: #f7f9fb;
  --text-dark: #1a2128;
  --muted: #bec4cc;
  --muted-dark: #4e5660;
  --line: rgba(255, 255, 255, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(16, 20, 26, 0.16);
  --accent: #f0008c;
  --accent-2: #ff58bc;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 18px 36px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(1200px 700px at 85% -15%, rgba(240, 0, 140, 0.2), transparent 48%),
    radial-gradient(900px 500px at -5% 85%, rgba(240, 0, 140, 0.12), transparent 45%),
    linear-gradient(170deg, #040405 0%, #0a0a0d 52%, #121217 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0%, transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  z-index: -2;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 6.1rem);
  font-weight: 800;
  font-style: italic;
}

h2 {
  font-size: clamp(1.9rem, 4.8vw, 4rem);
  font-weight: 800;
  font-style: italic;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 700;
}

p {
  margin: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(84px);
  pointer-events: none;
  z-index: -1;
  animation: glowPulse 8s ease-in-out infinite;
}

.bg-glow-a {
  width: 340px;
  height: 340px;
  top: -120px;
  right: -80px;
  background: rgba(240, 0, 140, 0.26);
}

.bg-glow-b {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -100px;
  background: rgba(240, 0, 140, 0.18);
}

.site-header,
.container,
.site-footer {
  width: min(1260px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 1rem 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.8rem 1rem 0.8rem 1.2rem;
  background: rgba(8, 8, 10, 0.72);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 10, 0.92);
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: clamp(28px, 3vw, 38px);
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.menu a {
  color: #dde5ec;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.menu .cta-link {
  background: linear-gradient(90deg, var(--accent), #ff37b0);
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 999px;
  padding: 0.38rem 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
  font-weight: 700;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.04);
}

.header-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  color: #f4f7fb;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-ig svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.header-ig:hover,
.header-ig:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 0, 140, 0.55);
  background: rgba(240, 0, 140, 0.16);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.24rem 0.52rem;
  background: transparent;
  color: #dce5ee;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.lang-btn.is-active {
  background: rgba(240, 0, 140, 0.25);
  color: #fff;
}

main {
  width: 100%;
}

.section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.content-layer {
  position: relative;
  z-index: 2;
}

.diagonal-end,
.diagonal-start,
.diagonal-both {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 28px));
}

.diagonal-start {
  clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 100%);
}

.diagonal-both {
  clip-path: polygon(0 28px, 100% 0, 100% calc(100% - 28px), 0 100%);
}

.hero {
  min-height: 100svh;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #050507;
}

.hero-rotator {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity 320ms ease;
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0;
  transition: opacity 320ms ease;
}

.hero-video.is-fallback iframe {
  opacity: 0;
}

.hero-video.is-fallback .hero-video-fallback {
  opacity: 1;
}

.rotator img,
.hero-rotator img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 700ms ease, transform 1400ms ease;
}

.rotator img.is-active,
.hero-rotator img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  z-index: 1;
  background: linear-gradient(102deg, rgba(4, 4, 6, 0.93) 18%, rgba(7, 7, 10, 0.64) 56%, rgba(14, 12, 16, 0.46) 100%);
}

.hero::after {
  z-index: 1;
  background: radial-gradient(circle at 78% 30%, rgba(240, 0, 140, 0.26), transparent 38%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(960px, 92vw);
  margin: clamp(4.4rem, 12vw, 8.2rem) auto 2.4rem;
  display: grid;
  gap: 1.65rem;
}

.hero-copy > * {
  animation: riseIn 760ms ease both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 80ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 160ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 240ms;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 320ms;
}

.hero-copy h1 span {
  color: var(--accent-2);
}

.eyebrow {
  color: var(--accent-2);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}

.lead {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.68;
}

.actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
  transform: translateX(-140%);
  transition: transform 520ms ease;
  pointer-events: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(140%);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(110deg, var(--accent), #ff2eac);
  box-shadow: 0 14px 24px rgba(240, 0, 140, 0.36);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 26px rgba(240, 0, 140, 0.48);
}

.btn-ghost {
  color: #eef2f6;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.text-link {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.15rem;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-2);
  border-color: var(--accent-2);
}

.tagline {
  color: #d8e0e8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 600;
}

.bg-light-section {
  background: linear-gradient(180deg, var(--surface-light) 0%, var(--surface-light-2) 100%);
  color: var(--text-dark);
}

.bg-light-section .eyebrow {
  color: #9a155f;
}

.bg-light-section .lead,
.bg-light-section .list,
.bg-light-section .list li,
.bg-light-section p,
.bg-light-section li {
  color: var(--muted-dark);
}

.bg-light-section h2,
.bg-light-section h3 {
  color: var(--text-dark);
}

.bg-giant-text {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Space Grotesk", sans-serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(3rem, 17vw, 14rem);
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.bg-light-section .bg-giant-text {
  color: rgba(24, 30, 36, 0.05);
}

.section-quote {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.section-header {
  margin-bottom: 2.65rem;
}

.section-header::after {
  content: "";
  display: block;
  width: 86px;
  height: 2px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent 85%);
  opacity: 0.7;
}

.section-header .eyebrow {
  margin-bottom: 1.2rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section h2 + .lead,
.section h2 + p,
.section h2 + .list {
  margin-top: 1rem;
}

.section .lead + .list {
  margin-top: 1.55rem;
}

.grid-3,
.plans,
.apply-layout,
.split {
  display: grid;
  gap: 1.15rem;
}

.method-intro {
  margin-bottom: 1.2rem;
  display: grid;
  gap: 0.7rem;
  max-width: 85ch;
}

.method-copy {
  color: #d4dbe3;
}

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

.split {
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 1.8rem;
}

@media (min-width: 861px) {
  .split.split-reverse {
    grid-template-columns: 1fr 1.05fr;
  }

  .split.split-reverse > :first-child {
    order: 2;
  }

  .split.split-reverse > :last-child {
    order: 1;
  }
}

.awards-layout {
  align-items: stretch;
}

.split-reverse .awards-copy,
.split-reverse .visit-copy {
  padding-left: 0.2rem;
}

.awards-copy {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.awards-copy .lead {
  max-width: 56ch;
}

.awards-copy strong {
  color: #ffffff;
}

.awards-stats {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.awards-stat {
  border: 1px solid rgba(240, 0, 140, 0.32);
  background: rgba(10, 10, 14, 0.7);
  border-radius: 12px;
  padding: 0.75rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.awards-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 0, 140, 0.5);
  box-shadow: 0 16px 28px rgba(2, 8, 15, 0.28);
}

.awards-stat span {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffd2ef;
  letter-spacing: 0.02em;
}

.awards-stat small {
  color: #ccd6df;
  font-size: 0.78rem;
  line-height: 1.35;
}

.awards-media {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  min-height: 520px;
}

.awards-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.trayectoria-copy .eyebrow {
  margin-bottom: 1.3rem;
}

.trayectoria-copy h2 {
  margin-bottom: 1.65rem;
}

.trayectoria-copy .lead {
  margin-bottom: 1.75rem;
  max-width: 50ch;
}

.tamara-rotator {
  position: absolute;
  inset: 0;
}

.tamara-rotator img {
  object-position: center 20%;
  will-change: opacity;
}

.card,
.plan,
.app-box,
.faq-list details,
.apply-copy,
.form,
.media-panel {
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
}

.card,
.plan,
.app-box,
.apply-copy {
  padding: clamp(1rem, 2vw, 1.4rem);
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  position: relative;
}

.card h3,
.plan h3 {
  margin-bottom: 0.5rem;
}

.card p,
.plan li,
.app-box p {
  color: #d0d8e0;
}

.card-media {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card,
.plan {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.plan:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 0, 140, 0.5);
  box-shadow: 0 24px 40px rgba(2, 8, 15, 0.34);
}

.media-panel {
  overflow: hidden;
  padding: 0;
  position: relative;
  min-height: 460px;
}

.media-panel .rotator {
  position: absolute;
  inset: 0;
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.03);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.media-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 16, 24, 0), rgba(10, 16, 24, 0.24));
  pointer-events: none;
}

.list {
  margin: 0;
  padding-left: 1rem;
}

.list li + li {
  margin-top: 0.35rem;
}

.gym-visual-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.gym-shot {
  margin: 0;
  min-height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
}

.gym-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms ease;
}

.gym-shot:hover img {
  transform: scale(1.04);
}

.gym-shot-wide {
  grid-column: span 2;
  min-height: 300px;
}

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

.audience-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.audience-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(240, 0, 140, 0.26);
  background: rgba(9, 9, 12, 0.8);
  padding: 1rem;
  box-shadow: var(--shadow-md);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.audience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 0, 140, 0.46);
  box-shadow: 0 16px 26px rgba(2, 8, 15, 0.28);
}

.audience-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.audience-card p {
  color: #d8e0e8;
  font-size: 0.95rem;
}

.plan ul {
  margin: 0.2rem 0 0.6rem;
  padding-left: 1.1rem;
  flex: 1;
}

.plan li {
  margin-bottom: 0.25rem;
}

.plan .btn {
  width: 100%;
  margin-top: auto;
}

.plan-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.6rem;
  font-weight: 800;
  color: #ffd0ef;
  background: rgba(240, 0, 140, 0.22);
  border: 1px solid rgba(240, 0, 140, 0.38);
}

.plan-meta {
  margin-top: -0.1rem;
  font-size: 0.9rem;
  color: #c9d2dc;
}

.plan-highlight {
  background: linear-gradient(160deg, rgba(240, 0, 140, 0.28), rgba(14, 14, 18, 0.86));
  border-color: rgba(240, 0, 140, 0.52);
}

.app-box {
  display: grid;
  place-items: center;
  min-height: 240px;
  font-size: 1.05rem;
  color: #edf2f7;
  text-align: left;
  background: linear-gradient(140deg, rgba(240, 0, 140, 0.3), rgba(16, 16, 20, 0.92));
}

.online-box {
  padding: 0;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: stretch;
  background: rgba(12, 12, 16, 0.9);
}

.online-media {
  margin: 0;
  min-height: 280px;
}

.online-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.online-content {
  padding: 1rem 1rem 1.1rem;
  display: grid;
  gap: 0.8rem;
}

.online-note {
  margin: 0;
  color: #e6edf5;
  line-height: 1.55;
}

.online-points {
  margin: 0;
  padding-left: 1rem;
  color: #d6e0ea;
  display: grid;
  gap: 0.25rem;
}

.online-box .btn {
  width: 100%;
}

#app {
  border-top: 1px solid var(--line-soft);
}

.app-section-layout {
  align-items: stretch;
  gap: 2rem;
}

.app-section-copy {
  display: grid;
  align-content: center;
  gap: 0.95rem;
}

.app-section-list {
  margin-top: 0.3rem;
}

.app-preview-media {
  margin: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
  padding: 0;
  min-height: 520px;
}

.app-preview-media img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-list details {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.faq-list details:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 0, 140, 0.35);
}

.faq-list details[open] p {
  animation: riseIn 360ms ease both;
}

.section-emotional {
  overflow: hidden;
  background: url("assets/web/young-beautiful-sportive-girl-listening-music-dark-wall.jpg") center / cover no-repeat;
}

.section-emotional::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 11, 16, 0.76), rgba(8, 13, 21, 0.42));
}

.floating-card {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  padding: clamp(1.3rem, 3.5vw, 2.2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 15, 23, 0.7);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.floating-card-contrast {
  background: rgba(8, 8, 12, 0.84);
  border-color: rgba(240, 0, 140, 0.4);
}

.floating-card-contrast .lead {
  color: #eaf1f8;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  max-width: 900px;
}

.faq-list details {
  padding: 1.05rem 1.2rem;
  background: var(--bg-card-strong);
}

.faq-list details[open] {
  border-color: rgba(240, 0, 140, 0.62);
}

.faq-list summary {
  list-style: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--accent);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #d6e0ea;
}

#aplicar {
  border-top: 1px solid var(--line-soft);
}

.urgency-banner {
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(240, 0, 140, 0.34);
  background: linear-gradient(120deg, rgba(240, 0, 140, 0.16), rgba(10, 10, 14, 0.9));
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-md);
}

.urgency-banner h3 {
  margin-bottom: 0.6rem;
}

.urgency-banner p {
  color: #d8e1ea;
}

.urgency-tags {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.urgency-tags span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-size: 0.72rem;
  color: #edf4fb;
  background: rgba(255, 255, 255, 0.05);
}

.apply-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.apply-copy {
  background: linear-gradient(160deg, rgba(240, 0, 140, 0.24), rgba(11, 11, 14, 0.92));
}

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.4rem);
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: #dce5ed;
  min-width: 0;
}

.form .field-message {
  grid-column: 1 / -1;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(7, 11, 17, 0.92);
  color: #f4f7fa;
  padding: 0.75rem 0.8rem;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: rgba(240, 0, 140, 0.9);
  box-shadow: 0 0 0 3px rgba(240, 0, 140, 0.22);
  background: rgba(10, 15, 23, 0.98);
}

.form textarea {
  resize: vertical;
  min-height: 90px;
}

.form .btn,
.form-note {
  grid-column: 1 / -1;
}

.form .btn {
  justify-self: start;
  width: auto;
  min-width: 320px;
}

.form-note {
  color: #c8d4de;
  font-size: 0.82rem;
}

.objections-list {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.45rem;
}

.objections-list p {
  margin: 0;
  color: #e9eff6;
  font-size: 0.84rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  width: fit-content;
  background: rgba(9, 9, 12, 0.45);
}

#ubicacion {
  border-top: 1px solid var(--line-soft);
}

.visit-layout {
  align-items: stretch;
}

.visit-copy {
  display: grid;
  align-content: center;
  gap: 0.95rem;
}

.visit-copy .actions {
  margin-top: 0.35rem;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  min-height: 460px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
  border: 0;
}

.site-footer {
  padding: 3.8rem 0 5rem;
  display: grid;
  gap: 0.85rem;
  color: #ced8e3;
}

.site-footer p:first-child {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #f2f6fa;
}

.copyright-text {
  margin-top: 0.45rem;
  font-size: 0.76rem;
  color: #ffffff;
  opacity: 0.92;
}

.copyright-text a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.copyright-text a:hover,
.copyright-text a:focus-visible {
  color: #ffffff;
}

.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.82rem 1.05rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  font-weight: 800;
  background: linear-gradient(120deg, #f0008c, #ff37b0);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 14px 30px rgba(240, 0, 140, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: fabPulse 3.4s ease-in-out infinite;
}

.whatsapp-fab-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-fab-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(240, 0, 140, 0.5);
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.9;
  }

  50% {
    opacity: 0.65;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fabPulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(240, 0, 140, 0.42);
  }

  50% {
    box-shadow: 0 18px 34px rgba(240, 0, 140, 0.56);
  }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

html.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
}

html.js-enabled .reveal .media-panel img,
html.js-enabled .reveal .awards-media img,
html.js-enabled .reveal .online-media img,
html.js-enabled .reveal .app-preview-media img {
  transform: scale(1.05);
}

html.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.js-enabled .reveal.is-visible .media-panel img,
html.js-enabled .reveal.is-visible .awards-media img,
html.js-enabled .reveal.is-visible .online-media img,
html.js-enabled .reveal.is-visible .app-preview-media img {
  transform: scale(1);
}

html.js-enabled .reveal.is-visible .grid-3 > *,
html.js-enabled .reveal.is-visible .plans > *,
html.js-enabled .reveal.is-visible .gym-visual-grid > *,
html.js-enabled .reveal.is-visible .faq-list > * {
  animation: riseIn 560ms ease both;
}

html.js-enabled .reveal.is-visible .grid-3 > *:nth-child(2),
html.js-enabled .reveal.is-visible .plans > *:nth-child(2),
html.js-enabled .reveal.is-visible .gym-visual-grid > *:nth-child(2),
html.js-enabled .reveal.is-visible .faq-list > *:nth-child(2) {
  animation-delay: 90ms;
}

html.js-enabled .reveal.is-visible .grid-3 > *:nth-child(3),
html.js-enabled .reveal.is-visible .plans > *:nth-child(3),
html.js-enabled .reveal.is-visible .gym-visual-grid > *:nth-child(3),
html.js-enabled .reveal.is-visible .faq-list > *:nth-child(3) {
  animation-delay: 180ms;
}

html.js-enabled .reveal.is-visible .plans > *:nth-child(4),
html.js-enabled .reveal.is-visible .gym-visual-grid > *:nth-child(4),
html.js-enabled .reveal.is-visible .faq-list > *:nth-child(4) {
  animation-delay: 270ms;
}

@media (max-width: 1100px) {
  .grid-3,
  .plans,
  .split,
  .apply-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .awards-stats {
    grid-template-columns: 1fr;
  }

  .gym-shot-wide {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  h1 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(1.65rem, 8.4vw, 2.6rem);
    line-height: 0.98;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .site-header {
    inset: 0.55rem 0 auto;
    padding: 0.6rem 0.72rem 0.6rem 0.95rem;
    border-radius: 18px;
    justify-content: flex-start;
    gap: 0.6rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.35rem;
    padding: 0.9rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(10, 15, 23, 0.95);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .lang-switch {
    margin-left: 0;
  }

  .header-ig {
    display: none;
  }

  .menu .cta-link {
    display: none;
  }

  .menu a {
    padding: 0.45rem 0.52rem;
    font-size: 0.72rem;
  }

  .menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 90svh;
  }

  .hero-copy {
    margin-top: 6.4rem;
    margin-bottom: 2.8rem;
    gap: 1.2rem;
  }

  .diagonal-end,
  .diagonal-start,
  .diagonal-both {
    clip-path: none;
  }

  .section {
    padding: 3.4rem 0;
  }

  .grid-3,
  .plans,
  .split,
  .awards-stats,
  .gym-visual-grid,
  .urgency-tags,
  .audience-grid,
  .apply-layout,
  .form {
    grid-template-columns: 1fr;
  }

  .objections-list p {
    width: 100%;
    border-radius: 10px;
  }

  .awards-media {
    min-height: 360px;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 360px;
  }

  .awards-copy,
  .trayectoria-copy,
  .method-intro {
    gap: 0.8rem;
  }

  .plan,
  .audience-card,
  .card,
  .apply-copy {
    padding: 1.05rem;
  }

  .online-box {
    min-height: 360px;
    grid-template-rows: auto auto;
  }

  .app-section-layout {
    gap: 1.15rem;
  }

  .app-preview-media {
    min-height: 360px;
    padding: 0;
  }

  .app-preview-media img {
    max-height: none;
  }

  .online-media {
    min-height: 220px;
  }

  .online-content {
    padding: 0.85rem;
  }

  .form .btn {
    width: 100%;
    min-width: 0;
  }

  .media-panel {
    min-height: 370px;
  }

  .gym-shot,
  .gym-shot-wide {
    grid-column: span 1;
    min-height: 250px;
  }

  .bg-giant-text {
    display: none;
  }

  .floating-card {
    width: 100%;
  }
}

@media (max-width: 520px) {
  body {
    line-height: 1.55;
  }

  .site-header,
  .container,
  .site-footer {
    width: min(1260px, 94vw);
  }

  .hero-copy {
    gap: 1rem;
    margin-top: 5.8rem;
  }

  .lang-btn {
    padding: 0.22rem 0.48rem;
    font-size: 0.58rem;
  }

  .header-ig {
    display: none;
  }

  .menu-toggle {
    padding: 0.34rem 0.7rem;
    font-size: 0.62rem;
  }

  .eyebrow {
    margin-bottom: 0.8rem;
    letter-spacing: 0.14em;
  }

  .section-header .eyebrow {
    margin-bottom: 0.85rem;
  }

  .section-header h2 {
    margin-bottom: 0.75rem;
  }

  .lead {
    line-height: 1.58;
  }

  .btn {
    width: 100%;
  }

  .text-link {
    width: 100%;
    border-bottom: none;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

  .faq-list summary {
    font-size: 0.93rem;
  }

  .form {
    padding: 0.9rem;
  }

  .form .btn {
    width: 100%;
    min-width: 0;
  }

  .whatsapp-fab {
    left: 0.7rem;
    right: 0.7rem;
    bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
    width: auto;
    font-size: 0.63rem;
    letter-spacing: 0.1em;
    padding: 0.78rem 0.9rem;
  }

  .site-footer {
    padding-bottom: 6.4rem;
  }

  .visit-copy .actions {
    gap: 0.6rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
