/* ═══════════════════════════════════════════════════════════════
   ONE FIT GYM — styles.css
   Paleta: Azul eléctrico + Blanco — Mobile-first responsive
   ═══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════
   0. VARIABLES CUSTOM
══════════════════════════════════ */
:root {
  --color-bg:          #FFFFFF;
  --color-surface:     #F0F4FF;
  --color-surface-2:   #E2EAFF;
  --color-accent:      #1A1AFF;
  --color-accent-dim:  rgba(26, 26, 255, 0.08);
  --color-accent-hover:#0000CC;
  --color-text:        #111133;
  --color-text-sub:    #6677AA;
  --color-border:      rgba(26, 26, 255, 0.15);

  --font-title:   'Anton', sans-serif;
  --font-sub:     'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --navbar-h:     72px;
  --radius:       4px;
  --radius-lg:    8px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --max-w:        1280px;
  --gutter:       clamp(1rem, 4vw, 2rem);
}

/* ══════════════════════════════════
   1. RESET & BASE
══════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-h);
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 1023px) {
  body { cursor: auto; }
}

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

address { font-style: normal; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ══════════════════════════════════
   2. CURSOR PERSONALIZADO
══════════════════════════════════ */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: difference;
}

.cursor-trail {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear, width 0.3s, height 0.3s;
  opacity: 0.5;
}

.cursor--hover { width: 20px; height: 20px; }
.cursor-trail--hover { width: 48px; height: 48px; opacity: 0.3; }

@media (max-width: 1023px) {
  .cursor, .cursor-trail { display: none; }
}

/* ══════════════════════════════════
   3. LAYOUT HELPERS
══════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.section-number {
  position: absolute;
  top: clamp(20px, 4vw, 40px);
  right: var(--gutter);
  font-family: var(--font-title);
  font-size: clamp(80px, 15vw, 200px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(26, 26, 255, 0.08);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.section-header {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-sub);
  font-weight: 400;
}

.text-accent { color: var(--color-accent); }

/* ══════════════════════════════════
   4. BOTONES
══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sub);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn--accent {
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
}
.btn--accent:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 26, 255, 0.30);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid rgba(26, 26, 255, 0.3);
}
.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
}
.btn--whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  transform: translateY(-2px);
}

.btn--lg  { padding: 16px 36px; font-size: 0.9rem; }
.btn--xl  { padding: 20px 44px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════════════
   5. NAVBAR
══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}
.navbar.scrolled .navbar__link { color: var(--color-text-sub); }
.navbar.scrolled .navbar__link:hover { color: var(--color-text); }
.navbar.scrolled .burger-line { background: var(--color-text); }

.navbar__container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.navbar__logo {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
}

/* Invisible — solo marca la posición destino para el logo animado */
.navbar__logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
}

.footer__logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.navbar__nav { margin-left: auto; }

.navbar__list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}

.navbar__link {
  font-family: var(--font-sub);
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #fff;
  transition: width var(--transition);
}
.navbar__link:hover { color: #fff; }
.navbar__link:hover::after { width: 100%; }

.navbar__cta { margin-left: 16px; }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.burger-line {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  transition: var(--transition);
  border-radius: 2px;
}
.navbar__burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__burger.active .burger-line:nth-child(2) { opacity: 0; }
.navbar__burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1023px) {
  .navbar__nav { display: none; }
  .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
}

/* ══════════════════════════════════
   6. MOBILE MENU
══════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-accent);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu__close {
  position: absolute;
  top: 24px; right: 24px;
  padding: 8px;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-menu__link {
  font-family: var(--font-title);
  font-size: clamp(2rem, 7vw, 3.5rem);
  text-transform: uppercase;
  color: #fff;
  transition: color var(--transition);
  letter-spacing: 0.03em;
}
.mobile-menu__link:hover { color: rgba(255, 255, 255, 0.65); }

/* ══════════════════════════════════
   7. HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__placeholder-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0000CC 0%, #1A1AFF 60%, #3344FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(5, 5, 40, 0.50) 0%,
      rgba(5, 5, 30, 0.68) 50%,
      rgba(0, 0, 20, 0.88) 100%
    );
  z-index: 1;
}

.hero__rating {
  position: absolute;
  top: calc(var(--navbar-h) + 24px);
  right: var(--gutter);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.40);
  border: 1px solid rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 100px;
}

.rating__stars {
  color: #FFD700;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.rating__info {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.rating__info strong {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--navbar-h) + 60px) var(--gutter) 80px;
  width: 100%;
}

.hero__brand-block {
  margin-bottom: 20px;
}

/* Invisible — solo marca el tamaño/posición de origen para el logo animado */
.hero__brand-logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0;
  visibility: hidden;
}

