/* HERO */
.hero-biblia{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:120px 20px;
}

/* TITULO */
.titulo-glow{
  font-size:clamp(2.5rem,6vw,4rem);

  background:linear-gradient(45deg,#4fc3f7,#0d47a1);
  -webkit-background-clip:text;
  background-clip:text;

  color:transparent;

  text-shadow:
    0 0 10px rgba(79,195,247,0.6),
    0 0 30px rgba(79,195,247,0.9),
    0 0 60px rgba(79,195,247,1);
}

/* SUB */
.subtitulo{
  color:white;
  opacity:.85;
  margin-top:10px;
  font-size:clamp(1rem,2.5vw,1.2rem);
}

/* BOTON */
.btn-biblia{
  margin-top:30px;
  padding:14px 30px;
  border:none;
  border-radius:30px;

  background:linear-gradient(145deg,#4fc3f7,#0d47a1);
  color:white;

  cursor:pointer;
  transition:.3s;
}

.btn-biblia:hover{
  transform:scale(1.08);
  box-shadow:0 0 20px rgba(79,195,247,0.8);
}

/* 🔥 MODAL MEJORADO */
.modal-biblia{
  position:fixed;
  inset:0;

  background:rgba(0,0,0,0.92);

  display:flex;
  justify-content:center;
  align-items:center;

  opacity:0;
  pointer-events:none;

  transition:0.4s ease;
  z-index:9999;
}

.modal-biblia.active{
  opacity:1;
  pointer-events:auto;
}

/* CONTENIDO MODERNO */
.modal-content{
  position:relative;

  width:90%;
  max-width:420px;
  max-height:85vh;

  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);

  border-radius:20px;
  padding:25px;

  text-align:center;
  color:white;

  overflow:auto;

  transform:scale(0.8) translateY(40px);
  opacity:0;

  transition:0.4s ease;
}

.modal-biblia.active .modal-content{
  transform:scale(1) translateY(0);
  opacity:1;
}

/* TITULO MODAL */
.modal-content h2{
  margin-bottom:15px;

  background:linear-gradient(45deg,#fff,#4fc3f7);
  -webkit-background-clip:text;
  background-clip:text;

  color:transparent;
}

/* SELECT MODERNO */
select{
  width:100%;
  padding:14px;
  margin:10px 0;

  border:none;
  border-radius:12px;

  background:rgba(255,255,255,0.08);
  color:white;

  outline:none;
  cursor:pointer;

  transition:0.3s;
}

select:hover{
  background:rgba(255,255,255,0.15);
}

/* BOTON BUSCAR */
#buscar{
  width:100%;
  padding:14px;

  border:none;
  border-radius:25px;

  background:linear-gradient(145deg,#4fc3f7,#0d47a1);
  color:white;

  font-size:15px;
  cursor:pointer;

  transition:0.3s;
}

#buscar:hover{
  transform:scale(1.05);
  box-shadow:0 0 20px rgba(79,195,247,0.8);
}

/* RESULTADO */
#resultado{
  margin-top:20px;
  max-height:300px;
  overflow:auto;
  text-align:left;
}

/* VERSICULOS */
.versiculo{
  margin-bottom:10px;
  padding:12px;

  border-radius:12px;
  background:rgba(255,255,255,0.05);

  font-size:15px;
  line-height:1.6;

  transition:.2s;
}

.versiculo:hover{
  background:rgba(255,255,255,0.1);
}

/* CLOSE */
#closeBiblia{
  position:absolute;
  top:15px;
  right:20px;

  font-size:22px;
  cursor:pointer;

  color:white;
  opacity:0.7;

  transition:0.3s;
}

#closeBiblia:hover{
  opacity:1;
  transform:scale(1.2);
}

/* 📱 RESPONSIVE */
@media(max-width:768px){

  .hero-biblia{
    padding:90px 15px;
  }

  .titulo-glow{
    font-size:32px;
  }

  .subtitulo{
    font-size:14px;
  }

  .modal-content{
    width:95%;
    padding:20px;
  }

  #resultado{
    max-height:250px;
  }

}

/* 🔥 OPCIONAL: FULLSCREEN EN CELULAR */
@media(max-width:768px){

  .modal-content{
    height:100%;
    border-radius:0;
  }

}