.hero-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 320px;
    max-height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner__overlay {
    display: flex;
    align-items: center;
    height: 100%;
    /* justify-content: center; */
    padding: 0px 110px 0px 110px;
    position: relative;
    width: 100%;
}

.hero-banner__overlay:before {
    background: linear-gradient(to bottom right,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.2));
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-banner__content {

    color: #fff;
    max-width: 800px;
    padding: 1rem;
    z-index: 1;
}

.hero-banner__content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-banner__content p {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-banner__content {
        padding: 0;
        text-align: center;
    }

    .hero-banner {
        max-height: none;
        min-height: 0;
        height: 448px;
    }

    .hero-banner__overlay {
        height: 100%;
        padding: 40px 20px;
        align-items: flex-end;
    }

    .hero-banner__content h1 {
        font-size: 2rem;
    }

    .hero-banner__content p {
        font-size: 1rem;
    }
}

/* Animación */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}
