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

:root {
  --navy: #12175a;
  --navy-mid: #1a1f6e;
  --navy-light: #1e2472;
  --navy-card: #222880;
  --navy-alt: #0e1348;
  --red: #cc0000;
  --red-bright: #e00000;
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.65);
  --white-dimmer: rgba(255, 255, 255, 0.35);
  --gold: #f0b429;
  --light-bg: #f4f6fb;
  --dark-text: #0f172a;
  --gray-text: #374151;
}

html {
  scroll-behavior: smooth;
}

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

/* ─── SCROLL PROGRESS BAR ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--red);
  z-index: 1002;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ─── NAVBAR ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-alt);
  border-bottom: 2px solid var(--red);
  padding: 0 2.5rem;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

nav.scrolled {
  background: rgba(14, 19, 72, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(204, 0, 0, 0.5);
}

.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-logo-swaap {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.nav-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

.nav-club-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.oyonesa-shield-nav {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-partner-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white-dimmer);
  text-transform: uppercase;
  line-height: 1.3;
}

.nav-partner-text span {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  padding: 0.3rem 0.6rem;
  flex-shrink: 0;
}

.lang-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  padding: 0.1rem 0.2rem;
  border-radius: 3px;
  transition: color 0.2s;
  cursor: pointer;
  border: none;
  background: none;
}

.lang-btn.active,
.lang-btn:hover { color: #fff; }

.lang-sep { color: rgba(255,255,255,0.2); font-size: 0.65rem; }

.nav-center a {
  text-decoration: none;
  color: var(--white-dim);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-center a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--red-bright);
}

/* ─── TICKER — red bg, professional ─── */
.ticker-wrap {
  overflow: hidden;
  background: var(--red);
  padding: 0.5rem 0;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.ticker-content {
  display: inline-block;
  animation: ticker 48s linear infinite;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.ticker-content .diamond {
  color: rgba(255, 255, 255, 0.45);
  margin: 0 1.4rem;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

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

/* ─── SECTION SYSTEM ─── */
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-title.dark {
  color: var(--dark-text);
}

.red-line {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 2rem;
}

/* ─── FADE-IN ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.fade-up-delay-4 {
  transition-delay: 0.4s;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg,
      rgba(10, 15, 61, 0.90) 0%,
      rgba(26, 31, 110, 0.74) 45%,
      rgba(14, 26, 90, 0.88) 100%),
    url('../media/CAMPO-COMPLETO.jpeg') center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-year {
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(200px, 32vw, 420px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  width: 100%;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 11vw, 9rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.93;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-title .line1 {
  color: var(--white);
  display: block;
}

.hero-title .pro {
  color: var(--red);
}

.hero-title .soccer {
  color: var(--white);
}

/* ─── BRIDGE BLOCK — clean professional ─── */
.hero-bridge-block {
  margin-bottom: 2rem;
}

.hero-bridge-bar {
  display: inline-flex;
  align-items: stretch;
  width: 520px;
  max-width: 100%;
  background: var(--white);
  border: 1px solid rgba(18, 23, 90, 0.15);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.bridge-side {
  flex: 1;
  padding: 0.9rem 2rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.bridge-side-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}

.bridge-side-sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-text);
}

.bridge-center {
  background: transparent;
  padding: 0 1.5rem;
  border-left: 1px solid rgba(18, 23, 90, 0.12);
  border-right: 1px solid rgba(18, 23, 90, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}

.bridge-center-icon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.bridge-center-label {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

.hero-desc {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.08rem;
  color: var(--white-dim);
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stat {
  padding: 1.5rem 2.75rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dimmer);
  display: block;
  margin-top: 0.35rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ─── ICON BOX ─── */
.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: rgba(204, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── SERIOUS — light ─── */
#serious {
  background: var(--light-bg);
  padding: 7rem 2rem;
}

.serious-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.serious-text p {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.serious-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid #e2e5f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.stat-card .stat-number {
  font-size: 2.4rem;
  color: var(--navy);
}

.stat-card .stat-label {
  color: #6b7280;
}

/* ─── OYONESA — dark slate ─── */
#oyonesa {
  background: linear-gradient(180deg, #1c2a4a 0%, #12175a 100%);
  padding: 7rem 2rem;
}

.oyonesa-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.oyonesa-logo-block {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.oyonesa-shield-display {
  height: 84px;
  width: auto;
  object-fit: contain;
}

.oyonesa-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.oyonesa-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white-dimmer);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.oyonesa-quote {
  border-left: 3px solid var(--red);
  padding-left: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--white-dim);
}

.oyonesa-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.oyonesa-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 1.35rem;
  background: rgba(255, 255, 255, 0.03);
}

.oyonesa-row:nth-child(even) {
  border-right: none;
  background: rgba(255, 255, 255, 0.015);
}

.oyonesa-row:nth-last-child(-n+2) {
  border-bottom: none;
}

.oyonesa-row-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3rem;
}

.oyonesa-row-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

/* ─── DISCIPLINES — navy, NO icons ─── */
#disciplines {
  background: var(--navy-mid);
  padding: 7rem 2rem;
}

.disciplines-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.disciplines-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.disc-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--red);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.disc-card:hover {
  border-color: rgba(204, 0, 0, 0.6);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.disc-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.disc-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.disc-desc {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.disc-location {
  font-size: 0.7rem;
  color: var(--white-dimmer);
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.disc-location svg {
  width: 13px;
  height: 13px;
  stroke: var(--white-dimmer);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ─── REACH ─── */
#reach {
  background: linear-gradient(160deg, #0e1348 0%, #1a1f6e 100%);
  padding: 7rem 2rem;
}

.reach-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.reach-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.reach-cols p {
  color: var(--white-dim);
  line-height: 1.8;
  font-size: 0.95rem;
}

.reach-cols p strong {
  color: var(--white);
}

.reach-pyramid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.reach-level {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  transition: background 0.2s, transform 0.2s;
  cursor: default;
}

.reach-level:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.reach-level-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(204, 0, 0, 0.35);
  line-height: 1;
  min-width: 2.5rem;
  text-align: center;
  flex-shrink: 0;
}

.reach-level-body {
  flex: 1;
}

.reach-level-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}

.reach-level-tier {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.15rem;
  margin-bottom: 0.3rem;
}

.reach-level-desc {
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.5;
}

.reach-level-badge {
  flex-shrink: 0;
  background: rgba(204, 0, 0, 0.12);
  border: 1px solid rgba(204, 0, 0, 0.25);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}

.reach-highlight-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.reach-highlight {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
}

.reach-highlight-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.reach-highlight p {
  font-size: 0.85rem;
  color: var(--white-dim);
}

/* ─── CONVENTION — white ─── */
#convention {
  background: white;
  padding: 7rem 2rem;
  overflow: hidden;
}

.convention-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.convention-text p {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.convention-box {
  background: var(--navy-alt);
  border-radius: 12px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.convention-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 0, 0, 0.18) 0%, transparent 70%);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

.convention-box-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.athletic-shield-anim {
  height: 80px;
  width: auto;
  object-fit: contain;
  animation: shieldFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(204, 0, 0, 0.4));
}

