﻿/* --- HEADER Y MENU (Restaurados y fijos) --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(27, 38, 50, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-container {
    max-width: 1400px; /* O el ancho que prefieras para tu contenido */
    margin: 0 auto;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

    .main-nav a {
        color: #F7F3EC;
        text-decoration: none;
        font-size: .95rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .main-nav a:hover {
            color: var(--color-accent, #E8B461);
        }

.nav-cta {
    background: var(--color-accent, #E8B461);
    color: #18202A !important;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 700;
}

/* --- HERO VIDEO 100% ANCHO REAL --- */
.hero-video-section {
    position: relative;
    /* Estas 4 líneas hacen que el video ocupe el 100% de la pantalla */
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 40vh;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Clave para que no queden bordes */
}

/* OVERLAY ULTRA SUAVE: Para que el video NO se vea oscuro */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Solo un 15% de negro para dar un toque de contraste al logo */
    background: rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* --- LOGO CENTRADO Y PROLIJO --- */
.hero-video-content-centered {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-logo-pro {
    height: auto;
    width: 280px; /* Tamaño elegante */
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.5));
}

.badge-live {
    position: absolute;
    bottom: 20px;
    right: 4%; /* Alineado con el contenedor */
    z-index: 4;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.65rem;
    text-transform: uppercase;
}

/* --- RESPONSIVE --- */
@media (max-width: 980px) {
    .main-nav {
        display: none; /* Aquí va tu lógica de menú hamburguesa */
    }

    .hero-video-section {
        height: 30vh;
    }

    .hero-video-logo-pro {
        width: 200px;
    }
}
