:root {
  --bg-dark: #05060a;
  --bg-soft: #0c1018;
  --accent: #ff6a00;
  --accent-2: #ffae00;
  --text-main: #f5f5f5;
  --text-muted: #9ca3af;
  --card-bg: #111827;
  --border-soft: rgba(255,255,255,0.08);
  --radius-lg: 18px;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.55);
  --transition-fast: 0.25s ease;
  --max-width: 1200px;
  --nav-height: 78px;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- RESET BÁSICO ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
  color: var(--text-main);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- LAYOUT GENERAL ---------- */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- NAVBAR ---------- */

.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
  border-bottom: 1px solid var(--border-soft);
}

.navbar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: radial-gradient(circle at 0 0, #f97316, #e11d48);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-text span:first-child {
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
  color: #e5e7eb;
}

.nav-brand-text span:last-child {
  font-size: .7rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  position: relative;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width var(--transition-fast);
}

/* bordes naranjas ESTÁTICOS en el activo */
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: #e5e7eb;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: .55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(248,250,252,0.35);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: radial-gradient(circle at top left, rgba(248,250,252,0.18), transparent);
}

/* ---------- HERO HOME ---------- */

.hero {
  padding: 4rem 0 3rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .25rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.7);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-pill i {
  color: var(--accent-2);
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 1.1rem;
}

.hero-title span {
  display: inline-block;
}

/* texto "ALTO IMPACTO" con degradado animado */
.highlight-motion {
  background: linear-gradient(120deg, #22c55e, #eab308, #f97316, #ec4899, #22d3ee);
  background-size: 250% 250%;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradient-wave 5s ease-in-out infinite;
}

@keyframes gradient-wave {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-subtitle {
  max-width: 32rem;
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  padding: .9rem 1.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  color: #111827;
  font-weight: 700;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  box-shadow: 0 15px 40px rgba(234,179,8,0.35);
  cursor: pointer;
}

.btn-ghost {
  padding: .9rem 1.5rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(148,163,184,0.6);
  color: #e5e7eb;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.8rem;
  font-size: .8rem;
  color: var(--text-muted);
}

.hero-meta strong {
  color: #e5e7eb;
  font-weight: 600;
}

/* hero foto */

.hero-photo-wrapper {
  position: relative;
}

.hero-photo-main {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(248,250,252,0.16);
  box-shadow: var(--shadow-soft);
  transform-origin: center;
}

.hero-photo-main img {
  width: 100%;
  height: auto;
  display: block;
}

/* rayas naranjas estáticas */
.hero-stripes {
  position: absolute;
  inset: -20px -30px auto auto;
  pointer-events: none;
}

.hero-stripes::before,
.hero-stripes::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.65;
}

.hero-stripes::after {
  top: 24px;
  right: -35px;
  width: 200px;
  opacity: 0.4;
}

/* ---------- FACETAS ---------- */

.section {
  padding: 3.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-kicker {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--text-muted);
  margin-bottom: .4rem;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: .6rem;
}

.section-subtitle {
  max-width: 36rem;
  margin: 0 auto;
  font-size: .9rem;
  color: var(--text-muted);
}

.facetas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.7rem;
}

.faceta-card {
  background: radial-gradient(circle at top left, rgba(252,211,77,0.12), rgba(15,23,42,0.98));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.faceta-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  height: 210px;
}

.faceta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faceta-tag {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent-2);
  margin-bottom: .5rem;
}

.faceta-title {
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.faceta-text {
  font-size: .9rem;
  color: var(--text-muted);
}

/* ---------- CONTADORES ---------- */

.stats-section {
  background: linear-gradient(120deg, #020617, #0b1120);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.6rem;
}

.stat-card {
  padding: 1.6rem 1.4rem;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(251,191,36,0.12), rgba(15,23,42,0.95));
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}

.stat-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--text-muted);
  margin-bottom: .6rem;
}

.stat-value {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.stat-note {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ---------- SOBRE MÍ HERO (CARRUSEL) ---------- */

.about-hero {
  padding: 3.5rem 0 2.5rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 2.5rem;
  align-items: center;
}

.about-slider {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  background: #020617;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.slide-caption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: rgba(15,23,42,0.8);
  padding: .5rem .8rem;
  border-radius: 999px;
  font-size: .75rem;
}

.slider-dots {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  gap: .35rem;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(248,250,252,0.6);
  background: transparent;
}

.slider-dot.active {
  background: var(--accent-2);
}

/* ---------- PÁGINA ENTRENAMIENTOS ---------- */

.training-hero {
  padding: 3.5rem 0 2rem;
}

.training-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.training-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .25rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.7);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.7rem;
}

.training-card {
  background: radial-gradient(circle at top left, rgba(59,130,246,0.18), rgba(15,23,42,0.96));
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.training-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(15,23,42,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent-2);
}

.training-card h3 {
  font-size: 1.1rem;
}

.training-card p {
  font-size: .9rem;
  color: var(--text-muted);
}

.training-meta {
  font-size: .8rem;
  color: var(--text-muted);
}

.training-meta span {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-right: .8rem;
}

/* ---------- TESTIMONIOS ---------- */

.testimonials-hero {
  padding: 3.5rem 0 2rem;
}

