@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  background-color: #e4e9f7;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif !important;
}

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

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*Estilos Swipers Slider*/

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
}

.slide-content h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.slide-content p {
  font-size: 1.5rem;
}

.swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  max-height: 100vh;
  object-position: center;
  display: block;
  width: 100%;
  height: 100%;
}

/* CSS */
.swiper-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

/* CSS */
.swiper-button-prev,
.swiper-button-next {
  color: #ffffff;
  /* Cambiar el color de las flechas */
  font-size: 24px;
  /* Cambiar el tamaño de las flechas */
  opacity: 0.5;
  /* Cambiar la opacidad de las flechas */
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
  /* Cambiar la opacidad de las flechas al pasar el ratón por encima */
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:link,
a:visited {
  text-decoration: none;
}

/* Estilo para el submenú desplegable de Ranking */
.dropdown-menu {
  display: none;
  /* Oculta el submenú por defecto */
}

/* Estilo para mostrar el submenú cuando se hace clic en el enlace "Ranking" */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

a .linkMenu:hover {
  color: #0d1b7b;
  transition: .5s;
}

/* Estilo para ocultar el submenú cuando se cierra */
.dropdown-menu {
  position: absolute;
}

/* Ajuste del ancho del submenú desplegable */
.dropdown-menu {
  width: auto;
}

/*Preloader*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
}

.preloader.hidden {
  display: none;
}



.team-name {
  font-size: 18px;
  font-weight: bold;
  vertical-align: middle;
  margin: 10px;
}

.date-and-stadium {
  font-size: 18px;
  /* margin-top: 10px; */
}

.result {
  font-size: 36px;
  font-weight: bold;
  margin: 20px;
}

/*Estilos del tabulador de resultados*/
/* Estilo para los botones de las tabs */
.tab button {
  background-color: #f2f2f2;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 20px;
  transition: 0.3s;
  font-size: 18px;
  margin-right: 5px;
}

/* Estilo para el contenido de las tabs */


.tabcontent {
  display: none;
  padding: 20px;
  border-top: none;
}

