.section-video-hero {
    position: relative;
    width: calc(100% - 40px);
    max-width: 1800px;
    height: 750px;
    margin: 60px auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7; /* Suavizar el video para que el texto destaque */
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.video-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.video-hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: var(--white);
    letter-spacing: 2px;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .section-video-hero {
        height: 500px;
        width: calc(100% - 40px);
        margin: 40px auto;
        border-radius: 24px;
    }
    
    .video-hero-content h2 {
        font-size: 36px;
    }
}
