.simulador-container {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  display: inline-block; /* Se mantiene inline-block */
  min-width: 540px;
}

/* NUEVO ESTILO: Centrar el simulador */
#simulador-principal .container {
  text-align: center; /* Centra el contenido inline-block (el simulador) */
}

/* Ajuste para el título dentro del simulador, si es necesario, para que no se vea afectado por text-align: center */
#simulador-principal .container h2 {
  text-align: center; /* Asegura que el h2 dentro de esta sección se mantenga centrado si no lo estaba ya */
  color: #0a2c6b;
  margin-bottom: 1.5rem;
}

.plan-fijo {
  display: inline-block;
  background: #0a2c6b;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.slider-group {
  position: relative;
  margin-bottom: 2.5rem;
}

.slider-label {
  position: absolute;
  top: -35px;
  left: 0;
  background: #0a2c6b;
  color: #fff;
  font-size: 0.9rem;
  padding: 3px 10px;
  border-radius: 5px;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  appearance: none;
  background: #ddd;
  border-radius: 4px;
  outline: none;
  transition: background 0.3s;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #d98e14;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #d98e14;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

small {
  display: block;
  margin-top: 0.4rem;
  color: #555;
}

.cuota-fija {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.5rem;
}

.cuota-fija span {
  color: #14d98c;
}

.btn-link {
  text-decoration: none;
}

.btn-text {
  display: inline-block;
  background: #d98e14;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 25px;
  font-style: normal;
  font-weight: bold;
  margin-top: 1.5rem;
}

#solicitar {
  margin-top: 150px;
}

.page-section {
    padding: 6rem 0;
}