.testimonials-intro {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.testimonials-intro blockquote {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 1rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: radial-gradient(circle at top, rgba(59,130,246,0.18), rgba(15,23,42,0.96));
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  padding: 1.3rem 1.3rem 1.4rem;
  font-size: .9rem;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  font-size: 4rem;
  opacity: 0.08;
  top: -8px;
  right: 12px;
}

.testimonial-author {
  margin-top: .8rem;
  font-size: .85rem;
  color: #e5e7eb;
  font-weight: 600;
}

/* ---------- GALERÍA ---------- */

.gallery-hero {
  padding: 3.5rem 0 1.5rem;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #020617;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
}

/* ---------- LIBRO ---------- */

.book-hero {
  padding: 3.5rem 0 3rem;
}

.book-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 2.6fr);
  gap: 2.4rem;
  align-items: center;
}

.book-cover {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.book-content h1 {
  font-size: 2rem;
  margin-bottom: .6rem;
}

.book-content p {
  font-size: .95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ---------- FOOTER ---------- */

.footer {
  margin-top: auto;
  padding: 2rem 0 1.5rem;
  border-top: 1px solid var(--border-soft);
  font-size: .8rem;
  color: var(--text-muted);
}

/* ---------- ANIMACIONES SCROLL ---------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .hero-layout,
  .about-layout,
  .book-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.8rem;
  }

  .navbar {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }
}

.hero-glow {
  position: relative;
  overflow: hidden;
}

.hero-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 153, 0, 0.18),
    transparent 60%
  );
  opacity: 0;
  animation: heroPulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroPulse {
  0% { opacity: 0; }
  40% { opacity: .45; }
  70% { opacity: 0; }
  100% { opacity: 0; }
}

.intro-phrase {
  text-align: center;
  padding: 60px 20px 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: phraseIn 1s ease forwards;
  animation-delay: .6s;
}

.intro-phrase p {
  font-size: 1.3rem;
  font-weight: 500;
  color: #cfa24a;
  max-width: 700px;
  margin: 0 auto;
}

@keyframes phraseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.facet-keyword {
  display: block;
  margin-top: 15px;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff9f1c;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s ease;
}

.facet-card:hover .facet-keyword {
  opacity: 1;
  transform: translateY(0);
}

.counter-tick {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff9f1c, #ffd166);
  margin: 8px auto 0;
  border-radius: 10px;
  transition: width .4s ease;
}

.counter-done .counter-tick {
  width: 40px;
}

.seen-in {
  text-align: center;
  padding: 60px 20px;
  opacity: .85;
}

.seen-in p {
  font-size: .9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #999;
}

.seen-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.seen-logos span {
  font-size: .95rem;
  color: #ddd;
  position: relative;
}

.seen-logos span::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #ff9f1c;
  border-radius: 50%;
  display: inline-block;
  margin-left: 12px;
}

.about-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.about-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.about-hero-slider img.active {
  opacity: 1;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.85)
  );
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.about-hero-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.about-hero-content p {
  font-size: 1.3rem;
  opacity: 0.9;
}

.about-story {
  max-width: 1100px;
  margin: 120px auto;
  padding: 0 20px;
  display: grid;
  gap: 60px;
}

.story-block h3 {
  font-size: 2rem;
  color: #ffb703;
  margin-bottom: 15px;
}

.story-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.beliefs {
  text-align: center;
  padding: 120px 20px;
  background: radial-gradient(circle at top, #0b1a2a, #000);
}

.beliefs h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.beliefs-grid {
  display: grid;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.beliefs-grid span {
  font-size: 1.2rem;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

.beliefs {
  padding: 120px 10%;
  text-align: center;
  position: relative;
}

.belief-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  animation: fadeUp 1.2s ease forwards;
}

.belief-line {
  width: 120px;
  height: 3px;
  margin: 0 auto 60px;
  background: linear-gradient(90deg, #ffb703, #ff6a00, #ffb703);
  animation: lineGlow 3s infinite;
}

.belief-items {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.belief-item {
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(30px);
  animation: revealText 0.8s ease forwards;
}

.belief-item:nth-child(1) { animation-delay: 0.2s; }
.belief-item:nth-child(2) { animation-delay: 0.4s; }
.belief-item:nth-child(3) { animation-delay: 0.6s; }
.belief-item:nth-child(4) { animation-delay: 0.8s; }

/* Animaciones base */
@keyframes revealText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGlow {
  0% { filter: drop-shadow(0 0 5px #ffb703); }
  50% { filter: drop-shadow(0 0 15px #ff6a00); }
  100% { filter: drop-shadow(0 0 5px #ffb703); }
}

.dynamic-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(
    270deg,
    #ffb703,
    #ff6a00,
    #ffffff,
    #ffb703
  );
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textFlow 6s ease infinite;
}

@keyframes textFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* ===== ANIMACIÓN SCROLL ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.9s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.9s ease;
}

.appear {
  opacity: 1;
  transform: translate(0);
}


.titulo-valores {
  font-size: 3rem;
  text-align: center;
}

.barra-decorativa {
  width: 80px;
  height: 4px;
  margin: 20px auto 40px;
  background: linear-gradient(90deg, #ff8c00, #ff3c00);
  border-radius: 5px;
}

.frase-creo {
  text-align: center;
  font-size: 1.4rem;
  margin: 30px 0;
  font-weight: 500;
}


.frase-creo {
  animation: colorShift 6s infinite alternate;
}

@keyframes colorShift {
  0% { color: #ffffff; }
  50% { color: #ffb347; }
  100% { color: #ffd700; }
}

.carousel {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}


/* ===== LO QUE CREO ===== */
.beliefs-section {
  padding: 120px 8%;
  background: radial-gradient(circle at top, #10131c, #080a12);
}

.beliefs-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* TITULO */
.belief-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

.belief-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #ff9f1c;
  display: block;
  margin-top: 15px;
}

/* FRASES */
.belief-card {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 22px 28px;
  margin-bottom: 20px;
  border-left: 4px solid #ff9f1c;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  transition: transform .4s ease, background .4s ease;
}

.belief-card:hover {
  transform: translateX(10px);
  background: rgba(255,255,255,0.06);
}

/* IMAGEN */
.beliefs-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .beliefs-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.section-spacer {
  height: 120px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.75),
    rgba(0,0,0,.3)
  );
}

.hero-content {
  animation: heroFade 1.4s ease forwards;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ABOUT HIGHLIGHT ===== */
.about-highlight {
  padding: 120px 8%;
}

.about-highlight-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

/* TEXTO */
.about-highlight-text h3 {
  margin-bottom: 10px;
}

.about-highlight-text p {
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* IMAGEN */
.about-highlight-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,.5);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-highlight-container {
    grid-template-columns: 1fr;
  }

  .about-highlight-image {
    margin-top: 40px;
  }
}

/* ===== MAPA MENTAL ENTRENAMIENTOS ===== */
.history-map {
  position: relative;
  padding: 180px 8%;
  min-height: 100vh;
  background: radial-gradient(circle at center, #0d1b2a 0%, #070b12 80%);
  overflow: hidden;
}

/* TEXTO CENTRAL */
.map-center {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}

.map-center h2 {
  font-size: 2.9rem;
  margin: 18px 0;
}

.map-center p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: .85;
}

/* ETIQUETA SUPERIOR */
.section-eyebrow {
  letter-spacing: 3px;
  font-size: .8rem;
  opacity: .65;
}

/* IMÁGENES */
.map-img {
  position: absolute;
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0,0,0,.7);
  opacity: 0;
  transform: scale(.8) translateY(30px);
  transition: all 1.2s ease;
}

/* POSICIONES (mapa mental) */
.img-1 { top: 12%; left: 8%; }
.img-2 { top: 18%; right: 8%; }
.img-3 { bottom: 20%; left: 10%; }
.img-4 { bottom: 14%; right: 10%; }

/* ACTIVACIÓN AL SCROLL */
.reveal.active .map-img {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* RESPONSIVE */
@media(max-width:900px) {
  .map-img {
    position: relative;
    width: 100%;
    height: 220px;
    margin: 30px 0;
  }
}


/* ===== LO QUE CREO ===== */
.creo-section {
  padding: 120px 8%;
  background: linear-gradient(180deg, #0b1624, #070b12);
}

.creo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* TEXTO */
.creo-text h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}

.creo-item {
  background: rgba(255,255,255,.06);
  padding: 18px 26px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-size: 1.15rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-40px);
  transition: all .8s ease;
}

/* BARRA IZQUIERDA */
.creo-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #f5a524;
}

/* ACTIVA ANIMACIÓN */
.reveal.active .creo-item {
  opacity: 1;
  transform: translateX(0);
}

/* ===== SLIDER ===== */
.creo-slider {
  overflow: hidden;
  border-radius: 18px;
  height: 520px;
  box-shadow: 0 40px 80px rgba(0,0,0,.7);
}

.slider-track {
  display: flex;
  height: 100%;
  animation: slide 40s infinite linear;
}

.slider-track img {
  width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ANIMACIÓN SLIDER */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-800%); }
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .creo-grid {
    grid-template-columns: 1fr;
  }

  .creo-slider {
    height: 260px;
  }
}


/* SLIDER CONTENEDOR */
.creo-slider {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
}

/* IMÁGENES */
.slider-wrapper {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slide.active {
  opacity: 1;
}

/* BOTONES */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.55);
  color: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  transition: background .3s;
}

.slider-btn:hover {
  background: rgba(245,165,36,.95);
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}


.training-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
  opacity: 0;
}

.training-divider span {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
}

.training-divider i {
  color: #f59e0b;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.2); opacity: 1; }
}

.training-card {
  position: relative;
  overflow: hidden;
}

.training-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(245,158,11,.12), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}

.training-card:hover::before {
  opacity: 1;
}

.training-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.training-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: #f59e0b;
  text-decoration: none;
}

