@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --negro: #111111;
  --negro2: #1e1e1e;
  --amarillo: #FFD700;
  --amarillo2: #f0c800;
  --blanco: #ffffff;
  --gris: #888888;
  --gris-claro: #f5f5f5;
  --sombra: rgba(0,0,0,0.4);
}

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

body {
  font-family: 'Roboto', sans-serif;
  background: #111;
  color: var(--blanco);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--negro);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--amarillo);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo .logo-badge {
  width: 54px;
  height: 54px;
  background: var(--amarillo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--negro);
  text-align: center;
  line-height: 1.1;
  border: 2px solid #fff;
}

.nav-logo .club-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blanco);
  letter-spacing: 1px;
  line-height: 1.2;
}
.nav-logo .club-name span {
  color: var(--amarillo);
  display: block;
  font-size: 13px;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--blanco);
  text-decoration: none;
  padding: 8px 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  border-radius: 3px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--negro);
  background: var(--amarillo);
}

.btn-socio-nav {
  background: var(--amarillo) !important;
  color: var(--negro) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 4px !important;
  border: 2px solid var(--amarillo) !important;
  transition: all 0.2s !important;
}
.btn-socio-nav:hover {
  background: var(--negro) !important;
  color: var(--amarillo) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--amarillo);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 70px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, rgba(255,215,0,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-text {
  max-width: 620px;
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--amarillo);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--amarillo);
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: var(--blanco);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title .highlight {
  color: var(--amarillo);
  display: block;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 480px;
}

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

.btn-primary {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--amarillo);
  color: var(--negro);
  border: 2px solid var(--amarillo);
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s;
  display: inline-block;
}
.btn-primary:hover {
  background: transparent;
  color: var(--amarillo);
}

.btn-secondary {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: var(--blanco);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--amarillo);
  color: var(--amarillo);
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.hero-dots .dot.active {
  background: var(--amarillo);
  transform: scale(1.3);
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.5);
  border: 2px solid var(--amarillo);
  color: var(--amarillo);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.hero-arrow:hover { background: var(--amarillo); color: var(--negro); }
.hero-arrow.left { left: 20px; }
.hero-arrow.right { right: 20px; }

/* ===== SECCIÓN GENÉRICA ===== */
.section {
  padding: 80px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.section-dark {
  background: var(--negro2);
  padding: 80px 0;
}
.section-dark .section { padding-top: 0; padding-bottom: 0; }

.section-header {
  margin-bottom: 50px;
}

.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--amarillo);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--amarillo);
  display: block;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blanco);
  line-height: 1.1;
}

.section-title span { color: var(--amarillo); }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-top: 3px solid var(--amarillo);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: var(--blanco);
  display: block;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255,215,0,0.15);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.card-body {
  padding: 22px 24px;
}

.card-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--amarillo);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--blanco);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-text {
  font-size: 14px;
  color: var(--gris);
  line-height: 1.6;
}

/* ===== BARRA AMARILLA ===== */
.yellow-bar {
  background: var(--amarillo);
  padding: 50px 20px;
  text-align: center;
}

.yellow-bar h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  color: var(--negro);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.yellow-bar p {
  font-size: 16px;
  color: rgba(0,0,0,0.7);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-dark {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--negro);
  color: var(--amarillo);
  border: 2px solid var(--negro);
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.25s;
}
.btn-dark:hover {
  background: transparent;
  color: var(--negro);
}

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid #2e2e2e;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--amarillo);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--gris);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
footer {
  background: #0a0a0a;
  border-top: 3px solid var(--amarillo);
  padding: 60px 20px 30px;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--blanco);
  margin-bottom: 14px;
}
.footer-logo span { color: var(--amarillo); }

.footer-desc {
  font-size: 14px;
  color: var(--gris);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--amarillo);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2e2e2e;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: var(--gris);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amarillo); }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #2e2e2e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gris);
}

/* ===== WHATSAPP BUTTON ===== */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: pulse-wa 2.5s infinite;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.7);
  animation: none;
}
.wa-btn svg { width: 34px; height: 34px; fill: white; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.15); }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #111 0%, #1e1e1e 100%);
  padding: 120px 20px 60px;
  border-bottom: 3px solid var(--amarillo);
  text-align: center;
}

.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blanco);
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--amarillo); }

.page-hero p {
  font-size: 17px;
  color: var(--gris);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--gris);
}
.breadcrumb a { color: var(--amarillo); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== CONTENT PAGE ===== */
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 20px;
}

.content-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--blanco);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.content-section h2 span { color: var(--amarillo); }

.content-section p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.content-section ul {
  list-style: none;
  margin-bottom: 30px;
}
.content-section ul li {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid #2a2a2a;
  position: relative;
}
.content-section ul li::before {
  content: '▶';
  color: var(--amarillo);
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 13px;
}

/* ===== INFO BOX ===== */
.info-box {
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-left: 4px solid var(--amarillo);
  border-radius: 4px;
  padding: 24px 28px;
  margin: 30px 0;
}
.info-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--amarillo);
  margin-bottom: 10px;
}
.info-box p { margin: 0; color: rgba(255,255,255,0.7); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 73px; left: 0; right: 0;
    background: var(--negro);
    border-top: 1px solid #2e2e2e;
    padding: 10px 0;
  }
  .nav-links a { padding: 12px 20px; display: block; border-radius: 0; }
  .nav-toggle { display: flex; }
  .navbar { position: relative; }
  .hero { margin-top: 73px; }
  .hero-content { padding: 0 24px; }
  .section { padding: 60px 20px; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-content { padding: 0 16px; }
  .hero-btns { flex-direction: column; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
