﻿/*Carrusel Home*/
.hero-container {
    --hero-h: 720px; /* cámbialo aquí y ya */
    position: relative;
    overflow: hidden;
}

.hero-tall {
    min-height: clamp(420px, 70vh, 820px);
}

@media (max-width: 991.98px) {
    .hero-container {
        --hero-h: 520px;
    }
}

.hero-carousel {
    height: 100%;
}

    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        height: 100%;
    }

    .hero-carousel img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
body {
}