.training-link i {
  transition: transform .3s ease;
}

.training-link:hover i {
  transform: translateX(4px);
}

.training-experience {
  padding: 100px 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.experience-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.experience-images img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}




/* ===== AJUSTE FINO EXPERIENCE IMAGES ===== */

.experience-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* IMAGEN PRINCIPAL (arriba) */
.experience-images img:first-child {
  grid-column: span 2;
  height: 300px;              /* antes estaba muy alta */
  object-fit: cover;
  border-radius: 22px;
}

/* IMÁGENES INFERIORES */
.experience-images img:not(:first-child) {
  height: 220px;              /* ya no se aplastan */
  object-fit: cover;
  border-radius: 20px;
}

/* TODAS */
.experience-images img {
  width: 100%;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  transition: transform .4s ease, box-shadow .4s ease;
}

/* HOVER SUTIL (premium) */
.experience-images img:hover {
  transform: scale(1.03);
  box-shadow: 0 35px 80px rgba(0,0,0,.45);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .experience-images {
    grid-template-columns: 1fr;
  }

  .experience-images img:first-child {
    height: 240px;
  }

  .experience-images img:not(:first-child) {
    height: 200px;
  }
}


/* ===== GALERÍA ENTRENAMIENTOS (GRID LIMPIO) ===== */

