/* ============================================================
   SÚPER AIRES EXPRESS — styles.css
   Paleta: Azul profundo + Cian + Blanco
   Fuentes: Syne (títulos) + DM Sans (cuerpo)
   ============================================================ */

/* ===== VARIABLES DE COLOR Y ESPACIADO ===== */
:root {
  --blue-deep:     #0a1628;
  --blue-mid:      #0d3b6e;
  --blue-brand:    #1565c0;
  --blue-light:    #1e88e5;
  --blue-sky:      #42a5f5;
  --cyan:          #00bcd4;
  --cyan-light:    #b2ebf2;
  --white:         #ffffff;
  --off-white:     #f0f7ff;
  --gray-soft:     #e8f4fd;
  --gray-text:     #546e7a;
  --text-dark:     #0d1f2d;
  --accent:        #00e5ff;
  --whatsapp:      #25d366;
  --whatsapp-dark: #128c7e;
  --radius:        16px;
  --shadow:        0 8px 32px rgba(13, 59, 110, 0.12);
  --shadow-lg:     0 20px 60px rgba(13, 59, 110, 0.18);

  /* —— Tema Mundial 2026 —— */
  --grass:         #1a9344;
  --grass-deep:    #0c5c2b;
  --grass-light:   #34c95f;
  --gold:          #ffc94d;
  --gold-deep:     #e0a01a;
  --pitch-line:    rgba(255, 255, 255, 0.5);
  --wc-shadow:     0 10px 30px rgba(224, 160, 26, 0.35);
}

/* ===== RESET BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.nav-logo span {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.3px;
}

.nav-logo span em {
  color: var(--accent);
  font-style: normal;
}

.nav-wc-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--blue-deep);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.3px;
  padding: 4px 10px;
  border-radius: 50px;
  margin-left: 4px;
  box-shadow: 0 4px 12px rgba(224, 160, 26, 0.4);
  animation: wc-pill-pulse 2.4s ease-in-out infinite;
}

@keyframes wc-pill-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@media (max-width: 860px) {
  .nav-wc-pill { display: none; }
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--whatsapp);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== MENÚ MÓVIL ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 999;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  padding: 24px 5% 32px;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(255, 255, 255, 0.8);
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: block;
}

.mobile-menu a:last-child { border-bottom: none; }

.mobile-menu .m-cta {
  margin-top: 16px;
  background: var(--whatsapp);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 600;
}

/* ===== SECCIÓN HERO / INICIO ===== */
#inicio {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-mid) 55%, #0a3d8f 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 110px 5% 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(0, 229, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 70%, rgba(21, 101, 192, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 95%, rgba(26, 147, 68, 0.25) 0%, transparent 70%);
}

/* Líneas de cancha sutiles de fondo */
.pitch-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 64px);
}

.pitch-lines::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 8%;
  width: 220px;
  height: 220px;
  margin-left: -110px;
  border: 2px solid var(--pitch-line);
  border-radius: 50%;
  opacity: 0.12;
}

.pitch-lines::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -2%;
  bottom: -2%;
  width: 2px;
  margin-left: -1px;
  background: var(--pitch-line);
  opacity: 0.08;
}

/* Confeti cayendo en el hero */
.confetti-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.confetti-field span {
  position: absolute;
  top: -10%;
  width: 8px;
  height: 14px;
  opacity: 0.85;
  animation: confetti-fall linear infinite;
  border-radius: 2px;
}

@keyframes confetti-fall {
  0%   { transform: translateY(-10vh) rotate(0deg); opacity: 0.9; }
  100% { transform: translateY(115vh) rotate(540deg); opacity: 0.7; }
}

/* Balón decorativo flotando en el hero */
.hero-ball {
  position: absolute;
  top: 14%;
  right: 6%;
  font-size: 2.6rem;
  z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.35));
  animation: ball-float 5s ease-in-out infinite, ball-spin 7s linear infinite;
  pointer-events: none;
}

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

