/* =========================================================
   INSCRIPCIONES 2026
========================================================= */

.active-registration-section {
  padding: 90px 0;
  background: #f7f7f7;
}

.registration-bases-grid {
  width: min(1100px, calc(100% - 40px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.registration-base-card {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 30px;
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-top: 6px solid var(--primary, #9f2629);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(25, 35, 50, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.registration-base-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  background: rgba(255, 208, 0, 0.12);
  border-radius: 50%;
}

.registration-base-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(25, 35, 50, 0.13);
}

.registration-base-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--primary, #9f2629);
  border-radius: 18px;
  font-size: 1.8rem;
  box-shadow: 0 10px 22px rgba(159, 38, 41, 0.2);
}

.registration-base-content {
  position: relative;
  z-index: 1;
}

.registration-base-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #0b6d7c;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.registration-base-content h3 {
  margin: 0 0 12px;
  color: #17242c;
  font-size: 1.3rem;
}

.registration-base-content p {
  margin: 0 0 22px;
  color: #66707a;
  line-height: 1.7;
}

.registration-base-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  color: #ffffff;
  background: var(--primary, #9f2629);
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.registration-base-button:hover {
  color: #17242c;
  background: #ffd000;
  transform: translateY(-2px);
}

/* Tarjeta Caporales */

.caporales-card {
  border-top-color: #0b6d7c;
}

.caporales-card .registration-base-icon {
  background: #0b6d7c;
  box-shadow: 0 10px 22px rgba(11, 109, 124, 0.2);
}

@media (max-width: 800px) {
  .registration-bases-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .active-registration-section {
    padding: 70px 0;
  }

  .registration-base-card {
    flex-direction: column;
    padding: 24px;
  }
}


/* =========================================================
   CRONOGRAMA 2026
========================================================= */

.edition-schedule {
  padding: 90px 0;
  background: #ffffff;
}

.schedule-timeline {
  width: min(1000px, calc(100% - 40px));
  margin: 48px auto 0;
  position: relative;
}

/* Línea vertical */

.schedule-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 92px;
  width: 3px;
  background: linear-gradient(
    to bottom,
    #9f2629,
    #ffd000,
    #0b6d7c
  );
  border-radius: 999px;
}


/* Elemento */

.schedule-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  margin-bottom: 24px;
}


/* Hora / marcador */

.schedule-time-box {
  position: relative;
  z-index: 2;
  min-height: 52px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.schedule-time-box strong {
  min-width: 92px;
  padding: 10px 14px;
  color: #ffffff;
  background: #9f2629;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  text-align: center;
  box-shadow: 0 8px 18px rgba(159, 38, 41, 0.18);
}


/* Punto para actividades sin hora */

.schedule-dot::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 15px;
  background: #9f2629;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #ffd000;
}


/* Contenido */

.schedule-content {
  position: relative;
  overflow: hidden;
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(25, 35, 50, 0.07);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.schedule-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #9f2629;
}

.schedule-item:hover .schedule-content {
  transform: translateY(-2px);
  border-color: rgba(159, 38, 41, 0.2);
  box-shadow: 0 16px 34px rgba(25, 35, 50, 0.11);
}


/* Texto */

.schedule-step {
  display: block;
  margin-bottom: 4px;
  color: #0b6d7c;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.schedule-content h3 {
  margin: 5px 0 8px;
  color: #17242c;
  font-size: 1.08rem;
}

.schedule-content p {
  margin: 0;
  color: #68717b;
  line-height: 1.65;
}


/* Premiaciones */

.schedule-award .schedule-content::before {
  background: #ffd000;
}

.schedule-award .schedule-dot::before {
  background: #ffd000;
  box-shadow: 0 0 0 3px #9f2629;
}


/* Campeón de Campeones */

.schedule-highlight .schedule-content {
  border: 2px solid #0b6d7c;
  background: linear-gradient(
    135deg,
    #ffffff,
    rgba(11, 109, 124, 0.04)
  );
}

.schedule-highlight .schedule-content::before {
  background: #0b6d7c;
}

.schedule-highlight .schedule-dot::before {
  background: #0b6d7c;
  box-shadow: 0 0 0 3px #ffd000;
}


/* Premiación final */

.schedule-final .schedule-content {
  border-color: rgba(255, 208, 0, 0.65);
}

/* =========================================================
   CAMINO - CAMPEÓN DE CAMPEONES
========================================================= */