.container {
  max-width: 800px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.col-md-3 {
  flex: 0 0 calc(33.33% - 20px);
  margin-bottom: 20px;
}

.team-logo {
  max-width: 100px;
  margin-bottom: 10px;
}

.date-and-stadium {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

/*Estilos Swiper*/

.swiper-container {
  width: 100%;
  height: 600px;
  max-width: 100%;
  position: relative;
}

.tablaPosiciones {
  position: relative;
  margin-top: 150px;
}

/*distintos rankings*/

@media (max-width: 584px) {
  .card:hover {
    transform: normal;
  }
}

.card {
  background: transparent;
  transition: 0.5s;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  margin-top: 20px;
  color: black;
  padding: 25px;
}

.card:hover {
  transform: scale(1.05);
  /* Escala moderada de 5% */
}

.card-title {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #000;
  text-align: center;
}

.card-text {
  margin-top: 1rem;
  font-size: 1rem;
}

ul li a.colablinks:hover {
  transition: 0.5s;
  text-decoration: underline;
}


/* Preloader */

/* Estilos para el preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 16px solid #f3f3f3;
  /* Color del borde del spinner */
  border-top: 16px solid #3498db;
  /* Color de la parte superior del spinner */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

/* Animación para el spinner */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Estilos para ocultar el contenido hasta que cargue */
.content {
  display: none;
}



/*ENFRENTAMIENTO*/

.proximosPartidos h1 {
  color: white;
  background-color: #cea40b;
  padding: 14px;
  border-radius: 55px;
  font-size: 2rem;
}

.proximosPartidos h2#jornada {
  color: white;
  background-color: #07b79b;
  border-radius: 55px;
  padding: 5px 15px;
  display: inline-block;
  text-align: center;
  margin: 12px;
  white-space: nowrap;
}

.vs {
  font-size: 2.5rem;
  margin: 20px;
  white-space: nowrap;
}

.separator {
  height: 1px;
  background-color: #fff;
  margin: 20px 0;
}

.contenedorJornada h2 {
  font-size: 1.25rem;
}

.proximosPartidos {
  background-color: #003751;
}

.partido-section {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contenedorJornada {
  display: flex;
  align-items: center;
  justify-content: center;
}


h2.TituloJornada {
  margin-top: 50px;
}

.matchup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.team-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team-container img {
  max-width: 200px;
  height: auto;
}

.tituloEquipo {
  margin-top: 10px;
}

@media (max-width: 576px) {
  .matchup-container {
    flex-wrap: nowrap;
  }

  .vs {
    white-space: nowrap;
    font-size: 1rem;
  }

  .team-container img {
    max-width: 75px;
    height: auto;
  }

  .tituloEquipo {
    font-size: 0.7rem;
    margin: 0;
  }

  .partido-section {
    height: 55vh;
  }
}



/* Torneo eliminatoria */



@media (min-width: 52em) {
  html {
    font-size: 15px;
  }
}

@media (min-width: 72em) {
  html {
    font-size: 16px;
  }
}

.container {
  width: 90%;
  min-width: 18em;
  margin: 20px auto;
}

h1,
h2 {
  text-align: center;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.tournament-bracket {
  display: flex;
  flex-direction: column;
}

@media (min-width: 38em) {
  .tournament-bracket {
    flex-direction: row;
  }
}

.tournament-bracket__round {
  display: block;
  margin-left: -3px;
  flex: 1;
}

.tournament-bracket__round-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #073082;
  border-color: #fff solid 1px;
  border-width: 3px;
  border-style: solid;
  border-radius: 15px;

}

.tournament-bracket__list {
  display: flex;
  flex-direction: column;
  flex-flow: row wrap;
  justify-content: center;
  height: 100%;
  min-height: 100%;
  /* border-bottom: 1px dashed #e5e5e5; */
  padding-bottom: 2em;
  margin-bottom: 2em;
  transition: padding 0.2s ease-in-out, margin 0.2s ease-in-out;
}

@media (max-width: 24em) {
  .tournament-bracket__list {
    padding-bottom: 1em;
    margin-bottom: 1em;
  }
}

@media (min-width: 38em) {
  .tournament-bracket__list {
    margin-bottom: 0;
    padding-bottom: 0;
    /* border-right: 1px dashed #e5e5e5; */
    border-bottom: 0;
  }
}

.tournament-bracket__round:last-child .tournament-bracket__list {
  border: 0;
}

@media (min-width: 38em) {
  .tournament-bracket__round:last-child .tournament-bracket__list {
    align-content: center;
  }
}

.tournament-bracket__item {
  display: flex;
  flex: 0 1 auto;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding: 2% 0;
  width: 48%;
  transition: padding 0.2s linear;
}

.tournament-bracket__item:nth-child(odd) {
  margin-right: 2%;
}

.tournament-bracket__item:nth-child(even) {
  margin-left: 2%;
}

.tournament-bracket__item::after {
  transition: width 0.2s linear;
}

@media (max-width: 24em) {
  .tournament-bracket__item {
    width: 100%;
  }

  .tournament-bracket__item:nth-child(odd),
  .tournament-bracket__item:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 38em) {
  .tournament-bracket__item {
    padding: 0.5em 1em;
    width: 100%;
  }

  .tournament-bracket__item:nth-child(odd),
  .tournament-bracket__item:nth-child(even) {
    margin: 0;
  }

  .tournament-bracket__item::after {
    position: absolute;
    right: 0;
    content: "";
    display: block;
    width: 1em;
    height: 45%;
    border-right: 2px solid #9e9e9e;
  }

  .tournament-bracket__item:nth-child(odd)::after {
    top: 50%;
    border-top: 2px solid #9e9e9e;
    transform: translateY(-1px);
  }

  .tournament-bracket--rounded .tournament-bracket__item:nth-child(odd)::after {
    border-top-right-radius: 0.6em;
  }

  .tournament-bracket__item:nth-child(even)::after {
    bottom: 50%;
    border-bottom: 2px solid #9e9e9e;
    transform: translateY(1px);
  }

  .tournament-bracket--rounded .tournament-bracket__item:nth-child(even)::after {
    border-bottom-right-radius: 0.6em;
  }

  .tournament-bracket__round:first-child .tournament-bracket__item {
    padding-left: 0;
  }

  .tournament-bracket__round:last-child .tournament-bracket__item {
    padding-right: 0;
  }

  .tournament-bracket__round:last-child .tournament-bracket__item::after {
    display: none;
  }

  .tournament-bracket__round:nth-last-child(2) .tournament-bracket__item::after {
    border-radius: 0;
    border-right: 0;
  }
}

@media (min-width: 72em) {
  .tournament-bracket__item {
    padding: 0.5em 1.5em;
  }

  .tournament-bracket__item::after {
    width: 1.5em;
  }
}

@media (max-width: 585px) {

  .tournament-bracket__list {
    margin-left: -36px;
  }
}

.tournament-bracket__match {
  display: flex;
  width: 100%;
  background-color: #ffffff;
  padding: 1em;
  border: 1px solid transparent;
  border-radius: 0.1em;
  box-shadow: 0 2px 0 0 #e5e5e5;
  outline: none;
  cursor: pointer;
  transition: padding 0.2s ease-in-out, border 0.2s linear;
}

.tournament-bracket__match:focus {
  border-color: #2196f3;
}

.tournament-bracket__match::before,
.tournament-bracket__match::after {
  transition: all 0.2s linear;
}

@media (max-width: 24em) {
  .tournament-bracket__match {
    padding: 0.75em 0.5em;
  }

}

@media (min-width: 38em) {

  .tournament-bracket__match::before,
  .tournament-bracket__match::after {
    position: absolute;
    left: 0;
    z-index: 1;
    content: "";
    display: block;
    width: 1em;
    height: 10%;
    border-left: 2px solid #9e9e9e;
  }

  .tournament-bracket__match::before {
    bottom: 50%;
    border-bottom: 2px solid #9e9e9e;
    transform: translate(0, 1px);
  }

  .tournament-bracket--rounded .tournament-bracket__match::before {
    border-bottom-left-radius: 0.6em;
  }

  .tournament-bracket__match::after {
    top: 50%;
    border-top: 2px solid #9e9e9e;
    transform: translate(0, -1px);
  }

  .tournament-bracket--rounded .tournament-bracket__match::after {
    border-top-left-radius: 0.6em;
  }
}

@media (min-width: 72em) {

  .tournament-bracket__match::before,
  .tournament-bracket__match::after {
    width: 1.5em;
  }

  .tournament-bracket__match::before {
    transform: translate(0, 1px);
  }

  .tournament-bracket__match::after {
    transform: translate(0, -1px);
  }
}

.tournament-bracket__round:last-child .tournament-bracket__match::before,
.tournament-bracket__round:last-child .tournament-bracket__match::after {
  border-left: 0;
}

.tournament-bracket__round:last-child .tournament-bracket__match::before {
  border-bottom-left-radius: 0;
}

.tournament-bracket__round:last-child .tournament-bracket__match::after {
  display: none;
}

.tournament-bracket__round:first-child .tournament-bracket__match::before,
.tournament-bracket__round:first-child .tournament-bracket__match::after {
  display: none;
}

.tournament-bracket__content {
  display: flex;
}

.tournament-bracket__content::after {
  content: ":";
  width: 1em;
  text-align: center;
  padding: 0.2em 0.1em;
}

.tournament-bracket__content.hide::after {
  content: none;
}


@media (min-width: 38em) {
  .tournament-bracket__content::after {
    order: 1;
  }
}

.tournament-bracket__content .torneo-bracket-equipo:first-child {
  width: 50%;
  order: 0;
  text-align: right;
}

@media (min-width: 38em) and (max-width: 52em) {
  .tournament-bracket__content .torneo-bracket-equipo:first-child {
    align-items: flex-end;
  }
}

.tournament-bracket__content .torneo-bracket-equipo:first-child .tournament-bracket__country {
  order: 2;
  justify-content: flex-end;
}

@media (min-width: 24em) {
  .tournament-bracket__content .torneo-bracket-equipo:first-child .tournament-bracket__country {
    order: 0;
  }
}

@media (min-width: 38em) and (max-width: 52em) {
  .tournament-bracket__content .torneo-bracket-equipo:first-child .tournament-bracket__country {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
}

.tournament-bracket__content .torneo-bracket-equipo:first-child .tournament-bracket__score {
  order: 0;
}

@media (min-width: 24em) {
  .tournament-bracket__content .torneo-bracket-equipo:first-child .tournament-bracket__score {
    order: 2;
  }
}

.tournament-bracket__content .torneo-bracket-equipo:last-child {
  width: 50%;
  order: 2;
  text-align: left;
}

@media (min-width: 38em) and (max-width: 52em) {
  .tournament-bracket__content .torneo-bracket-equipo:last-child {
    align-items: flex-start;
  }
}

@media (min-width: 38em) {
  .tournament-bracket__content .torneo-bracket-equipo:last-child .tournament-bracket__country {
    justify-content: flex-start;
  }
}

@media (min-width: 38em) and (max-width: 52em) {
  .tournament-bracket__content .torneo-bracket-equipo:last-child .tournament-bracket__country {
    align-items: flex-start;
  }
}

.tournament-bracket__content .torneo-bracket-equipo:last-child .tournament-bracket__code {
  order: 1;
}

.tournament-bracket__table {
  width: 100%;
}

.tournament-bracket__caption {
  font-size: 0.8rem;
  color: #000;
  font-weight: 300;
  padding-bottom: 0.75em;
  text-align: center;
}

.torneo-bracket-equipo {
  /* display: flex; */
  flex-direction: row-reverse;
  justify-content: space-between;
}

@media (min-width: 24em) {
  .torneo-bracket-equipo {
    flex-direction: column-reverse;
  }
}

@media (min-width: 38em) {
  .torneo-bracket-equipo {
    flex-direction: column-reverse;
  }
}

.tournament-bracket__country {
  font-size: 0.95rem;
  display: flex;
  margin-top: 0.5em;
  align-items: center;
}

@media (max-width: 24em) {
  .tournament-bracket__country {
    margin-top: 0;
  }
}

@media (min-width: 38em) and (max-width: 52em) {
  .tournament-bracket__country {
    display: flex;
    flex-direction: column;
  }

  .tournament-bracket__country .tournament-bracket__code {
    margin-top: 0.2em;
  }
}

.tournament-bracket__code {
  padding: 0 0.5em;
  color: #212121;
  font-weight: 600;
  text-transform: uppercase;
  border: 0;
  text-decoration: none;
  cursor: help;
  transition: padding 0.2s ease-in-out;
}

@media (max-width: 24em) {
  .tournament-bracket__code {
    padding: 0 0.25em;
  }
}

@media (min-width: 38em) and (max-width: 52em) {
  .tournament-bracket__code {
    padding: 0;
  }
}

.tournament-bracket__score {
  display: flex;
  align-items: center;
}

.torneo-bracket-equipo:first-child .tournament-bracket__score {
  flex-direction: row-reverse;
  padding-left: 0.75em;
}

.torneo-bracket-equipo:last-child .tournament-bracket__score {
  padding-right: 0.75em;
}

.tournament-bracket__number {
  display: inline-block;
  padding: 0.2em 0.4em 0.2em;
  border-bottom: 0.075em solid transparent;
  font-size: 0.95rem;
  background-color: #f5f5f5;
  border-color: #dddddd;
}

.torneo-bracket-equipo--winner .tournament-bracket__number {
  background-color: #fff176;
  border-color: #fad674;
}

.tournament-bracket__medal {
  padding: 0 0.5em;
}

.tournament-bracket__medal--gold {
  color: #ffd700;
}

.tournament-bracket__medal--silver {
  color: #c0c0c0;
}

.tournament-bracket__medal--bronze {
  color: #cd7f32;
}

/*Seccion motivacion*/

.motivacion {
  background-color: #f7f7f7;
  padding: 50px;
  margin: 0;
}

.motivacion-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.motivacion-container img {
  max-width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
}

.motivacion-container h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.motivacion-container p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}

/*Tabla Eliminatorias*/
.equipo-td {
  position: relative;
  z-index: 1;
}

.equipo-td:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f2f2f2;
  z-index: -1;
}

.posiciones-th {
  position: relative;
  z-index: 1;
}

.posiciones-th:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #192281 !important;
  /* elige el color de fondo que desees */
  z-index: -1;
}