@keyframes ball-spin {
  from { rotate: 0deg; }
  to   { rotate: 360deg; }
}

@media (max-width: 860px) {
  .hero-ball { top: 6%; right: 8%; font-size: 1.8rem; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 201, 77, 0.14);
  border: 1px solid rgba(255, 201, 77, 0.4);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: badge-glow 2.6s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 201, 77, 0); }
  50%      { box-shadow: 0 0 18px rgba(255, 201, 77, 0.35); }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  background: linear-gradient(90deg, var(--grass-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(21, 101, 192, 0.55);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ===== CUENTA REGRESIVA MUNDIAL 2026 — estilo marcador de estadio ===== */
.wc-countdown {
  margin-top: 36px;
  max-width: 480px;
  background: linear-gradient(160deg, rgba(12, 92, 43, 0.5), rgba(10, 22, 40, 0.7));
  border: 1px solid rgba(255, 201, 77, 0.25);
  border-radius: var(--radius);
  padding: 18px 20px 16px;
  backdrop-filter: blur(8px);
  box-shadow: var(--wc-shadow);
}

.wc-countdown-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.wc-countdown-ball {
  display: inline-block;
  animation: ball-spin 3.5s linear infinite;
}

.wc-countdown-grid {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wc-unit {
  flex: 1;
  text-align: center;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 201, 77, 0.18);
  border-radius: 10px;
  padding: 8px 4px 6px;
}

.wc-num {
  font-family: 'Bebas Neue', 'Syne', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.wc-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 2px;
}

.wc-sep {
  color: rgba(255, 201, 77, 0.5);
  font-weight: 700;
  font-size: 1.2rem;
  padding-bottom: 14px;
}

.wc-countdown-foot {
  margin-top: 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

@media (max-width: 480px) {
  .wc-num { font-size: 1.4rem; }
  .wc-countdown { padding: 14px 12px 12px; }
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.stat { text-align: left; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-top: 3px;
}

/* Tarjeta visual del hero */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 36px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  animation: float 4s ease-in-out infinite;
}

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

.hero-card .ac-icon {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
}

.hero-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 6px;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 20px;
}

.hero-card .price {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  text-align: center;
  margin-bottom: 16px;
}

.hero-card .btn-wa {
  width: 100%;
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  padding: 13px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}

.hero-card .btn-wa:hover { background: var(--whatsapp-dark); }

.badge-floating {
  position: absolute;
  background: var(--whatsapp);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.badge-floating.top { top: -16px; right: -16px; }
.badge-floating.bot { bottom: -16px; left: -16px; }

.badge-floating.wc {
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--blue-deep);
  box-shadow: var(--wc-shadow);
  animation: wc-badge-bounce 2.8s ease-in-out infinite;
}

@keyframes wc-badge-bounce {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50%      { transform: translateY(-58%) rotate(-3deg); }
}

@media (max-width: 860px) {
  .badge-floating.wc { left: -10px; }
}

/* ===== SECCIONES — ESTILOS COMUNES ===== */
section { padding: 90px 5%; }

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-sub {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}

.section-head { margin-bottom: 52px; }

/* ===== FRANJA DE CARACTERÍSTICAS ===== */
.features-strip {
  background: var(--blue-deep);
  padding: 40px 5%;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feat-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.feat-text span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

.feat-item--wc .feat-icon {
  background: rgba(255, 201, 77, 0.12);
  border-color: rgba(255, 201, 77, 0.35);
  animation: ball-spin 6s linear infinite;
}

.feat-item--wc .feat-text strong { color: var(--gold); }

/* ===== FRANJA DE BANDERINES (PENNANTS) MUNDIAL 2026 ===== */
.pennant-strip {
  background: linear-gradient(180deg, var(--blue-deep) 0%, var(--grass-deep) 100%);
  padding: 22px 0 28px;
  overflow: hidden;
}

.pennant-track {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 5%;
}

.pennant {
  display: inline-block;
  width: 26px;
  height: 34px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center;
  animation: pennant-wave 2.4s ease-in-out infinite;
}

.pennant.p1 { background: var(--gold); }
.pennant.p2 { background: var(--white); }
.pennant.p3 { background: var(--cyan); }

.pennant:nth-child(2n)   { animation-delay: 0.2s; }
.pennant:nth-child(3n)   { animation-delay: 0.4s; }
.pennant:nth-child(4n)   { animation-delay: 0.1s; }
.pennant:nth-child(5n)   { animation-delay: 0.3s; }

@keyframes pennant-wave {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(6deg); }
}

@media (max-width: 700px) {
  .pennant-track { gap: 14px; }
  .pennant { width: 18px; height: 24px; }
}

/* Variante de banderines un poco más sobria para usar entre secciones internas */
.pennant-strip--alt {
  padding: 16px 0 20px;
  background: linear-gradient(180deg, var(--grass-deep) 0%, var(--blue-deep) 100%);
}

/* ===== BALÓN DECORATIVO GENÉRICO DE SECCIÓN ===== */
.section-ball-deco {
  position: absolute;
  font-size: 7rem;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  top: 6%;
  right: 4%;
  animation: ball-spin 14s linear infinite;
  filter: blur(0.3px);
}

.section-ball-deco--alt {
  top: auto;
  bottom: 6%;
  left: 4%;
  right: auto;
}

.section-ball-deco--catalogo {
  top: 70%;
  left: 2%;
  right: auto;
}

.section-ball-deco--nosotros {
  top: 8%;
  left: 3%;
  right: auto;
  opacity: 0.05;
}

@media (max-width: 700px) {
  .section-ball-deco { font-size: 4rem; }
}

/* Franja sutil tipo líneas de cancha dentro de una sección clara */
.section-stripes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    100deg,
    rgba(26, 147, 68, 0.035) 0px,
    rgba(26, 147, 68, 0.035) 90px,
    transparent 90px,
    transparent 180px
  );
}

