.dark-section {
  background-color: #111;
}

.scheduled-rides {
  padding: 90px 10%;
  color: #eaeaea;
}

.scheduled-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.scheduled-text {
  flex: 1;
  min-width: 320px;
}

.scheduled-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #f5c400;
}

.scheduled-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #535151;
}

.scheduled-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.scheduled-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #535151;
}

.scheduled-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-scheduled {
  padding: 13px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-scheduled.primary {
  background-color: #f5c400;
  color: #111;
}

.btn-scheduled.primary:hover {
  background-color: #e0b200;
}

.btn-scheduled.whatsapp {
  background-color: #25d366;
  color: #fff;
}

.btn-scheduled.whatsapp:hover {
  background-color: #1ebe5d;
}

.scheduled-image {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.scheduled-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Agregando responsive completo para carreras programadas */
@media (max-width: 900px) {
  .scheduled-rides {
    padding: 60px 5%;
  }

  .scheduled-container {
    gap: 35px;
  }

  .scheduled-text h2 {
    font-size: 2rem;
  }

  .scheduled-image img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .scheduled-rides {
    padding: 40px 15px;
  }

  .scheduled-text {
    min-width: 100%;
  }

  .scheduled-text h2 {
    font-size: 1.8rem;
  }

  .scheduled-description {
    font-size: 1rem;
  }

  .scheduled-list li {
    font-size: 0.95rem;
  }

  .scheduled-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-scheduled {
    width: 100%;
    text-align: center;
  }

  .scheduled-image {
    min-width: 100%;
  }
}
