/* ============================================================
   LIGA NACIONAL DE CLUBES DE WATERPOLO
   Diseño premium — 2026
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Paleta principal — azul profundo de piscina olímpica */
  --liga-navy: #0a1628;
  --liga-blue-deep: #0d2241;
  --liga-blue: #0f4c81;
  --liga-blue-mid: #1565c0;
  --liga-aqua: #00b4d8;
  --liga-aqua-light: #90e0ef;
  --liga-cyan: #caf0f8;

  /* Acento dorado */
  --liga-gold: #f0a500;
  --liga-gold-light: #ffd166;

  /* Neutros */
  --liga-white: #ffffff;
  --liga-off-white: #f0f4f8;
  --liga-gray-100: #e8edf3;
  --liga-gray-300: #b0bbc8;
  --liga-gray-600: #4a5568;
  --liga-dark: #0d1117;

  /* Tipografía */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.24);
  --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.25);

  /* Transiciones */
  --transition-fast: all 0.2s ease;
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* ============================================================
   SCROLLBAR PERSONALIZADO
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--liga-navy);
}

::-webkit-scrollbar-thumb {
  background: var(--liga-aqua);
  border-radius: 3px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: transparent;
  transition: var(--transition-smooth);
}

#mainNav.scrolled {
  background: #0d1e38;
  padding: 0.6rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 180, 216, 0.15);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-logo {
  height: 52px;
  width: auto;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 0 8px rgba(0, 180, 216, 0.4));
}

#mainNav.scrolled .navbar-logo {
  height: 42px;
}

.navbar-brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--liga-white);
  text-transform: uppercase;
  line-height: 1.2;
}

.navbar-brand-text span {
  display: block;
  color: var(--liga-aqua);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.navbar-nav-list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-link-item {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--liga-aqua);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-link-item:hover {
  color: var(--liga-white);
  background: rgba(0, 180, 216, 0.12);
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
  width: 60%;
}

.nav-link-item.active {
  color: var(--liga-aqua);
}

/* Ocultar botón X de cierre en desktop */
.mobile-close-btn {
  display: none;
}

/* Navbar collapse visible por defecto en desktop */
.navbar-collapse {
  display: flex;
  align-items: center;
}

/* Hamburger */
.navbar-toggler-btn {
  display: none;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.3);
  color: var(--liga-white);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.navbar-toggler-btn:hover {
  background: rgba(0, 180, 216, 0.3);
}

/* Mobile nav */
@media (max-width: 991px) {
  .navbar-toggler-btn {
    display: flex;
    align-items: center;
  }

  .navbar-collapse {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a1628;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1050;
  }

  .navbar-collapse.open {
    display: flex;
    animation: mobileNavIn 0.22s ease both;
  }

  @keyframes mobileNavIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .navbar-nav-list {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .nav-link-item {
    font-size: 1.25rem;
    padding: 0.85rem 2.5rem;
    border-radius: 10px;
  }

  .mobile-close-btn {
    display: flex;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--liga-white);
    font-size: 1.2rem;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
  }

  .mobile-close-btn:hover {
    background: rgba(0, 180, 216, 0.2);
    border-color: var(--liga-aqua);
  }

  #mainNav {
    background: rgba(10, 22, 40, 0.95);
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
  }
}

/* ============================================================
   HERO / MASTHEAD
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 22, 40, 0.88) 0%,
      rgba(13, 34, 65, 0.72) 50%,
      rgba(15, 76, 129, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  animation: heroFadeIn 1.2s ease both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  height: 120px;
  width: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 24px rgba(0, 180, 216, 0.5));
  animation: logoPulse 4s ease-in-out infinite alternate;
}

@keyframes logoPulse {
  from {
    filter: drop-shadow(0 0 16px rgba(0, 180, 216, 0.4));
  }

  to {
    filter: drop-shadow(0 0 36px rgba(0, 180, 216, 0.7));
  }
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--liga-aqua);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--liga-white);
  margin-bottom: 0.5rem;
}

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

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-divider-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--liga-aqua));
}

.hero-divider-line.right {
  background: linear-gradient(90deg, var(--liga-aqua), transparent);
}

.hero-divider-icon {
  color: var(--liga-aqua);
  font-size: 1rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--liga-blue-mid), var(--liga-aqua));
  color: var(--liga-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.35);
  transition: var(--transition-smooth);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 180, 216, 0.5);
  color: var(--liga-white);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================================
   SECCIÓN BASE
   ============================================================ */
.section {
  padding: 6rem 0;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--liga-aqua);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  color: var(--liga-white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 300px;
}

.sdiv-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.5));
}

.sdiv-line.right {
  background: linear-gradient(90deg, rgba(0, 180, 216, 0.5), transparent);
}

.sdiv-icon {
  color: var(--liga-aqua);
  font-size: 0.8rem;
}

/* ============================================================
   TORNEOS — Fondo azul profundo
   ============================================================ */
.section-torneos {
  background: var(--liga-navy);
  position: relative;
  overflow: hidden;
}

.section-torneos::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-torneos .section-title {
  color: var(--liga-white);
}

.torneos-iframe-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.2);
  background: var(--liga-blue-deep);
}

.torneos-iframe-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 650px;
  border: none;
  background: white;
}

/* ============================================================
   EQUIPOS — Fondo oscuro con gradiente
   ============================================================ */
.section-equipos {
  background: linear-gradient(180deg, var(--liga-blue-deep) 0%, var(--liga-navy) 100%);
  position: relative;
}

.section-equipos::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--liga-dark));
}

