/* ================================================================
   MONTOYABOX — style.css
   Escuela de Boxeo | Núñez, CABA
   ================================================================ */


/* ----------------------------------------------------------------
   1. VARIABLES Y RESET
   ---------------------------------------------------------------- */

:root {

  /* ===== PALETA PREMIUM DORADO ===== */

  --orange:       #c8a45a;
  --orange-hover: #e2c47a;

  --dark:         #0d0d0d;
  --dark-2:       #151515;
  --dark-3:       #222222;

  --gray:         #a0a0a0;
  --white:        #ffffff;

  /* ===== BORDES MÁS PREMIUM ===== */

  --border: rgba(255, 255, 255, 0.05);

  /* ===== TIPOGRAFÍA ===== */

  --font-body:      'Barlow', sans-serif;
  --font-display:   'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;

  /* ===== ESPACIADO ===== */

  --section-pad: 100px 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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


/* ----------------------------------------------------------------
   2. TIPOGRAFÍA BASE
   ---------------------------------------------------------------- */

h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: 0.02em;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}


/* ----------------------------------------------------------------
   3. LAYOUT COMPARTIDO
   ---------------------------------------------------------------- */

section {
  padding: var(--section-pad);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Grid de dos columnas */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Cabecera centrada de sección */
.section-head {
  margin-bottom: 40px;
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

.section-intro p {
  color: var(--gray);
  font-size: 16px;
  margin-top: 12px;
}

.section-cta {
  text-align: center;
  margin-top: 44px;
}


/* ----------------------------------------------------------------
   4. BOTONES
   ---------------------------------------------------------------- */

.btn-orange {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 16px 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-orange:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

.btn-orange.btn-full {
  width: 100%;
  padding: 18px;
  text-align: center;
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--orange);
  padding: 16px 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.btn-nav {
  background: var(--orange);
  color: var(--white);
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-nav:hover {
  background: var(--orange-hover);
}


/* ----------------------------------------------------------------
   5. ANIMACIONES DE ENTRADA
   ---------------------------------------------------------------- */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ----------------------------------------------------------------
   6. NAVEGACIÓN
   ---------------------------------------------------------------- */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(10, 10, 10, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-hashtag {
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}


/* ----------------------------------------------------------------
   7. HERO — Premium redesign
   ---------------------------------------------------------------- */

#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0 0;          /* top = navbar height */
  position: relative;
  overflow: hidden;
}

/* --- Capas de fondo --- */
.hero-bg {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
}

/* Textura noise (falsa con SVG inline) */
.hero-bg__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

/* Gradiente naranja radial izquierdo */
.hero-bg__radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 15% 60%, rgba(217, 71, 13, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(217, 71, 13, 0.06) 0%, transparent 60%);
}

/* Grid de líneas finas */
.hero-bg__lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 79px, rgba(255,255,255,0.025) 80px),
    repeating-linear-gradient(90deg,  transparent, transparent 79px, rgba(255,255,255,0.025) 80px);
}

/* Viñeta perimetral */
.hero-bg__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(0,0,0,0.75) 100%);
}

/* --- Marca de agua tipográfica --- */
.hero-wordmark {
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-48%);
  font-family: var(--font-display);
  font-size: clamp(180px, 26vw, 400px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* --- Layout interno: dos columnas asimétricas --- */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: center;
  min-height: calc(100vh - 64px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 60px 80px 72px;
  width: 100%;
}

/* --- Columna izquierda: copy --- */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow con logo + badge de ubicación */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

/* Logo circular dorado — mantenido idéntico */
.logo-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
}
/* Badge de ubicación */
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.03);
}

.hero-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(217,71,13,0.8);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.75); }
}

/* H1 — masivo, protagonista */
#hero h1 {
  font-family: var(--font-display);
  font-size: clamp(60px, 7.5vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.hero-accent {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

/* Línea subrayada naranja bajo "cero" */
.hero-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 4px;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-in 0.6s 1.1s cubic-bezier(0.22,1,0.36,1) forwards;
}

@keyframes underline-in {
  to { transform: scaleX(1); }
}

/* Subtítulo */
.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

/* Salto de línea visible solo en desktop */
.hero-br { display: block; }

/* --- CTAs --- */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

/* CTA principal */
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 18px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, gap 0.2s;
}

