:root {
  --bg: #0a0a0a;
  --panel: #111111;
  --panel-soft: #171717;
  --text: #ffffff;
  --muted: #b6b6b6;
  --border: rgba(255,255,255,0.08);
  --green: #22c55e;
  --blue: #3b82f6;
  --orange: #f97316;
  --max: 1240px;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, rgba(34,197,94,.14), transparent 28%), #050505;
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* =========================
   HEADER / NAVBAR
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(5,5,5,.78);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand-wrap {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-sub {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: rgba(255,255,255,.82);
}

.nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.desktop-cta {
  display: inline-flex;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(5,5,5,.96);
  padding: 16px;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu a {
  color: #fff;
  font-weight: 600;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-cta {
  margin-top: 8px;
  width: 100%;
}

/* =========================
   BOTONES
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: #07140a;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,.08);
}

/* =========================
   HERO
========================= */

.hero {
  padding: 78px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.accent {
  color: var(--green);
}

.lead {
  max-width: 780px;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* =========================
   TARJETAS / BLOQUES
========================= */

.card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.features-card {
  padding: 26px;
}

.section-label {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--green);
}

.section-title {
  margin: 12px 0 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  text-transform: uppercase;
}

.features-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.84);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}

.logos {
  margin-top: 28px;
  padding: 24px;
}

.logo-grid,
.stats-grid,
.cards-grid,
.news-grid,
.teams-grid {
  display: grid;
  gap: 18px;
}

.logo-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}

.logo-box,
.stat-box,
.competition-box,
.news-box,
.team-box,
.info-box,
.contact-box,
.gallery-box {
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.logo-box {
  padding: 18px;
  background: rgba(0,0,0,.22);
  text-align: center;
}

.logo-mark {
  height: 84px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.logo-main {
  background: #fff;
  color: #111;
}

.logo-premier {
  background: rgba(34,197,94,.14);
  color: #86efac;
  border: 1px solid rgba(34,197,94,.26);
}

.logo-ascenso {
  background: rgba(59,130,246,.14);
  color: #93c5fd;
  border: 1px solid rgba(59,130,246,.26);
}

.logo-copa {
  background: rgba(249,115,22,.14);
  color: #fdba74;
  border: 1px solid rgba(249,115,22,.26);
}

.micro {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(255,255,255,.48);
  font-weight: 800;
}

.mini-title {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.stat-box {
  padding: 22px;
  background: rgba(255,255,255,.04);
}

.stat-value {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: .23em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 800;
}

section.page-section {
  padding: 88px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-text {
  max-width: 620px;
  color: rgba(255,255,255,.68);
  line-height: 1.8;
  font-size: 17px;
}

.cards-grid,
.news-grid,
.teams-grid {
  grid-template-columns: repeat(3, 1fr);
}

.competition-box,
.news-box,
.team-box,
.gallery-box,
.contact-box,
.info-box {
  background: rgba(255,255,255,.04);
  padding: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: #fff;
}

.pill-green {
  background: linear-gradient(90deg, #16a34a, #166534);
}

.pill-blue {
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.pill-orange {
  background: linear-gradient(90deg, #f97316, #b45309);
}

.box-title {
  margin: 18px 0 10px;
  font-size: 30px;
  line-height: 1.05;
  text-transform: uppercase;
}

.box-text {
  color: rgba(255,255,255,.68);
  line-height: 1.85;
  font-size: 16px;
}

.subpanel {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  background: rgba(0,0,0,.22);
}

.subpanel-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(255,255,255,.46);
  font-weight: 800;
}

.subpanel-value {
  margin-top: 10px;
  font-weight: 700;
  font-size: 18px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 24px;
}

.schedule-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.schedule-item {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.22);
}

.schedule-tag {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(255,255,255,.46);
}

.schedule-match {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 800;
}

.schedule-meta {
  margin-top: 8px;
  color: rgba(255,255,255,.62);
}

.news-thumb,
.gallery-thumb {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(255,255,255,.16);
  margin-bottom: 18px;
}

.team-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #16a34a, #166534);
  margin-bottom: 18px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 24px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-box {
  background: rgba(255,255,255,.04);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.26);
  color: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 15px;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,.32);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 26px 0 42px;
  color: rgba(255,255,255,.52);
  font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .logo-grid,
  .stats-grid,
  .cards-grid,
  .news-grid,
  .teams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .nav {
    display: none;
  }

  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    width: 100%;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-link {
    gap: 10px;
  }

  .brand-sub {
    font-size: 9px;
  }

  .brand-title {
    font-size: 22px;
  }

  .logo-grid,
  .stats-grid,
  .cards-grid,
  .news-grid,
  .teams-grid,
  .two-col,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-text {
    margin-top: 16px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: clamp(34px, 9vw, 52px);
  }

  .lead {
    font-size: 17px;
  }
}
.tabla-liga {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.tabla-liga thead th {
  text-align: center;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}

.tabla-liga tbody td {
  text-align: center;
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  vertical-align: middle;
}

.tabla-liga tbody tr:hover {
  background: rgba(255,255,255,.03);
}

.tabla-liga tbody td:nth-child(2) {
  text-align: left;
  min-width: 240px;
}

.tabla-equipo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.tabla-equipo-link:hover {
  color: var(--green);
}

.tabla-escudo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quick-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.03));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34,197,94,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
}

.quick-visual {
  min-height: 110px;
  border-radius: 18px;
  margin-bottom: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, rgba(34,197,94,.10), rgba(255,255,255,.02));
}

.quick-title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
}

