@media(max-width:991px){

nav{

display:none;

}
.hero-img{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
}

/* Tablets */
@media (max-width: 992px){

    .hero-img{
        width:100%;
        height:auto;
        margin-top: 120px;
    }

}

/* Celulares */
@media (max-width: 768px){

    .hero-img{
        width:100%;
        height:auto;
        margin-top: 180px;
    }

}

/* Celulares pequeños */
@media (max-width: 480px){

    .hero-img{
        width:100%;
        height:auto;
        min-width:100%;
        margin-top: 190px;
    }

}
@media(max-width:768px){

.whatsapp{

width:65px;

height:65px;

right:20px;

bottom:20px;

}

.whatsapp img{

width:28px;

}

}




@media(max-width:768px){

.slide{

height:380px;

}

.carousel-section h2{

font-size:34px;

}

.prev,
.next{

width:55px;

height:55px;

}

}

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr;

}

.footer-map iframe{

height:280px;

}

.footer{

text-align:center;

}

.socials{

align-items:center;

}

}
}

.promociones{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:30px;
    padding:20px;
}

.promo-card{
    width:100%;
    overflow:hidden;
    border-radius:20px;
}

.promo-img{
    width:100%;
    height:auto;
    display:block;

    /* efecto latido */
    animation: heartbeat 3s infinite ease-in-out;
    transform-origin:center center;
}

/* Animación */
@keyframes heartbeat{

    0%{
        transform:scale(1);
    }

    10%{
        transform:scale(1.02);
    }

    20%{
        transform:scale(1);
    }

    30%{
        transform:scale(1.03);
    }

    40%{
        transform:scale(1);
    }

    100%{
        transform:scale(1);
    }
}

/* Tablets */
@media(max-width:991px){

    .promociones{
        padding:15px;
        gap:20px;
    }

}

/* Celulares */
@media(max-width:768px){

    .promociones{
        padding:10px;
        gap:15px;
    }

    .promo-card{
        border-radius:15px;
    }

}

/* Celulares pequeños */
@media(max-width:480px){

    .promo-img{
        animation-duration:4s;
    }

}