@keyframes shieldFloat {

  0%,
  100% {
    transform: translateY(0px);
    filter: drop-shadow(0 0 16px rgba(204, 0, 0, 0.4));
  }

  50% {
    transform: translateY(-6px);
    filter: drop-shadow(0 8px 24px rgba(204, 0, 0, 0.6));
  }
}

.convention-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.convention-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.convention-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: blinkDot 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes blinkDot {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }
}

.convention-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1.5rem 0;
}

.conv-counter {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.conv-counter-item {
  text-align: center;
}

.conv-counter-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
}

.conv-counter-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dimmer);
  margin-top: 0.2rem;
}

.convention-bullets {
  list-style: none;
}

.convention-bullets li {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.5;
  padding: 0.55rem 0 0.55rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: color 0.2s;
}

.convention-bullets li:last-child {
  border-bottom: none;
}

.convention-bullets li::before {
  content: '→';
  color: var(--red);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.convention-bullets li:hover {
  color: var(--white);
}

/* ─── PROGRAMS ─── */
#programs {
  background: linear-gradient(180deg, #111a52 0%, #1a1f6e 100%);
  padding: 7rem 2rem;
}

.programs-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.programs-intro {
  color: var(--white-dim);
  line-height: 1.75;
  max-width: 680px;
  font-size: 0.95rem;
}

.programs-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.prog-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.prog-card:hover {
  border-color: rgba(204, 0, 0, 0.4);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
}

.prog-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 3px;
  margin-bottom: 0.65rem;
}

.prog-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.prog-quote {
  font-size: 0.82rem;
  color: var(--white-dimmer);
  font-style: italic;
  margin-bottom: 0.65rem;
  line-height: 1.5;
}

.prog-response {
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.55;
}

.prog-response .swaap-label {
  color: var(--gold);
  font-weight: 800;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: normal;
}

/* ─── SPORTS DEPT ─── */
#sports-dept {
  background: var(--navy-mid);
  padding: 7rem 2rem;
}

