/*CSS Cajas ZOOM*/
*{
    margin: 0;
    padding: 0;
    font-family: 'MontserratRegular';
}
#parte3{
    margin-bottom:80px;
}
#parte3 .titulo{
    color: #262626;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    font-family: 'MontserratSemiBold', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 48px;
}
#parte3 .Flex-Image-zoom{
    display: flex;
    justify-content: center;
    gap:16px;
}
#parte3 .card{
    position: relative;
    overflow: hidden;
    /*margin: 8px;*/
}
#parte3 .card-image{
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
    transition: transform .75s;
}
#parte3 .card:hover .card-image{
    transform:scale(1.15);
    
}
#parte3 .card-title{
    position: absolute;
    color: #fff;
    font-family: 'MontserratSemiBold';
    font-size: 36px;
    font-weight: bold;
    line-height: 44px;
    bottom: 76px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    border: 1px solid #ffffff;
    height: 60px;
    display: flex;
    bottom: 76px;
    align-items: center;
    justify-content: center;
    padding-inline: 16px;
}
#parte3 .card-bajada{
    position: absolute;
    color: #fff;
    font-family: 'MontserratRegular', sans-serif;
    font-size: 24px;
    line-height: 28px;
    left: 34px;
    bottom: calc(7%);
    text-decoration: underline;
}
/*Image Responsive*/
#parte3 #image-desktop{
    display:block;
}
@media (max-width: 1660px) {
    #parte3 .card-title {
        bottom: 40px;
        font-size: 27px;
    }
    #parte3 .card-bajada {
        left: 16px;
        bottom: 19px;
        font-size: 16px;
    }
}
@media (max-width: 1000px) {
    #parte3 .card-title {
        bottom: 22px;
        font-size: 20px;
        margin-bottom: 8px;
    }
    #parte3 .card-title_2 {
        bottom: 25px;
    }
    #parte3 .card-bajada {
        left: 16px;
        bottom: 18px;
        font-size: 14px;
        /*max-width: 70%;*/
        line-height: 17px;
    }
}
@media (max-width: 700px) {
    
    #parte3 .Flex-Image-zoom{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 400px) {
    #parte3 .card {
        margin-bottom: 0px;
    }
    #parte3 .Flex-Image-zoom{
        gap: 8px;
    }
}
