
/* ===============================
   ARREGLO DEFINITIVO PARA EL HERO 
   =============================== */
.hero {
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
    background: none !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

/* Forzamos a que ningún overlay lo tape */
.hero::before,
.hero::after {
    display: none !important;
}

.hero-video {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    z-index: 0 !important;
}

.hero-overlay {
    position: absolute !important;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2 !important;
}

.hero .container {
    position: relative !important;
    z-index: 3 !important;
}
