

#villanuevammlvWrapper{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-block: 40px;
}

#villanuevammlv{
    width: 95%;
    height: 90%;
    display: flex;
    flex-direction: row;
    padding: 20px;
    align-items: center;
    box-shadow: 0px 0px 8px 1px var(--color-sombra);
    border-radius: 10px;
    gap: 20px;
    background: linear-gradient(135deg, #fff9fb 0%, #feffee 100%);
}

#villanuevammlvImagenes{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
}


#villanuevammlvContImg1{
    border-radius: 10px;
    width: 30%;
    aspect-ratio: 1/1;
    filter: drop-shadow(10px 10px 7px var(--color-sombra));
    object-fit: cover;  
    overflow: hidden;
}


#villanuevammlvContImg1:hover{
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

#villanuevammlvImg1{
    width: 100%;
    height: 100%;
}

#villanuevammlvContImg2{
    border-radius: 10px;
    width: 30%;
    aspect-ratio: 1/1;
    filter: drop-shadow(10px 10px 7px var(--color-sombra));
    object-fit: cover;  
    overflow: hidden;
}

#villanuevammlvContImg2:hover{
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

#villanuevammlvContImg3:hover{
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

#villanuevammlvImg2{
    width: 100%;
    height: 100%;
}

#villanuevammlvContImg3{
    border-radius: 10px;
    width: 30%;
    aspect-ratio: 1/1;
    filter: drop-shadow(10px 10px 7px var(--color-sombra));
    object-fit: cover;  
    overflow: hidden;
}



#villanuevammlvImg3{
    width: 100%;
    height: 100%;
}


#villanuevammlvContenido{
    width: 50%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#villanuevammlvContenido > h3{
    text-align: center;
}

#villanuevammlvTalleres{
    width: 80%;
}

#villanuevammlvTalleres ul{
    list-style: none;
  
}

#villanuevammlvTalleres li{
    position: relative;
    padding-left: 1.5em;
}


#villanuevammlvTalleres li::before {
    content: "✓";
    color: var(--color-amarillo);
    position: absolute;
    left: 0;
}

#villanuevammlvTalleres li:hover{
    color: var(--color-amarillo);

}

#villanuevammlv h3{
    color: var(--color-amarillo);
    text-align: center;
}

#villanuevammlv p{
}
 
#villanuevammlvMatricularme{
    padding: 10px 20px;
    background-color: var(--color-amarillo);
    color: var(--color-blanco);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}




@media screen and (max-aspect-ratio: 1.5/1) {
    #villanuevammlv{
        flex-direction: column-reverse;
    }

    #villanuevammlvContenido{
        width: 95%;
    }

    #villanuevammlvImagenes{
        flex-direction: column;
        gap: 40px;
    }

    #villanuevammlvImagenes >div{
        width: 90%;
    }
}