/* ═══════════════════════════════════════════════════════════════
   GLOBAL STYLES - Variables, Base, Navbar, Footer
   Component-specific styles are in their respective .astro files
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --green-deep:    #0d2b05;
  --green-dark:    #163d08;
  --green-primary: #1e5c0e;
  --green-mid:     #2d7a1a;
  --green-light:   #3da322;
  --green-bright:  #57c235;
  --red:           #c0392b;
  --red-light:     #e74c3c;
  --gold:          #f4c20d;
  --gold-dark:     #d4a017;
  --white:         #ffffff;
  --off-white:     #f0f4ee;
  --gray:          #c8d6c2;
  --text-dark:     #1a2e15;
  --wa-green:      #25D366;
  --wa-dark:       #128C7E;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--green-deep);
  color: var(--white);
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* ───────────── SECTION BASE ───────────── */
section { padding: 5rem 1.25rem; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-bright);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; color: var(--white);
  margin-bottom: 0.6rem;
}
.section-title span { color: var(--gold); }
.section-lead {
  font-size: 1rem; color: rgba(240, 244, 238, 0.9); max-width: 600px;
  line-height: 1.65; margin-bottom: 3rem;
}
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--gold));
  border-radius: 2px; margin-bottom: 1.5rem;
}

/* ───────────── NAVBAR ───────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13, 43, 5, 0.92);
  backdrop-filter: blur(10px) saturate(150%);
  border-bottom: 2px solid var(--green-mid);
  padding: 0.5rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  background: rgba(13, 43, 5, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.8rem; text-decoration: none;
  z-index: 1001; position: relative;
}
.nav-brand img {
  width: 50px; height: 50px; border-radius: 50%;
  object-fit: cover; border: 2.5px solid var(--green-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 12px rgba(87, 194, 53, 0.3);
}
.nav-brand img:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(87, 194, 53, 0.5);
}
.nav-brand span {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 0.04em; line-height: 1.2;
}
.nav-brand small { 
  display: block; font-size: 0.65rem; 
  color: var(--green-bright); font-weight: 400; 
}

.nav-links { 
  display: flex; align-items: center; gap: 0.2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem; border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.nav-link {
  padding: 0.6rem 1.2rem;
  color: var(--white); text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; border-radius: 50px;
  overflow: hidden;
}
.nav-link::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(87, 194, 53, 0.2) 0%, rgba(244, 194, 13, 0.2) 100%);
  opacity: 0; transition: opacity 0.3s ease; z-index: -1;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 8px; left: 50%; transform: translateX(-50%) scaleX(0);
  width: 60%; height: 3px;
  background: linear-gradient(90deg, var(--green-bright) 0%, var(--gold) 100%);
  border-radius: 3px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover::before { opacity: 1; }
.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(244, 194, 13, 0.2);
}
.nav-link.active { font-weight: 700; }

.nav-cta {
  background: var(--wa-green) !important;
  color: var(--white) !important;
}
.nav-cta:hover { 
  background: var(--wa-dark) !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: linear-gradient(135deg, rgba(87, 194, 53, 0.15) 0%, rgba(244, 194, 13, 0.15) 100%);
  border: 2px solid rgba(87, 194, 53, 0.3);
  border-radius: 12px; cursor: pointer;
  padding: 0.7rem; z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, rgba(87, 194, 53, 0.25) 0%, rgba(244, 194, 13, 0.25) 100%);
  border-color: rgba(87, 194, 53, 0.5);
  box-shadow: 0 6px 20px rgba(87, 194, 53, 0.3);
  transform: scale(1.05);
}
.mobile-menu-toggle span {
  width: 28px; height: 3px;
  background: linear-gradient(90deg, var(--green-bright) 0%, var(--gold) 100%);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.mobile-menu-toggle.active {
  background: linear-gradient(135deg, rgba(87, 194, 53, 0.3) 0%, rgba(244, 194, 13, 0.3) 100%);
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0; transform: translateX(20px);
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ───────────── HERO ───────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: url('/img/imagen01.jpeg') center center / cover no-repeat;
  text-align: center; padding: 7rem 1.25rem 4rem;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,43,5,0.65) 0%,
    rgba(13,43,5,0.80) 40%,
    rgba(13,43,5,0.92) 100%
  );
}
.hero-particles {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--green-bright);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}
.particle:nth-child(1) {
  top: 20%; left: 10%;
  animation-delay: 0s;
  animation-duration: 15s;
}
.particle:nth-child(2) {
  top: 60%; right: 15%;
  animation-delay: 5s;
  animation-duration: 18s;
}
.particle:nth-child(3) {
  bottom: 30%; left: 70%;
  animation-delay: 10s;
  animation-duration: 22s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  50% { transform: translateY(-30px) translateX(20px); opacity: 0.6; }
}

.hero-content { 
  position: relative; z-index: 1; max-width: 820px;
  animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag-wrapper {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(87, 194, 53, 0.12);
  border: 1px solid rgba(87, 194, 53, 0.3);
  border-radius: 30px; padding: 0.5rem 1.2rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 4px 20px rgba(87, 194, 53, 0.3); }
}
.hero-tag-icon {
  color: var(--gold);
  filter: drop-shadow(0 2px 4px rgba(244, 194, 13, 0.4));
}
.hero-tag {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green-bright);
  margin: 0;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  font-weight: 700; line-height: 1.15;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.7), 0 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 1.2rem;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}
.hero-highlight { 
  color: var(--gold); 
  font-style: normal;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 30px rgba(244, 194, 13, 0.5),
               0 4px 20px rgba(0,0,0,0.7);
}
.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 300; color: var(--off-white);
  margin-bottom: 2rem; line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}
.hero-sub strong {
  color: var(--white);
  font-weight: 500;
}

.hero-location-card {
  display: inline-flex; align-items: center; gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px; padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}
.hero-location-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(87, 194, 53, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.hero-location-card svg {
  color: var(--green-bright);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(87, 194, 53, 0.4));
}
.hero-location-card > div {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 0.3rem;
  text-align: left;
}
.location-label {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--green-bright);
}
.location-text {
  font-size: 0.9rem; font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center; margin-bottom: 2.2rem;
}
.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px; padding: 0.35rem 1rem;
  font-size: 0.85rem; font-weight: 500; color: var(--white);
  backdrop-filter: blur(4px);
}
.badge-gold { border-color: var(--gold); color: var(--gold); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--wa-green);
  color: var(--white); text-decoration: none;
  font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.9rem 2.2rem; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}
.btn-wa svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: var(--gray); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ───────────── SECTION BASE ───────────── */
section { padding: 5rem 1.25rem; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-bright);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; color: var(--white);
  margin-bottom: 0.6rem;
}
.section-title span { color: var(--gold); }
.section-lead {
  font-size: 1rem; color: rgba(240, 244, 238, 0.9); max-width: 600px;
  line-height: 1.65; margin-bottom: 3rem;
}
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--gold));
  border-radius: 2px; margin-bottom: 1.5rem;
}