/* Esquina con balón en tarjetas de servicio */
.service-corner {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.1rem;
  opacity: 0.18;
}

/* Banderitas de los países anfitriones en la cabecera de galería */
.host-flags {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
}

.host-flags span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 2px;
}

/* ===== CATÁLOGO ===== */
#catalogo {
  background:
    repeating-linear-gradient(100deg, rgba(26, 147, 68, 0.035) 0px, rgba(26, 147, 68, 0.035) 90px, transparent 90px, transparent 180px),
    var(--off-white);
  position: relative;
  overflow: hidden;
}

#catalogo .section-head {
  position: relative;
}

#catalogo .section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--grass-deep);
}

#catalogo .section-label::before {
  content: '⚽';
  font-size: 0.9rem;
}

#catalogo .section-title .wc-accent {
  background: linear-gradient(90deg, var(--grass), var(--gold-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  border-top: 4px solid transparent;
}

#catalogo .product-card {
  border-top-color: var(--grass);
  background-image: linear-gradient(180deg, rgba(26,147,68,0.04), transparent 60px);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

#catalogo .product-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 20px 48px rgba(26, 147, 68, 0.22);
}

.product-img {
  height: 200px;
  background: linear-gradient(135deg, var(--gray-soft), var(--cyan-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

#catalogo .product-img {
  background: linear-gradient(135deg, #eaf7ee, #d8f2e0);
}

.product-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--white), transparent);
}

.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--blue-brand);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

#catalogo .product-tag {
  background: linear-gradient(135deg, var(--grass), var(--grass-deep));
}

#catalogo .product-tag.tag-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--blue-deep);
}

.product-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc {
  color: var(--gray-text);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.product-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.spec-chip {
  background: var(--gray-soft);
  color: var(--blue-mid);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

#catalogo .spec-chip {
  background: rgba(26, 147, 68, 0.1);
  color: var(--grass-deep);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--blue-brand);
}

