﻿/* GAN Functional Fitness — presentación principal */

:root {
  --gan-red: #e8350a;
  --gan-orange: #ff6500;
  --gan-gradient: linear-gradient(135deg, #ff6500 0%, #e8350a 50%, #c42a08 100%);
  --bg-deep: #060606;
  --bg-elevated: #0e0e0e;
  --bg-card: #121212;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-glow: 0 0 60px rgba(232, 53, 10, 0.18);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ——— Barra de progreso ——— */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 9999;
  background: var(--gan-gradient);
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ——— Nav ——— */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s;
  border-bottom: 1px solid transparent;
}

#navbar.is-scrolled {
  background: rgba(6, 6, 6, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
  max-width: min(160px, 38vw);
  object-fit: contain;
  object-position: left center;
  display: block;
  flex-shrink: 0;
}

.logo-img--footer {
  height: 52px;
  max-width: 180px;
}

@media (max-width: 380px) {
  .logo-img {
    max-width: 120px;
    height: 40px;
  }
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-gan {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
}

.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--gan-orange);
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--gan-gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(232, 53, 10, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 53, 10, 0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--gan-orange);
  background: rgba(255, 101, 0, 0.08);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
}

.btn-hero {
  padding: 0.95rem 1.5rem;
  font-size: 0.8125rem;
}

.btn-full {
  width: 100%;
}

#btn-clase-nav {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  #btn-clase-nav {
    display: none;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid var(--border);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-link {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.mobile-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-mobile-cta {
  margin-top: 0.5rem;
  text-align: center;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(6, 6, 6, 0.5) 0%,
      rgba(6, 6, 6, 0.75) 45%,
      #060606 100%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
}

.hero-particles>div {
  animation: particleFloat 10s ease-in-out infinite;
}

@keyframes particleFloat {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.15;
  }

  50% {
    transform: translate(15px, -25px);
    opacity: 0.55;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gan-orange);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.title-line {
  display: block;
}

.gradient-text {
  background: var(--gan-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
}

.hero-subtitle strong {
  color: #fff;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
  padding: 1.5rem 2rem;
  background: rgba(18, 18, 18, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.hero-stat {
  text-align: center;
  min-width: 100px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: 0.02em;
  background: var(--gan-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-strong);
}

@media (max-width: 540px) {
  .hero-stat-divider {
    display: none;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--border-strong);
  border-radius: 12px;
  position: relative;
}

.scroll-dot {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gan-orange);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(10px);
  }
}

/* ——— Marquee ——— */
.marquee-banner {
  background: linear-gradient(90deg, #0a0a0a, #141414);
  border-block: 1px solid var(--border);
  padding: 0.75rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-content {
  display: flex;
  gap: 3rem;
  padding-right: 3rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee-content em {
  font-style: normal;
  color: var(--gan-orange);
}

/* ——— Sections ——— */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-deep) 100%);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gan-orange);
  margin-bottom: 0.75rem;
}

.section-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
}

.section-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* ——— About ——— */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-lead {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
  margin: 0 0 1.25rem;
}

.about-body {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.about-badge {
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
}

.about-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.about-video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #1a1a1a;
}

.about-video-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: rgba(6, 6, 6, 0.88);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.about-video-badge strong {
  display: block;
  font-size: 0.95rem;
}

.about-video-badge small {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

/* ——— Plans: 4 tarjetas siempre en una fila; débito automático debajo ——— */
.plans-row-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  margin-bottom: 3rem;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: rgba(255, 101, 0, 0.45) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}

.plans-row-scroll::-webkit-scrollbar {
  height: 8px;
}

.plans-row-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.plans-row-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 101, 0, 0.45);
  border-radius: 999px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  min-width: 720px;
}

@media (min-width: 1100px) {
  .plans-grid {
    min-width: 0;
    gap: 1.25rem;
  }
}

.plan-card {
  position: relative;
  padding: 1.35rem 1.25rem;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
  /* flex column so the CTA button always sits at the bottom */
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  border-color: rgba(255, 101, 0, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.plan-card.is-featured {
  border-color: rgba(232, 53, 10, 0.45);
  box-shadow: var(--shadow-glow);
}

.plan-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  /* stays left-aligned in flex flow */
  margin-bottom: 0.75rem;
  /* space before the plan name */
  padding: 0.28rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gan-gradient);
  border-radius: 6px;
  color: #fff;
}

.plan-card-name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  letter-spacing: 0.04em;
}