.training-gallery {
  padding: 100px 0;
}

.training-gallery-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.training-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.training-gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .training-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .training-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.section {
  padding: 120px 0;
}

/* ===== ENTRENAMIENTOS – IMAGEN IZQ / TEXTO DER ===== */

.training-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* TEXTO */
.training-text .section-title {
  margin-bottom: 35px;
}

/* ITEMS */
.training-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.training-item img {
  width: 36px;
  height: 36px;
  opacity: 0.9;
}

.training-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

/* IMAGEN */
.training-visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 32px 90px rgba(0,0,0,.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .training-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .training-visual {
    order: -1; /* imagen arriba en móvil */
  }

  .training-visual img {
    height: 280px;
  }
}

/* ===== LISTAS ===== */
.training-list {
  padding-left: 0;
  list-style: none;
}

.training-list li {
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
}

.training-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-size: 22px;
}

/* ===== DOBLE IMAGEN ===== */
.training-visual.double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.training-visual.double img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

/* fondo suave opcional */
.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}

/* responsive */
@media (max-width: 900px) {
  .training-visual.double {
    grid-template-columns: 1fr;
  }

  .training-visual.double img {
    height: 200px;
  }
}


/* ===================== TESTIMONIOS (PRO) ===================== */
.t-hero{
  position:relative;
  padding:120px 0 80px;
  overflow:hidden;
}
.t-hero-inner{ position:relative; z-index:2; text-align:center; }
.t-hero-badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
}
.t-hero-title{ margin:18px 0 10px; font-size: clamp(30px, 4vw, 52px); line-height:1.08; }
.t-hero-subtitle{ max-width:860px; margin:0 auto; opacity:.85; }

.t-hero-stats{
  margin:28px auto 0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  max-width:900px;
}
.t-stat{
  padding:16px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.t-stat-num{ font-weight:800; letter-spacing:.2px; }
.t-stat-label{ font-size:.95rem; opacity:.8; margin-top:4px; }

.t-hero-cta{ margin-top:26px; display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.t-btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff; text-decoration:none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.t-btn:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.t-btn-primary{
  background: linear-gradient(90deg, rgba(255,140,0,.95), rgba(255,90,0,.92));
  border-color: rgba(255,140,0,.35);
}
.t-btn-ghost{ background:rgba(255,255,255,.05); }

.t-lights{ position:absolute; inset:-80px; z-index:1; pointer-events:none; }
.t-light{
  position:absolute; width:520px; height:520px; border-radius:50%;
  filter: blur(60px);
  opacity:.35;
  animation: tFloat 10s ease-in-out infinite;
  background: radial-gradient(circle at 30% 30%, rgba(255,140,0,.65), rgba(255,80,0,0) 60%);
}
.t-light.a{ top:-120px; left:-80px; animation-duration: 11s; }
.t-light.b{ bottom:-160px; right:-120px; animation-duration: 13s; opacity:.28; }
.t-light.c{ top:20%; right:18%; width:420px; height:420px; opacity:.22; animation-duration: 15s; }
@keyframes tFloat{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(30px, -18px) scale(1.06); }
}

/* Secciones */
.t-quotes, .t-videos, .t-proof{ padding:90px 0; }
.t-section-head{ margin-bottom:22px; }
.t-section-title{ font-size: clamp(24px, 2.8vw, 36px); margin:0; }
.t-section-subtitle{ margin:8px 0 0; opacity:.82; max-width:820px; }

.t-quote-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.t-quote-card{
  padding:18px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.t-quote-card:hover{ transform: translateY(-4px); box-shadow: 0 18px 38px rgba(0,0,0,.28); }
.t-quote-top{ display:flex; align-items:center; gap:10px; opacity:.9; margin-bottom:10px; }
.t-quote-text{ opacity:.86; margin:0; line-height:1.65; }
.t-quote-foot{ display:flex; gap:10px; align-items:center; margin-top:14px; }
.t-avatar{
  width:38px; height:38px; border-radius:12px;
  display:grid; place-items:center;
  background:rgba(255,140,0,.18);
  border:1px solid rgba(255,140,0,.25);
  font-weight:800;
}
.t-name{ font-weight:700; }
.t-role{ font-size:.92rem; opacity:.75; }

/* Videos */
.t-block{ margin-top:26px; }
.t-block-title{
  display:flex; align-items:center; gap:12px; margin-bottom:14px;
}
.t-chip{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}
.t-line{ height:1px; flex:1; background: rgba(255,255,255,.10); }

.t-video-grid{
  display:grid;
  gap:14px;
}
.t-video-grid.vertical{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.t-video-grid.horizontal{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.t-video-card{
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  position:relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.t-video-card:hover{ transform: translateY(-4px); box-shadow: 0 18px 38px rgba(0,0,0,.28); }

.t-video-frame{ position:relative; width:100%; background: rgba(0,0,0,.35); }
.t-video-frame iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}
.ratio-9x16{ aspect-ratio: 9 / 16; }
.ratio-16x9{ aspect-ratio: 16 / 9; }

.t-video-meta{ padding:14px 14px 16px; }
.t-video-meta h3{ margin:0; font-size:1.05rem; }
.t-video-meta p{ margin:6px 0 0; opacity:.78; font-size:.95rem; }

/* Proof */
.t-proof-inner{
  position:relative;
  border-radius:22px;
  padding:22px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
}
.t-proof-text h2{ margin:0 0 10px; font-size: clamp(22px, 2.4vw, 34px); }
.t-proof-text p{ margin:0; opacity:.86; line-height:1.65; }
.t-proof-actions{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }

.t-proof-cards{ display:grid; gap:10px; align-content:start; }
.t-mini{
  display:flex; gap:12px; align-items:center;
  padding:12px 12px;
  border-radius:16px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.08);
}
.t-mini i{ color: rgba(255,140,0,.95); font-size:1.15rem; }
.t-mini strong{ display:block; }
.t-mini span{ display:block; opacity:.75; font-size:.92rem; margin-top:2px; }

.t-proof-lights{
  position:absolute; inset:-40px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,140,0,.22), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(255,80,0,.16), transparent 55%);
  filter: blur(20px);
  animation: tPulse 6s ease-in-out infinite;
  pointer-events:none;
}
@keyframes tPulse{
  0%,100%{ opacity:.55; transform: scale(1); }
  50%{ opacity:.85; transform: scale(1.02); }
}

/* Responsive */
@media (max-width: 980px){
  .t-hero-stats{ grid-template-columns: 1fr; max-width:520px; }
  .t-quote-grid{ grid-template-columns: 1fr; }
  .t-video-grid.vertical{ grid-template-columns: 1fr; }
  .t-video-grid.horizontal{ grid-template-columns: 1fr; }
  .t-proof-inner{ grid-template-columns: 1fr; }
}
/* ===================== /TESTIMONIOS (PRO) ===================== */
/* ===========================
   TESTIMONIOS (ADD-ON)
   =========================== */

.testi-hero{
  position: relative;
  padding: 4.2rem 0 3rem;
  overflow: hidden;
}

.testi-hero-bg{
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,106,0,.18), transparent 55%),
    radial-gradient(circle at 80% 40%, rgba(255,174,0,.15), transparent 60%),
    radial-gradient(circle at 55% 80%, rgba(59,130,246,.14), transparent 60%);
  filter: blur(10px);
  animation: testiGlow 8s ease-in-out infinite;
  pointer-events:none;
}