/* ══════════════════════════════════
   LOGO ÚNICO ANIMADO (hero → navbar)
   Un solo elemento fixed que vuela
══════════════════════════════════ */
.animated-logo {
  position: fixed;
  z-index: 1001;
  display: block;
  overflow: hidden;
  will-change: top, left, width, height;
}
.animated-logo__img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
}

.hero__eyebrow {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 24px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 10vw, 8rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
  color: #fff;
}

.title-line { display: block; }

.title-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--color-text);
}

/* En el hero la foto es oscura → stroke blanco */
.hero .title-outline {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.90);
}

.hero__subtitle {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Botones dentro del hero sobre foto oscurecida */
.hero .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.70);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
}
.hero .btn--outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-dot {
  width: 4px; height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ══════════════════════════════════
   8. NOSOTROS
══════════════════════════════════ */
.nosotros { background: var(--color-surface); }

.nosotros__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .nosotros__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.nosotros__text {
  color: var(--color-text-sub);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.nosotros__tagline {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 24px;
  padding-left: 16px;
  border-left: 3px solid var(--color-accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

@media (min-width: 480px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; }
}

.stat-card {
  background: var(--color-bg);
  padding: clamp(24px, 4vw, 40px);
  text-align: center;
  position: relative;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width 0.6s ease;
}
.stat-card:hover::after { width: 100%; }

.stat-card__number {
  font-family: var(--font-title);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.stat-card__plus,
.stat-card__star {
  font-size: 0.5em;
  margin-top: 8px;
  color: var(--color-accent);
}

.stat-card__label {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  color: var(--color-text-sub);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════
   9. POR QUÉ ONE FIT
══════════════════════════════════ */
.porque { background: var(--color-bg); }

.diferencias-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  position: relative;
  z-index: 1;
}
@media (min-width: 480px) {
  .diferencias-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .diferencias-grid { grid-template-columns: repeat(3, 1fr); }
}

.diff-card {
  background: var(--color-surface);
  padding: clamp(28px, 4vw, 40px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent-dim);
  opacity: 0;
  transition: opacity var(--transition);
}
.diff-card:hover { transform: translateY(-4px); }
.diff-card:hover::before { opacity: 1; }

.diff-card__icon {
  margin-bottom: 20px;
  display: block;
}

.diff-card__title {
  font-family: var(--font-sub);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 12px;
}

.diff-card__text {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  line-height: 1.65;
}

/* ══════════════════════════════════
   10. SERVICIOS
══════════════════════════════════ */
.servicios { background: var(--color-surface); }

.servicios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .servicios-grid { grid-template-columns: repeat(4, 1fr); }
}

.servicio-card {
  background: var(--color-bg);
  overflow: hidden;
  transition: transform var(--transition);
}
.servicio-card:hover { transform: translateY(-6px); }

.servicio-card__img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.servicio-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.servicio-card:hover .servicio-card__img img { transform: scale(1.06); }

.img-placeholder {
  width: 100%; height: 100%;
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(26, 26, 255, 0.4);
  font-size: 0.7rem;
  font-family: var(--font-sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border: 1px dashed rgba(26, 26, 255, 0.2);
  padding: 16px;
  min-height: 200px;
  line-height: 1.7;
}
.img-placeholder em {
  display: block;
  color: rgba(26, 26, 255, 0.25);
  font-style: normal;
  margin-top: 8px;
  font-size: 0.65rem;
}

.servicio-card__body { padding: 20px; }

.servicio-card__title {
  font-family: var(--font-sub);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.servicio-card__text {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 1.6;
}

/* ══════════════════════════════════
   11. MEMBRESÍAS
══════════════════════════════════ */
.membresias { background: var(--color-bg); }

.membresias-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .membresias-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .membresias-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
  .membresias-grid--5 { grid-template-columns: repeat(5, 1fr); }
}

.plan-card {
  background: var(--color-surface);
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 26, 255, 0.10);
  z-index: 2;
}

.plan-card--featured {
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  z-index: 1;
}
.plan-card--featured .plan-card__name { color: rgba(255,255,255,0.7); }
.plan-card--featured .plan-card__currency { color: rgba(255,255,255,0.9); }
.plan-card--featured .plan-card__amount { color: #fff; }
.plan-card--featured .plan-card__period { color: rgba(255,255,255,0.65); }
.plan-card--featured .plan-card__tagline { color: rgba(255,255,255,0.85); }
.plan-card--featured .plan-card__features li { color: rgba(255,255,255,0.85); }
.plan-card--featured .plan-card__features li::before { background: rgba(255,255,255,0.6); }

.plan-card--couple {
  background: var(--color-surface-2);
  border: 2px solid rgba(26, 26, 255, 0.25);
}

.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-card--featured .plan-card__badge {
  background: #FFD700;
  color: #111133;
}
.plan-card__badge--couple {
  background: #111133;
  color: #fff;
}
.plan-card__badge--savings {
  background: #16A34A;
  color: #fff;
}

.plan-card__header { margin-bottom: 20px; }

.plan-card__name {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-sub);
  margin-bottom: 10px;
}

.plan-card__price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
  margin-bottom: 6px;
}

.plan-card__currency {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 6px;
}

.plan-card__amount {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--color-text);
  line-height: 1;
}

.plan-card__period {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  color: var(--color-text-sub);
  align-self: flex-end;
  margin-bottom: 4px;
}

.plan-card__tagline {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.plan-card__body { flex: 1; margin-bottom: 20px; }

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-card__features li {
  font-size: 0.85rem;
  color: var(--color-text-sub);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.plan-card__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 1px;
  background: var(--color-accent);
}

.plan-card__btn { margin-top: auto; }

/* Featured card button override */
.plan-card--featured .btn--accent {
  background: #fff;
  color: var(--color-accent);
  border-color: #fff;
}
.plan-card--featured .btn--accent:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.membresias__extras {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding-top: 8px;
}

.membresias__nota {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-sub);
  font-family: var(--font-sub);
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════
   12. GALERÍA
══════════════════════════════════ */
.galeria { background: var(--color-surface); }

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 4px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .galeria-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
  }
}