/* ───────────── CANCHAS ───────────── */
#canchas { background: var(--green-dark); }
.canchas-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
}
.cancha-card {
  background: linear-gradient(135deg, var(--green-primary), var(--green-deep));
  border: 1px solid var(--green-mid); border-radius: 12px;
  padding: 2.5rem 2rem; text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.cancha-card::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='28' stroke='rgba(255,255,255,0.04)' stroke-width='2' fill='none'/%3E%3Cline x1='30' y1='2' x2='30' y2='58' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") center/120px;
  opacity: 0.5;
}
.cancha-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.cancha-number {
  font-family: 'Oswald', sans-serif;
  font-size: 5rem; font-weight: 700; line-height: 1;
  color: var(--gold); margin-bottom: 0.2rem;
  text-shadow: 0 2px 12px rgba(244,194,13,0.35);
}
.cancha-card h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.5rem;
  font-weight: 700; text-transform: uppercase;
  color: var(--white); margin-bottom: 1rem;
}
.cancha-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.5; }
.features-row {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
}
.feature-item {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 0.8rem 1.4rem;
  font-size: 0.9rem; font-weight: 500; color: var(--white);
}
.feature-item .icon { font-size: 1.4rem; }

/* ───────────── GALLERY ───────────── */
#galeria { background: var(--green-deep); padding-top: 4rem; padding-bottom: 4rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 280px;
  gap: 0.75rem; border-radius: 12px; overflow: hidden;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item:first-child { grid-row: span 1; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ───────────── DONACION ───────────── */
#donacion {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-deep) 100%);
  position: relative; overflow: hidden; text-align: center;
  padding: 5rem 1.25rem;
}
#donacion::before {
  content: ''; position: absolute;
  width: 300px; height: 300px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.04)'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cpath d='M12 2 L12 22 M2 12 L22 12' stroke='rgba(255,255,255,0.04)' stroke-width='0.5'/%3E%3C/svg%3E") center/contain no-repeat;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; opacity: 0.5;
}
.donacion-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
#donacion .section-title { font-size: clamp(1.4rem, 3.5vw, 2.2rem); }
#donacion p {
  font-size: 1.1rem; color: var(--off-white); line-height: 1.7;
  margin-bottom: 2rem;
}
#donacion strong { color: var(--gold); }