/* Shimmer animado al hover */
.hero-cta-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.45s ease;
}

.hero-cta-primary:hover::before { left: 160%; }
.hero-cta-primary:hover         { background: var(--orange-hover); gap: 14px; }

/* CTA secundario */
.hero-cta-secondary {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.hero-cta-secondary:hover {
  color: var(--white);
  border-color: var(--white);
}

/* --- Stats horizontales --- */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 36px 0 0;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat strong {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero-stat span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

/* Separador vertical entre stats */
.hero-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  margin-right: 36px;
  flex-shrink: 0;
}

/* --- Columna derecha: panel visual --- */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panel {
  position: relative;
  width: 340px;
  height: 480px;

  /* Marco con borde naranja tenue */
  border: 1px solid rgba(217,71,13,0.25);
  background:
    linear-gradient(160deg, rgba(217,71,13,0.07) 0%, rgba(0,0,0,0) 50%),
    rgba(255,255,255,0.02);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Esquina naranja decorativa */
.hero-panel::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
}

.hero-panel::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}

/* Glove / imagen placeholder */
.hero-glove {
  font-size: 140px;
  filter: drop-shadow(0 20px 60px rgba(217,71,13,0.35));
  animation: float-glove 4s ease-in-out infinite;
  line-height: 1;
}

@keyframes float-glove {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-14px) rotate(-2deg); }
}

/* Tarjetas flotantes */
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15,15,15,0.92);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: float-card 5s ease-in-out infinite;
}

.hero-float--top {
  top: 32px;
  right: -48px;
  letter-spacing: 0.04em;
  animation-delay: 0.8s;
}

.hero-float--bottom {
  bottom: 56px;
  left: -56px;
  animation-delay: 2s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.hero-float__icon {
  font-size: 18px;
}

.hero-float__text {
  font-size: 11px;
  line-height: 1.3;
  color: rgba(255,255,255,0.8);
}

.hero-float__text strong {
  color: var(--orange);
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hero-float__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-float__dot--on {
  background: #25D366;
  box-shadow: 0 0 8px rgba(37,211,102,0.7);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

/* --- Indicador de scroll --- */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 72px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  z-index: 2;
}

.hero-scroll::before {
  content: 'SCROLL';
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.2);
  writing-mode: vertical-rl;
}

.hero-scroll__line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(217,71,13,0.7), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%       { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%      { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%      { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100%     { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}


/* --- Responsive Hero --- */

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr 340px;
    padding: 60px 40px 60px 52px;
    gap: 0;
  }
  .hero-panel { width: 280px; height: 400px; }
  .hero-float--top    { right: -24px; }
  .hero-float--bottom { left: -32px; }
  .hero-wordmark { display: none; }
}

@media (max-width: 860px) {
  /* Mobile: una columna, centrado */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 80px;
    text-align: center;
    gap: 48px;
    min-height: auto;
  }

  /* Ocultar panel visual en mobile para no saturar */
  .hero-visual { display: none; }

  .hero-eyebrow {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
  }

  /* Logo más pequeño */
  .hero-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
  .logo-name { font-size: 10px; }
  .logo-box  { font-size: 18px; }

  .hero-logo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 50%;
}

  #hero h1 {
    font-size: clamp(52px, 13vw, 80px);
    margin-bottom: 24px;
  }

  .hero-sub {
    font-size: 16px;
    margin: 0 auto 36px;
    max-width: 380px;
  }

  /* Ocultar salto de línea en mobile */
  .hero-br { display: none; }

  .hero-ctas {
    justify-content: center;
    margin-bottom: 48px;
  }

  .hero-cta-primary { padding: 16px 28px; }

  /* Stats en fila con separadores */
  .hero-stats {
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
  }

  .hero-stat { padding: 0 20px 0 0; }
  .hero-stat strong { font-size: 36px; }
  .hero-stat-divider { margin-right: 20px; height: 36px; }

  .hero-scroll { display: none; }
}

@media (max-width: 400px) {
  #hero h1 { font-size: 46px; }

  .hero-stats   { flex-direction: column; align-items: center; gap: 24px; }
  .hero-stat    { padding: 0; text-align: center; }
  .hero-stat-divider { display: none; }
}

/* Eliminamos los selectores viejos que ya no existen */
.hero-sub2  { display: none; }
.stat-num   { display: none; }
.stat-lbl   { display: none; }


