:root {
  --navy-blue: #050505;
  --crimson-red: #E8192C;
  --cyan-accent: #3FE3E8;
  --off-white: #f5f5f0;
  --white: #ffffff;
  --gray-light: #e8e8e3;
  --gray-medium: #6c757d;
  --navy-dark: #030303;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  background-color: #020100;
  line-height: 1.6;
}

html { scroll-behavior: smooth; }

/* Navbar */
.navbar {
 background-color: #000 !important;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 60px;
  width: auto;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--crimson-red) !important;
  transform: translateY(-2px);
}

.navbar-toggler {
  border-color: var(--crimson-red);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(193, 39, 45, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 600px;
  background: url("../../public/images/banner-principal.jpg") center / cover;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-banner_club {
  position: relative;
  height: 600px;
  background: url("../../public/images/club.jpg") left center / cover;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-banner_equipo {
  position: relative;
  height: 600px;
  background: url("../../public/images/equipo_banner.jpg") left center / cover;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-banner_noticias {
  position: relative;
  height: 600px;
  background: url("../../public/images/noticias.jpg") left center / cover;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-banner_patrocinadores {
  position: relative;
  height: 600px;
  background: url("../../public/images/patrocinadores.jpg") center / cover;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}


.hero-content {
  position: relative;
  z-index: 2;
}

.hero-banner h1 {
  font-family: 'Germania One', serif;
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-banner .subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--gray-light);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
 /* color: var(--navy-blue)*/
  color:white;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--crimson-red);
}

/* Results Cards */
.result-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.result-card h4 {
  color: var(--navy-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.match-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.match-result:last-child {
  border-bottom: none;
}

.team-name {
  font-weight: 600;
  color: var(--navy-blue);
}

.score {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--crimson-red);
}

.match-date {
  font-size: 0.85rem;
  color: var(--gray-medium);
  text-align: right;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 35, 50, 0.9), transparent);
  color: var(--white);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* Sponsors */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.sponsor-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.sponsor-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.sponsor-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.sponsor-item:hover img {
  filter: grayscale(0%);
}

/* News Cards */
.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.news-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem;
}

.news-date {
  color: var(--crimson-red);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin: 0.5rem 0 1rem;
}

.news-excerpt {
  color: var(--gray-medium);
  line-height: 1.6;
}

.btn-read-more {
  background-color: var(--crimson-red);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: inline-block;
  text-decoration: none;
}

.btn-read-more:hover {
  background-color: var(--navy-blue);
  transform: translateX(5px);
  color: var(--white);
}

/* Player Cards */
.player-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  text-align: center;
}

.player-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.player-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy-blue), var(--crimson-red));
}

.player-info {
  padding: 1.5rem;
}

.player-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--crimson-red);
  line-height: 1;
}

.player-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin: 0.5rem 0;
  text-transform: uppercase;
}

.player-position {
  color: var(--gray-medium);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Tabs */
.nav-tabs {
  border-bottom: 2px solid var(--gray-light);
  margin-bottom: 2rem;
}

.nav-tabs .nav-link {
  color: var(--gray-medium);
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
  border-color: transparent;
  color: var(--crimson-red);
}

.nav-tabs .nav-link.active {
  color: var(--crimson-red);
  background-color: transparent;
  border-bottom: 3px solid var(--crimson-red);
}

/* Position Section */
.position-section {
  margin-bottom: 3rem;
}

.position-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--crimson-red);
}