/* ───────────── REGLAMENTO ───────────── */
#reglamento { background: var(--green-dark); }
.prohib-intro {
  font-size: 0.95rem; color: var(--gray); line-height: 1.6;
  max-width: 640px; margin-bottom: 2.5rem;
}
.prohib-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1rem;
}
.prohib-card {
  background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.3);
  border-left: 4px solid var(--red); border-radius: 8px;
  padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: background 0.2s;
}
.prohib-card:hover { background: rgba(192,57,43,0.18); }
.prohib-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; margin-top: 0.1rem;
}
.prohib-card h4 {
  font-family: 'Oswald', sans-serif; font-size: 0.95rem;
  font-weight: 700; text-transform: uppercase;
  color: var(--red-light); letter-spacing: 0.03em; margin-bottom: 0.3rem;
}
.prohib-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }

/* ───────────── NORMAS ───────────── */
#normas { background: var(--green-deep); }
.normas-cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
.normas-col h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--gold); margin-bottom: 1.2rem;
  padding-bottom: 0.6rem; border-bottom: 2px solid var(--green-mid);
}
.norma-item {
  display: flex; gap: 0.85rem; margin-bottom: 1.2rem; align-items: flex-start;
}
.norma-dot {
  width: 8px; height: 8px; background: var(--green-bright);
  border-radius: 50%; flex-shrink: 0; margin-top: 0.45rem;
}
.norma-item strong {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 0.2rem;
}
.norma-item p { font-size: 0.8rem; color: var(--gray); line-height: 1.55; }

/* ───────────── CONTACTO ───────────── */
#contacto {
  background: linear-gradient(180deg, var(--green-dark), var(--green-deep));
  text-align: center;
}
.contacto-inner { max-width: 640px; margin: 0 auto; }
.phone-display {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 700;
  color: var(--wa-green); letter-spacing: 0.06em;
  margin: 1.5rem 0; display: block; text-decoration: none;
}
.phone-display:hover { color: var(--green-bright); }
.contact-details {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center; margin: 2rem 0 2.5rem;
}
.contact-chip {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: var(--gray);
}
.contact-chip .icon { font-size: 1.1rem; }
.btn-wa-lg {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--wa-green);
  color: var(--white); text-decoration: none;
  font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 1rem 2.6rem; border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: background 0.2s, transform 0.15s;
}
.btn-wa-lg:hover { background: var(--wa-dark); transform: translateY(-2px); }
.btn-wa-lg svg { width: 24px; height: 24px; fill: currentColor; }

/* ───────────── FOOTER ───────────── */
footer {
  background: var(--green-deep);
  border-top: 2px solid var(--green-mid);
  padding: 3rem 1.25rem 1.5rem;
  text-align: center;
}
.footer-logos {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center; align-items: center;
  margin-bottom: 2rem;
}
.footer-logos img {
  height: 64px; width: 64px;
  object-fit: contain; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  padding: 4px;
  filter: brightness(1.05);
  transition: transform 0.2s;
}
.footer-logos img:hover { transform: scale(1.1); }
.footer-name {
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--white); margin-bottom: 0.3rem;
}
.footer-sub { font-size: 0.8rem; color: var(--gray); margin-bottom: 1.5rem; }
.footer-copy { font-size: 0.72rem; color: rgba(200,214,194,0.45); }

/* ───────────── YEARS BANNER ───────────── */
.years-banner {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(244,194,13,0.12); border: 1px solid rgba(244,194,13,0.3);
  border-radius: 20px; padding: 0.3rem 1rem;
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 0.8rem; display: block; width: fit-content; margin: 0 auto 1rem;
}

/* ───────────── RESPONSIVE ───────────── */
@media (max-width: 1024px) {
  .container { padding: 0 1rem; }
  section { padding: 4rem 1rem; }
}