/* ----------------------------------------------------------------
   8. SECCIÓN: POR QUÉ (about-1)
   ---------------------------------------------------------------- */

#about-1 {
  background: var(--dark-2);
}

.why-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* Pilares */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s, background 0.2s;
}

.pillar:hover {
  border-color: var(--orange);
  background: rgba(217, 71, 13, 0.05);
}

.pillar-icon  { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.pillar-title { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.pillar-desc  { font-size: 13px; color: var(--gray); }


/* ----------------------------------------------------------------
   9. SECCIÓN: SERVICIOS
   ---------------------------------------------------------------- */

#services {
  background: var(--dark);
}

.svc-grid {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr)); gap: 2px;
  align-items: stretch;
}

.svc-card {
  background: var(--dark);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.04);
  transition:
    transform 0.3s ease,
    background 0.25s ease;
}

.svc-card:hover { background: var(--dark-2); }

/* Línea naranja superior al hover */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.svc-card:hover::before { transform: scaleX(1); }

.svc-num {
  font-family: var(--font-display);
  font-size: 60px;
  color: rgba(217, 71, 13, 0.13);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
}

.svc-icon  { font-size: 32px; margin-bottom: 14px; }
.svc-title {
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.svc-desc  { font-size: 13px; color: var(--gray); line-height: 1.6; }


/* ----------------------------------------------------------------
   10. SECCIÓN: ACERCA DE (about-2) + VIDEO VIMEO
   ---------------------------------------------------------------- */

#about-2 {
  background: var(--dark-2);
  padding: var(--section-pad);
}

/* Encabezado superior de la sección */
.about2-header {
  margin-bottom: 56px;
}

.about2-header h2 {
  margin-bottom: 0;
}

/* Grid: video (izquierda, más ancho) + texto (derecha) */
.about2-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── Columna del video ── */
.about2-video-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/*
  Wrapper del video:
  - aspect-ratio 9/16 para video vertical (portrait).
    Si el video de Vimeo es horizontal, cambiá a 16/9.
  - Ajustá según el formato real del video de Mauro.
*/
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--dark-3);
  overflow: hidden;

  /* Borde con esquinas naranja */
  outline: 1px solid rgba(217, 71, 13, 0.2);
  box-shadow:
    0 0 0 1px rgba(217, 71, 13, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.6);
}

/* Esquinas naranja decorativas */
.video-wrap::before,
.video-wrap::after {
  content: '';
  position: absolute;
  z-index: 3;
  width: 28px;
  height: 28px;
}

.video-wrap::before {
  top: 0; left: 0;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
}

.video-wrap::after {
  bottom: 0; right: 0;
  border-bottom: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}

/* Poster / placeholder visible antes de que cargue el iframe */
.video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-3);
  transition: opacity 0.6s ease;
}

.video-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-poster__glove {
  font-size: 80px;
  opacity: 0.15;
  animation: float-glove 4s ease-in-out infinite;
}

/* Shimmer animado sobre el poster */
.video-poster__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 75%
  );
  background-size: 200% 100%;
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Iframe del video Vimeo */
.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  /* Escalar ligeramente para ocultar posibles bordes de Vimeo */
  transform: scale(1.01);
  z-index: 1;
}

/*
  Overlay degradé:
  - Arriba: funde con el fondo de la sección
  - Abajo: espacio para el badge
*/
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom,
      rgba(26, 26, 26, 0.35) 0%,
      transparent 18%,
      transparent 70%,
      rgba(26, 26, 26, 0.55) 100%
    );
  pointer-events: none;
}

/* Badge "En vivo" flotante */
.video-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
}

.video-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(217, 71, 13, 0.8);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Crédito bajo el video */
.video-credit {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

/* ── Columna de texto ── */
.about-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.coach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}

.tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: var(--gray);
}

.coach-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 15px;
}

.coach-items li {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Stats compactas dentro del texto */
.about2-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about2-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px 0 0;
}

.about2-stat:first-child { padding-left: 0; }

.about2-stat strong {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--white);
}

.about2-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.about2-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 28px;
  flex-shrink: 0;
}

