/* ══════════════════════════════════════════
   PAULINOS FC · Stylesheet
   Paleta: Navy #1B2D4F · Gold #C8A951 · White #FFF
   ══════════════════════════════════════════ */

:root {
  --navy:       #1B2D4F;
  --navy-dark:  #0F1E35;
  --navy-mid:   #243A62;
  --gold:       #C8A951;
  --gold-light: #E2C572;
  --gold-dark:  #A8893A;
  --white:      #FFFFFF;
  --off-white:  #F8F9FC;
  --gray-light: #EEF0F5;
  --gray:       #CBD5E0;
  --text:       #2D3748;
  --text-light: #718096;
  --win:        #2F855A;
  --win-bg:     #F0FFF4;
  --draw:       #744210;
  --draw-bg:    #FFFFF0;
  --loss:       #9B2C2C;
  --loss-bg:    #FFF5F5;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-md:  0 8px 40px rgba(0,0,0,.15);
}

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

html { scroll-behavior: smooth; }

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

/* ── TYPOGRAPHY ──────────────────────────── */
h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; letter-spacing: .04em; }
code { font-family: monospace; background: rgba(255,255,255,.15); padding: 2px 6px; border-radius: 4px; font-size: .85em; }

/* ── LAYOUT HELPERS ──────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section { padding: 90px 0; }
.section-dark { background: var(--navy-dark); }

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.section-title.light { color: var(--white); }

.section-sub { color: var(--text-light); font-size: .95rem; margin-bottom: 44px; }
.section-sub.light { color: var(--gray); }

/* ── NAVBAR ──────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 2px solid var(--gold);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.35); }

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

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.nav-logo img { height: 44px; width: 44px; object-fit: contain; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-social { display: flex; align-items: center; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--navy-dark); flex-direction: column;
    padding: 20px; gap: 16px; border-bottom: 2px solid var(--gold);
  }
  .nav-links.open { display: flex; }
}

/* ── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, #243A6A 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A951' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content { position: relative; z-index: 1; padding: 100px 24px 60px; }

.hero-logo {
  width: 130px; height: 130px; object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(200,169,81,.35));
  margin-bottom: 28px;
  animation: fadeUp .8s ease both;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700; color: var(--white);
  line-height: 1; letter-spacing: .12em;
  animation: fadeUp .8s .1s ease both;
}
.hero-title span { color: var(--gold); font-size: 55%; letter-spacing: .18em; }

.hero-sub {
  color: var(--gray); font-size: 1rem; letter-spacing: .2em;
  text-transform: uppercase; margin-top: 14px;
  animation: fadeUp .8s .2s ease both;
}

.hero-divider {
  width: 60px; height: 3px; background: var(--gold);
  margin: 32px auto;
  animation: fadeUp .8s .3s ease both;
}

.hero-teams {
  display: flex; align-items: center; justify-content: center; gap: 48px;
  animation: fadeUp .8s .4s ease both;
}
.hero-sep { width: 1px; height: 60px; background: rgba(200,169,81,.3); }
.hero-team-badge { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.badge-label {
  font-family: 'Oswald', sans-serif; font-size: .7rem;
  color: var(--gold); letter-spacing: .18em; text-transform: uppercase;
}
.badge-val {
  font-family: 'Oswald', sans-serif; font-size: 2.4rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.badge-desc { font-size: .75rem; color: var(--text-light); }

.hero-scroll-cta {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold); opacity: .6; animation: bounce 2s infinite;
}
.hero-scroll-cta:hover { opacity: 1; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── NEXT MATCH BAR ─────────────────────── */
.next-match-bar {
  background: var(--gold);
  padding: 14px 24px;
  display: flex; align-items: stretch; justify-content: center; gap: 0;
  flex-wrap: wrap;
}
.next-match-block {
  display: flex; align-items: center; gap: 12px;
  padding: 6px 28px; flex-wrap: wrap; justify-content: center;
}
.next-match-block:not(:last-child) {
  border-right: 2px solid rgba(27,45,79,.25);
}
.next-label {
  font-family: 'Oswald', sans-serif;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .18em;
  background: var(--navy-dark); color: var(--gold);
  padding: 3px 10px; border-radius: 3px;
  white-space: nowrap;
}
.next-info { font-size: .92rem; font-weight: 600; color: var(--navy-dark); }
.next-empty { font-size: .85rem; font-weight: 500; color: var(--navy-dark); opacity: .65; font-style: italic; }

/* ── RESULTS ─────────────────────────────── */
.results-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (max-width: 768px) { .results-grid { grid-template-columns: 1fr; } }

.results-col {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  border: 1px solid var(--gray-light);
}