@keyframes testiGlow{
  0%{ transform: translate3d(0,0,0) scale(1); opacity:.9;}
  50%{ transform: translate3d(0,-10px,0) scale(1.04); opacity:1;}
  100%{ transform: translate3d(0,0,0) scale(1); opacity:.9;}
}

.testi-hero-inner{
  position: relative;
  z-index: 2;
  text-align:center;
  max-width: 56rem;
  margin: 0 auto;
}

.testi-proofbar{
  margin-top: 1.4rem;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.8rem;
}

.proof-pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.55rem .9rem;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.45);
  background: rgba(15,23,42,.55);
  color: #e5e7eb;
  font-size:.8rem;
}

.proof-pill i{ color: var(--accent-2); }

.testi-hero-actions{
  margin-top: 1.6rem;
  display:flex;
  justify-content:center;
  gap:1rem;
  flex-wrap:wrap;
}

/* intro */
.testi-intro{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: stretch;
}

.testi-mini-stats{
  margin-top: 1.2rem;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}

.mini-stat{
  border: 1px solid var(--border-soft);
  background: rgba(2,6,23,.55);
  border-radius: 16px;
  padding: .9rem .8rem;
  text-align:center;
}

.mini-num{
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-2);
  margin-bottom: .2rem;
}

.mini-text{
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wow-card{
  height: 100%;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top left, rgba(255,174,0,.12), rgba(15,23,42,.92));
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
  position: relative;
  overflow:hidden;
}

.wow-line{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, transparent, rgba(255,174,0,.25), transparent);
  transform: translateX(-100%);
  animation: wowScan 3.8s ease-in-out infinite;
  pointer-events:none;
}

@keyframes wowScan{
  0%{ transform: translateX(-120%); opacity:.2;}
  50%{ transform: translateX(120%); opacity:.55;}
  100%{ transform: translateX(120%); opacity:.2;}
}

.wow-quote{
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: .3rem;
}

.wow-note{
  margin-top: .6rem;
  font-size: .9rem;
  color: var(--text-muted);
}

/* videos */
.video-block{
  border: 1px solid var(--border-soft);
  background: rgba(2,6,23,.35);
  border-radius: 22px;
  padding: 1.4rem;
}

.video-block-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.video-block-head h3{
  font-size: 1.2rem;
  letter-spacing: .06em;
}

.video-block-head p{
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 34rem;
}

.video-grid{
  display:grid;
  gap: 1.2rem;
}

.video-grid-vertical{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-grid-horizontal{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card{
  border: 1px solid var(--border-soft);
  background: rgba(15,23,42,.62);
  border-radius: 20px;
  overflow:hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  transform: translateY(0);
  transition: transform .25s ease, border-color .25s ease;
}

.video-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,174,0,.28);
}

.video-frame{
  position: relative;
  background: #020617;
}

.video-frame.vertical{
  aspect-ratio: 9/16;
}

.video-frame.horizontal{
  aspect-ratio: 16/9;
}

.video-frame video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.video-meta{
  padding: .9rem 1rem 1rem;
}