.galeria-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.galeria-item--tall { grid-row: span 2; }
.galeria-item--wide { grid-column: span 2; }

.img-placeholder--galeria {
  min-height: 0;
  height: 100%;
  aspect-ratio: unset;
  font-size: 0.65rem;
  cursor: pointer;
}

.galeria-item img,
.galeria-item .img-placeholder--galeria {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galeria-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 255, 0.14);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.galeria-item:hover img,
.galeria-item:hover .img-placeholder--galeria { transform: scale(1.05); }
.galeria-item:hover::after { opacity: 1; }

/* ══════════════════════════════════
   13. LIGHTBOX
══════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  padding: 8px;
  color: var(--color-accent);
  transition: transform var(--transition);
}
.lightbox__close:hover { transform: rotate(90deg); }

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid var(--color-border);
}

.lightbox__caption {
  margin-top: 16px;
  font-family: var(--font-sub);
  font-size: 0.875rem;
  color: var(--color-text-sub);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ══════════════════════════════════
   14. TESTIMONIOS
══════════════════════════════════ */
.testimonios { background: var(--color-bg); }

.testimonios-slider {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonio-card {
  min-width: 100%;
  background: var(--color-surface);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonio-card__stars {
  color: var(--color-accent);
  font-size: 1.1rem;
  letter-spacing: 4px;
}

.testimonio-card__text {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text);
  line-height: 1.65;
  max-width: 700px;
  font-weight: 400;
  font-style: normal;
}

.testimonio-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.author-source {
  font-size: 0.75rem;
  color: var(--color-text-sub);
  margin-top: 2px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-sub);
  transition: var(--transition);
}
.slider-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.slider-dots { display: flex; gap: 8px; }

.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

.testimonios__cta {
  text-align: center;
  margin-top: 40px;
}

/* ══════════════════════════════════
   15. UBICACIÓN
══════════════════════════════════ */
.ubicacion { background: var(--color-surface); }

.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .ubicacion-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.info-block { margin-bottom: 32px; }

.info-block__title {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-sub);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-block__text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
}

.info-link {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: color var(--transition);
}
.info-link:hover { color: var(--color-accent-hover); }

