/* ============================================================
   header.css — Hero, navegación, scroll indicator
   ============================================================ */

/* -- Hero con video -- */
.hero-video-container {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.7) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }

/* -- Scroll indicator -- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
