@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');

/* body { */
  /* solid background */
  /* background: rgb(0,212,255);
   */
  /* gradient background*/
  /* background: linear-gradient(45deg, rgba(0,212,255,1) 0%, rgba(11,3,45,1) 100%);    
   */
  /* photo background */
  /* background-image: url(https://images.unsplash.com/photo-1619204715997-1367fe5812f1?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1889&q=80);
  background-size: cover;
  background-position: center;   */
  
  /* display: flex;
  align-items: center;
  justify-content: center;    
  height: 100vh;   */
/* } */

.containerglass {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.25);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);  
  padding: 38px;  
  filter: drop-shadow(0 30px 10px rgba(0,0,0,0.125));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:center;
  text-align: center;
  
}

.wrapperglass {
  width: 100%;
  height: 100%;
  
}

.banner-imageglass {
  /* background-image: url(https://images.unsplash.com/photo-1641326201918-3cafc641038e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1887&q=80); */
  height: 300px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255, 0.255)
}
img{
   object-fit:contain;
  
  overflow:hidden;
  width: 100%;
  height: 100%;
}
h1{
  font-family: 'Righteous', sans-serif;
  color: rgba(255,255,255,0.98);
  text-transform: uppercase;
  font-size: 2.4rem;
}

p {
  color: #fff;
  font-family: 'Lato', sans-serif;
  text-align: center;
  font-size: 0.8rem;
  line-height: 150%;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.button-wrapperglass{
  margin-top: 18px;
}

.btnglass {
  border: none;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 12px;
  font-size: 0.8rem;  
  letter-spacing: 2px;  
  cursor: pointer;
}

.btnglass + .btnglass {
  margin-left: 10px;
}

.outlineglass {
  background: transparent;
  color: rgba(0, 212, 255, 0.9);
  border: 1px solid rgba(0, 212, 255, 0.6);
  transition: all .3s ease;
  
}

.outlineglass:hover{
  transform: scale(1.125);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  transition: all .3s ease;  
}

.fillglass {
  background: rgba(0, 212, 255, 0.9);
  color: rgba(255,255,255,0.95);
  filter: drop-shadow(0);
  font-weight: bold;
  transition: all .3s ease; 
}

.fillglass:hover{
  transform: scale(1.125);  
  border-color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 10px 5px rgba(0,0,0,0.125));
  transition: all .3s ease;    
}


/* --- ESTILOS PARA RESPONSIVIDAD --- */
/* Se aplican en pantallas de 768px de ancho o menos */
@media (max-width: 768px) {
    h1 {
        /* Reducimos el tamaño del título en pantallas pequeñas */
        font-size: 1.8rem;
    }

    .containerglass {
        /* Reducimos el padding para dar más espacio en móviles */
        padding: 25px;
    }

    .banner-imageglass {
        /* Hacemos la imagen un poco menos alta en móviles */
        height: 220px;
    }
}

/* Opcional: Para pantallas muy pequeñas (móviles) */
@media (max-width: 480px) {
    .btnglass {
        /* Hacemos que los botones ocupen todo el ancho y se separen */
        display: block;
        width: 100%;
    }

    .btnglass + .btnglass {
        margin-left: 0;
        margin-top: 10px; /* Añade espacio entre los botones apilados */
    }
}