/* Club Info Cards */
.info-card {
  background: #141313;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  color: #ec66ea;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.info-card p,
.info-card ul {
  color:  #fff;
  line-height: 1.8;
  font-size: 1.05rem;
}

.info-card ul {
  list-style: none;
  padding-left: 0;
}

.info-card ul li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.info-card ul li::before {
  content: "🏀";
  position: absolute;
  left: 0;
  color: var(--crimson-red);
}

/* Directory Table */
.directory-table {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.directory-table table {
  margin-bottom: 0;
}

.directory-table thead {
  background-color: var(--navy-blue);
  color: var(--white);
}

.directory-table th {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1.2rem;
  border: none;
}

.directory-table td {
  padding: 1.2rem;
  vertical-align: middle;
  color: var(--navy-blue);
}

.directory-table tbody tr {
  border-bottom: 1px solid var(--gray-light);
}

.directory-table tbody tr:last-child {
  border-bottom: none;
}

.directory-table tbody tr:hover {
  background-color: rgba(193, 39, 45, 0.05);
}

/* Video Section */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
  gap: 2rem;
}

.video-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: var(--crimson-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button::after {
  content: "▶";
  color: var(--white);
  font-size: 1.5rem;
  margin-left: 4px;
}

.video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--navy-blue);
}

.video-info {
  padding: 1.5rem;
}

.video-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
}

.video-description {
  color: var(--gray-medium);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background-color: #020100;
  color: var(--gray-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer p,
.footer a {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--crimson-red);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background-color: var(--navy-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icon-face {
  width: 45px;
  height: 45px;
  background-color: #0060ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icon-insta {
  width: 45px;
  height: 45px;
  background-color: #d529da;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icon-tube {
  width: 45px;
  height: 45px;
  background-color:#fd0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--crimson-red);
  transform: translateY(-3px);
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-medium);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-banner,
  .hero-banner_club,
  .hero-banner_equipo,
  .hero-banner_noticias,
  .hero-banner_patrocinadores {
    height: 42vh;
    min-height: 240px;
    max-height: 450px;
  }
}

@media (max-width: 768px) {
  .hero-banner,
  .hero-banner_club,
  .hero-banner_equipo,
  .hero-banner_noticias,
  .hero-banner_patrocinadores {
    height: 35vh;
    min-height: 200px;
    max-height: 320px;
  }

  .hero-banner h1 {
    font-size: 2.5rem;
  }

  .hero-banner .subtitle {
    font-size: 1.2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-banner,
  .hero-banner_club,
  .hero-banner_equipo,
  .hero-banner_noticias,
  .hero-banner_patrocinadores {
    height: 30vh;
    min-height: 180px;
    max-height: 260px;
  }

  .hero-banner h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .hero-banner .subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 2rem 0;
  }
}

/* ── Hero Below ── */
.hero-below {
  background-color: #000;
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray-light);
  margin-bottom: 2rem;
}

/* ── Hero Content ── */
.hero-overline {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crimson-red);
  margin-bottom: 1.25rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-hero-primary {
  background-color: var(--crimson-red);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-primary:hover {
  background-color: #fff;
  color: var(--crimson-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 25, 44, 0.40);
}

.btn-hero-secondary {
  background-color: transparent;
  color: #fff;
  padding: 0.85rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-secondary:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.10);
  color: #fff;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.hero-stat-n {
  font-size: 2rem;
  font-weight: 900;
  color: var(--crimson-red);
  line-height: 1;
}

.hero-stat-l {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .hero-stats {
    gap: 1.75rem;
  }
  .hero-stat-n {
    font-size: 1.5rem;
  }
}

/* Utility Classes */
.bg-navy {
  background-color: var(--navy-blue);
}

.bg-crimson {
  background-color: var(--crimson-red);
}

.text-crimson {
  color:#f902bb;
}

.text-navy {
  color: var(--navy-blue);
}

/* =============================================================================
   FASE 4 — UX Mobile
   ============================================================================= */

/* ── A: Navbar — touch targets en menú expandido ── */
@media (max-width: 991px) {
  .navbar-toggler {
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem 0.75rem;
  }

  .navbar-collapse .navbar-nav {
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
  }

  .navbar-nav .nav-link {
    min-height: 48px !important;
    padding: 0.75rem 1.5rem !important;
    display: flex !important;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background-color: rgba(232, 25, 44, 0.08);
    transform: none;
  }
}

/* ── B: Gallery overlay siempre visible en mobile ── */
@media (max-width: 767px) {
  .gallery-overlay {
    transform: translateY(0);
  }
}

/* ── C: Tabs con scroll horizontal + footer links + misc ── */
@media (max-width: 767px) {
  .nav-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-tabs .nav-link {
    font-size: 0.82rem;
    padding: 0.6rem 1rem;
    min-height: 44px;
    white-space: normal;
    text-align: center;
  }

  .footer p > a {
    display: block;
    padding: 0.35rem 0;
    line-height: 2;
  }

  /* Fix 4 — Player photo + news card height */
  .player-photo {
    height: 220px;
  }

  .news-card img {
    height: 180px;
  }

  /* Fix 5 — info-card padding */
  .info-card {
    padding: 1.5rem;
  }
}

/* Fix 2 — Tabla directorio: scroll horizontal en mobile */
@media (max-width: 576px) {
  .directory-table {
    overflow-x: auto;
  }

  .directory-table table {
    min-width: 480px;
  }
}

/* Fix 3 — Imágenes en contenido HTML de noticias */
.noticia-contenido img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* =============================================================================
   FASE 5 — Storytelling + Captación
   ============================================================================= */

/* ── Bloque A: Nuestra Historia — left-aligned con borde crimson ── */
.ravens-historia {
  padding: 4rem 0 3.5rem;
  background: #050505;
  border-top: 1px solid #111;
}

.hist-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #E8192C;
  margin-bottom: 0.85rem;
}

