/* STEPPER (Paso 1) */
.stepper {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
  margin-top: 20px;
  font-size: 16px;
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7f8790;              /* más suave */
  font-weight: 500;            /* ? antes más fuerte */
}

.step.active {
  color: var(--primary-color);
  font-weight: 600;            /* semibold, no “grito” */
}

.circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #c9d1da;    /* un poco más suave */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  font-weight: 700;
}

.step.active .circle {
  background-color: var(--primary-color);
}

/* Paso 1 layout */
.paso1-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

/* AUTOCOMPLETE */
.autocomplete-container {
  position: relative;
  width: 440px;
  max-width: 92%;
}

.autocomplete-input {
  width: 100%;
  height: 56px;
  border-radius: 10px;
  border: 1px solid #cfd6df;
  padding: 0 15px;
  font-size: 17px;
  box-sizing: border-box;
  font-weight: 400;            /* contenido regular */
  color: #2f2f2f;
}

.autocomplete-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(18,95,158,0.12);
}

.autocomplete-list {
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #d8dee6;
  border-radius: 10px;
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
  z-index: 100;
}

.autocomplete-item {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;            /* ? para que no compita */
  color: #2f2f2f;
}

.autocomplete-item:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Botón Buscar Hora */
.btn-buscar {
  min-width: 240px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;            /* ? antes 700 */
  letter-spacing: 0.5px;
  text-transform: uppercase;

  border-radius: 12px;
  border: 2px solid var(--primary-color);

  background-color: #ffffff;
  color: var(--primary-color);

  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-buscar:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(18, 95, 158, 0.25);
  transform: translateY(-1px);
}

@media (hover: hover) {
  .btn-buscar:hover {
    background-color: var(--primary-color);
    color: white;
  }
}

/* Responsive: Paso 1 */
@media (max-width: 768px) {
  .stepper {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
    font-size: 15px;
  }
}