.plan-card-desc {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.plan-card-price {
  margin-bottom: 1.25rem;
}

.plan-card-price .currency {
  font-size: 1.25rem;
  font-weight: 600;
  vertical-align: top;
  color: var(--text-muted);
}

.plan-card-price .amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.plan-card-price .period {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.plan-card-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
  /* grows to push the button down */
}

.plan-card-features li {
  padding: 0.35rem 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  line-height: 1.35;
}

.plan-card-features li:last-child {
  border-bottom: none;
}

.plan-card .btn-primary,
.plan-card .btn-outline {
  width: 100%;
  margin-top: auto;
  /* pin button to bottom */
}

/* Subs highlight */
.subs-highlight {
  margin-top: 0.5rem;
}

.subs-glow-wrap {
  padding: 2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--gan-gradient);
  box-shadow: var(--shadow-glow);
}

.subs-inner {
  padding: 2rem;
  background: linear-gradient(165deg, #141414 0%, #0a0a0a 100%);
  border-radius: var(--radius-lg);
}

.subs-badge-fire {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.subs-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.subs-plan-name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.subs-plan-desc {
  margin: 0;
  color: var(--text-muted);
  max-width: 400px;
}

.subs-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.subs-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gan-orange);
}

.subs-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
}

.subs-period {
  color: var(--text-muted);
  font-size: 1rem;
}

.subs-features {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.subs-features li {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.btn-subs {
  width: 100%;
  max-width: 400px;
  padding: 1rem 1.5rem;
}

/* ——— Gallery ——— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 0.625rem;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  margin: 0;
  background: var(--bg-card);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.gallery-item:hover {
  border-color: rgba(255, 101, 0, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out), filter 0.4s;
  filter: brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.95);
}

/* Gradiente sutil para legibilidad del caption */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.65) 0%,
      transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  z-index: 2;
}


.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 101, 0, 0.25);
}

.lightbox-img {
  max-width: min(92vw, 1100px);
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
}

/* ——— Schedule ——— */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.schedule-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s;
}

.schedule-card:hover {
  border-color: rgba(255, 101, 0, 0.25);
}

.schedule-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.schedule-day {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
}

.schedule-times {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.schedule-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.schedule-range {
  font-size: 1.125rem;
  font-weight: 700;
}

.schedule-divider {
  height: 1px;
  background: var(--border);
}

.custom-class-banner {
  margin-top: 0.5rem;
}

.custom-class-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, rgba(255, 101, 0, 0.12) 0%, rgba(232, 53, 10, 0.08) 100%);
  border: 1px solid rgba(255, 101, 0, 0.25);
  border-radius: var(--radius-lg);
}

.custom-class-icon {
  font-size: 1.75rem;
}

.custom-class-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.custom-class-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
}

.custom-class-inner .btn-outline {
  margin-left: auto;
}

@media (max-width: 640px) {
  .custom-class-inner .btn-outline {
    margin-left: 0;
    width: 100%;
  }
}

/* ——— Booking ——— */
.booking-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.booking-form {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

@media (max-width: 540px) {
  .booking-form {
    padding: 1.25rem;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gan-orange);
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.15);
}

.form-select:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  display: block;
  min-height: 1.25rem;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: #fb7185;
}

.booking-preview {
  margin-bottom: 1.25rem;
}

.preview-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 101, 0, 0.08);
  border: 1px solid rgba(255, 101, 0, 0.25);
  border-radius: var(--radius);
}

.preview-icon {
  font-size: 1.25rem;
}

/* ——— Video section ——— */
.video-section .video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .video-section .video-grid {
    grid-template-columns: 1fr;
  }
}

.video-card {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #111;
}

/* ——— Footer ——— */
.footer {
  background: #030303;
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-tagline {
  margin: 1rem 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.social-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.social-btn.instagram:hover {
  border-color: #e4405f;
  color: #e4405f;
}

.social-btn.whatsapp:hover {
  border-color: #25d366;
  color: #25d366;
}

.social-btn.facebook:hover {
  border-color: #1877f2;
  color: #1877f2;
}

.footer-nav-title {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-list li {
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--gan-orange);
}

.footer-cta-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ——— WhatsApp float ——— */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #25d366, #128c7e);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 0.4rem 0.75rem;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@media (max-width: 480px) {
  .whatsapp-tooltip {
    display: none;
  }
}

/* ——— Modal ——— */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.3s var(--ease-out);
}

.modal-overlay.is-open .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.modal-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.modal-subtitle {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.modal-summary {
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius);
  font-size: 0.95rem;
  text-align: left;
}

.modal-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.modal-note a {
  color: var(--gan-orange);
  text-decoration: underline;
}

/* ——— Reveal on scroll ——— */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-delay="100"] {
  transition-delay: 0.1s;
}

[data-reveal][data-delay="150"] {
  transition-delay: 0.15s;
}

[data-reveal][data-delay="200"] {
  transition-delay: 0.2s;
}

[data-reveal][data-delay="250"] {
  transition-delay: 0.25s;
}

[data-reveal][data-delay="300"] {
  transition-delay: 0.3s;
}

[data-reveal][data-delay="400"] {
  transition-delay: 0.4s;
}

/* ——— Reseñas / Reviews ——— */