#catalogo .product-price { color: var(--grass-deep); }

.product-price small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-text);
  display: block;
  line-height: 1;
}

.btn-wa-product {
  background: var(--whatsapp);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.15s;
}

.btn-wa-product:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.03);
}

/* ===== SERVICIOS ===== */
#servicios { background: var(--white); position: relative; overflow: hidden; }

#servicios .section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--grass-deep);
}

#servicios .section-label::before {
  content: '⚽';
  font-size: 0.9rem;
}

.services-wrap { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border: 2px solid var(--gray-soft);
  border-radius: 24px;
  padding: 36px 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--grass), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  border-color: var(--grass-light);
  box-shadow: 0 16px 40px rgba(26, 147, 68, 0.16);
  transform: translateY(-4px);
}

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

.service-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--grass-deep), var(--grass));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(12, 92, 43, 0.25);
}

.service-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-desc {
  color: var(--gray-text);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-list { list-style: none; }

.service-list li {
  color: var(--gray-text);
  font-size: 0.83rem;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '✓';
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ===== NOSOTROS ===== */
#nosotros {
  background:
    radial-gradient(ellipse 60% 50% at 85% 90%, rgba(26, 147, 68, 0.18) 0%, transparent 70%),
    var(--blue-deep);
  position: relative;
  overflow: hidden;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-main-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 201, 77, 0.18);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 40px;
  text-align: center;
  width: 100%;
  max-width: 360px;
}

.about-emoji { font-size: 5rem; margin-bottom: 16px; }

.about-main-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.about-main-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.6;
}

.about-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 201, 77, 0.25);
  border-radius: 16px;
  padding: 14px 18px;
}

.about-float.f1 { top: -20px; right: -10px; }
.about-float.f2 { bottom: -20px; left: -10px; }
.about-float.f3 {
  top: 50%;
  right: -34px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(255,201,77,0.18), rgba(255,201,77,0.06));
  border-color: rgba(255, 201, 77, 0.35);
  text-align: center;
}
.about-float.f3 span { font-size: 1.6rem; color: var(--gold); }

@media (max-width: 900px) {
  .about-float.f3 { right: -14px; }
}

.about-float span {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.about-float small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.about-content .section-label {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.about-content .section-label::before { content: '🏆'; font-size: 0.85rem; }
.about-content .section-title  { color: var(--white); }
.about-content .section-sub    { color: rgba(255, 255, 255, 0.55); max-width: 100%; }

.about-values {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  transition: border-color 0.25s;
}

.value-item:hover { border-color: rgba(26, 147, 68, 0.4); }

.value-icon { font-size: 1.4rem; margin-bottom: 8px; }

.value-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.value-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ===== CONTACTO ===== */
#contacto {
  background:
    repeating-linear-gradient(100deg, rgba(26, 147, 68, 0.03) 0px, rgba(26, 147, 68, 0.03) 90px, transparent 90px, transparent 180px),
    var(--off-white);
  position: relative;
  overflow: hidden;
}

#contacto .section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--grass-deep);
}
#contacto .section-label::before { content: '⚽'; font-size: 0.9rem; }

.contact-wrap { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-left: 3px solid transparent;
  transition: border-color 0.25s;
}

.contact-card:hover { border-left-color: var(--grass); }

.contact-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-icon.wa  { background: rgba(37, 211, 102, 0.12); }
.contact-icon.loc { background: rgba(26, 147, 68, 0.10); }
.contact-icon.hr  { background: rgba(255, 201, 77, 0.18); }