.video-meta h4{
  font-size: 1rem;
  margin-bottom: .15rem;
}

.video-meta p{
  font-size: .82rem;
  color: var(--text-muted);
}

/* overlay play button */
.video-overlay-btn{
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(248,250,252,.35);
  background: rgba(2,6,23,.55);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, opacity .2s ease;
}

.video-overlay-btn:hover{ transform: translate(-50%,-50%) scale(1.06); }

.video-card.is-playing .video-overlay-btn{
  opacity: 0;
  pointer-events:none;
}

/* responsive */
@media (max-width: 980px){
  .testi-intro{ grid-template-columns: 1fr; }
  .testi-mini-stats{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .video-grid-vertical,
  .video-grid-horizontal{ grid-template-columns: 1fr; }
  .video-block-head{ flex-direction:column; align-items:flex-start; }
}

/* =========================
   GALERÍA PRO (nueva)
========================= */

.gallery-pro-hero{
  position: relative;
  padding: 3.8rem 0 2.2rem;
  overflow: hidden;
}

.gallery-pro-head{
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

.gallery-pro-chips{
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
}

.chip{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(248,250,252,0.18);
  background: rgba(15,23,42,0.55);
  color: #e5e7eb;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s ease, border-color .25s ease;
}
.chip:hover{
  transform: translateY(-2px);
  border-color: rgba(255,174,0,.6);
}

.gallery-pro-glow{
  position:absolute;
  inset:-20% -10% auto -10%;
  height: 420px;
  background: radial-gradient(circle at 50% 40%, rgba(255,106,0,.18), transparent 60%),
              radial-gradient(circle at 20% 10%, rgba(255,174,0,.14), transparent 55%);
  filter: blur(12px);
  pointer-events:none;
  animation: gGlow 10s ease-in-out infinite;
}
@keyframes gGlow{
  0%{ transform: translateY(0); opacity:.65; }
  50%{ transform: translateY(18px); opacity:1; }
  100%{ transform: translateY(0); opacity:.65; }
}

/* NAV STICKY / FILTRO */
.gallery-nav-wrap{
  position: sticky;
  top: var(--nav-height);
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.15));
  border-bottom: 1px solid var(--border-soft);
}

.gallery-nav{
  padding: .9rem 0;
  display: flex;
  gap: .7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gfilter{
  cursor: pointer;
  border: 1px solid rgba(148,163,184,0.35);
  background: rgba(15,23,42,0.55);
  color: #e5e7eb;
  padding: .55rem .95rem;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.gfilter:hover{
  transform: translateY(-1px);
  border-color: rgba(255,174,0,.65);
}

.gfilter.is-active{
  border-color: rgba(255,174,0,.9);
  background: radial-gradient(circle at top left, rgba(255,174,0,.22), rgba(15,23,42,.55));
}

/* BLOQUES */
.gallery-block{
  padding: 3.2rem 0;
}

.gallery-block-head{
  text-align: center;
  margin-bottom: 2rem;
}

.g-masonry{
  columns: 3 280px;
  column-gap: 1rem;
}

/* CARD */
.g-card{
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #020617;
  position: relative;
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  transform: translateY(8px);
  opacity: 0;
  animation: gCardIn .65s ease forwards;
}
@keyframes gCardIn{
  to{ opacity:1; transform: translateY(0); }
}

.g-card img{
  width: 100%;
  display:block;
  transform: scale(1.02);
  transition: transform .45s ease, filter .45s ease;
}

.g-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 30% 10%, rgba(255,174,0,.12), transparent 60%),
              linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,0));
  opacity: .95;
  pointer-events:none;
  transition: opacity .35s ease;
}

.g-card figcaption{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}

.g-tag{
  display:inline-flex;
  padding: .35rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(248,250,252,0.18);
  background: rgba(15,23,42,0.6);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.g-title{
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  color: transparent;
}

.g-card:hover img{
  transform: scale(1.08);
  filter: saturate(1.05);
}
.g-card:hover::after{
  opacity: 1;
}

/* OCULTAR por filtro (JS) */
.g-card.is-hidden{
  display:none !important;
}

/* Responsive */
@media(max-width: 900px){
  .g-masonry{ columns: 2 260px; }
}
@media(max-width: 560px){
  .g-masonry{ columns: 1 260px; }
}


/* ===== GALERÍA PRO (filtros + grid + animación fluida) ===== */
.gallery-filters{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:18px;
}

.filter-btn{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  font-weight:600;
  cursor:pointer;
  display:flex;
  gap:10px;
  align-items:center;
  transition:transform .25s ease, background .25s ease, border-color .25s ease;
}

.filter-btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.28);
}

.filter-btn.is-active{
  border-color:rgba(255,170,0,.55);
  box-shadow:0 0 0 3px rgba(255,170,0,.12);
  background:rgba(255,170,0,.12);
}

.gallery-grid{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:18px;
}

.gallery-item{
  grid-column: span 4;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  transform:translateY(0);
  opacity:1;
  transition:opacity .35s ease, transform .35s ease;
}

.gallery-item img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}

.gallery-item:hover img{
  transform:scale(1.04);
}

/* Estado oculto con animación suave */
.gallery-item.is-hidden{
  opacity:0;
  transform:translateY(10px) scale(.985);
  pointer-events:none;
}

/* Responsive */
@media (max-width: 980px){
  .gallery-item{ grid-column: span 6; }
  .gallery-item img{ height:280px; }
}
@media (max-width: 640px){
  .gallery-item{ grid-column: span 12; }
  .gallery-item img{ height:260px; }
}