@media (max-width: 968px) {
  .mobile-menu-toggle { display: flex; }
  
  .navbar { padding: 0.4rem 0; }
  .nav-inner { padding: 0 1rem; }
  
  .nav-links {
    position: fixed;
    top: 65px; left: 1rem; right: 1rem;
    background: linear-gradient(180deg, rgba(13, 43, 5, 0.98) 0%, rgba(22, 61, 8, 0.98) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(87, 194, 53, 0.2);
    border-radius: 20px;
    border: 2px solid rgba(87, 194, 53, 0.2);
    transform: translateY(-120%) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0.4rem;
  }
  
  .nav-links.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.5rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(87, 194, 53, 0.15);
    font-size: 0.95rem;
  }
  
  .nav-link:hover,
  .nav-link.active {
    background: linear-gradient(135deg, rgba(87, 194, 53, 0.2) 0%, rgba(244, 194, 13, 0.2) 100%);
    border-color: rgba(87, 194, 53, 0.3);
    box-shadow: 0 4px 15px rgba(87, 194, 53, 0.2);
  }
  
  .nav-link::after {
    bottom: 6px;
    width: 40%;
  }
  
  .nav-brand img { width: 45px; height: 45px; }
  .nav-brand span { font-size: 0.9rem; }
  .nav-brand small { font-size: 0.6rem; }
}