.contact-card h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-card p {
  color: var(--gray-text);
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-cta-box {
  background: linear-gradient(135deg, var(--grass-deep), var(--blue-mid) 65%, var(--blue-brand));
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-cta-box::before {
  content: '⚽';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 5rem;
  opacity: 0.08;
  transform: rotate(15deg);
}

.contact-cta-box .big-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.contact-cta-box h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.contact-cta-box p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-wa-big:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.horario-list { margin-top: 18px; text-align: left; }

.horario-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.horario-item:last-child { border-bottom: none; }
.horario-item strong { color: var(--white); font-weight: 600; }

/* ===== FOOTER ===== */
footer {
  background: var(--blue-deep);
  padding: 48px 5% 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo { display: flex; align-items: center; gap: 10px; }

.footer-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.footer-logo span {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 1rem;
}

.footer-logo span em { color: var(--accent); font-style: normal; }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.78rem;
  width: 100%;
  text-align: center;
  padding-top: 24px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== BOTÓN FLOTANTE WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2.5s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 8px 36px rgba(37, 211, 102, 0.70); }
}

/* ===== RESPONSIVE — TABLET (≤ 900px) ===== */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta        { display: none; }
  .hamburger      { display: flex; }

  .hero-grid      { grid-template-columns: 1fr; text-align: center; }
  .hero-sub       { margin: 0 auto 36px; }
  .hero-btns      { justify-content: center; }
  .hero-stats     { justify-content: center; }
  .hero-visual    { margin-top: 20px; }

  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid   { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: 1fr; }

  .about-grid     { grid-template-columns: 1fr; gap: 40px; }
  .about-visual   { margin-bottom: 20px; }

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

/* ===== RESPONSIVE — MÓVIL (≤ 560px) ===== */
@media (max-width: 560px) {
  section           { padding: 64px 5%; }
  .features-inner   { grid-template-columns: 1fr 1fr; }
  .catalog-grid     { grid-template-columns: 1fr; }
  .about-values     { grid-template-columns: 1fr; }
  .hero-title       { font-size: 2rem; }
}

/* ===== LOGO SVG EN NAVBAR Y FOOTER ===== */
.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-img-footer {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ===== TABLA COMPLETA DE TARIFAS ===== */
.price-table-wrap {
  margin-top: 60px;
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.price-table-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-soft);
}

.price-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-soft);
}

.pt-header {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  gap: 16px;
  padding: 14px 20px;
  background: var(--blue-mid);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}

.pt-row {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  gap: 16px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--gray-soft);
  align-items: center;
  transition: background 0.15s;
  font-size: 0.85rem;
}

.pt-row:last-child { border-bottom: none; }
.pt-row:hover { background: var(--off-white); }

.pt-row:nth-child(even) { background: #f8fbff; }
.pt-row:nth-child(even):hover { background: var(--off-white); }

.pt-highlight { background: rgba(21,101,192,0.04) !important; }
.pt-highlight:hover { background: rgba(21,101,192,0.08) !important; }

.pt-row span:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.pt-row span:nth-child(2) {
  color: var(--gray-text);
  font-size: 0.8rem;
  line-height: 1.5;
}

.pt-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--blue-brand);
  font-size: 0.95rem !important;
  text-align: right;
  white-space: nowrap;
}

.price-note {
  margin-top: 16px;
  color: var(--gray-text);
  font-size: 0.8rem;
  font-style: italic;
}

/* Responsive tabla */
@media (max-width: 700px) {
  .pt-header,
  .pt-row {
    grid-template-columns: 1fr 1fr;
    font-size: 0.78rem;
  }
  .pt-header span:nth-child(2),
  .pt-row span:nth-child(2) { display: none; }
  .price-table-wrap { padding: 20px; }
}

/* ===== SECCIÓN DE EQUIPOS EN VENTA ===== */
.equip-section-head {
  margin: 60px 0 32px;
  padding-top: 48px;
  border-top: 2px solid var(--gray-soft);
}
.equip-section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--text-dark);
  margin-bottom: 8px;
}
.equip-section-sub {
  color: var(--gray-text);
  font-size: 0.95rem;
}