/* Carrusel */
.equipos-carousel-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 180, 216, 0.15);
  position: relative;
}

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

.carousel-slide {
  flex: 0 0 100%;
}

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

.carousel-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.85));
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.carousel-caption-overlay p {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--liga-white);
  letter-spacing: 0.05em;
}

/* Botones carrusel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: var(--liga-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(0, 180, 216, 0.4);
  border-color: var(--liga-aqua);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

/* Indicators */
.carousel-indicators-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--liga-aqua);
  transform: scale(1.3);
}

/* Equipos sub-text */
.equipos-caption {
  text-align: center;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-style: italic;
}

/* ============================================================
   NOVEDADES / BOLETINES
   ============================================================ */
.section-novedades {
  background: var(--liga-dark);
  position: relative;
}

.section-novedades::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), transparent);
}

.novedades-iframe-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 180, 216, 0.2);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 180, 216, 0.06);
  background: white;
}

.novedades-iframe-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 650px;
  border: none;
}

/* ============================================================
   RECURSOS
   ============================================================ */
.section-recursos {
  background: linear-gradient(135deg, var(--liga-blue-deep) 0%, var(--liga-navy) 100%);
  position: relative;
  overflow: hidden;
}

.section-recursos::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.recursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.recurso-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.recurso-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--liga-blue-mid), var(--liga-aqua));
  opacity: 0;
  transition: var(--transition-fast);
}

.recurso-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 180, 216, 0.4);
  box-shadow: var(--shadow-md), 0 0 40px rgba(0, 180, 216, 0.1);
}

.recurso-card:hover::before {
  opacity: 1;
}

.recurso-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--liga-blue-mid), var(--liga-aqua));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--liga-white);
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
  transition: var(--transition-smooth);
}

.recurso-card:hover .recurso-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 36px rgba(0, 180, 216, 0.45);
}

.recurso-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--liga-white);
  margin-bottom: 0.75rem;
}

.recurso-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* Botón primario */
.btn-liga {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-liga-primary {
  background: linear-gradient(135deg, var(--liga-blue-mid), var(--liga-aqua));
  color: var(--liga-white);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.3);
}

.btn-liga-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 180, 216, 0.45);
  color: var(--liga-white);
}

.btn-liga-gold {
  background: linear-gradient(135deg, var(--liga-gold), var(--liga-gold-light));
  color: var(--liga-dark);
  box-shadow: 0 6px 20px rgba(240, 165, 0, 0.3);
}

.btn-liga-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(240, 165, 0, 0.45);
  color: var(--liga-dark);
}

.btn-liga-outline {
  background: transparent;
  color: var(--liga-aqua);
  border: 1.5px solid var(--liga-aqua);
  box-shadow: none;
}

.btn-liga-outline:hover {
  background: rgba(0, 180, 216, 0.12);
  transform: translateY(-2px);
  color: var(--liga-aqua);
}

/* ============================================================
   CONTACTO
   ============================================================ */
.section-contacto {
  background: var(--liga-dark);
  position: relative;
}

.section-contacto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), transparent);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Info side */
.contacto-info-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--liga-white);
  margin-bottom: 0.75rem;
}

.contacto-info-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contacto-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contacto-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.contacto-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--liga-aqua);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--liga-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(0, 180, 216, 0.2);
  border-color: var(--liga-aqua);
  color: var(--liga-aqua);
  transform: translateY(-3px);
}

/* Redes sociales aún no disponibles */
.social-proximamente {
  opacity: 0.45;
  cursor: help;
  pointer-events: auto;
}

.social-proximamente:hover {
  opacity: 0.6;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--liga-white);
  transform: none;
}

.social-btn.instagram:hover {
  background: linear-gradient(135deg, rgba(251, 63, 152, 0.3), rgba(240, 165, 0, 0.2));
  border-color: rgba(251, 63, 152, 0.5);
  color: #f039a4;
}

/* Formulario */
.contacto-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: var(--liga-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--liga-aqua);
  background: rgba(0, 180, 216, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  width: 100%;
  justify-content: center;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  color: white;
}

.form-divider {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 1.25rem 0;
  position: relative;
}

.form-divider::before,
.form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.form-divider::before {
  left: 0;
}

.form-divider::after {
  right: 0;
}

/* Email directo con copiar */
.contacto-email-box {
  background: rgba(0, 180, 216, 0.07);
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 0.5rem;
}

.contacto-email-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75rem;
}

.contacto-email-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contacto-email-addr {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--liga-aqua);
  letter-spacing: 0.02em;
  flex: 1;
}

.btn-copy {
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.3);
  color: var(--liga-aqua);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.btn-copy:hover {
  background: rgba(0, 180, 216, 0.25);
  border-color: var(--liga-aqua);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--liga-navy);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(0, 180, 216, 0.12);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .social-row {
    justify-content: center;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(0, 180, 216, 0.3));
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--liga-white);
  line-height: 1.2;
}

.footer-brand-name span {
  display: block;
  font-size: 0.6rem;
  color: var(--liga-aqua);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--liga-aqua);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--liga-aqua);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.footer-made-with {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
}

.footer-made-with span {
  color: var(--liga-aqua);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .section-container {
    padding: 0 1.25rem;
  }

  .hero-logo {
    height: 90px;
  }

  .carousel-slide img {
    height: 260px;
  }

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

  .torneos-iframe-wrapper iframe {
    min-height: 420px;
  }

  .contacto-form {
    padding: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .carousel-slide img {
    height: 220px;
  }
}