/* Badge de calificación Google */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1.25rem;
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.google-icon {
  flex-shrink: 0;
}

.google-rating-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}

.google-stars-row {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.g-star {
  font-size: 1.1rem;
  color: #6b6b6b;
}

.g-star.filled {
  color: #FBBC05;
}

.g-rating-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  margin-left: 0.35rem;
  letter-spacing: 0.03em;
}

.g-rating-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.g-rating-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gan-orange);
  white-space: nowrap;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 101, 0, 0.3);
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s;
}

.g-rating-link:hover {
  background: rgba(255, 101, 0, 0.1);
  border-color: var(--gan-orange);
}

/* Grilla de reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 960px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Tarjeta individual */
.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gan-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.review-card:hover {
  border-color: rgba(255, 101, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.review-card:hover::before {
  opacity: 1;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gan-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.review-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.review-stars {
  display: flex;
  gap: 1px;
  margin-top: 0.1rem;
}

.review-stars span {
  color: #FBBC05;
  font-size: 0.85rem;
}

.review-google-icon {
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.85;
}

.review-text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.review-date {
  font-size: 0.72rem;
  color: rgba(161, 161, 170, 0.55);
  letter-spacing: 0.04em;
}

/* CTA link */
.reviews-cta {
  text-align: center;
  margin-top: 0.5rem;
}

/* ——— Mapa / Ubicación ——— */
.map-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  align-items: stretch;
  min-height: 480px;
}

@media (max-width: 900px) {
  .map-layout {
    grid-template-columns: 1fr;
  }
}

/* Panel de info */
.map-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}

.map-info-card:hover {
  border-color: rgba(255, 101, 0, 0.35);
  transform: translateX(4px);
}

.map-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.map-info-title {
  margin: 0 0 0.3rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gan-orange);
}

.map-info-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.map-info-text strong {
  color: #fff;
}

.map-info-link {
  color: var(--text-muted);
  transition: color 0.2s;
}

.map-info-link:hover {
  color: var(--gan-orange);
}

.btn-map-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.25rem;
}

/* Mapa iframe */
.map-embed-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  min-height: 420px;
}

.map-embed-inner {
  position: absolute;
  inset: 0;
}

.map-embed-inner iframe {
  width: 100%;
  height: 100%;
  filter: brightness(0.92) saturate(0.85);
  transition: filter 0.3s;
}

.map-embed-wrap:hover .map-embed-inner iframe {
  filter: brightness(1) saturate(1);
}

/* Badge "Ver en Google Maps" */
.map-open-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: rgba(6, 6, 6, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 10;
}

.map-open-badge svg {
  fill: var(--gan-orange);
  flex-shrink: 0;
}

.map-open-badge:hover {
  background: rgba(232, 53, 10, 0.85);
  border-color: var(--gan-red);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .map-embed-wrap {
    min-height: 320px;
  }
}

/* ——— Entrenamiento Personalizado ——— */
.personal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

@media (max-width: 820px) {
  .personal-grid {
    grid-template-columns: 1fr;
  }
}

.personal-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  overflow: hidden;
}

.personal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 101, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.personal-card:hover {
  border-color: rgba(255, 101, 0, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 101, 0, 0.12);
}

.personal-card--remote {
  border-color: rgba(100, 160, 255, 0.18);
}

.personal-card--remote::before {
  background: linear-gradient(135deg, rgba(70, 130, 255, 0.08) 0%, transparent 60%);
}

.personal-card--remote:hover {
  border-color: rgba(100, 160, 255, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(100, 160, 255, 0.15);
}

.personal-card-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.personal-card-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.85rem;
  background: rgba(255, 101, 0, 0.15);
  border: 1px solid rgba(255, 101, 0, 0.35);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gan-orange);
}

.personal-card-badge--remote {
  background: rgba(100, 160, 255, 0.12);
  border-color: rgba(100, 160, 255, 0.3);
  color: #82b4ff;
}

.personal-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: #fff;
}

.personal-card-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.personal-card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.personal-card-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 9px;
  transition: background 0.2s, border-color 0.2s;
}

.personal-card-features li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-strong);
}

.personal-card-features li strong {
  color: #fff;
}

.personal-btn {
  margin-top: 0.5rem;
  padding: 0.9rem 1.5rem;
  font-size: 0.85rem;
  gap: 0.6rem;
  justify-content: center;
  width: 100%;
}

.personal-btn--remote {
  background: linear-gradient(135deg, #1a5fff 0%, #0d40cc 100%);
  box-shadow: 0 4px 24px rgba(26, 95, 255, 0.35);
}

.personal-btn--remote:hover {
  box-shadow: 0 8px 32px rgba(26, 95, 255, 0.5);
}

@media (max-width: 480px) {
  .personal-card {
    padding: 1.5rem 1.25rem;
  }
}