.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9900, #ffb84d);
  color: #1a1a1a;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255,153,0,.25);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

/* glow animado */
.btn-amazon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.5),
    transparent
  );
  transform: translateX(-100%);
  transition: transform .6s ease;
}

.btn-amazon:hover::before {
  transform: translateX(100%);
}

.btn-amazon:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 15px 40px rgba(255,153,0,.4);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  color: #cfd8ff;
  font-size: 22px;
  transition: all .3s ease;
}

.social-icons a:hover {
  color: #ff9f1c;
  transform: translateY(-3px) scale(1.1);
}

/* ===== FOOTER PRO ===== */
.footer-pro{
  position: relative;
  padding: 70px 0 0;
  background: linear-gradient(180deg, rgba(10,14,24,.9), rgba(6,10,18,1));
  border-top: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.footer-pro::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 20% 20%, rgba(255,170,60,.14), transparent 55%),
              radial-gradient(circle at 80% 30%, rgba(60,130,255,.14), transparent 55%),
              radial-gradient(circle at 50% 80%, rgba(255,255,255,.06), transparent 60%);
  filter: blur(18px);
  pointer-events:none;
}

.footer-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .9fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr; }
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-logo{
  width:44px;height:44px;
  border-radius: 14px;
  display:grid;place-items:center;
  font-weight:800;
  color:#fff;
  background: linear-gradient(135deg, rgba(255,110,80,1), rgba(255,185,90,1));
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.footer-brand-text strong{ display:block; color:#fff; letter-spacing:.2px; }
.footer-brand-text span{ display:block; color: rgba(255,255,255,.70); font-size:.92rem; }

.footer-desc{
  color: rgba(255,255,255,.70);
  line-height: 1.65;
  margin: 12px 0 18px;
  max-width: 46ch;
}

.footer-title{
  color:#fff;
  font-size: 1.05rem;
  margin: 0 0 14px;
  letter-spacing:.2px;
}

.footer-social{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn{
  width:44px;height:44px;
  display:grid;place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.90);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.social-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,170,60,.12);
  border-color: rgba(255,170,60,.35);
}

.footer-links{
  list-style:none;
  padding:0;margin:0 0 18px;
  display:grid;
  gap: 10px;
}

.footer-links a{
  color: rgba(255,255,255,.75);
  text-decoration:none;
  display:inline-flex;
  gap: 10px;
  align-items:center;
  transition: color .2s ease;
}

.footer-links a:hover{ color:#fff; }

.footer-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 16px;
  color:#0a0e18;
  font-weight: 700;
  text-decoration:none;
  background: linear-gradient(135deg, rgba(255,185,90,1), rgba(255,110,80,1));
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transition: transform .2s ease;
}
.footer-cta:hover{ transform: translateY(-2px); }

.credit-card{
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.credit-top{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 14px;
}

.credit-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  background: rgba(255,170,60,.10);
  border: 1px solid rgba(255,170,60,.20);
}

.credit-name{
  color:#fff;
  font-size: 1.05rem;
  letter-spacing:.3px;
}

.credit-links{
  display:grid;
  gap: 10px;
}

.credit-link{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration:none;
  color: rgba(255,255,255,.80);
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.credit-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,170,60,.28);
  color:#fff;
}

.footer-bottom{
  position: relative;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  background: rgba(0,0,0,.18);
}

.footer-bottom-inner{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  align-items:center;
  flex-wrap: wrap;
}

.footer-mini a{
  color: rgba(255,185,90,1);
  text-decoration:none;
}
.footer-mini a:hover{ text-decoration: underline; }

/* ===== Carrusel promo dentro de tarjetas (Próximos talleres) ===== */
.promo-carousel{
  position: relative;
  margin-top: 14px;
  border-radius: 16px;
}

.promo-viewport{
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.promo-track{
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform .55s cubic-bezier(.2,.9,.2,1);
  will-change: transform;
}

.promo-track img{
  width: 100%;
  min-width: 100%;
  height: 190px;            /* ajusta si quieres más alto */
  object-fit: cover;
  display: block;
}

.promo-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
  opacity: .92;
}

.promo-btn:hover{
  background: rgba(0,0,0,.5);
  transform: translateY(-50%) scale(1.06);
}

.promo-btn.prev{ left: 10px; }
.promo-btn.next{ right: 10px; }

/* ====== PROXIMOS TALLERES (WS) ====== */
.ws-section { padding: 90px 0; }
.ws-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:24px;
  margin-bottom: 28px;
}
.ws-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.ws-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.ws-tag{
  display:inline-flex; gap:10px; align-items:center;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 12px;
}
.ws-title{ margin: 14px 0 8px; font-size: 1.15rem; }
.ws-desc{ margin: 0 0 12px; color: rgba(255,255,255,.75); line-height: 1.5; }
.ws-meta{
  display:flex; gap:16px; flex-wrap:wrap;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  margin-bottom: 14px;
}
.ws-cta{
  display:inline-flex; align-items:center; gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.ws-cta:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); }

/* Carrusel */
.ws-carousel{ position: relative; border-radius: 16px; overflow: hidden; }
.ws-viewport{ overflow: hidden; border-radius: 16px; }
.ws-track{
  display:flex;
  transform: translateX(0);
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.ws-slide{ min-width: 100%; }
.ws-slide img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display:block;
  border-radius: 16px;
}

