body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #f2575cdf, #d31900);
  color: #333;
  margin: 0;
  padding: 0;
}

.contenedor {
  background: #fff;
  max-width: 600px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 120px;
}

h1 {
  text-align: center;
  color: #ff4d4d;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

input[type="range"] {
  width: 100%;
  margin-top: 5px;
}

.escala {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button, .boton {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #d30000;
  color: #fff;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover, .boton:hover {
  background: #e62522;
}

.gracias {
  text-align: center;
}

/* Responsivo para celular */
@media (max-width: 600px) {
  .contenedor {
    margin: 10px;
    padding: 20px;
  }
  h1 {
    font-size: 22px;
  }
}
.opciones {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  font-size: 16px;
}

.opciones label {
  background: #f87171;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.opciones label:hover {
  background: #e62222;
  color: #fff;
}

input[type="range"] {
  width: 100%;
  margin-top: 5px;
  accent-color: #e80c17; /* color de la barra */
}

.escala {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.escala span:first-child {
  color: #e32611; /* rojo = peor */
  font-weight: bold;
}

.escala span:last-child {
  color: #27ae60; /* verde = mejor */
  font-weight: bold;
}

.niveles {
  display: flex;
  justify-content: space-between;
  margin: 8px 0 15px 0;
  font-size: 14px;
  font-weight: bold;
}

.niveles {
  display: flex;
  justify-content: space-between;
  margin: 8px 0 15px 0;
  font-size: 14px;
  font-weight: bold;
}

.nivel1 { color: #7b0000; }   /* rojo muy oscuro = 1 */
.nivel2 { color: #a00000; }   /* rojo oscuro = 2 */
.nivel3 { color: #c0392b; }   /* rojo medio = 3 */
.nivel4 { color: #e74c3c; }   /* rojo vivo = 4 */
.nivel5 { color: #ff4d4d; }

/* rojo brillante = 5 */

/* Estilo para el selector de locales */
select {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: 2px solid #d30000; /* naranja fuerte */
  border-radius: 8px;
  background: #fdf2e9;       /* fondo cálido */
  font-size: 16px;
  color: #333;
  transition: border 0.3s, box-shadow 0.3s;
}

select:focus {
  border-color: #e62222;     /* naranja más vivo */
  box-shadow: 0 0 8px rgba(230, 34, 34, 0.6);
  outline: none;
}

/* Sección de información de contacto en gracias.html */
.info-contacto {
  margin-top: 25px;
  padding: 20px;
  background: #f87171;       /* dorado cálido */
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.info-contacto h2 {
  color: #a30909;            /* naranja fuerte */
  margin-bottom: 10px;
  text-align: center;
}

.info-contacto p {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
  color: #333;
}

.info-contacto ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-contacto li {
  font-size: 15px;
  margin: 6px 0;
  padding: 6px;
  background: #ffe0e0;       /* fondo suave */
  border-radius: 6px;
  color: #333;
  text-align: center;
}