/* Bloques por marca */
.brand-block {
  margin-bottom: 52px;
}
.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  margin-bottom: 24px;
}
.brand-adina     { background: linear-gradient(90deg, #0d3b6e, #1565c0); }
.brand-adina-inv { background: linear-gradient(90deg, #1565c0, #00bcd4); }
.brand-energy    { background: linear-gradient(90deg, #00897b, #004d40); }

.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.brand-line {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* =====================================================
   PANTALLA DE BIENVENIDA (SPLASH)
   ===================================================== */
#splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(145deg, #0a1628 0%, #0d3b6e 55%, #0c5c2b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: splash-exit 0.6s ease-in-out 3s forwards;
}

@keyframes splash-exit {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.04); pointer-events: none; visibility: hidden; }
}

/* Fondo de partículas decorativas */
#splash::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0,229,255,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(26,147,68,0.3) 0%, transparent 60%);
}

/* Confeti del splash */
.splash-confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.splash-confetti span {
  position: absolute;
  top: -10%;
  width: 7px;
  height: 12px;
  border-radius: 2px;
  opacity: 0.9;
  animation: confetti-fall linear infinite;
}

/* Balón del splash */
.splash-ball {
  font-size: 2.4rem;
  animation: ball-spin 2.2s linear infinite, ball-float 2.4s ease-in-out infinite;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
}

.splash-wc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: var(--wc-shadow);
  animation: splash-rise 0.7s 0.3s both;
}

.splash-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: splash-rise 0.7s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes splash-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Logo */
.splash-logo {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(0,229,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 0 40px rgba(0,229,255,0.2);
  animation: splash-pulse 1.6s ease-in-out infinite alternate;
}

@keyframes splash-pulse {
  from { box-shadow: 0 0 30px rgba(0,229,255,0.15); }
  to   { box-shadow: 0 0 60px rgba(0,229,255,0.40); }
}

.splash-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Copos flotantes */
.splash-snowflakes {
  display: flex;
  gap: 10px;
  font-size: 1rem;
  color: rgba(0,229,255,0.6);
}

.splash-snowflakes span {
  animation: snow-spin 3s linear infinite;
  display: inline-block;
}
.splash-snowflakes span:nth-child(1) { animation-delay: 0s;    animation-duration: 2.8s; }
.splash-snowflakes span:nth-child(2) { animation-delay: 0.2s;  animation-duration: 3.2s; }
.splash-snowflakes span:nth-child(3) { animation-delay: 0.4s;  animation-duration: 2.6s; }
.splash-snowflakes span:nth-child(4) { animation-delay: 0.1s;  animation-duration: 3.0s; }
.splash-snowflakes span:nth-child(5) { animation-delay: 0.3s;  animation-duration: 2.9s; }
.splash-snowflakes span:nth-child(6) { animation-delay: 0.5s;  animation-duration: 3.4s; }

@keyframes snow-spin {
  from { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.3); }
  to   { transform: rotate(360deg) scale(1); }
}

/* Título */
.splash-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  color: #ffffff;
  letter-spacing: -1px;
  text-align: center;
  line-height: 1.1;
  animation: splash-rise 0.7s 0.15s both;
}

.splash-title em {
  color: #00e5ff;
  font-style: normal;
}

/* Subtítulo multiidioma */
.splash-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  animation: splash-rise 0.7s 0.25s both;
}

/* Tagline */
.splash-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  animation: splash-rise 0.7s 0.35s both;
  margin-top: 2px;
}

/* Barra de progreso */
.splash-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
  animation: splash-rise 0.7s 0.45s both;
}

.splash-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1e88e5, #00e5ff);
  border-radius: 4px;
  animation: bar-fill 2.5s ease-out 0.5s forwards;
}

@keyframes bar-fill {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* Asegurar que el body no haga scroll mientras el splash está activo */
body.splash-active { overflow: hidden; }

/* =====================================================
   GALERÍA — NUESTRO TRABAJO
   ===================================================== */
#galeria {
  background:
    radial-gradient(ellipse 50% 40% at 15% 10%, rgba(26, 147, 68, 0.16) 0%, transparent 65%),
    var(--blue-deep);
  padding: 90px 5%;
  position: relative;
  overflow: hidden;
}
#galeria .section-label {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
#galeria .section-label::before { content: '🏆'; font-size: 0.85rem; }
#galeria .section-title { color: var(--white); }
#galeria .section-sub   { color: rgba(255,255,255,0.55); }