th.position-sticky {
  background-color: #192281 !important;
}

.titulosRankings {
  background-color: #1f147f;
  color: white;
  padding: 14px;
  border-radius: 55px;
}

.goleadores {
  color: #000;
  padding: 14px;
  display: block;
  margin-left: 60px;
  margin-right: 60px;
}

@media (max-width: 570px) {
  .goleadores {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.anuncio {
  display: inline-block;
  transform: rotate(-20deg);
}

.poll-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 0 0 20px 0;
  margin-bottom: 20px;
}

.btn.botonsito {
  background-color: #1684eb;
  border-radius: 50px;
  display: flex;
  /* Usar flexbox */
  flex-direction: column;
  /* Colocar los elementos en columna */
  justify-content: center;
  /* Centrar horizontalmente */
  align-items: center;
  /* Centrar verticalmente */
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
  width: 90%;
  line-height: 17px;
  /* Ajustar el interlineado */
}

.pregunta {
  background-color: #00155a;
  border-radius: 8px 8px 0 0;
  padding: 20px 20px;
  margin: 0;
  color: #fff;
}

.disabled-btn {
  opacity: 1 !important;
  /* Mantener la opacidad de los botones deshabilitados */
  pointer-events: none;
  /* Desactivar eventos de clic */
  cursor: default;
  /* Cambiar el cursor para mostrar que el botón está deshabilitado */
}

.progress-bar {
  width: 100%;
  height: 20px;
  background-color: transparent;
  /* Hacer la barra de progreso invisible inicialmente */
  margin-bottom: 10px;
  transition: width 0.5s ease;
  position: relative;
}

.progress {
  height: 100%;
  background-color: #00ff00;
  width: 0;
  /* El ancho de la barra de progreso será controlado dinámicamente */
  transition: width 0.5s ease;
  /* Agrega una animación de transición */
  display: flex;
  /* Usar flexbox para centrar el porcentaje */
  align-items: center;
  /* Centrar verticalmente */
  justify-content: center;
  /* Centrar horizontalmente */
  color: #262626;
  font-weight: bold;
}

.progress-btn .percentage {
  position: absolute;
  /* Permitir que el porcentaje esté dentro de la barra de progreso */
  visibility: hidden;
  /* Oculta el porcentaje inicialmente */
}

.highlight-btn {
  background-color: #002f5e;
  color: #000;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
}


.status-circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
}