.champions-path {
  max-width: 850px;
  margin: 48px auto 0;
  padding: 32px;

  text-align: center;

  background: rgba(255, 255, 255, 0.055);

  border: 1px solid rgba(255, 208, 0, 0.2);
  border-radius: 22px;
}

.champions-path-label {
  display: inline-block;

  margin-bottom: 7px;

  color: #ffd000;

  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.champions-path > h3 {
  margin: 0;

  color: #ffffff;

  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
}


.champions-path-flow {
  max-width: 500px;

  margin: 30px auto;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.champions-path-step {
  width: 100%;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 16px 20px;

  text-align: left;

  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.champions-path-step span {
  flex-shrink: 0;

  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  color: #17242c;
  background: #ffd000;

  border-radius: 50%;

  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
}

.champions-path-step strong {
  color: #ffffff;

  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
}

.champions-path-arrow {
  margin: 5px 0;

  color: #ffd000;

  font-size: 1.5rem;
  font-weight: 800;
}


.champions-path-note {
  margin-top: 28px;
  padding: 20px 22px;

  text-align: left;

  background: rgba(159, 38, 41, 0.22);

  border-left: 4px solid #ffd000;
  border-radius: 12px;
}

.champions-path-note strong {
  color: #ffd000;

  font-family: "Montserrat", sans-serif;
}

.champions-path-note p {
  margin: 8px 0 0;

  color: rgba(255, 255, 255, 0.76);

  font-size: 0.88rem;
  line-height: 1.65;
}


@media (max-width: 600px) {

  .champions-path {
    width: min(100% - 28px, 850px);

    padding: 25px 20px;
  }

  .champions-path-step {
    padding: 14px 16px;
  }

}


/* RESPONSIVE */

@media (max-width: 700px) {

  .edition-schedule {
    padding: 70px 0;
  }

  .schedule-timeline {
    width: min(100% - 28px, 1000px);
  }

  .schedule-timeline::before {
    left: 18px;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 48px;
  }

  .schedule-time-box {
    justify-content: flex-start;
    min-height: auto;
  }

  .schedule-time-box strong {
    min-width: auto;
  }

  .schedule-dot {
    position: absolute;
    top: 8px;
    left: -39px;
  }

  .schedule-dot::before {
    margin-top: 0;
  }

  .schedule-content {
    padding: 20px;
  }
}


/* =========================================================
   RESULTADOS - ESTADO DE ESPERA
========================================================= */

#live-results-container {
  width: min(1000px, calc(100% - 40px));
  margin: 42px auto 0;
}

.results-waiting {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 35px;
  text-align: center;

  background:
    linear-gradient(
      135deg,
      rgba(159, 38, 41, 0.035),
      rgba(255, 208, 0, 0.07)
    ),
    #ffffff;

  border: 1px solid rgba(159, 38, 41, 0.13);
  border-radius: 24px;

  box-shadow:
    0 18px 45px rgba(25, 35, 50, 0.08);
}


/* Decoración */

.results-waiting::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 90px;
  height: 5px;

  background: #ffd000;
  border-radius: 0 0 10px 10px;

  transform: translateX(-50%);
}


/* Trofeo */

.results-waiting-icon {
  width: 76px;
  height: 76px;

  display: grid;
  place-items: center;

  margin: 0 auto 20px;

  background: rgba(255, 208, 0, 0.17);

  border: 1px solid rgba(255, 208, 0, 0.45);
  border-radius: 50%;

  font-size: 2rem;
}


/* Estado */

.results-waiting-status {
  display: inline-block;

  margin-bottom: 10px;

  color: #9f2629;

  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* Título */

.results-waiting h3 {
  margin: 0 0 10px;

  color: #17242c;

  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}


/* Descripción */

.results-waiting p {
  max-width: 520px;

  margin: 0 auto;

  color: #68717b;

  font-size: 1rem;
  line-height: 1.7;
}


/* Indicador EN VIVO */

.results-waiting-live {
  width: fit-content;

  display: flex;
  align-items: center;
  gap: 8px;

  margin: 24px auto 0;
  padding: 9px 14px;

  color: #0b6d7c;
  background: rgba(11, 109, 124, 0.07);

  border-radius: 999px;

  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.results-waiting-live i {
  width: 8px;
  height: 8px;

  background: #0b6d7c;
  border-radius: 50%;
}


/* Móvil */

@media (max-width: 600px) {

  #live-results-container {
    width: min(100% - 28px, 1000px);
  }

  .results-waiting {
    padding: 38px 22px;
    border-radius: 20px;
  }

  .results-waiting-icon {
    width: 66px;
    height: 66px;
    font-size: 1.7rem;
  }

  .results-waiting-live {
    font-size: 0.7rem;
  }
}

/* =========================================================
   MEJOR DANZANTE - 2026
========================================================= */

.best-dancers-info {
  padding: 90px 0;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #faf7f1 100%
    );
}

.best-dancers-content {
  width: min(1100px, calc(100% - 40px));
  margin: 46px auto 0;
}

.best-dancers-intro {
  max-width: 820px;
  margin: 0 auto 38px;
  padding: 28px 30px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.08);
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(25, 35, 50, 0.07);
}