/* ── Responsive about-2 ── */
@media (max-width: 900px) {
  .about2-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  /* Video más pequeño y centrado en mobile */
  .about2-video-col {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about2-stats {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
  }

  .about2-stat     { padding: 0; }
  .about2-stat-div { display: none; }
}


/* ----------------------------------------------------------------
   11. SECCIÓN: TESTIMONIOS
   ---------------------------------------------------------------- */

#testimonials { background: var(--dark); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.testi-card {
  background: var(--dark);
  padding: 32px 28px;
  transition: background 0.25s;
}

.testi-card:hover { background: var(--dark-2); }

.testi-stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

/* Comillas decorativas */
.testi-text::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--orange);
  opacity: 0.3;
  display: block;
  line-height: 0.8;
  margin-bottom: 8px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  flex-shrink: 0;
}

.testi-name { font-weight: 700; font-size: 14px; }
.testi-meta { font-size: 12px; color: var(--gray); }


/* ----------------------------------------------------------------
   12. SECCIÓN: PLANES / PRECIOS
   ---------------------------------------------------------------- */

#pricing { background: var(--dark-2); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.plan {
  background: var(--dark);
  padding: 36px 28px;
  position: relative;
  transition: background 0.25s;
}

.plan:hover { background: #1e1e1e; }

.plan--featured {
  background: linear-gradient(
    180deg,
    rgba(255, 140, 0, 0.12) 0%,
    var(--dark-2) 40%
  );

  border-top: 3px solid #ff8c00;

  transform: scale(1.03);

  box-shadow:
    0 0 0 rgba(255,140,0,0),
    0 0 30px rgba(255,140,0,0.08);

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    background .28s ease;
}

/* Hover SOLO para A Domicilio */
.plan--featured:hover {
  transform: translateY(-8px) scale(1.04);

  box-shadow:
    0 12px 40px rgba(255,140,0,0.18),
    0 0 60px rgba(255,140,0,0.10);

  background: linear-gradient(
    180deg,
    rgba(255,140,0,0.18) 0%,
    #1d1d1d 45%
  );
}

/* Badge naranja premium */
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    #ff7a00 0%,
    #ff9f1a 100%
  );

  color: #fff;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  padding: 6px 16px;

  border-radius: 999px;

  white-space: nowrap;

  box-shadow:
    0 4px 16px rgba(255,122,0,0.35);
}

.plan-name {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-period {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 14px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.75);
}

.plan-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-features li.off         { color: var(--gray); }
.plan-features li.off::before { content: '–'; color: var(--gray); }

.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--gray);
}


/* ----------------------------------------------------------------
   13. SECCIÓN: HORARIOS
   ---------------------------------------------------------------- */

#schedule { background: var(--dark); }

.schedule-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.schedule-note {
  background: rgba(217, 71, 13, 0.08);
  border: 1px solid rgba(217, 71, 13, 0.25);
  padding: 18px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 24px;
}

.schedule-note strong { color: var(--orange); }

/* Tabla */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.schedule-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.schedule-table tr:hover td { background: rgba(255, 255, 255, 0.025); }

.sch-day  { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.sch-time { color: var(--orange); font-weight: 600; }

.sch-type {
  font-size: 11px;
  display: inline-block;
  padding: 3px 9px;
  border: 1px solid var(--border);
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sch-type--grupal     { border-color: rgba(217, 71, 13, 0.4); color: rgba(217, 71, 13, 0.9); }
.sch-type--individual { border-color: rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.7); }

.sch-spots { font-size: 11px; color: var(--gray); }

.spot-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-right: 5px;
}

.spot-dot--ok   { background: #25D366; }
.spot-dot--low  { background: #f0a500; }
.spot-dot--full { background: var(--orange); }

/* ============================================================
   CTA BANNER — HIGH IMPACT VERSION
   ============================================================ */

#cta-banner {
  position: relative;
  overflow: hidden;

  padding: 120px 0;

  text-align: center;

  background:
    radial-gradient(circle at center,
    rgba(255,122,0,.16) 0%,
    rgba(255,159,26,.08) 34%,
    rgba(0,0,0,0) 72%),

    linear-gradient(
      180deg,
      #1b1208 0%,
      #0d0d0d 100%
    );

  border-top: 1px solid rgba(255,140,0,.22);
  border-bottom: 1px solid rgba(255,140,0,.22);

  box-shadow:
    inset 0 0 140px rgba(255,122,0,.08),
    0 0 100px rgba(255,122,0,.08);
}

/* ============================================================
   GLOW CENTRAL
   ============================================================ */

#cta-banner::before {
  content: '';

  position: absolute;

  width: 760px;
  height: 760px;

  background:
    radial-gradient(circle,
    rgba(255,122,0,.52) 0%,
    rgba(255,159,26,.24) 34%,
    rgba(255,140,0,.10) 56%,
    rgba(0,0,0,0) 76%);

  filter: blur(110px);

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  animation: pulseGlow 4s ease-in-out infinite;

  z-index: 0;
}