.status-active {
  background-color: green;
}

.status-inactive {
  background-color: red;
}

.status-reprogramado {
  background-color: red;
}

.status-pendiente {
  background-color: orange;
}

.miHr {
  background-image: linear-gradient(to right, #3b2070, #87ceeb, red);
  border: 0;
  width: 70px;
  height: 0.3rem;
}

.lazy {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.loaded {
  opacity: 1;
}

/* etiqueta en rankgins disponibles tarjeta */
.fixed-height-card {
  height: 100%;
  position: relative;
}

.ribbon {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  overflow: hidden;
  width: 75px;
  height: 75px;
  text-align: right;
}

.ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  width: 100px;
  display: block;
  background: #79A70A;
  background: linear-gradient(#2989d8 0%, #1e5799 100%);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 19px;
  left: -21px;
}

/* Nuevo bloque de clasificatoria (Stitch-inspired) */
.clasificatoria-header {
  max-width: 880px;
  margin: 1.5rem auto 2rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #eef3ff 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.clasificatoria-kicker {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4b5ea8;
  font-weight: 700;
}

.clasificatoria-title {
  margin: 0.25rem 0 0;
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  color: #19244f;
}

.clasificatoria-selector-wrap {
  min-width: 240px;
  text-align: left;
}

.resultadosClasificatoria .tabcontent {
  background: #fff;
  border-radius: 14px;
  padding: 1rem 0.25rem;
  box-shadow: 0 6px 18px rgba(25, 36, 79, 0.08);
  margin: 0 auto 1.5rem;
  max-width: 1100px;
}


/* Responsive tabla de estructura y partidos en Home */
@media (max-width: 768px) {
  .torneos-estructura-table thead {
    display: none;
  }

  .torneos-estructura-table,
  .torneos-estructura-table tbody,
  .torneos-estructura-table tr,
  .torneos-estructura-table td {
    display: block;
    width: 100%;
  }

  .torneos-estructura-table tr {
    margin-bottom: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
  }

  .torneos-estructura-table td {
    border: 0;
    border-bottom: 1px solid #f1f3f5;
    padding: 0.6rem 0.75rem;
    text-align: left;
  }

  .torneos-estructura-table td:last-child {
    border-bottom: 0;
  }

  .torneos-estructura-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 0.2rem;
  }
}