/* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* VIDEO */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* OVERLAY oscuro */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* CONTENIDO */
.hero-content {
    position: relative;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
}

/* LISTA */
.hero-list li {
    font-size: 1.2rem;
    margin: 5px 0;
    opacity: 0.9;
}

/* OPCIONAL: efecto elegante */
.hero-content h1 {
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content p {
    max-width: 600px;
    margin: auto;
}

background: linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.4)
);

.hero-content {
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