@media (max-width: 768px) {
  .navbar { padding: 0.5rem 1rem; }
  .nav-brand img { width: 38px; height: 38px; }
  .nav-brand span { font-size: 0.85rem; }
  .nav-brand small { font-size: 0.6rem; }
  
  .hero { min-height: 85vh; padding: 6rem 1rem 3rem; }
  .hero-tag-wrapper { padding: 0.4rem 1rem; margin-bottom: 1.2rem; }
  .hero-tag { font-size: 0.7rem; }
  .hero-tag-icon { width: 16px; height: 16px; }
  .hero-title { font-size: clamp(1.75rem, 8vw, 2.5rem); margin-bottom: 0.8rem; }
  .hero-highlight::after { height: 3px; bottom: -3px; }
  .hero-sub { font-size: clamp(0.95rem, 3.5vw, 1.1rem); margin-bottom: 1.5rem; }
  .hero-location-card { 
    flex-direction: column; gap: 0.8rem; 
    padding: 0.8rem 1.2rem; margin-bottom: 1.5rem;
  }
  .hero-location-card svg { width: 18px; height: 18px; }
  .hero-location-card > div { align-items: center; text-align: center; }
  .location-label { font-size: 0.65rem; }
  .location-text { font-size: 0.85rem; }
  .hero-badges { gap: 0.5rem; margin-bottom: 1.8rem; }
  .badge { font-size: 0.75rem; padding: 0.3rem 0.8rem; }
  .btn-wa { font-size: 0.95rem; padding: 0.75rem 1.6rem; }
  .hero-scroll { bottom: 1rem; font-size: 0.65rem; }
  
  section { padding: 3.5rem 1rem; }
  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .section-lead { font-size: 0.9rem; margin-bottom: 2rem; }
  
  .canchas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
  .cancha-card { padding: 2rem 1.5rem; }
  .cancha-number { font-size: 4rem; }
  .cancha-card h3 { font-size: 1.3rem; }
  .cancha-card p { font-size: 0.85rem; }
  .features-row { gap: 0.8rem; }
  .feature-item { padding: 0.7rem 1.1rem; font-size: 0.85rem; }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 200px 200px;
  }
  .gallery-item:first-child { grid-row: span 1; }
  
  #donacion { padding: 4rem 1rem; }
  #donacion .section-title { font-size: clamp(1.3rem, 4.5vw, 1.8rem); }
  #donacion p { font-size: 1rem; margin-bottom: 1.5rem; }
  .years-banner { font-size: 0.75rem; padding: 0.25rem 0.8rem; }
  
  .prohib-intro { font-size: 0.88rem; margin-bottom: 2rem; }
  .prohib-grid { gap: 0.8rem; }
  .prohib-card { padding: 1rem 1.2rem; }
  .prohib-icon { width: 38px; height: 38px; font-size: 1rem; }
  .prohib-card h4 { font-size: 0.88rem; }
  .prohib-card p { font-size: 0.78rem; }
  
  .normas-cols { gap: 2.5rem; }
  .normas-col h3 { font-size: 1.05rem; margin-bottom: 1rem; }
  .norma-item { margin-bottom: 1rem; gap: 0.7rem; }
  .norma-item strong { font-size: 0.8rem; }
  .norma-item p { font-size: 0.75rem; }
  
  .phone-display { font-size: clamp(1.8rem, 7vw, 2.8rem); margin: 1.2rem 0; }
  .contact-details { gap: 1rem; margin: 1.5rem 0 2rem; flex-direction: column; }
  .contact-chip { font-size: 0.85rem; }
  .btn-wa-lg { font-size: 1.05rem; padding: 0.85rem 2rem; }
  
  footer { padding: 2.5rem 1rem 1.2rem; }
  .footer-logos { gap: 1.2rem; margin-bottom: 1.5rem; }
  .footer-logos img { height: 56px; width: 56px; }
  .footer-name { font-size: 0.9rem; }
  .footer-sub { font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .navbar { padding: 0.45rem 0.8rem; }
  .nav-brand img { width: 34px; height: 34px; }
  .nav-brand span { font-size: 0.75rem; }
  .nav-brand small { font-size: 0.55rem; }
  
  .hero { min-height: 80vh; padding: 5.5rem 0.8rem 2.5rem; }
  .hero-tag-wrapper { padding: 0.35rem 0.9rem; margin-bottom: 1rem; }
  .hero-tag { font-size: 0.65rem; }
  .hero-tag-icon { width: 14px; height: 14px; }
  .hero-title { font-size: 1.6rem; line-height: 1.15; }
  .hero-highlight::after { height: 2px; bottom: -2px; }
  .hero-sub { font-size: 0.9rem; line-height: 1.4; margin-bottom: 1.2rem; }
  .hero-location-card { padding: 0.7rem 1rem; margin-bottom: 1.2rem; }
  .hero-location-card svg { width: 16px; height: 16px; }
  .location-label { font-size: 0.6rem; }
  .location-text { font-size: 0.8rem; }
  .hero-badges { gap: 0.4rem; margin-bottom: 1.5rem; }
  .badge { font-size: 0.7rem; padding: 0.25rem 0.7rem; }
  .badge svg { width: 14px; height: 14px; }
  .btn-wa { font-size: 0.85rem; padding: 0.7rem 1.4rem; }
  .btn-wa svg { width: 18px; height: 18px; }
  
  section { padding: 3rem 0.8rem; }
  .section-label { font-size: 0.7rem; }
  .section-title { font-size: 1.35rem; }
  .section-lead { font-size: 0.85rem; line-height: 1.6; }
  .divider { width: 50px; height: 3px; }
  
  .canchas-grid { grid-template-columns: 1fr; gap: 1rem; }
  .cancha-card { padding: 1.8rem 1.2rem; }
  .cancha-number { font-size: 3.5rem; }
  .cancha-card h3 { font-size: 1.2rem; }
  .cancha-card p { font-size: 0.8rem; }
  .features-row { gap: 0.6rem; }
  .feature-item { padding: 0.6rem 0.9rem; font-size: 0.8rem; }
  .feature-item .icon svg { width: 16px; height: 16px; }
  
  .gallery-grid { grid-template-rows: 200px 180px 180px; gap: 0.5rem; }
  
  #donacion { padding: 3rem 0.8rem; }
  #donacion::before { width: 200px; height: 200px; }
  #donacion .section-title { font-size: 1.25rem; }
  #donacion p { font-size: 0.95rem; line-height: 1.6; }
  .years-banner { font-size: 0.7rem; padding: 0.2rem 0.7rem; }
  
  .prohib-intro { font-size: 0.85rem; }
  .prohib-grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .prohib-card { padding: 0.9rem 1rem; gap: 0.8rem; }
  .prohib-icon { width: 34px; height: 34px; }
  .prohib-icon svg { width: 20px; height: 20px; }
  .prohib-card h4 { font-size: 0.82rem; }
  .prohib-card p { font-size: 0.75rem; }
  
  .normas-cols { grid-template-columns: 1fr; gap: 2rem; }
  .normas-col h3 { font-size: 1rem; }
  .norma-dot { width: 6px; height: 6px; margin-top: 0.4rem; }
  .norma-item strong { font-size: 0.75rem; }
  .norma-item p { font-size: 0.72rem; }
  
  .phone-display { font-size: 1.8rem; margin: 1rem 0; }
  .contact-details { margin: 1.2rem 0 1.8rem; }
  .contact-chip { font-size: 0.8rem; }
  .contact-chip .icon svg { width: 16px; height: 16px; }
  .btn-wa-lg { font-size: 0.95rem; padding: 0.75rem 1.8rem; }
  .btn-wa-lg svg { width: 20px; height: 20px; }
  
  footer { padding: 2rem 0.8rem 1rem; }
  .footer-logos { gap: 1rem; }
  .footer-logos img { height: 48px; width: 48px; }
  .footer-name { font-size: 0.85rem; }
  .footer-sub { font-size: 0.7rem; }
  .footer-copy { font-size: 0.68rem; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 1.4rem; }
  .cancha-number { font-size: 3rem; }
  .btn-wa { font-size: 0.8rem; padding: 0.65rem 1.2rem; }
  .section-title { font-size: 1.2rem; }
}
