/* ===== TAXI CONVENCIONAL - SECCIÓN OSCURA ===== */
.taxi-dark-section {
  background: radial-gradient(circle at top, #1c2533, #0e1218);
  padding: 90px 20px;
  color: #fff;
}

.taxi-dark-container {
  max-width: 1100px;
  margin: auto;
}

/* Encabezado */
.taxi-dark-header {
  text-align: center;
  margin-bottom: 50px;
}

.taxi-dark-header h2 {
  font-size: 34px;
  color: #ffc107;
  margin-bottom: 15px;
}

.taxi-dark-header p {
  font-size: 16px;
  color: #ccc;
  max-width: 750px;
  margin: auto;
}

/* Info */
.taxi-dark-info {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.taxi-dark-info ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.taxi-dark-info li {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 15px;
  color: #eee;
}

/* Grid paradas */
.taxi-stops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
/* Removed backslash and extra semicolon */
.taxi-stop-card {
  background: radial-gradient(circle at top, #1c2533);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.taxi-stop-card:hover {
  transform: translateY(-10px);
}

/* Imagen */
.taxi-stop-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Info parada */
.taxi-stop-info {
  padding: 20px;
  text-align: center;
}

.taxi-stop-info h3 {
  font-size: 18px;
  color: #ffc107;
  margin-bottom: 8px;
}

.taxi-stop-info p {
  font-size: 14px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 900px) {
  .taxi-stops-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .taxi-stops-grid {
    grid-template-columns: 1fr;
  }

  .taxi-dark-header h2 {
    font-size: 26px;
  }
}
