body{
    margin: 0;
    padding: 0;
    background-image: url(imagenes/ImagenFondo.svg);
    background-repeat: no-repeat;
    min-height: 100vh; /*ocupa todo el alto y si hay mas contenido, permite que el body se expanda */
    background-position: center;
    background-size: cover; /*cubre toda la pantalla*/
    background-attachment: fixed; /*permite que la imagen de fondo quede estatica ante un scroll*/
    overflow-x: hidden;
    overflow-y: auto;
  
}
.navigation-bar{
    background-color: black;
    height: 34px;
    width: 100%;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    position:fixed;
}

.main-container{
    width: 100%; /* Ocupa todo el ancho disponible */
    height: calc(100vh - 10px); /* Ocupa todo el alto menos el espacio de la navbar */
    display: flex;
    justify-content: center;
    align-items: center;
/* background-color: red; */

}
.container{
    width: 70%; /* Puedes ajustar el tamaño según tus necesidades */
    height: 90%;
    box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;

}
/* arranca estilos relacionados al contenedor del titulo del portal */
.container-title{
   
    height: 10%;
    width: 100%;
    display: flex;
    align-items:end;
    justify-content: center;
    margin-bottom: 55px;
    /* background-color: orange; */
}
.title{
    font-family: Tahoma;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 1px;
}
/* cierra estilos relacionados al contedor del titulo del portal */

.logoCliente{
    width: 150px;
    height: 24px;
    object-fit: contain;
}
.contenedorIcono{
    width: 46px;
    height: 45px;
    object-fit: contain;
}
.contenedorIcono svg{
    width: 100%;
    height: 100%;
    display: block;
}
/*comienza estilos relacionados con las cajas de las apps*/
.container-boxes{
   
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
    align-content: flex-start;
    /* background-color: green; */
   
}

.container-box-titleBox{
   margin: 3%;
   justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
   
    &.disabled {
        .title-box{
            opacity:40%;
        }
        .box{
            opacity:40%;
        }
        .box svg path{
            fill:rgba(115,115,115,1)
        }

    }
}

.box{
    margin: 10px;
    width: 75px;
    height: 75px;
    padding: 25px ;
    gap:1em;
    border-radius: 10px ;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    /* opacity: 40%; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-box{
    font-family: Tahoma;
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 1px;
}
/*cierra estilos relacionados con las cajas de las apps*/

.container-btn-volver{

width: 69px;
height: 30px;

padding: 7px 12px 9px 12px;

border-radius: 5px ;
background: rgba(181, 181, 181, 1);
font-family: Tahoma;
font-size: 14px;
font-weight: 700;
line-height: 14px;
text-align: center;
color: rgba(255, 255, 255, 1);
justify-content: center;
display: flex;
align-items: center;
}








/* estilos mobile */
/* s20ultra 412x915
iphone 14 promax 430x932 */
@media (max-width:350px){
    .body{
        padding: 0px;
    }
    .container{
        width: 100%;
    }
    .container-boxes{
        width: 100%;
        /* align-content: space-around; */
    }
    .box{
        width: 70px;
        height: 70px;
    }
    .container-title{
        margin-top: 40px;
    }
   
    
}
@media   (min-width:350px) and (max-width: 820px) {
    body{
        overflow-y: auto;
    }

    .box{
        width: 50%;
        height: 50%;
       
    }
    .container{
        width: 80% ;
    }
    .container-title{
        margin-top: 40px;
        margin-bottom: 25px;
    }
   
}

@media (min-width:820px) and(max-width:1280px){
    body{
        overflow-y: auto;
    }
    .container{
        width: 100%;
    }
    .container-box-titleBox{
        
     width: 25%;
     height: 25%;
    }
    .box{
       width: 60%;
       height: 60%;
    }
   
    .title-box{
        margin-top: 10px;
        font-size: 18px;
        font-weight: 600;
    }
    .title{
        font-size: 25px;
        font-weight: 600;
    }
  
    .container-title{
        margin-bottom: 20px;
    }
}
@media (min-width:1231px) and (max-width:1510px){
    .container-box-titleBox{
        margin: 1%;
    }
   
}

.hidden {
    opacity: 0; 
    transition: opacity 1s ease; 
}

.fade-in {
    opacity: 1; 
}
button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    75% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.5s ease;
}
::-webkit-scrollbar{
    display: none;
}