/*--------------------------------------------------------------
# Proxima Carrera Section
--------------------------------------------------------------*/
.proxima-carrera {
  background: url('../img/diego11.jpeg') center center no-repeat;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  text-align: center;
  color: #fff;
}

.proxima-carrera::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.256);
  z-index: 1;
}

.proxima-carrera .container {
  position: relative;
  z-index: 2;
}

.proxima-carrera h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Cal Sans", sans-serif;
}

.proxima-carrera p {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 500;
}

.countdown {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.countdown > div {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  min-width: 100px;
  text-align: center;
}

.countdown span {
  display: block;
  font-size: 48px;
  font-weight: 700;
  font-family: "Cal Sans", sans-serif;
}

.countdown .label {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.proxima-carrera .btn-getstarted {
  font-family: "Cal Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.proxima-carrera .btn-getstarted:hover {
  background: transparent;
  color: var(--accent-color);
}

/* Driver Standings */
.driver-standings {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  text-align: left;
}

.standings-title {
  font-family: "Cal Sans", sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
  color: #fff;
}

.standings-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.standing-item {
  display: flex;
  align-items: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  transition: background 0.3s;
}

.standing-item:hover {
  background: rgba(0, 0, 0, 0.4);
}

.standing-item.first-place {
  border: 2px solid #FFD700; /* Color dorado */
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); /* Sombra dorada suave */
}

.standing-item.second-place {
  border: 2px solid #c5c5c5; /* Color dorado */
  box-shadow: 0 0 10px rgb(82, 82, 82); /* Sombra dorada suave */
}

.standing-item.third-place {
  border: 2px solid #893400; /* Color dorado */
  box-shadow: 0 0 10px rgb(114, 59, 7); /* Sombra dorada suave */
}

.standing-item .pos {
  font-size: 22px;
  font-weight: 700;
  font-family: "Cal Sans", sans-serif;
  width: 40px;
  flex-shrink: 0;
  border-right: 2px solid var(--accent-color);
  padding-right: 10px;
  margin-right: 10px;
}

.driver-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.driver-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.driver-name {
  font-weight: 700;
  font-size: 16px;
  display: block;
}

.campeon-text {
  font-family: "Cal Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFD700;
  margin-left: auto;
  vertical-align: middle;
}

.subcampeon-text {
  font-family: "Cal Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #c5c5c5;
  margin-left: auto;
  vertical-align: middle;
}

.driver-category {
  font-size: 14px;
  color: #ccc;
  display: block;
}

@media (max-width: 991.98px) {
  .proxima-carrera .text-lg-start {
    text-align: center !important;
  }
  .countdown {
    justify-content: center;
    gap: 10px;
  }
  .countdown > div {
    padding: 10px;
    min-width: 50px;
  }
  .countdown span {
    font-size: 24px;
  }
  .countdown .label {
    font-size: 9px;
  }
}