.gallery-wrap { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

/* Videos */
.gallery-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.gallery-video-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-label {
  background: rgba(255,255,255,0.06);
  border-top: 2px solid var(--grass);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 16px;
}

/* Mosaico */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 12px;
  margin-bottom: 40px;
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #1a2a3a;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.88) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 14px;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff; font-size: 0.78rem; font-weight: 600;
}

/* CTA */
.gallery-cta {
  text-align: center; padding: 40px;
  background: rgba(255, 201, 77, 0.05);
  border: 1px solid rgba(255, 201, 77, 0.18);
  border-radius: 20px;
}
.gallery-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem; margin-bottom: 20px; font-weight: 500;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.93);
  align-items: center; justify-content: center; padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  border-radius: 12px; object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 1.2rem;
  width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s; padding: 0;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* Responsive */
@media (max-width: 900px) {
  .gallery-videos { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery-item--wide { grid-column: span 1; }
}
@media (max-width: 560px) {
  .gallery-mosaic { grid-auto-rows: 150px; }
  .gallery-item--tall { grid-row: span 1; }
}

/* =====================================================
   CARRUSEL DE FOTOS
   ===================================================== */
.carousel-wrap {
  position: relative;
  margin-bottom: 40px;
  user-select: none;
}

.carousel-track-wrap {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  cursor: pointer;
  height: 480px;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.carousel-slide:hover img {
  transform: scale(1.03);
}

.carousel-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, transparent 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 32px 24px 20px;
  letter-spacing: 0.2px;
}

/* Botones anterior / siguiente */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
  padding: 0;
}

.carousel-btn:hover {
  background: rgba(255, 201, 77, 0.25);
  border-color: rgba(255, 201, 77, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn--prev { left: -26px; }
.carousel-btn--next { right: -26px; }

/* Puntos indicadores */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Swipe touch hint (móvil) */
.carousel-hint {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  margin-top: 10px;
  display: none;
}

/* Responsive */
@media (max-width: 900px) {
  .carousel-slide { height: 360px; }
  .carousel-btn--prev { left: 8px; }
  .carousel-btn--next { right: 8px; }
  .carousel-hint { display: block; }
}

@media (max-width: 560px) {
  .carousel-slide { height: 260px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 1.5rem; }
}

/* =====================================================
   MINI CARRUSEL EN HERO CARD
   ===================================================== */
.hero-card--carousel {
  padding: 0 0 24px 0 !important;
  overflow: hidden;
}

.hero-card--carousel h3,
.hero-card--carousel p,
.hero-card--carousel .price,
.hero-card--carousel .btn-wa {
  margin-left: 20px;
  margin-right: 20px;
}

.hero-card--carousel h3 { margin-top: 16px; }

.hero-carousel {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.hero-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}

.hero-carousel-slide {
  min-width: 100%;
  height: 100%;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botones prev/next del hero carousel */
.hc-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.3);
  color: white; font-size: 1.2rem;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 5; padding: 0;
}
.hc-btn:hover { background: rgba(0,229,255,0.4); }
.hc-btn--prev { left: 8px; }
.hc-btn--next { right: 8px; }

/* Puntos del hero carousel */
.hc-dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.hc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.hc-dot.active {
  background: #00e5ff;
  transform: scale(1.3);
}

/* ===== RESPETO A PREFERENCIA DE MOVIMIENTO REDUCIDO ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .confetti-field span,
  .splash-confetti span,
  .hero-ball,
  .pennant {
    display: none !important;
  }
  .section-ball-deco {
    animation: none !important;
  }
}
