/* SECCION HERO */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Imagen de fondo reemplazando el video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Overlay de gradiente para texto legible */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 0, 0, 0.18) 100%);
    z-index: 1;
}

/* Wrapper contenido */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    max-width: 580px;
    color: #fff;
}

.hero-subtitle {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    display: block;
}

.hero-title {
    color: #fff;
    font-size: 3.8rem;
    line-height: 1.08;
    margin-bottom: 22px;
    font-family: var(--font-heading);
}

.hero-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 34px;
    color: #e0e0e0;
    max-width: 480px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        height: 70vh;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 85vh;
        min-height: 480px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-text {
        font-size: 0.97rem;
    }

    .hero-overlay {
        background: linear-gradient(to right,
                rgba(0, 0, 0, 0.85) 0%,
                rgba(0, 0, 0, 0.65) 100%);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        max-width: 100%;
    }
}