
/*Aviso Empieza*/
.aviso{
    position: fixed;
    top: -150%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    background: rgba(255, 255, 255, 0.5);
    z-index: 9999999;
    cursor: default;
    opacity: 0;
    backdrop-filter: blur(5px);
    padding: 2rem 5%;
}

.aviso.active{
    top: 0;
    opacity: 1;
}


.aviso .container{
    background: #fff;
    height: 100%;
    width:100%;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 8px 15px rgba(0,0,0, .2);
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px solid #eee;
}

.aviso .container i{
    font-size: clamp(1.2rem, 3vw, 2rem);
    cursor: pointer;
    color: #333;
    top: .5rem;
    right: .5rem;
    margin-left: auto;
}
.aviso .container h1{
    font-size: clamp(2rem, 3vw, 3rem);
    margin-top: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #ff4500;
}

.aviso .container p{
    color: #666;
    text-align: center;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.aviso .container h2{
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}
.aviso .container h3{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    color: #000;
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 1rem;
    font-weight: 300;
}

.aviso .container h3 span{
    font-weight: 700;
    font-size: clamp(2rem, 3vw, 4rem);
}

.aviso .container h4{
    padding: .5rem 3rem;
    background:#0066ff;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    margin-bottom: 1rem;
    margin-top: auto;
}

.aviso .container h4:hover{
    background: orangered;
    
}



/*Aviso Termina*/