.best-dancers-intro h3 {
  margin: 0 0 10px;
  color: #17242c;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
}

.best-dancers-intro p {
  margin: 0;
  color: #68717b;
  line-height: 1.75;
}


/* RECORRIDO */

.best-dancers-details {
  position: relative;
  display: grid;
  gap: 20px;
}

.best-dancers-details::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 35px;
  width: 3px;
  background: linear-gradient(
    to bottom,
    #9f2629,
    #ffd000,
    #0b6d7c
  );
  border-radius: 999px;
}

.best-dancer-detail {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.best-dancer-number {
  position: relative;
  z-index: 2;

  width: 70px;
  height: 70px;

  display: grid;
  place-items: center;

  color: #ffffff;
  background: #9f2629;

  border: 5px solid #ffffff;
  border-radius: 50%;

  box-shadow:
    0 0 0 3px #ffd000,
    0 8px 22px rgba(159, 38, 41, 0.18);

  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.best-dancer-detail > div:last-child {
  padding: 22px 24px;

  background: #ffffff;

  border: 1px solid rgba(31, 42, 55, 0.09);
  border-radius: 18px;

  box-shadow:
    0 12px 30px rgba(25, 35, 50, 0.07);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.best-dancer-detail:hover > div:last-child {
  transform: translateY(-2px);

  border-color: rgba(159, 38, 41, 0.2);

  box-shadow:
    0 17px 36px rgba(25, 35, 50, 0.11);
}

.best-dancer-detail h3 {
  margin: 0 0 8px;

  color: #17242c;

  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
}

.best-dancer-detail p {
  margin: 0;

  color: #68717b;

  line-height: 1.65;
}


/* Cambios de color por etapa */

.best-dancer-detail:nth-child(2) .best-dancer-number,
.best-dancer-detail:nth-child(3) .best-dancer-number {
  background: #0b6d7c;
}

.best-dancer-detail:nth-child(4) .best-dancer-number,
.best-dancer-detail:nth-child(5) .best-dancer-number {
  color: #17242c;
  background: #ffd000;
}


/* Nota importante */

.best-dancers-note {
  max-width: 820px;

  margin: 34px auto 0;
  padding: 18px 22px;

  color: #603438;
  background: rgba(159, 38, 41, 0.07);

  border-left: 5px solid #9f2629;
  border-radius: 12px;

  font-size: 0.92rem;
  line-height: 1.65;
}

.best-dancers-note strong {
  color: #9f2629;
  font-family: "Montserrat", sans-serif;
}


/* =========================================================
   CONTACTO WHATSAPP - 2026
========================================================= */

.edition-contact {
  padding: 80px 0;

  background:
    linear-gradient(
      135deg,
      #0b6d7c,
      #07515d
    );
}

.edition-contact-content {
  width: min(1050px, calc(100% - 40px));

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  margin: 0 auto;
}

.edition-contact-text {
  max-width: 680px;
}

.edition-contact .section-kicker {
  color: #17242c;
  background: #ffd000;
}

.edition-contact h2 {
  margin: 12px 0 10px;

  color: #ffffff;

  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.edition-contact p {
  margin: 0;

  color: rgba(255, 255, 255, 0.86);

  font-size: 1rem;
  line-height: 1.7;
}


/* BOTÓN */

.edition-whatsapp-button {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 52px;

  padding: 13px 22px;

  color: #ffffff;
  background: #25d366;

  border-radius: 999px;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18);

  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.edition-whatsapp-button:hover {
  color: #ffffff;
  background: #1ebe5d;

  transform: translateY(-3px);

  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.23);
}

.edition-whatsapp-button i {
  font-size: 1.25rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 760px) {

  .best-dancers-info {
    padding: 70px 0;
  }

  .best-dancers-content {
    width: min(100% - 28px, 1100px);
  }

  .best-dancers-intro {
    padding: 24px 20px;
  }

  .best-dancers-details::before {
    left: 27px;
  }

  .best-dancer-detail {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
  }

  .best-dancer-number {
    width: 54px;
    height: 54px;

    font-size: 0.85rem;

    border-width: 4px;
  }

  .best-dancer-detail > div:last-child {
    padding: 19px;
  }


  .edition-contact {
    padding: 65px 0;
  }

  .edition-contact-content {
    width: min(100% - 28px, 1050px);

    flex-direction: column;
    align-items: flex-start;
  }

  .edition-whatsapp-button {
    width: 100%;
  }

}


/* =========================================================
   CUENTA REGRESIVA 2026
========================================================= */

.edition-countdown {
  padding: 65px 0;
  background:
    linear-gradient(
      135deg,
      #811f24 0%,
      #a6292e 55%,
      #7d1f28 100%
    );
}

.countdown-inner {
  width: min(1050px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.countdown-kicker {
  display: inline-block;
  padding: 7px 14px;
  color: #17242c;
  background: #ffd000;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.countdown-heading h2 {
  margin: 15px 0 8px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.countdown-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.countdown-grid {
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px auto 0;
}

.countdown-item {
  padding: 22px 12px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.countdown-item strong {
  display: block;
  color: #ffd000;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.countdown-item span {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.countdown-today {
  max-width: 620px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 30px auto 0;
  padding: 22px 26px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
}

.countdown-today[hidden] {
  display: none !important;
}

.countdown-live-dot {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background: #ffd000;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 208, 0, 0.15);
  animation: countdownPulse 1.4s infinite;
}

.countdown-today small,
.countdown-today strong {
  display: block;
  text-align: left;
}

.countdown-today small {
  margin-bottom: 3px;
  color: #ffd000;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.countdown-today strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
}

@keyframes countdownPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

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

@media (max-width: 650px) {
  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .edition-countdown {
    padding: 55px 0;
  }
}

/* =========================================================
   CAMPEÓN DE CAMPEONES 2026
========================================================= */

.champions-challenge {
  position: relative;
  overflow: hidden;
  padding: 95px 0;

  background:
    radial-gradient(
      circle at top,
      rgba(255, 208, 0, 0.15),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #141414,
      #25191a
    );
}

.champions-challenge::before,
.champions-challenge::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 208, 0, 0.12);
  border-radius: 50%;
}

.champions-challenge::before {
  top: -150px;
  left: -100px;
}

.champions-challenge::after {
  right: -120px;
  bottom: -160px;
}

.champions-challenge-inner {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.champions-challenge-heading {
  text-align: center;
}

.champions-special-label {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 14px;
  color: #17242c;
  background: #ffd000;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.champions-trophy {
  margin-bottom: 10px;
  font-size: 3.5rem;
}

.champions-challenge-heading .section-kicker {
  color: #ffd000;
  background: rgba(255, 208, 0, 0.1);
}

.champions-challenge-heading h2 {
  margin: 12px 0 7px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.3rem, 6vw, 4rem);
}

.champions-challenge-heading > p {
  margin: 0;
  color: #ffd000;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.champions-introduction {
  max-width: 800px;
  margin: 32px auto 0;
  text-align: center;
}

.champions-introduction p {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.77);
  line-height: 1.8;
}

.champions-introduction strong {
  color: #ffffff;
}

.champions-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.champions-features article {
  padding: 27px 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 208, 0, 0.17);
  border-radius: 18px;
  text-align: center;
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}

.champions-features article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.champions-features article > span {
  display: block;
  margin-bottom: 13px;
  font-size: 2rem;
}

.champions-features h3 {
  margin: 0 0 8px;
  color: #ffd000;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.champions-features p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.65;
}

.champions-participants {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 28px;
  text-align: center;
  background: rgba(159, 38, 41, 0.2);
  border: 1px dashed rgba(255, 208, 0, 0.45);
  border-radius: 18px;
}

.champions-participants-label {
  color: #ffd000;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.champions-participants h3 {
  margin: 7px 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
}

.champions-participants p {
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
}

@media (max-width: 800px) {
  .champions-features {
    grid-template-columns: 1fr;
  }

  .champions-challenge {
    padding: 75px 0;
  }
}

/* =========================================================
   ESTADO EN VIVO
========================================================= */

.contest-live-panel {
  width: min(1000px, calc(100% - 40px));
  margin: 35px auto 0;
  overflow: hidden;

  background: #ffffff;

  border: 2px solid #9f2629;
  border-radius: 22px;

  box-shadow:
    0 18px 45px rgba(159, 38, 41, 0.12);
}

.contest-live-panel[hidden] {
  display: none !important;
}

.contest-live-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  padding: 13px 20px;

  color: #ffffff;
  background: #9f2629;
}

.contest-live-badge {
  display: flex;
  align-items: center;
  gap: 9px;

  font-family: "Montserrat", sans-serif;
  font-size: 0.77rem;
  font-weight: 800;

  letter-spacing: 0.08em;
}

.contest-live-badge span {
  width: 9px;
  height: 9px;

  background: #ffffff;
  border-radius: 50%;

  animation: livePulse 1.2s infinite;
}

.contest-live-update {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
}

.contest-live-main {
  padding: 30px 28px 25px;
}

.contest-live-label {
  color: #0b6d7c;

  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contest-live-main h3 {
  margin: 7px 0 5px;

  color: #17242c;

  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.contest-live-main > strong {
  color: #9f2629;
  font-size: 1rem;
}

.contest-live-next {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 15px 28px;

  background: #fff8dc;

  border-top: 1px solid rgba(255, 208, 0, 0.4);
}

.contest-live-next span {
  color: #806700;

  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;

  text-transform: uppercase;
}

.contest-live-next strong {
  color: #17242c;
  font-size: 0.85rem;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@media (max-width: 600px) {
  .contest-live-panel {
    width: min(100% - 28px, 1000px);
  }

  .contest-live-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .contest-live-next {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}






/* =========================================================
   TABLAS EN VIVO 2026
========================================================= */

.live-group-block {
  margin-bottom: 35px;
}

.live-table-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  margin-bottom: 13px;
}

.live-table-heading h3 {
  margin: 0;

  color: #17242c;

  font-family: "Montserrat", sans-serif;
}

.live-table-heading span {
  color: #0b6d7c;

  font-size: 0.72rem;
  font-weight: 700;
}

.live-scores-table td {
  vertical-align: middle;
}

.live-total {
  display: block;

  color: #9f2629;

  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.live-penalty {
  display: block;
  margin-top: 3px;

  color: #c0392b;

  font-size: 0.7rem;
  font-weight: 700;
}

.live-classified {
  display: inline-block;

  margin-top: 5px;
  padding: 4px 8px;

  color: #075c34;
  background: #dff6e9;

  border-radius: 999px;

  font-size: 0.65rem;
  font-weight: 800;

  text-transform: uppercase;
}

.live-result-state {
  display: inline-flex;

  padding: 6px 9px;

  color: #69717a;
  background: #eef0f2;

  border-radius: 999px;

  font-size: 0.7rem;
  font-weight: 700;
}

.live-result-state.is-evaluating {
  color: #795d00;
  background: #fff3bd;
}

.live-disqualified {
  display: block;

  color: #a32026;

  font-size: 0.74rem;
  font-weight: 800;

  text-transform: uppercase;
}

.live-result-note {
  display: block;

  margin-top: 4px;

  color: #7a7f86;

  font-size: 0.67rem;
}

.live-disqualified-row {
  background: #fff2f2;
}

.score-pending {
  color: #a3a8ad;
}


/* =========================================================
   CLASIFICADOS
========================================================= */

.classified-live-grid {
  width: min(1000px, calc(100% - 40px));

  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));

  gap: 18px;

  margin: 35px auto 0;
}

.classified-live-card {
  padding: 22px;

  background: #ffffff;

  border: 1px solid rgba(31, 42, 55, 0.09);
  border-top: 5px solid #ffd000;
  border-radius: 17px;

  box-shadow:
    0 12px 30px rgba(25, 35, 50, 0.07);
}

.classified-live-card span {
  color: #0b6d7c;

  font-size: 0.68rem;
  font-weight: 800;

  text-transform: uppercase;
}

.classified-live-card h3 {
  margin: 7px 0 4px;

  color: #17242c;
}

.classified-live-card p {
  margin: 0 0 10px;

  color: #68717b;
  font-size: 0.82rem;
}

.classified-live-card strong {
  color: #9f2629;
}


/* Responsive */

@media (max-width: 700px) {

  .live-table-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .live-group-block
  .scores-table-wrapper {
    overflow-x: auto;
  }

  .live-scores-table {
    min-width: 650px;
  }

}

.classified-category {
  width: min(1000px, calc(100% - 40px));
  margin: 40px auto 0;
}

.classified-category-heading {
  margin-bottom: 18px;
}

.classified-category-heading > span {
  display: inline-block;

  margin-bottom: 5px;

  color: #9f2629;

  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.classified-category-heading h3 {
  margin: 0;

  color: #17242c;

  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
}


/* Evitamos duplicar ancho/margen */
.classified-category .classified-live-grid {
  width: 100%;
  margin: 0;
}


/* CAPORALES */

.classified-category-caporales {
  margin-top: 50px;
}

.classified-category-caporales
.classified-category-heading > span {
  color: #0b6d7c;
}

.classified-caporales-card {
  border-top-color: #0b6d7c;
}

/* =========================================================
   ÚLTIMA ACTUALIZACIÓN GLOBAL
========================================================= */

.live-global-update {
  width: min(1000px, calc(100% - 40px));
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin: 0 auto 12px;
  color: #68717b;
  font-size: 0.76rem;
}

.live-global-update[hidden] {
  display: none !important;
}

.live-global-update strong {
  color: #17242c;
  font-family: "Montserrat", sans-serif;
}

.live-global-dot {
  width: 8px;
  height: 8px;
  background: #0b6d7c;
  border-radius: 50%;
}


/* =========================================================
   FILA ACTUALIZADA
========================================================= */

.live-row-updated {
  animation: liveRowUpdated 1.8s ease;
}

@keyframes liveRowUpdated {
  0% {
    background: rgba(255, 208, 0, 0.38);
    transform: scale(1.01);
  }

  100% {
    background: transparent;
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .live-global-update {
    width: min(100% - 28px, 1000px);
    justify-content: center;
  }
}

/* =========================================================
   MENÚ MODO EN VIVO
========================================================= */

.live-event-nav {
  position: sticky;
  top: 70px;
  z-index: 90;

  display: flex;
  justify-content: center;
  gap: 8px;

  padding: 12px 20px;

  background: rgba(255, 255, 255, 0.96);

  border-bottom: 1px solid rgba(31, 42, 55, 0.08);

  box-shadow:
    0 8px 25px rgba(25, 35, 50, 0.07);

  backdrop-filter: blur(10px);
}

.live-event-nav[hidden] {
  display: none !important;
}

.live-event-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 9px 15px;

  color: #0b6d7c;
  background: #f5f5f5;

  border-radius: 999px;

  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;

  text-decoration: none;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.live-event-nav a:hover {
  color: #ffffff;
  background: #9f2629;
  transform: translateY(-1px);
}

.live-nav-dot {
  width: 7px;
  height: 7px;

  background: #c52b31;
  border-radius: 50%;

  animation: liveNavPulse 1.2s infinite;
}

@keyframes liveNavPulse {
  50% {
    opacity: 0.3;
  }
}

@media (max-width: 650px) {

  .live-event-nav {
    justify-content: flex-start;

    overflow-x: auto;

    padding: 10px 14px;

    scrollbar-width: none;
  }

  .live-event-nav::-webkit-scrollbar {
    display: none;
  }

  .live-event-nav a {
    flex-shrink: 0;
  }
}

.live-connection-warning {
  width: min(1000px, calc(100% - 40px));

  display: flex;
  align-items: center;
  gap: 12px;

  margin: 16px auto;
  padding: 13px 17px;

  color: #744600;
  background: #fff4cf;

  border: 1px solid #f1cf61;
  border-radius: 12px;
}

.live-connection-warning[hidden] {
  display: none !important;
}

/* Respeta siempre los elementos ocultos */
[hidden] {
  display: none !important;
}

.live-connection-warning > span {
  font-size: 1.3rem;
}

.live-connection-warning strong,
.live-connection-warning small {
  display: block;
}

.live-connection-warning small {
  margin-top: 2px;
}

.qualifying-category-title {
  width: min(1000px, calc(100% - 40px));

  margin: 45px auto 22px;
}

.qualifying-category-title span {
  color: #9f2629;

  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.qualifying-category-title h3 {
  margin: 5px 0 0;

  color: #17242c;

  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
}

.qualifying-category-caporales {
  margin-top: 60px;
}

.qualifying-category-caporales span {
  color: #0b6d7c;
}

/* =========================================================
   NOVEDADES OFICIALES 2026
========================================================= */

.edition-news {
  padding: 90px 0;
  background: #f8f8f8;
}

.edition-news-grid {
  width: min(1100px, calc(100% - 40px));

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 22px;

  margin: 42px auto 0;
}

.edition-news-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;

  padding: 26px;

  background: #ffffff;

  border: 1px solid rgba(31, 42, 55, 0.09);
  border-radius: 18px;

  box-shadow:
    0 12px 30px rgba(25, 35, 50, 0.07);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.edition-news-card:hover {
  transform: translateY(-3px);

  box-shadow:
    0 17px 38px rgba(25, 35, 50, 0.11);
}

.edition-news-icon {
  flex-shrink: 0;

  width: 56px;
  height: 56px;

  display: grid;
  place-items: center;

  background: rgba(255, 208, 0, 0.16);

  border-radius: 16px;

  font-size: 1.55rem;
}

.edition-news-status {
  display: inline-block;

  margin-bottom: 7px;

  color: #9f2629;

  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.edition-news-content h3 {
  margin: 0 0 8px;

  color: #17242c;

  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
}

.edition-news-content p {
  margin: 0;

  color: #68717b;

  line-height: 1.65;
}

.featured-news {
  border-top: 5px solid #ffd000;
}

.edition-news-button {
  margin-top: 16px;

  padding: 9px 14px;

  color: #7f7f7f;
  background: #eeeeee;

  border: 0;
  border-radius: 999px;

  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;

  cursor: not-allowed;
}

@media (max-width: 760px) {

  .edition-news {
    padding: 70px 0;
  }

  .edition-news-grid {
    width: min(100% - 28px, 1100px);

    grid-template-columns: 1fr;
  }

  .edition-news-card {
    padding: 22px;
  }

}

.edition-news-grid-single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

/* =========================================================
   PREGUNTAS FRECUENTES
========================================================= */

.faq-section {
  padding: 90px 0;
  background: #f8f8f8;
}

.faq-list {
  width: min(850px, calc(100% - 40px));
  margin: 42px auto 0;
}

.faq-item {
  margin-bottom: 12px;

  background: #ffffff;

  border: 1px solid rgba(31, 42, 55, 0.09);
  border-radius: 15px;

  box-shadow:
    0 8px 24px rgba(25, 35, 50, 0.05);

  overflow: hidden;
}

.faq-item summary {
  position: relative;

  padding: 20px 55px 20px 22px;

  color: #17242c;

  font-family: "Montserrat", sans-serif;
  font-size: 0.93rem;
  font-weight: 700;

  cursor: pointer;

  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";

  position: absolute;
  top: 50%;
  right: 22px;

  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  color: #9f2629;
  background: rgba(159, 38, 41, 0.08);

  border-radius: 50%;

  font-size: 1.25rem;
  font-weight: 700;

  transform: translateY(-50%);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";

  color: #ffffff;
  background: #9f2629;
}

.faq-answer {
  padding: 0 22px 22px;

  color: #68717b;

  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}

.faq-answer strong {
  color: #17242c;
}

.faq-contact-link {
  display: inline-flex;

  margin-top: 15px;
  padding: 9px 15px;

  color: #ffffff;
  background: #0b6d7c;

  border-radius: 999px;

  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;

  text-decoration: none;
}

.faq-contact-link:hover {
  background: #095b68;
}


@media (max-width: 600px) {

  .faq-section {
    padding: 70px 0;
  }

  .faq-list {
    width: min(100% - 28px, 850px);
  }

  .faq-item summary {
    padding:
      18px 52px
      18px 18px;

    font-size: 0.86rem;
  }

  .faq-answer {
    padding:
      0 18px 18px;

    font-size: 0.9rem;
  }

}

.edition-share-button {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 11px 20px;

    color: #ffffff;
    background: #0b6d7c;

    border: 0;
    border-radius: 999px;

    font-family: "Montserrat", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.edition-share-button:hover {
    transform: translateY(-2px);
    background: #2dddf8;
}

.edition-share-button span {
    font-size: 1rem;
}

.edition-share-button.is-copied {
    background: #198754;
}