.sports-dept-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--red);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(204, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.service-desc {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.65;
}

/* ─── CONTACT — white ─── */
#contact {
  background: white;
  padding: 7rem 2rem;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-title {
  color: var(--dark-text);
}

.contact-info p {
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-detail {
  font-size: 0.88rem;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-detail svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: white;
  border-radius: 14px;
  padding: 2.75rem;
  border: 1px solid #e2e5f0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
}

.form-input,
.form-select,
.form-textarea {
  background: #f8f9fc;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: var(--dark-text);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #adb5bd;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-color: #f8f9fc;
  padding-right: 2.5rem;
}

.form-select option {
  background: white;
  color: var(--dark-text);
}

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

.form-submit-btn {
  background: var(--red);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
}

.form-submit-btn:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
}

/* ─── FOOTER ─── */
footer {
  background: #080d38;
  padding: 2.75rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-swaap-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-oyonesa-shield {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
}

.footer-links a {
  color: var(--white-dimmer);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.72rem;
  color: var(--white-dimmer);
}

/* ─── HAMBURGER & MOBILE MENU ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  background: var(--navy-alt);
  border-bottom: 3px solid var(--red);
  display: flex;
  flex-direction: column;
  padding: 0.5rem 2rem 1.5rem;
  transform: translateY(-110%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-link {
  text-decoration: none;
  color: var(--white-dim);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-link:last-of-type {
  border-bottom: none;
}

.mobile-link:hover {
  color: var(--white);
  padding-left: 6px;
}

.mobile-link-cta {
  background: var(--red);
  color: var(--white) !important;
  text-align: center;
  padding: 0.9rem 1rem;
  border-radius: 4px;
  margin-top: 0.75rem;
  border-bottom: none;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  transition: background 0.2s !important;
}

.mobile-link-cta:hover {
  background: var(--red-bright) !important;
  padding-left: 0 !important;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
  backdrop-filter: blur(2px);
}

.mobile-overlay.open {
  display: block;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {

  .serious-inner,
  .oyonesa-inner,
  .convention-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

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

  .reach-cols {
    grid-template-columns: 1fr;
  }

  .reach-highlight-cards {
    grid-template-columns: 1fr;
  }

  .nav-center {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    min-width: 140px;
  }

  #serious,
  #oyonesa,
  #disciplines,
  #reach,
  #convention,
  #programs,
  #sports-dept,
  #contact {
    padding: 4.5rem 1.5rem;
  }

  /* Navbar compacta en tablet */
  nav {
    padding: 0 1.5rem;
    height: 72px;
  }

  .mobile-menu {
    top: 72px;
  }

  #hero {
    padding: 5.5rem 1.5rem 4rem;
  }
}

@media (max-width: 600px) {

  .disciplines-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .oyonesa-table {
    grid-template-columns: 1fr;
  }

  .oyonesa-row {
    border-right: none;
  }

  .serious-stats {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-stats {
    border: none;
    gap: 0.5rem;
    flex-direction: column;
  }

  .hero-stat {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 100%;
  }

  /* Bridge bar compacto */
  .bridge-side {
    padding: 0.65rem 0.9rem;
  }

  .bridge-side-label {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
  }

  .bridge-side-sub {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .bridge-center {
    padding: 0 0.9rem;
  }

  #serious,
  #oyonesa,
  #disciplines,
  #reach,
  #convention,
  #programs,
  #sports-dept,
  #contact {
    padding: 3.5rem 1.25rem;
  }

  /* Navbar móvil: ocultar texto partner, ajustar tamaños */
  nav {
    padding: 0 1.25rem;
    height: 66px;
  }

  .mobile-menu {
    top: 66px;
  }

  .nav-partner-text {
    display: none;
  }

  .nav-divider {
    display: none;
  }

  .nav-logo-swaap {
    height: 46px;
  }

  .oyonesa-shield-nav {
    height: 48px;
  }

  #hero {
    padding: 5rem 1.25rem 3.5rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  /* Convention box compacto en móvil */
  .convention-box {
    padding: 1.5rem 1.25rem;
  }

  .convention-box-header {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .athletic-shield-anim {
    height: 60px;
  }

  .convention-year {
    font-size: 2.6rem;
  }

  .convention-tag {
    white-space: normal;
  }

  .conv-counter {
    gap: 0.75rem;
  }

  .conv-counter-num {
    font-size: 1.6rem;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(2rem, 10.5vw, 9rem);
  }

  .hero-stat {
    padding: 1rem 1.5rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-content {
    animation-duration: 0.01ms;
  }

  .athletic-shield-anim {
    animation: none;
  }

  .convention-box::before,
  .convention-dot {
    animation: none;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}