/* ============================================================
   CONTENIDO
   ============================================================ */

.cta-banner-content {
  position: relative;
  z-index: 2;

  max-width: 760px;
  margin: 0 auto;
}

/* ============================================================
   MINI LABEL
   ============================================================ */

.cta-mini {
  font-size: 12px;

  text-transform: uppercase;
  letter-spacing: .24em;

  color: #ffb15e;

  margin-bottom: 18px;

  font-weight: 700;

  text-shadow:
    0 0 12px rgba(255,122,0,.45);
}

/* ============================================================
   TITULO
   ============================================================ */

#cta-banner h2 {
  font-family: var(--font-display);

  font-size: clamp(48px, 7vw, 84px);

  line-height: .95;

  margin-bottom: 28px;

  letter-spacing: -0.04em;

  text-shadow:
    0 0 18px rgba(255,122,0,.20),
    0 0 42px rgba(255,159,26,.12),
    0 0 90px rgba(255,140,0,.08);
}

/* ============================================================
   TEXTO DESTACADO
   ============================================================ */

#cta-banner h2 span {

  background: linear-gradient(
    90deg,
    #ff7a00 0%,
    #ff9f1a 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 18px rgba(255,122,0,.35),
    0 0 42px rgba(255,159,26,.22);
}

/* ============================================================
   TEXTO
   ============================================================ */

.cta-text {
  font-size: 18px;

  line-height: 1.75;

  color: rgba(255,255,255,.84);

  max-width: 660px;

  margin: 0 auto 44px;
}

/* ============================================================
   BOTON PRINCIPAL
   ============================================================ */

.cta-main-btn {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 21px 40px;

  border-radius: 999px;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: .03em;

  color: #fff;

  background: linear-gradient(
    90deg,
    #ff7a00 0%,
    #ff9f1a 100%
  );

  transform: scale(1);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;

  box-shadow:
    0 0 20px rgba(255,122,0,.28),
    0 0 55px rgba(255,159,26,.12);
}

/* ============================================================
   HOVER BOTON
   ============================================================ */

.cta-main-btn:hover {

  transform: scale(1.09);

  filter: brightness(1.05);

  box-shadow:
    0 0 30px rgba(255,122,0,.55),
    0 0 65px rgba(255,159,26,.28),
    0 0 120px rgba(255,140,0,.16);
}

/* ============================================================
   ANIMACION GLOW
   ============================================================ */

@keyframes pulseGlow {

  0%, 100% {
    opacity: .82;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.14);
  }
}

/* ============================================================
   MOBILE OPTIMIZATION — CTA BANNER
   VERSION MÁS COMPACTA PARA TELEFONO
   ============================================================ */

@media (max-width: 768px) {

  #cta-banner {

    padding: 64px 0;

    box-shadow:
      inset 0 0 70px rgba(255,122,0,.05),
      0 0 40px rgba(255,122,0,.05);
  }

  /* ============================================================
     GLOW MÁS LIVIANO
     ============================================================ */

  #cta-banner::before {

    width: 360px;
    height: 360px;

    opacity: .72;

    filter: blur(60px);

    animation: pulseGlowMobile 5s ease-in-out infinite;
  }

  /* ============================================================
     MINI LABEL
     ============================================================ */

  .cta-mini {

    font-size: 10px;

    letter-spacing: .18em;

    margin-bottom: 14px;
  }

  /* ============================================================
     TITULO MÁS CHICO
     ============================================================ */

  #cta-banner h2 {

    font-size: clamp(30px, 8vw, 42px);

    line-height: 1.02;

    margin-bottom: 18px;

    letter-spacing: -0.03em;
  }

  /* ============================================================
     TEXTO
     ============================================================ */

  .cta-text {

    font-size: 14px;

    line-height: 1.55;

    margin-bottom: 28px;

    padding: 0 10px;
  }

  /* ============================================================
     BOTON MÁS CHICO
     ============================================================ */

  .cta-main-btn {

    width: auto;

    padding: 15px 22px;

    font-size: 13px;

    border-radius: 999px;

    box-shadow:
      0 0 14px rgba(255,122,0,.18),
      0 0 34px rgba(255,159,26,.08);
  }

  /* ============================================================
     HOVER MÁS SUAVE
     ============================================================ */

  .cta-main-btn:hover {

    transform: scale(1.02);

    box-shadow:
      0 0 18px rgba(255,122,0,.28),
      0 0 40px rgba(255,159,26,.12);
  }

}

