.btn-outline-hover-primary:hover {
  background-color: #0d6efd !important;
  color: #fff !important;
}

.btn-outline-hover-secondary:hover {
  background-color: #6c757d !important;
  color: #fff !important;
}

html,
body {
  height: 100%;
  margin: 0;
  background-color: #fff;
  background-image: url("../img/intro-bg.png");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: auto;
  /* o 'contain' o 'cover' según tu preferencia */
  background-attachment: fixed;
  /* Esto hace que la imagen quede fija al hacer scroll */
}

#overlay-cargando {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;

  display: flex;
  justify-content: center;
  align-items: center;

  /* Oculto por defecto */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#overlay-cargando.active {
  opacity: 1;
  pointer-events: auto;
}

.custom-shadow {
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.3),     /* sombra inferior fuerte */
    3px 0 8px rgba(0, 0, 0, 0.036),      /* sombra derecha suave */
    -3px 0 8px rgba(0, 0, 0, 0.036),     /* sombra izquierda suave */
    0 -4px 4px rgba(0, 0, 0, 0) !important;  /* sombra superior invisible */
    border-top: none !important;
}

input[type="radio"] + label{
background-color: #DEECFF; border-color: #DEECFF;
}