.hist-headline {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hist-body {
  color: #aaa;
  font-size: 0.97rem;
  line-height: 1.75;
}

.hist-body p { margin-bottom: 0.4rem; }
.hist-body p:last-child { color: #ddd; font-weight: 600; }

.hist-inner {
  border-left: 3px solid #E8192C;
  padding-left: 1.75rem;
  max-width: 560px;
}

@media (max-width: 767px) {
  .hist-headline { font-size: 1.75rem; }
  .hist-inner { padding-left: 1.25rem; }
}

/* ── Bloque B: Únete al Ravens — centrado, eyebrow cyan, espaciado amplio ── */
.ravens-unete {
  padding: 5rem 0;
  background: #070707;
  text-align: center;
  border-top: 1px solid #111;
}

.unete-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #3FE3E8;
  margin-bottom: 1rem;
}

.unete-headline {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.unete-body {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto 2.25rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #25D366;
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
}

.btn-whatsapp:hover {
  background: #1cb954;
  transform: translateY(-1px);
}

.btn-whatsapp i { font-size: 1.2rem; }

.unete-microcopy {
  font-size: 0.75rem;
  color: #444;
  margin-top: 1rem;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .btn-whatsapp {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .unete-headline { font-size: 1.6rem; }
}

/* ── Bloque C: Club intro — sin borde lateral, solo tipografía y separador ── */
.club-intro {
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #1a1a1a;
}

.club-intro .club-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E8192C;
  margin-bottom: 0.6rem;
}

.club-intro .club-headline {
  font-size: 1.85rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.club-intro .club-subline {
  color: #666;
  font-size: 0.88rem;
  margin: 0;
}

/* =============================================================================
   FASE 6 — Performance + Hardening
   ============================================================================= */

/* Lightbox nav — consolidated from inline styles (index.php, noticias.php) */
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.55);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  padding: .2rem .65rem;
  z-index: 10;
  cursor: pointer;
  border-radius: 6px;
  line-height: 1;
}
.lb-prev { left: .6rem; }
.lb-next { right: .6rem; }
.lb-nav:hover { background: rgba(0,0,0,.85); }

/* Schedule grid responsive — consolidated from inline style (club.php) */
@media (max-width: 640px) {
  .hor-public-grid { grid-template-columns: 1fr !important; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--crimson-red);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
