/* =============================================================================
   WIDGET: Hero Genérico — .rw-hero-generic
   ============================================================================= */

.rw-hero-generic {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 40px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.rw-hero-generic__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rw-hero-generic__inner {
    position: relative;
    z-index: 1;
    align-self: stretch;
    min-height: 377px;
    padding-block: 145px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rw-hero-generic__content {
    max-width: 803px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rw-hero-generic__title {
    align-self: stretch;
    text-align: center;
    color: #ffffff;
    font-size: 70px;
    font-family: 'Manrope', var(--rw-font-heading);
    font-weight: 400;
    line-height: 70px;
    word-wrap: break-word;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 1);
    margin: 0;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 1024px) {
    .rw-hero-generic__title {
        font-size: 52px;
        line-height: 56px;
    }
}

@media (max-width: 767px) {
    .rw-hero-generic {
        padding: 60px 24px 10px;
    }

    .rw-hero-generic__inner {
        padding-block: 80px;
    }

    .rw-hero-generic__title {
        font-size: 36px;
        line-height: 42px;
    }
}
