body{
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: row;
}

ul {
    list-style: none; /* Elimina los marcadores */
    padding-left: 0; /* Opcional: elimina el padding predeterminado */
}

li {
    cursor: pointer;
}

.portada_container{
    background-color:black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100dvh;
    transition: width 0.5s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;

    &.menu_abierto{
        width: 80vw;
    }

    &.login_abierto{
        width: 10vw;
    }

    .letra {
        font-family: 'Montserrat', sans-serif;
        font-weight: 300;
        font-size: 18px;
        color: #ffffff;
    }
}

.container{
    background-color:black;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100vw;
    height: fit-content;
    min-height: 100dvh;
    transition: width 0.5s ease;
    position: relative;
    z-index: 1;
    color: #ffffff;

    &.menu_abierto{
        width: 80vw;
    }

    &.login_abierto{
        width: 10vw;
    }

    .letra {
        font-family: 'Montserrat', sans-serif;
        font-weight: 300;
        font-size: 18px;
        color: #ffffff;
    }

    .portada{
        width: 50dvw;
    }

    .portada{
        width: 50dvw;
    }

    .gallery {
        position: relative;
        width: 100%;
        height: 90dvh; /* Ajusta la altura según necesites */
    }
    
    .imagen {
        position: absolute;
        max-width: 200px; /* Tamaño máximo de las imágenes */
        max-height: 200px;
        height: auto;       /* Mantiene la proporción */
        margin: 30px;       /* Espacio entre imágenes */
        top: 0px;
        left: 0px;
        transition: transform 0.3s, top 1s ease, left 1s ease;
    }
    
    .imagen:hover {
        transform: scale(2); /* Efecto de zoom al pasar el mouse */
        z-index: 1;
    }
}


.menu_lateral{
    background-color: white;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 0vw;
    height: 100dvh;
    transition: width 0.5s ease;
    align-items: flex-end;
    position: fixed;
    right: 0;
    white-space: nowrap;
    padding: 10px;
    overflow: hidden;

    &.menu_abierto{
        width: 20vw;
    }

    &.login_abierto{
        width: 90vw;
    }

    .letra {
        font-family: 'Montserrat', sans-serif;
        font-weight: 300;
        font-size: 18px;
        color: black;
    }

    .portada{
        width: 50dvw;
    }

    .elemento_menu{
        display: flex;
        flex-direction: column;
        padding: 15px;
        line-height: 40px;
    }
}