.horarios-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.horarios-table tr { border-bottom: 1px solid var(--color-border); }
.horarios-table td { padding: 10px 0; color: var(--color-text-sub); }
.horario-hora {
  text-align: right;
  font-family: var(--font-sub);
  font-weight: 600;
  color: var(--color-text);
}

.ubicacion-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.ubicacion-mapa iframe {
  border: 1px solid var(--color-border);
  filter: grayscale(20%) brightness(1.0);
  transition: filter var(--transition);
  border-radius: var(--radius-lg);
}
.ubicacion-mapa iframe:hover {
  filter: grayscale(0%) brightness(1.0);
}

/* ══════════════════════════════════
   16. REDES SOCIALES
══════════════════════════════════ */
.redes { background: var(--color-bg); }

.redes-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .redes-grid { flex-direction: row; }
}

.red-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--color-surface);
  transition: var(--transition);
  border: 2px solid transparent;
  color: var(--color-text);
}
.red-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  color: var(--color-accent);
}

.red-card__icon {
  flex-shrink: 0;
  color: var(--color-text-sub);
  transition: color var(--transition);
}
.red-card:hover .red-card__icon { color: var(--color-accent); }

.red-card__info { flex: 1; }

.red-card__platform {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text-sub);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.red-card__handle {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition);
}
.red-card:hover .red-card__handle { color: var(--color-accent); }

.red-card__arrow {
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
  color: var(--color-accent);
}
.red-card:hover .red-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════
   17. CTA FINAL
══════════════════════════════════ */
.cta-final {
  background: var(--color-accent);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final__eyebrow {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.cta-final__title {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 10vw, 8rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #fff;
}

.cta-final__subtitle {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 48px;
  line-height: 1.65;
}

/* Botones dentro del CTA azul */
.cta-final .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.cta-final .btn--outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.cta-final .text-accent {
  color: rgba(255, 255, 255, 0.85);
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ══════════════════════════════════
   18. FOOTER
══════════════════════════════════ */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1.5fr 1fr; }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--color-text-sub);
  font-family: var(--font-sub);
}

.footer__nav-title {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-sub);
  margin-bottom: 16px;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  transition: color var(--transition);
  display: inline-block;
}
.footer__link:hover { color: var(--color-accent); }
.footer__link--accent { color: var(--color-accent); }

.footer__contact p {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  color: var(--color-text-sub);
  transition: color var(--transition);
}
.footer__social-link:hover { color: var(--color-accent); }

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--color-text-sub);
}

.footer__credits {
  font-size: 0.75rem;
  color: rgba(102, 119, 170, 0.5);
}

/* ══════════════════════════════════
   19. WHATSAPP FLOTANTE
══════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  font-family: var(--font-sub);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  overflow: hidden;
  max-width: 52px;
}
.whatsapp-float:hover {
  max-width: 220px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  flex-shrink: 0;
}

.whatsapp-float__label {
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-float__label { opacity: 1; }

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ══════════════════════════════════
   20. MODAL DE PAGO
══════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  padding: 8px;
  transition: transform var(--transition);
}
.modal__close:hover { transform: rotate(90deg); }

.modal__header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.modal__plan-label {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-sub);
  margin-bottom: 6px;
}

.modal__plan-name {
  font-family: var(--font-title);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 4px;
}

.modal__plan-price {
  font-family: var(--font-sub);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-sub);
}

.form-input {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: rgba(102, 119, 170, 0.45); }
.form-input:focus { border-color: var(--color-accent); }

.modal__metodos {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.modal__metodos-title {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-sub);
  margin-bottom: 12px;
}

.metodos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.metodo-card { cursor: pointer; display: block; }
.metodo-radio { display: none; }

.metodo-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  color: var(--color-text-sub);
  transition: var(--transition);
  text-align: center;
}
.metodo-radio:checked + .metodo-card__content {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-dim);
}

.transferencia-info {
  background: var(--color-bg);
  border: 1px dashed var(--color-border);
  padding: 16px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--color-text-sub);
  line-height: 1.7;
  border-radius: var(--radius);
}

.transferencia-info__title {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-sub);
  margin-bottom: 8px;
}

.transferencia-info__note {
  color: var(--color-accent);
  margin-top: 8px;
}

/* ══════════════════════════════════
   21. ANIMACIONES DE SCROLL (Reveal)
══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay   { --reveal-delay: 0.15s; }
.reveal--delay-2 { --reveal-delay: 0.3s; }

/* ══════════════════════════════════
   22. RESPONSIVE EXTRAS
══════════════════════════════════ */
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .cta-final__actions { flex-direction: column; align-items: stretch; }
  .plan-card--featured { order: -1; }
  .metodos-grid { grid-template-columns: 1fr; }
  .galeria-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .galeria-item--tall,
  .galeria-item--wide { grid-row: span 1; grid-column: span 1; }
  .ubicacion-btns { flex-direction: column; }
  .ubicacion-btns .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════
   23. ACCESIBILIDAD
