
/* main.css – VMSC portal público (oscuro/deportivo) */
/* Puedes mantener tus estilos anteriores; aquí añadimos utilidades y ajustes. */
* { box-sizing: border-box; }
img { max-width: 100%; display: block; }
button, select { font-family: inherit; }
select { background: transparent; color: #ff7a32; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 8px 10px; }
select:focus { outline: none; box-shadow: 0 0 0 2px rgba(233,255,0,.25); }
/* Puedes mover lo anterior a tu pipeline SCSS si lo prefieres. */

/* Minimal overrides specific to this layout */
    :root {
      --bg: #0b0f28;
      --bg-2: #0e1433;
      --card: #12183c;
      --blacktitle: #12183c;
      --text: #e7ecff;
      --muted: #9aa3c7;
      --accent: #ff7a32;   /* Acento deportivo */
      --line: rgba(255,255,255,.08);
      --success:#2bd576;
      --danger:#ff5c77;
      --warning:#ffd166;
      --main: #ff4e00;
    }
    html, body { background: var(--bg); color: var(--text); font-family: "Chakra Petch", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji"; }
    a { color: inherit; text-decoration: none; }
    .container { width: min(1200px, 92%); margin-inline: auto; }
    header.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(6px); background: linear-gradient(180deg, rgba(11,15,40,.85), rgba(11,15,40,.55)); border-bottom: 1px solid var(--line); }
    .nav { display:flex; align-items:center; justify-content:space-between; padding: 14px 0; }
    .brand { display:flex; gap:.6rem; align-items:center; font-weight:700; letter-spacing:.5px; }
    .brand i { color: var(--accent); }
    .menu { display:flex; gap:22px; }
    .menu a { opacity:.85; }
    .menu a.active, .menu a:hover { color: var(--accent); opacity: 1; }
    .burger { display:none; cursor:pointer; }
    @media (max-width: 992px){
      .menu { display:none; }
      .burger { display:block; }
    }

    .hero { position: relative; overflow: clip; }
    .hero .inner { display:grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center; padding: 40px 0 22px; }
    .hero h1 { font-size: clamp(28px, 4vw, 48px); line-height: 1.05; letter-spacing:.3px; }
    .hero p.lead { color: var(--muted); margin-top: 10px; }
    .hero .cta { margin-top: 18px; display:flex; gap:12px; flex-wrap: wrap; }
    .btn { background: var(--accent); color:#000; border-radius: 12px; padding: 10px 16px; font-weight:700; }
    .btn.secondary { background: transparent; color: var(--accent); border:1px solid var(--accent); }
    .stadium { aspect-ratio: 16/10; background: radial-gradient(1200px 400px at 70% 0%, #233, transparent 60%), url('https://images.unsplash.com/photo-1547347298-4074fc3086f0?q=80&w=1500&auto=format&fit=crop') center/cover no-repeat; border-radius: 16px; border:1px solid var(--line); }

    .section { padding: 34px 0; border-top: 1px solid var(--line); }
    .section h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 16px; letter-spacing:.4px; }
    .grid { display:grid; gap: 16px; }
    .grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
    @media (max-width: 900px){ .hero .inner{ grid-template-columns: 1fr; } .grid.cols-4{ grid-template-columns: repeat(2,1fr);} .grid.cols-3{ grid-template-columns: repeat(2,1fr);} .grid.cols-2{ grid-template-columns: 1fr;} }

    .card { background: linear-gradient(180deg, var(--card), #0b1233); border: 1px solid var(--line); border-radius: 16px; padding: 14px; position:relative; overflow: hidden; }
    .card .muted { color: var(--muted); font-size: 13px; }
    .badge { display:inline-flex; padding: 6px 10px; font-size: 12px; border:1px solid var(--line); border-radius: 999px; gap:8px; align-items:center; background: rgba(255,255,255,.02); }
    .badge i { color: var(--accent); }
    .kpis { display:grid; gap: 12px; grid-template-columns: repeat(4, minmax(0,1fr)); }
    @media (max-width: 900px){ .kpis{ grid-template-columns: repeat(2,1fr);} }
    .kpi { padding: 18px; border-radius: 16px; border:1px solid var(--line); background: linear-gradient(180deg, #101638, #0b1230); }
    .kpi h4 { font-size: 14px; color: var(--muted); margin: 0 0 8px; }
    .kpi .value { font-size: 28px; font-weight: 700; letter-spacing: .5px; }

    /* Tables */
    .table-wrap { overflow:auto; }
    table { width:100%; border-collapse: collapse; }
    th, td { padding: 10px 12px; border-bottom:1px solid var(--line); text-align:left; }
    th { color: var(--muted); font-weight:600; font-size: 13px; }
    td { font-size: 14px; }
    tr:hover td { background: rgba(255,255,255,.02); }

    /* Cards: partidos y torneos */
    .match { display:flex; align-items:center; justify-content:space-between; gap: 10px; }
    .mini { display:flex; align-items:center; gap:10px; }
    .mini img { width:28px; height:28px; border-radius: 50%; object-fit: cover; border:1px solid var(--line); }
    .vs { font-weight:700; opacity:.85; }
    .when { color: var(--muted); font-size: 12px; }
    .status { font-size: 12px; padding: 4px 8px; border-radius: 6px; border:1px solid var(--line); }
    .status.live { color: #fff; border-color: rgba(255,0,0,.3); background: linear-gradient(180deg, rgba(255,0,0,.25), rgba(255,0,0,.15)); }
    .status.final { color: var(--muted); }
    .status.upcoming { color: var(--warning); }

    /* Goleadores */
    .player { display:flex; gap:12px; align-items:center; }
    .player img { width:44px; height:44px; border-radius: 12px; object-fit: cover; border:1px solid var(--line); }
    .player .meta { font-size: 12px; color: var(--muted); }

    /* Skeleton loaders */
    .skeleton { position: relative; overflow: hidden; background: #0c1234; border-radius: 10px; min-height: 58px; }
    .skeleton::after { content:""; position:absolute; inset:0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent); animation: load 1.1s infinite; }
    @keyframes load { 100% { transform: translateX(100%);} }

    footer { border-top:1px solid var(--line); padding: 28px 0; color: var(--muted); }




/* =========================================================
   HERO Nitro – Fix de alineación y fade inferior
   ========================================================= */
.hero-nitro {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #0b0f28 0%, #0e1433 100%);
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
 margin-top: -180px; /* ajusta según altura del header */
}


/* capa de textura y fade inferior */
.hero-nitro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/Untitled-2.jpg") center/cover no-repeat;
  opacity: 0.08;
  z-index: 1;
}
.hero-nitro::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(180deg, transparent, #0b0f28 90%);
  z-index: 3;
}

.hero-inner {
  width: min(1400px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: flex-end; /* 👈 Asegura que el texto e imagen estén abajo */
  position: relative;
  z-index: 2;
  gap: 40px;
  padding-top: 0; /* solo padding arriba */
  padding-bottom: 0;
}

.hero-text {
  position: relative;
  z-index: 4;
  padding-bottom: 60px; /* separa texto del borde inferior */
}

.hero-text .tagline {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff7a32;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}

.hero-text h1 {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(54px, 6vw, 80px);
  line-height: 1.05;
  margin-bottom: 30px;
}

.hero-text h1 .highlight {
  color: #ff7a32;
}
.hero-text h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px #ff7a32;
}

.hero-text .description {
  font-size: 15px;
  color: #cfd4f3;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==== FIX hero en móvil: no se encime con sponsors/header ==== */
@media (max-width: 768px){
  .hero-nitro {
    margin-top: 0 !important;
    padding-top: 0px !important;  /* antes 40px */
  }
}

/* Para que al hacer click en el menú no se escondan los títulos */
section[id] {
  scroll-margin-top: 80px;
}


.btn-primary, .btn-secondary {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #ff7a32;
  color: #000;
  border: none;
}
.btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }

.btn-secondary {
  border: 2px solid #ff7a32;
  color: #ff7a32;
  background: transparent;
}
.btn-secondary:hover {
  background: #ff7a32;
  color: #000;
}

/* Imagen del jugador */
.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end; /* 👈 fuerza al fondo */
  margin-bottom: -1px; /* elimina espacio residual */
}

.hero-image img {
  max-width: 640px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 4;
  display: block;
  margin-bottom: -4px; /* elimina subpixel gap */
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

/* Bloque naranja detrás del jugador */
.orange-block {
  position: absolute;
  right: 0;
  bottom: 0; /* 👈 anclado al fondo */
  transform: translateY(0) skewX(-8deg);
  width: 380px;
  height: 500px;
  background: #ff4e00;
  z-index: 1;
  border-radius: 2px;
}

@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 70px;
  }
  .hero-text {
    padding-bottom: 20px;
  }
  .hero-image {
    justify-content: center;
  }
  .hero-image img {
    max-width: 420px;
  }
  .orange-block {
    display: none;
  }
}



/* === Matches Section (Nitro-style cards) === */
.matches {
  background: #0b0f28;
  color: #fff;
  padding: 80px 0;
}

.matches-title {
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #ff7a32;
}

.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  justify-content: center;
}

.match-card {
  background: #E3E3E3;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 28px 20px 34px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: transform .25s ease, box-shadow .25s ease;
}
.match-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

.match-label {
  font-size: 18px;
  font-weight: 800;
  color: #ff4e00;
  margin-bottom: 6px;
}

.match-date {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}

.match-league {
  font-size: 13px;
  color: #ff4e00;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
  color: black;
  margin-bottom: 22px;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.team img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.team span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.match-score {
  font-family: "Chakra Petch", sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: #fff;
  color: #000;
  border-radius: 6px;
  padding: 6px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.match-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-dark,
.btn-outline {
  font-family: "Chakra Petch", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 4px;
  letter-spacing: .5px;
  transition: all .25s ease;
  min-width: 130px;
}

.btn-dark {
  background: #184651;
  color: #fff;
  border: none;
}
.btn-dark:hover {
  background: #0d2a32;
}

.btn-outline {
  border: 1.5px solid #000;
  color: #000;
  background: transparent;
}
.btn-outline:hover {
  background: #000;
  color: #fff;
}


/* ==== HERO en móvil: contenido pegado al banner, sin hueco enorme ==== */
@media (max-width: 768px) {
  .hero-nitro {
    margin-top: 0 !important;
    padding-top: 10px !important;   /* un poco de aire, opcional */
    min-height: auto !important;    /* deja de ocupar 100vh */
    align-items: flex-start !important; /* contenido arriba, no al fondo */
  }

  .hero-inner {
    grid-template-columns: 1fr;   /* stack en una columna */
    gap: 24px;
    padding-top: 0;
    padding-bottom: 24px;
  }

  .hero-text {
    padding-bottom: 16px;         /* antes 60px, bajamos mucho el hueco */
  }
}


/* Ajuste de tablas para que se lean mejor */
.section-clasificacion .card {
  border-radius: 0.5rem;
  overflow: hidden;
}

.section-clasificacion .card-header {
  background: #0d1117;
  color: #fff;
  font-size: 0.9rem;
}

.section-clasificacion .table {
  font-size: 0.8rem;
}

.section-clasificacion th,
.section-clasificacion td {
  white-space: nowrap;
}

/* Grid base */
.clasificacion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 992px) {
  .clasificacion-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    grid-template-areas:
      "tabla tabla"
      "goleo tarjetas";
    gap: 1rem;
    align-items: flex-start;
  }

  .card-clasificacion {
    grid-area: tabla;
  }

  .card-goleo {
    grid-area: goleo;
  }

  .card-tarjetas {
    grid-area: tarjetas;
  }
}

/* ===== Goleadores – Podio ===== */
#goleadores-grid {
  display: flex;
  flex-wrap: nowrap;       /* 👈 ya no hace salto de línea */
  justify-content: center;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  #goleadores-grid {
    flex-wrap: wrap;       /* ahora sí puede brincar abajo en móvil */
    justify-content: center;
  }
}


.goleador-card {
  position: relative;
  background: var(--card, #0d1117);
  border-radius: 16px;
  padding: 1.25rem 1rem 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  max-width: 220px;
  flex: 0 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;   /* centra horizontalmente */
  justify-content: flex-start; /* mantiene el orden natural */
  text-align: center;    /* asegura que el texto quede alineado */
}

.goleador-avatar {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.goleador-avatar img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(233, 255, 0, 0.9);
}

/* Medalla circular */
.goleador-medal {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.goleador-card.pos-1 .goleador-medal {
  background: linear-gradient(135deg, #ffd700, #ffea8a);
}
.goleador-card.pos-2 .goleador-medal {
  background: linear-gradient(135deg, #c0c0c0, #f5f5f5);
}
.goleador-card.pos-3 .goleador-medal {
  background: linear-gradient(135deg, #cd7f32, #f1b478);
}

.goleador-card.pos-1 {
  transform: translateY(-6px);
}
.goleador-card.pos-1 .goleador-avatar img {
  width: 110px;
  height: 110px;
}

.goleador-nombre {
  font-size: 1rem;
  margin-bottom: 0.1rem;
}
.goleador-club {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}
.goleador-goles {
  font-size: 0.9rem;
  color: #ff7a32;
}


/* ===========================
   Bloque informativo tipo “club pro”
   =========================== */

.info-block {
  padding: 80px 0;
  margin-top: 80px;
  margin-bottom: 80px;
}

.info-block--light {
  background: #f7f7fb; /* se ve distinto del fondo blanco general */
}

.info-block--dark {
  background: #050816;
  color: #fff;
}

.info-block__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

/* Columna imagen */
.info-block__media {
  position: relative;
  max-width: 520px;
}

.info-block__image-main {
  background: #d0d0d0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.info-block__image-main img {
  display: block;
  width: 100%;
  height: auto;
}

.info-block__image-badge {
  position: absolute;
  bottom: -40px;
  left: 20px;
  width: 45%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.info-block__image-badge img {
  display: block;
  width: 100%;
  height: auto;
}

/* Columna texto */
.info-block__content {
  max-width: 560px;
}

.info-block__eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #ff5c1a; /* acento naranja VMSC */
  font-weight: 600;
}

.info-block--dark .info-block__eyebrow {
  color: #ff8b3a;
}

.info-block__title {
  
  color: black;                      
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.info-block__title span {
  color: #ff5c1a;
}

.info-block__intro {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: black;
}

.info-block--dark .info-block__intro {
  color: black;
}

.info-block__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  font-size: 14px;
  color: black;
}

.info-block__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.info-block__features .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  background: #ff5c1a;
}

/* Botón primario reaprovechable */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #ff5c1a;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary:hover {
  background: #ff7a32;
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .info-block__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-block__media {
    margin: 0 auto;
  }

  .info-block__image-badge {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
  }

  .info-block__features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .info-block {
    padding: 60px 0;
  }

  .info-block__title {
    font-size: 24px;
  }
}


.page-section {
  padding: 60px 0;
}

.page-section--dark {
  background: #050816;
  color: #ffffff;
}

.page-section--light {
  background: #f7f7fb;
  color: #111;
}

.page-section--alt {
  background: linear-gradient(135deg, #050816 0%, #11162c 60%, #181c34 100%);
  color: #fff;
}


/* ===========================
      FOOTER VMSC PREMIUM
   =========================== */

.footer-vmsc {
  background: #070b22;
  color: #fff;
  font-family: 'Chakra Petch', sans-serif;
  padding-top: 40px;
}

/* ---------- NEWSLETTER ---------- */

.footer-vmsc__newsletter {
  text-align: center;
  margin-bottom: 40px;
}

.footer-vmsc__newsletter h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-vmsc__newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.footer-vmsc__newsletter-form input {
  padding: 12px 16px;
  width: 320px;
  border-radius: 6px;
  border: none;
  background: #0f1333;
  color: #fff;
}

.footer-vmsc__newsletter-form button {
  padding: 12px 24px;
  background: #ea4c1d;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.footer-vmsc__social {
  margin-top: 10px;
}

.footer-vmsc__social span {
  font-weight: 600;
  margin-right: 10px;
}

.footer-vmsc__social-icons a {
  margin: 0 6px;
  font-size: 18px;
  color: #fff;
  background: rgba(255,255,255,.08);
  padding: 10px;
  border-radius: 50%;
  transition: .2s;
}
.footer-vmsc__social-icons a:hover {
  background: #ea4c1d;
}

/* ---------- GRID CENTRAL ---------- */

.footer-vmsc__middle {
  padding: 50px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-vmsc__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-vmsc__logo-block img {
  width: 140px;
  margin-bottom: 18px;
}

.footer-vmsc__logo-block p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 380px;
  opacity: .8;
}

.footer-vmsc__col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-vmsc__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-vmsc__col li a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  transition: .2s;
}

.footer-vmsc__col li a:hover {
  color: #ea4c1d;
}

/* Apps */
.footer-vmsc__apps img {
  width: 140px;
  margin-bottom: 12px;
  border-radius: 6px;
  background: #fff;
}

/* ---------- BOTTOM ---------- */

.footer-vmsc__bottom {
  text-align: center;
  padding: 16px 0;
  font-size: 14px;
  opacity: .7;
}

.footer-vmsc__links a {
  color: rgba(255,255,255,.7);
  margin: 0 5px;
}

.footer-vmsc__links a:hover {
  color: #ea4c1d;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {
  .footer-vmsc__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-vmsc__newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .footer-vmsc__newsletter-form input {
    width: 100%;
  }

  .footer-vmsc__grid {
    grid-template-columns: 1fr;
  }

  .footer-vmsc__apps img {
    width: 160px;
  }
}


/* Popup responsivo */
.vmsc-alerta {
  max-width: 92vw !important;
  width: min(560px, 92vw) !important;
  border-radius: 14px;
}

/* Contenido con scroll si es muy largo */
.vmsc-alerta__html {
  max-height: 50vh;       /* límite de altura de contenido */
  overflow-y: auto;       /* scroll interno */
  text-align: left;
}

/* Imagen responsiva dentro del SweetAlert */
.swal2-image {
  max-width: 85vw !important;
  max-height: 35vh !important;
  object-fit: contain !important;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Ajustes extra para móviles pequeños */
@media (max-width: 480px) {
  .vmsc-alerta {
    padding: .75rem !important;
  }
  .vmsc-alerta__html {
    max-height: 45vh;     /* un pelín más compacto en móvil */
  }
}

/* Contenedor del carrusel */
.torneos-carousel {
  position: relative;
  margin-top: 1.5rem;
}

/* Un poco de padding para la paginación */
.torneos-carousel .swiper {
  padding-bottom: 2.5rem;
}

/* Flechas centradas verticalmente */
.torneos-carousel .swiper-button-prev,
.torneos-carousel .swiper-button-next {
  top: 45%;
}

/* Cada slide tendrá un ancho fijo (ajusta a tu gusto) */
.torneos-swiper .swiper-slide {
  width: 240px;         /* prueba 240–260px según tu diseño */
}

/* Que la tarjeta llene el slide */
.torneos-swiper .card {
  height: 100%;
}
.goleador-nombre,
.goleador-club {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

