
/* 🔥 CSS SuperTop Comparador - Estilo Premier League 🔥 */

#comparador-ajax-visual {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9fbfd;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(0,0,0,0.06);
}

.titulo-principal {
  text-align: center;
  font-size: 2em;
  color: #14213d;
  margin-bottom: 25px;
}

.filtros-comparador {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.filtros-comparador label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 0.95em;
  color: #14213d;
}

.filtros-comparador input[type=range] {
  width: 200px;
}

.filtros-comparador select, 
.filtros-comparador input[type=range] {
  margin-top: 8px;
}

.filtros-comparador button {
  padding: 10px 20px;
  background-color: #007bff;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.filtros-comparador button:hover {
  background-color: #0056b3;
}

.entidad {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 16px rgba(0,0,0,0.04);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
}

.entidad img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.entidad h3 {
  font-size: 1.25em;
  color: #14213d;
  margin: 0 0 10px;
}

.entidad p {
  margin: 4px 0;
  font-size: 0.95em;
  color: #333;
}

.boton-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #28a745;
  color: white !important;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.boton-cta:hover {
  background: #218838;
}
