/* --- RESET BÁSICO --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Evita barras de desplazamiento */
    background-color: #000000;
}

/* --- CLASE MAESTRA PARA OCULTAR --- */
.oculto {
    display: none !important;
}

/* --- PANTALLA DE INICIO (BOTÓN) --- */
#pantalla-inicio {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 30; /* Capa intermedia, encima del video */
}

#btn-iniciar {
    padding: 15px 35px;
    font-size: 1.2rem;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #ffffff;
    cursor: pointer;
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

#btn-iniciar:hover {
    background-color: #ffffff;
    color: #000000;
}

/* --- VIDEO DE FONDO --- */
#video-fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Asegura que el video ocupe toda la pantalla sin deformarse */
    z-index: 10; /* La capa más baja, siempre al fondo */
}

/* --- PANTALLA FINAL (EN CONSTRUCCIÓN) --- */
#pantalla-final {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 50; /* La capa más alta, cubre todo absolutamente */
}

/* Animación sutil para el engranaje */
.icono-engranaje {
    animation: rotarEngranaje 8s linear infinite;
}

@keyframes rotarEngranaje {
    100% { transform: rotate(360deg); }
}

.texto-construccion {
    margin-top: 25px;
    font-family: sans-serif;
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 300;
}