/* Contenedor principal */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

/* Estilos del Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;

}

/* Capa de oscuridad (Overlay) para que el texto resalte */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Asegura que el contenido esté por encima */
.hero-badge,
.logo-wrapper,
.hero-tagline,
.hero-date {
    position: relative;
    z-index: 1;
}