 
        .banner-sustentabilidad {
    position: relative; /* Necesario para posicionar el video y el overlay */
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: Arial, sans-serif;
        border-radius: 10px;
}

/* Ajuste del video para que cubra todo el fondo */
.video-fondo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translate(-50%, -50%);
    /* 'contain' muestra el video completo, 'cover' hace zoom */
    object-fit: cover; 
    background-color: #800020; /* Fondo vino para llenar los huecos */
}

/* Capa degradada color vino */
.overlay-vino {
    position: absolute;
    top: 0;
    left: 0;
    width: 143%;
    height: 100%;
    z-index: 2;
    /* Cambia el 40% para que el color sólido empiece antes o después */
    background: linear-gradient(to right, rgba(128, 0, 32, 0) 0%, #800020 70%);
}

.banner-content {
    position: relative;
    z-index: 3; /* Por encima del video y del overlay */
    width: 45%;
    padding-right: 5%;
    text-align: center;
    color: white;
}

.logo-banner {
    max-width: 280px;
    margin-bottom: 20px;
}

.descripcion {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-accion {
    display: inline-block;
    background-color: #b39760; /* Color lima original */
    color: #333;
    padding: 12px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-accion:hover {
    background-color: #ffff;
    transform: translateY(-2px);
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .overlay-vino {
        background: rgba(128, 0, 32, 0.85); /* Oscurece todo el video en móvil */
    }
    .banner-content {
        width: 100%;
        padding: 20px;
        justify-content: center;
    }
}