.quick-text {
  margin: 0;
  color: rgba(255,255,255,.70);
  line-height: 1.8;
  font-size: 16px;
}

.quick-btn {
  margin-top: 22px;
}

.mini-bars {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mini-bars span {
  width: 20px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
}

.mini-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-table div {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}

.mini-pill,
.score-chip,
.top-scorer,
.mini-copa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mini-pill {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.score-chip {
  background: rgba(34,197,94,.18);
  color: #86efac;
}

.top-scorer {
  background: rgba(59,130,246,.18);
  color: #93c5fd;
}

.mini-copa {
  background: rgba(249,115,22,.18);
  color: #fdba74;
}

.mini-lines {
  display: grid;
  gap: 10px;
}

.mini-lines span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}

.quick-visual-table {
  background: linear-gradient(135deg, rgba(34,197,94,.12), rgba(255,255,255,.02));
}

.quick-visual-programacion {
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(34,197,94,.03));
}

.quick-visual-resultados {
  background: linear-gradient(135deg, rgba(34,197,94,.10), rgba(255,255,255,.03));
}

.quick-visual-goleadores {
  background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(255,255,255,.03));
}

.quick-visual-copa {
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(255,255,255,.03));
}

@media (max-width: 1100px) {
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .quick-title {
    font-size: 20px;
  }
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quick-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.03));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34,197,94,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
}

.quick-visual {
  min-height: 110px;
  border-radius: 18px;
  margin-bottom: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, rgba(34,197,94,.10), rgba(255,255,255,.02));
}

.quick-title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
}

.quick-text {
  margin: 0;
  color: rgba(255,255,255,.70);
  line-height: 1.8;
  font-size: 16px;
}

.quick-btn {
  margin-top: 22px;
}

.mini-bars {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mini-bars span {
  width: 20px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
}

.mini-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-table div {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}

.mini-pill,
.score-chip,
.top-scorer,
.mini-copa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mini-pill {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.score-chip {
  background: rgba(34,197,94,.18);
  color: #86efac;
}

.top-scorer {
  background: rgba(59,130,246,.18);
  color: #93c5fd;
}

.mini-copa {
  background: rgba(249,115,22,.18);
  color: #fdba74;
}

.mini-lines {
  display: grid;
  gap: 10px;
}

.mini-lines span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}

.quick-visual-table {
  background: linear-gradient(135deg, rgba(34,197,94,.12), rgba(255,255,255,.02));
}

.quick-visual-programacion {
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(34,197,94,.03));
}

.quick-visual-resultados {
  background: linear-gradient(135deg, rgba(34,197,94,.10), rgba(255,255,255,.03));
}

.quick-visual-goleadores {
  background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(255,255,255,.03));
}

.quick-visual-copa {
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(255,255,255,.03));
}

@media (max-width: 1100px) {
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .quick-title {
    font-size: 20px;
  }
}

