/* =====================
   HERO CAROUSEL
===================== */

/* CADA SLIDE */
.hero-slide {
    height: calc(90vh);
    background-size: cover;
    background-position: center;
    position: relative;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);

    display: flex;
    align-items: center;
}

/* TEXTO */
.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 12px 0 20px;
}

/* BOTÓN */
.btn-hero {
    background-color: #8b2c2c;
    color: #ffffff;
    padding: 12px 32px;
    font-size: 0.85rem;
    text-transform: uppercase
}

.btn-hero:hover {
    opacity: 0.9;
    color: #ffffff;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-slide {
        height: 85vh;
    }

    .hero-title {
        font-size: 2rem;
    }
}