.col-header {
  background: var(--navy); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.col-badge {
  font-family: 'Oswald', sans-serif; font-size: .7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 4px; letter-spacing: .1em;
}
.col-badge.regional { background: var(--gold); color: var(--navy-dark); }
.col-badge.juvenil  { background: var(--navy-mid); color: var(--white); border: 1px solid var(--gold); }
.col-comp { font-size: .8rem; color: var(--gray); }

.results-list { padding: 8px 0; }

.result-row {
  display: grid; grid-template-columns: 60px 1fr auto 1fr 60px;
  align-items: center; padding: 12px 20px; gap: 8px;
  border-bottom: 1px solid var(--gray-light); transition: background .15s;
}
.result-row:last-child { border-bottom: none; }
.result-row:hover { background: var(--off-white); }

.result-date { font-size: .72rem; color: var(--text-light); text-align: center; line-height: 1.3; }
.result-home { font-size: .85rem; font-weight: 600; text-align: right; }
.result-away { font-size: .85rem; font-weight: 600; text-align: left; }
.result-home.is-paulinos,
.result-away.is-paulinos { color: var(--navy); }

.result-score {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600;
  padding: 6px 14px; border-radius: 6px; white-space: nowrap;
  min-width: 70px; text-align: center;
}
.result-score.win  { background: var(--win-bg);  color: var(--win); }
.result-score.draw { background: var(--draw-bg); color: var(--draw); }
.result-score.loss { background: var(--loss-bg); color: var(--loss); }

.result-badge {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  padding: 2px 6px; border-radius: 3px; text-align: center;
}
.result-badge.win  { background: var(--win);  color: #fff; }
.result-badge.draw { background: var(--draw); color: #fff; }
.result-badge.loss { background: var(--loss); color: #fff; }

.venue-tag { font-size: .65rem; color: var(--text-light); letter-spacing: .06em; }

/* ── STANDINGS ───────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }

.standings-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); font-size: .9rem;
}
.standings-table th {
  background: var(--navy); color: var(--gold);
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: .8rem; letter-spacing: .1em; padding: 14px 12px;
  text-align: center; white-space: nowrap;
}
.standings-table th.team-col { text-align: left; padding-left: 20px; }
.standings-table td { padding: 12px 12px; text-align: center; border-bottom: 1px solid var(--gray-light); }
.standings-table td.team-col { text-align: left; padding-left: 20px; font-weight: 500; }
.standings-table tr:last-child td { border-bottom: none; }
.standings-table tr:hover td { background: var(--off-white); }

.standings-table tr.paulinos-row td {
  background: rgba(200,169,81,.18);
  font-weight: 700; color: var(--navy);
  border-top: 2px solid rgba(200,169,81,.5);
  border-bottom: 2px solid rgba(200,169,81,.5);
}
.standings-table tr.paulinos-row td.team-col { color: var(--navy); }
.standings-table tr.paulinos-row:hover td { background: rgba(200,169,81,.26); }

.pos-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: .85rem;
}
.pos-1 { background: #FFD700; color: #5a4000; }
.pos-2 { background: #C0C0C0; color: #3a3a3a; }
.pos-3 { background: #CD7F32; color: #fff; }

.table-note { margin-top: 14px; font-size: .78rem; color: var(--text-light); text-align: right; }

/* ── HISTORICAL ──────────────────────────── */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 16px;
  background: var(--off-white); padding: 20px;
  border-radius: var(--radius); border: 1px solid var(--gray-light);
  margin-bottom: 28px;
}
.filter-group { display: flex; flex-direction: column; gap: 6px; min-width: 140px; flex: 1; }
.filter-group label { font-size: .75rem; font-weight: 600; color: var(--text-light); letter-spacing: .08em; text-transform: uppercase; }
.filter-group select {
  padding: 9px 12px; border: 1.5px solid var(--gray);
  border-radius: 6px; font-size: .9rem; background: var(--white);
  color: var(--text); cursor: pointer; outline: none;
  transition: border-color .2s;
}
.filter-group select:focus { border-color: var(--navy); }

.history-stats {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px;
}
.stat-pill {
  padding: 7px 16px; border-radius: 20px;
  font-size: .82rem; font-weight: 600;
}
.stat-total   { background: var(--gray-light); color: var(--navy); }
.stat-win     { background: var(--win-bg);  color: var(--win); }
.stat-draw    { background: var(--draw-bg); color: var(--draw); }
.stat-loss    { background: var(--loss-bg); color: var(--loss); }
.stat-pending { background: var(--gray-light); color: var(--text-light); }

.history-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); font-size: .88rem;
}
.history-table th {
  background: var(--navy); color: var(--gold);
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: .78rem; letter-spacing: .1em; padding: 12px 16px;
  text-align: center; white-space: nowrap;
}
.history-table td { padding: 11px 16px; text-align: center; border-bottom: 1px solid var(--gray-light); }
.history-table td.team-name { font-weight: 600; }
.history-table tr:last-child td { border-bottom: none; }
.history-table tr:hover td { background: var(--off-white); }

.h-score {
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700;
  padding: 5px 14px; border-radius: 6px; display: inline-block;
}
.h-score.win     { background: var(--win-bg);  color: var(--win); }
.h-score.draw    { background: var(--draw-bg); color: var(--draw); }
.h-score.loss    { background: var(--loss-bg); color: var(--loss); }
.h-score.pending { background: var(--gray-light); color: var(--text-light); font-size: .78rem; font-family: 'Inter', sans-serif; }

.venue-icon { font-size: .7rem; color: var(--text-light); margin-left: 4px; }

/* ── STANDINGS CONTROLS ──────────────────── */
.standings-controls {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 0;
}
.season-selector-wrap {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 2px;
}
.season-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  color: rgba(255,255,255,.55); text-transform: uppercase;
}
.season-select {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: .9rem; font-weight: 500;
  padding: 7px 32px 7px 12px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.season-select option { background: var(--navy-dark); color: var(--white); }
.season-select:focus { outline: none; border-color: var(--gold); }

/* ── TAB BAR ─────────────────────────────── */
.tab-bar {
  display: flex; gap: 0;
  border-bottom: 2px solid rgba(255,255,255,.12);
  margin-bottom: 28px;
}
.tab-btn {
  padding: 10px 28px;
  border: none; border-bottom: 3px solid transparent; margin-bottom: -2px;
  background: none; cursor: pointer;
  font-family: 'Oswald', sans-serif; font-size: .85rem; font-weight: 600;
  color: var(--gray); letter-spacing: .1em; text-transform: uppercase;
  transition: color .2s, border-color .2s;
}
.tab-btn:hover { color: var(--gold-light); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── PRÓXIMAMENTE ────────────────────────── */
.coming-soon-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 768px) { .coming-soon-grid { grid-template-columns: 1fr; } }

.coming-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(200,169,81,.2);
  border-radius: var(--radius); padding: 32px 24px;
  text-align: center;
  transition: border-color .2s, background .2s;
}
.coming-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(200,169,81,.4);
}
.coming-icon { font-size: 2.4rem; margin-bottom: 16px; }
.coming-card h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600;
  color: var(--white); letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 10px;
}
.coming-card p { font-size: .87rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.coming-tag {
  display: inline-block; padding: 4px 14px;
  background: rgba(200,169,81,.12); border: 1px solid rgba(200,169,81,.3);
  color: var(--gold-light); font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; border-radius: 20px;
}

.next-jornada {
  display: inline-block; padding: 2px 7px;
  background: rgba(0,0,0,.25); color: rgba(255,255,255,.6);
  font-family: 'Oswald', sans-serif; font-size: .68rem; font-weight: 600;
  letter-spacing: .08em; border-radius: 3px; margin-right: 6px;
}
.next-team { font-weight: 600; }
.next-team.is-paulinos { color: var(--navy-dark); font-weight: 800; }

/* ── NEXT TEAM TAG ───────────────────────── */
.next-team-tag {
  display: inline-block; padding: 2px 8px;
  background: var(--navy-dark); color: var(--gold);
  font-family: 'Oswald', sans-serif; font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; border-radius: 3px; text-transform: uppercase;
  margin-right: 6px;
}

/* ── FILTER RESET BUTTON ─────────────────── */
.btn-reset {
  padding: 9px 16px;
  border: 1.5px solid var(--gray); border-radius: 6px;
  background: none; color: var(--text-light);
  font-size: .85rem; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.btn-reset:hover { border-color: var(--navy); color: var(--navy); }

.btn-more {
  padding: 10px 28px;
  border: 2px solid var(--navy); border-radius: 6px;
  background: none; color: var(--navy);
  font-size: .88rem; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: background .2s, color .2s;
}
.btn-more:hover { background: var(--navy); color: var(--white); }

/* ── NO DATA ─────────────────────────────── */
.no-data {
  padding: 48px 24px; text-align: center;
  color: var(--text-light); display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.no-data svg { opacity: .4; }
.no-data p { font-size: .95rem; }
.no-data small { font-size: .8rem; opacity: .7; }
.no-data-dark { color: var(--gray); }
.no-data-dark svg { color: var(--gold); opacity: .5; }

.btn-fed {
  display: inline-block; margin-top: 12px;
  padding: 10px 22px; background: var(--gold); color: var(--navy-dark);
  font-weight: 700; font-size: .85rem; letter-spacing: .06em;
  text-decoration: none; border-radius: 6px; transition: background .2s;
}
.btn-fed:hover { background: var(--gold-light); }

/* ── FOOTER ─────────────────────────────── */
.footer {
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-logo { height: 64px; width: 64px; object-fit: contain; }
.footer-name {
  font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 700;
  color: var(--white); letter-spacing: .12em;
}
.footer-city { font-size: .82rem; color: var(--text-light); }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 {
  font-family: 'Oswald', sans-serif; font-size: .8rem;
  color: var(--gold); letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-links a {
  color: var(--gray); text-decoration: none; font-size: .87rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .78rem; color: var(--text-light); }
.footer-update { font-size: .75rem !important; color: rgba(200,169,81,.6) !important; }

/* ══════════════════════════════════════════
   PATROCINADORES
   ══════════════════════════════════════════ */
.sponsors-section {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}
.sponsors-label {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(200,169,81,.45);
  margin-bottom: 36px;
}
.sponsors-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 56px;
}
.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .55;
  transition: opacity .25s, transform .25s, filter .25s;
  filter: grayscale(30%);
}
.sponsor-item:hover {
  opacity: 1;
  transform: scale(1.08);
  filter: grayscale(0%);
}
.sponsor-item img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
   ══════════════════════════════════════════ */

/* ── Tablet (≤900px) ──────────────────────── */
@media (max-width: 900px) {
  .coming-soon-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile general (≤768px) ─────────────── */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .hero-content { padding: 90px 16px 50px; }
  .next-match-bar { flex-direction: column; gap: 0; }
  .next-match-block { border-right: none !important; border-bottom: 1px solid rgba(27,45,79,.2); width: 100%; }
  .next-match-block:last-child { border-bottom: none; }
  .next-info { font-size: .88rem; }
  .tab-btn { padding: 10px 18px; font-size: .78rem; }
  .standings-controls { flex-direction: column; align-items: flex-start; }
  .season-select { width: 100%; }
  .table-note { text-align: center; }
  .history-stats { gap: 8px; }
  .stat-pill { padding: 6px 12px; font-size: .78rem; }
}

/* ── Standings table móvil ────────────────── */
@media (max-width: 700px) {
  .standings-table th,
  .standings-table td { padding: 10px 6px; font-size: .8rem; }
  .standings-table th.team-col,
  .standings-table td.team-col { padding-left: 10px; min-width: 120px; }
  /* Ocultar DG en pantallas pequeñas */
  .standings-table th:nth-child(9),
  .standings-table td:nth-child(9) { display: none; }
}

/* ── History table móvil ──────────────────── */
@media (max-width: 680px) {
  .history-table th,
  .history-table td { padding: 9px 8px; font-size: .82rem; }
  /* Ocultar columna Competición */
  .history-table th:nth-child(6),
  .history-table td:nth-child(6) { display: none; }
}

@media (max-width: 480px) {
  .history-table th,
  .history-table td { padding: 8px 5px; font-size: .76rem; }
  .h-score { padding: 4px 10px; font-size: .9rem; }
}

/* ── Filter bar móvil ─────────────────────── */
@media (max-width: 640px) {
  .filter-bar { padding: 14px; gap: 10px; }
  .filter-group { min-width: calc(50% - 5px); flex: 0 0 calc(50% - 5px); }
  .filter-group.filter-reset { flex: 0 0 100%; }
  .btn-reset { width: 100%; }
}

/* ── Result rows móvil ────────────────────── */
@media (max-width: 520px) {
  .result-row {
    grid-template-columns: 50px 1fr auto 1fr 0;
    padding: 10px 12px; gap: 5px;
  }
  .result-row > div:last-child { display: none; }
  .result-date { font-size: .66rem; }
  .result-home, .result-away { font-size: .78rem; }
  .result-score { font-size: .95rem; padding: 5px 10px; min-width: 56px; }
}

/* ── Hero móvil ───────────────────────────── */
@media (max-width: 480px) {
  .hero-teams { gap: 28px; }
  .badge-val { font-size: 2rem; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.8rem); }
}

/* ── Coming soon móvil ────────────────────── */
@media (max-width: 768px) {
  .coming-soon-grid { grid-template-columns: 1fr; }
}

/* ── Footer móvil ─────────────────────────── */
@media (max-width: 480px) {
  .footer { padding: 40px 0 24px; }
  .footer-bottom { flex-direction: column; gap: 4px; }
}

/* ── Sponsors móvil ───────────────────────── */
@media (max-width: 600px) {
  .sponsors-row { gap: 28px 36px; }
  .sponsor-item img { height: 56px; max-width: 140px; }
}
