/* Reseteo básico */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    background-color: #0d0f14; 
    transition: background-color 0.5s ease;
   
   
}

::selection {
    background-color: #fee122   ; /* Cambia el color de resaltado a amarillo */
    color: #000000; /* Cambia el color del texto seleccionado */
}



img{
    width: 50px;
}


/* HERO LANDING PRINCIPAL */


.hero{
    background-image: url(/images/cover3.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh; /* Asegura que la sección hero cubra toda la altura de la pantalla */
    color: rgb(255, 255, 255);
    position: relative; /* Asegura que el contenido de hero esté correctamente posicionado */
    z-index: 1; /* Asegura que la hero esté debajo del header */
    
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65); /* Opcional: Añade un overlay oscuro para mejorar la legibilidad */
    z-index: -1;
}


.hero h1, .hero h2, .hero h3 {
    margin: 0;
    padding: 10px 0;
}


.hero-container{
   padding-top: 150px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    
}

.hero-buttons a {
    background-color: #fee122;
    color: #000;
    padding: 10px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Agregar transición */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Agregar sombra inicial */
}

.hero-buttons a:hover {
    box-shadow: 0 0 20px rgba(255, 251, 0, 0.808); /* Cambiar sombra al pasar el cursor */
}

.hero h1{
    font-size: clamp(55px, 8vw, 80px );
    text-align: center;
    margin: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 80px;
    margin-bottom: 30px;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.705);
    
    
    
}

.hero h2{
    font-size: 20px;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    margin: 0;
    margin-bottom: 20px;
    
}

.hero h3{
    font-size: 17px;
    text-align: center;
    font-weight: 300;
    margin: 30px;
    color: rgb(255, 255, 255);
    margin: 0;
}

#stars{
    color: #fee122;
    font-size: 22px;
    margin: 0;
}




/* HERO */




/* HERO 2 */

.hero2-image{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 400px;
    padding-bottom: 80px ;
    
    
}

.hero2-bigcontainer{
    display: flex;
    justify-content:space-around;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    height: 80vh;
    
}

.hero2{
    background-color: #0d0f14;
}

.hero2-container{
    color: white;
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding: 20px;
    border-radius: 50px;
    z-index: 1; /* Asegura que esté por encima del overlay */
    position: relative;
}

.hero2-info{
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin: 0;
    
}

.hero2-info h1{
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    text-align: start;

}

.hero2-info h2{
    color: #fee122;
}

.hero2-info h2 span{
    color: #999999;
}

.hero2-info p{
    font-size: 20px;
    font-weight: 600;
    text-align: start;
    color: #999999;
    
}

.hero2-image{
    text-align: center;
}




.hero2-button{
    display: flex;
    justify-content: center;
    margin: 20px;
}

.hero2-button a{
    background-color: #fee122;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 20px;
    width: 300px;
    text-align: center;
    text-decoration: none;
    margin-bottom: 100px;
    color: #000000;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.308);
    font-weight: 800;
    margin: 0;
    
}


.hero2-button a:hover{
    box-shadow: 0 0 20px rgba(255, 251, 0, 0.808); /* Cambiar sombra al pasar el cursor */
}
/* HERO 2 */



/* HERO 3 */


.hero3{
    background-image: url(/images/cover2.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    background-attachment: fixed;
    margin-top: -70px;
    
}

.hero3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.781); /* Overlay oscuro */
    z-index: 0; /* Asegura que esté detrás del contenido */
    
}


#pruebaimg{
    width: 400px;
}


#lootsplit-card{
    width: 400px;
    border-radius: 15px;
}

#imagerender-card{
    width: 200px;
    transition: opacity 0.8s ease-in-out;
}

#image-container{
    perspective: 1000px;
}


.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}








/*  FAQs  */

.hero5{
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    height: 700px;
    
}

.faqs-container{
    display: flex;
    flex-direction: column;
}

.faqs-container2{
    display: flex;
    justify-content: center;
    align-items: center;
}

#faqsimage{
    width: 400px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.185);
}

.faqs-container > p, .faqs-container > h1 {
    margin: 1.5rem 0;
    text-align: start;
    color: white;
}

.faqs-container > h1{
    letter-spacing: 3px;
    font-size: 35px;
    margin-bottom: 50px;
    margin-left: 15px;
}

.accordion {
    background-color: rgba(0, 0, 0, 0.815);
    color: #ffffff;
    cursor: pointer;
    font-size: 1.2rem;
    width: 600px;
    padding: 2rem 2.5rem;
    border: none;
    outline: none;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    text-align: start;
}

.accordion i {
    font-size: 1.6rem;
}

.active,
.accordion:hover {
  background-color: #fee122;;
  color: black;
}

.pannel {
    padding: 0 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    width: 600px;
    
}

.pannel p {
    color: rgb(0, 0, 0);
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
    padding-bottom: 10px;
}

.faq {
  
    margin: auto;
    
  }

  .faq.active {
    border: none;
    width: 600px;
    
  }

  .faq.active .pannel {
    padding-bottom: 2.5rem;
}

/*  FAQs  */



@media (max-width: 1000px){
    .hero2-bigcontainer{
        flex-direction: column;
        height: auto;
    }

    .hero5{
        flex-direction: column;
    }

    .faqs-container2{
        display: none;
    }

    .faq.active{
        width: 400px;
    }

    .accordion{
        width: 400px;
    }

    .pannel{
        width: 400px;
    }
}


@media (max-width: 400px){
    .hero{
        height: 900px;
    }
}