/* Botones */
.ws-btn{
  position:absolute; top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color: #fff;
  cursor: pointer;
  display:grid; place-items:center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
  opacity: .9;
}
.ws-btn:hover{ transform: translateY(-50%) scale(1.04); background: rgba(0,0,0,.48); border-color: rgba(255,255,255,.22); }
.ws-prev{ left: 10px; }
.ws-next{ right: 10px; }

/* Dots */
.ws-dots{
  position:absolute;
  left: 0; right: 0; bottom: 10px;
  display:flex; justify-content:center; gap:8px;
  pointer-events:auto;
}
.ws-dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  cursor:pointer;
  transition: transform .2s ease, background .2s ease;
}
.ws-dot.is-active{ background: rgba(255,255,255,.75); transform: scale(1.15); }

/* Responsive */
@media (max-width: 980px){
  .ws-grid{ grid-template-columns: 1fr; }
  .ws-head{ align-items:flex-start; flex-direction:column; }
  .ws-slide img{ height: 240px; }
}

/* ====== Carrusel promo (tarjetas de próximos talleres) ====== */
.promo-viewport{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

/* Alto del recuadro del carrusel (ajústalo si quieres) */
.promo-viewport{
  height: 220px;
}

/* Track: una imagen por “pantalla” */
.promo-track{
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}

/* Cada imagen ocupa 100% del viewport */
.promo-track img{
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;            /* <-- CLAVE: se ve completa */
  object-position: center;
  background: rgba(0,0,0,.18);    /* para que se vea pro si sobran bordes */
}

/* Botones */
.promo-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}

.promo-prev{ left: 10px; }
.promo-next{ right: 10px; }

.promo-btn:hover{
  background: rgba(0,0,0,.55);
}

/* =========================
   BURGER + NAV MOBILE
========================= */

/* Botón burger (oculto en desktop) */
#burgerBtn{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  cursor: pointer;
  position: relative;
  z-index: 60; /* arriba del menú */
}

#burgerBtn span{
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: rgba(255,255,255,.9);
  border-radius: 999px;
}

/* Solo en móvil: menú tipo dropdown */
@media (max-width: 980px){
  /* mostramos el botón */
  #burgerBtn{ display: inline-flex; align-items:center; justify-content:center; }

  /* el menú pasa a ser panel desplegable */
  #navMenu.nav-links{
    display: none;                 /* cerrado por defecto */
    position: absolute;
    top: calc(var(--nav-height) + 10px);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    gap: .8rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(2,6,23,.92);
    backdrop-filter: blur(14px);
    z-index: 55;
  }

  /* estado abierto: lo prende el JS con .is-open */
  #navMenu.is-open{
    display: flex;
  }

  /* links más tocables */
  #navMenu.nav-links a{
    padding: .7rem .6rem;
    border-radius: 12px;
  }

  #navMenu.nav-links a:hover{
    background: rgba(255,255,255,.06);
  }

  /* importante: en móvil evita que se quede “wrap” raro */
  .navbar{
    position: relative;
  }
}

/* ===== BURGER (solo móvil) ===== */
#burgerBtn{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  cursor: pointer;
  position: relative;
  z-index: 60;
}

#burgerBtn span{
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: rgba(255,255,255,.9);
  border-radius: 999px;
}

@media (max-width: 980px){
  .navbar{ position: relative; }

  /* mostrar burger */
  #burgerBtn{ display: inline-flex; align-items:center; justify-content:center; }

  /* ocultar links en móvil (en vez de wrap) */
  #navMenu.nav-links{
    display: none;
    position: absolute;
    top: calc(var(--nav-height) + 10px);
    left: 1rem;
    right: 1rem;

    flex-direction: column;
    gap: .8rem;
    padding: 1rem;

    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(2,6,23,.92);
    backdrop-filter: blur(14px);
    z-index: 55;
  }

  /* cuando JS agrega .is-open */
  #navMenu.is-open{ display: flex; }

  /* links tocables */
  #navMenu.nav-links a{
    padding: .7rem .6rem;
    border-radius: 12px;
  }
  #navMenu.nav-links a:hover{
    background: rgba(255,255,255,.06);
  }
}

/* Oculta burger en desktop */
#burgerBtn{ display:none; }

/* Menú normal en desktop */
#navMenu.nav-links{ display:flex; }

/* Móvil */
@media (max-width: 980px){
  .navbar{ position: relative; }

  /* muestra burger */
  #burgerBtn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.25);
    cursor:pointer;
    z-index:60;
  }
  #burgerBtn span{
    display:block;
    width:22px;
    height:2px;
    margin:5px auto;
    background: rgba(255,255,255,.9);
    border-radius:999px;
  }

  /* OCULTA links por defecto */
  #navMenu.nav-links{
    display:none;
    position:absolute;
    top: calc(var(--nav-height) + 10px);
    left: 1rem;
    right: 1rem;
    flex-direction:column;
    gap:.8rem;
    padding:1rem;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.10);
    background: rgba(2,6,23,.92);
    backdrop-filter: blur(14px);
    z-index:55;
  }

  /* cuando el JS agrega .is-open */
  #navMenu.is-open{ display:flex; }

  #navMenu a{
    padding:.7rem .6rem;
    border-radius:12px;
  }
  #navMenu a:hover{
    background: rgba(255,255,255,.06);
  }
}

