/* ===== Banner de imagen o video ===== */
.full-width-banner {
    position: relative;
    width: 100vw;
    /* ocupa todo el ancho de la pantalla */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    /* altura base */
}

/* para video e imagen */
.full-width-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    height: 100vh;
    display: block;
}

/* para video e imagen */
.full-width-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    height: 40vh;
    display: block;
}

/* capa de texto encima */
.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* opcional: sombra ligera */
}

/* texto del banner */
.banner-text {
    color: #fff;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    padding: 0 1rem;
}

/* ===== Responsivo ===== */
@media (max-width: 430px) {
    .full-width-banner {
        height: 55vh;
    }

    .banner-text {
        font-size: clamp(1.2rem, 6vw, 2.2rem);
    }
}