/* ============================================================
   ANIMACION MÁS LIVIANA MOBILE
   ============================================================ */

@keyframes pulseGlowMobile {

  0%, 100% {
    opacity: .72;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: .9;
    transform: translate(-50%, -50%) scale(1.05);
  }

}


/* ----------------------------------------------------------------
   15. SECCIÓN: UBICACIÓN
   ---------------------------------------------------------------- */

#location { background: var(--dark-2); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.map-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) contrast(1.1);
}

.location-info h3 { margin-bottom: 20px; }

.loc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.loc-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.loc-icon {
  width: 40px; height: 40px;
  background: rgba(217, 71, 13, 0.12);
  border: 1px solid rgba(217, 71, 13, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.loc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.loc-val { font-size: 15px; color: rgba(255, 255, 255, 0.85); }


/* ----------------------------------------------------------------
   16. SECCIÓN: FAQ
   ---------------------------------------------------------------- */

#faq { background: var(--dark); }

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

/* Botón de la pregunta (semántico y accesible) */
.faq-q {
  width: 100%;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  user-select: none;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--orange); }

.faq-arrow {
  font-size: 20px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.35s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 18px;
}


/* ----------------------------------------------------------------
   17. SECCIÓN: CONTACTO
   ---------------------------------------------------------------- */

#forms { background: var(--dark-2); }

.contact-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}

.contact-ico {
  width: 34px; height: 34px;
  background: rgba(217, 71, 13, 0.13);
  border: 1px solid rgba(217, 71, 13, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}

.contact-checks li {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.check-dot {
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Formulario */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select option { background: var(--dark-2); }

.form-note {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
}


/* ----------------------------------------------------------------
   18. FOOTER
   ---------------------------------------------------------------- */

#footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 56px 24px 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
}

.footer-logo span { color: var(--orange); }

.footer-brand p {
  color: var(--gray);
  font-size: 13px;
  margin: 12px 0 20px;
  max-width: 260px;
  line-height: 1.6;
}

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

.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 11px; color: var(--gray); }
.footer-bottom a { color: var(--orange); text-decoration: none; }


/* ----------------------------------------------------------------
   19. BOTÓN FLOTANTE WHATSAPP
   ---------------------------------------------------------------- */

.whatsapp-float {
  position: fixed;

  right: 22px;
  bottom: 22px;

  width: 68px;
  height: 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #25D366,
      #1ebe5d
    );

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    0 0 35px rgba(37,211,102,0.35);

  z-index: 999;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* ICON */

.whatsapp-float img {
  width: 100px;
  height: 100px;

  object-fit: contain;
}

/* HOVER */

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);

  box-shadow:
    0 16px 40px rgba(0,0,0,0.42),
    0 0 45px rgba(37,211,102,0.45);
}

/* MOBILE */

@media (max-width: 768px) {

  .whatsapp-float {
    width: 60px;
    height: 60px;

    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float img {
  width: 60px;
  height: 60px;

  object-fit: contain;
}

}

/* ----------------------------------------------------------------
   20. RESPONSIVE — Mobile first breakpoints
   ---------------------------------------------------------------- */

@media (max-width: 1024px) {
  .testi-grid   { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {

  /* Variables móvil */
  :root { --section-pad: 68px 18px; }

  /* Navbar */
  #navbar { padding: 0 18px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #0d0d0d;
    padding: 24px 20px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }

  /* Layouts de dos columnas → una columna */
  .two-col,
  .faq-grid,
  .schedule-wrap,
  .location-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Grids de tarjetas → una columna */
  .testi-grid,
  .pricing-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  /* Hero */
  .hero-stats { gap: 18px; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats   { flex-direction: column; gap: 12px; }
}