══════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ══════════════════════════════════
   24. SCROLLBAR CUSTOM
══════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-surface); }
::-webkit-scrollbar-thumb { background: rgba(26, 26, 255, 0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-accent); }

/* ══════════════════════════════════
   26. SCROLL PROGRESS BAR
══════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, #5566ff 100%);
  z-index: 2001;
  width: 0%;
  pointer-events: none;
  transform-origin: left center;
}

/* ══════════════════════════════════
   27. HERO — ANIMACIÓN DE ENTRADA
══════════════════════════════════ */
@keyframes hero-slide-up {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-loaded .hero__eyebrow,
.js-loaded .hero__title .title-line,
.js-loaded .hero__subtitle,
.js-loaded .hero__actions {
  opacity: 0;
}

.js-loaded .hero__eyebrow {
  animation: hero-slide-up 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.05s;
}
.js-loaded .hero__title .title-line:nth-child(1) {
  animation: hero-slide-up 0.85s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.20s;
}
.js-loaded .hero__title .title-line:nth-child(2) {
  animation: hero-slide-up 0.85s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.38s;
}
.js-loaded .hero__title .title-line:nth-child(3) {
  animation: hero-slide-up 0.85s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.54s;
}
.js-loaded .hero__subtitle {
  animation: hero-slide-up 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.70s;
}
.js-loaded .hero__actions {
  animation: hero-slide-up 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.85s;
}

/* ══════════════════════════════════
   28. MARQUEE TICKER
══════════════════════════════════ */
.marquee-strip {
  background: var(--color-accent);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 36px;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.marquee-sep {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.5rem;
  line-height: 1;
}

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

/* ══════════════════════════════════
   29. BOTONES — PRESS (CLICK) EFFECT
══════════════════════════════════ */
.btn:active {
  transform: scale(0.96) !important;
  transition-duration: 0.08s !important;
  box-shadow: none !important;
}

/* ══════════════════════════════════
   30. GLOW HOVER EN CARDS
══════════════════════════════════ */
.diff-card:hover {
  box-shadow: 0 24px 64px rgba(26, 26, 255, 0.13);
  transform: translateY(-6px);
}

.servicio-card:hover {
  box-shadow: 0 24px 64px rgba(26, 26, 255, 0.13);
}

.red-card:hover {
  box-shadow: 0 16px 48px rgba(26, 26, 255, 0.12);
}

/* ══════════════════════════════════
   31. FEATURED PLAN — PULSO DE BRILLO
══════════════════════════════════ */
@keyframes featured-glow {
  0%, 100% { box-shadow: 0 8px 40px rgba(26, 26, 255, 0.18); }
  50%       { box-shadow: 0 8px 70px rgba(26, 26, 255, 0.40); }
}

.plan-card--featured {
  animation: featured-glow 2.8s ease-in-out infinite;
}
.plan-card--featured:hover {
  animation: none;
}

/* ══════════════════════════════════
   32. STAT CARDS — ESCALA EN HOVER
══════════════════════════════════ */
.stat-card__number {
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  display: inline-block;
}
.stat-card:hover .stat-card__number {
  transform: scale(1.08);
}

/* ══════════════════════════════════
   25. PRINT & REDUCED MOTION
══════════════════════════════════ */
@media print {
  .navbar, .whatsapp-float, .cursor, .cursor-trail, .modal-overlay, .mobile-menu {
    display: none !important;
  }
  body { background: #fff; color: #000; }
  .section { padding: 40px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
  .plan-card--featured { animation: none !important; }
  .js-loaded .hero__eyebrow,
  .js-loaded .hero__title .title-line,
  .js-loaded .hero__subtitle,
  .js-loaded .hero__actions { opacity: 1 !important; animation: none !important; }
}
