/* ======================================= */
/* 1. ESTILOS GENERALES (RESET) */
/* ======================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f7f6;
    color: #333;
    font-family: Arial, sans-serif;
    display: flex; 
    flex-direction: column;
    min-height: 100vh;
}

/* ======================================= */
/* 2. ESTILOS DE ESCRITORIO (PC/Laptop) */
/* ======================================= */

/* Header: Contenedor del video superior */
header {
    background-color: #000;
    padding: 0;
    width: 100%;
    /* Altura fija para escritorio para efecto "cine" */
    height: 600px; 
    position: relative;
    overflow: hidden;
    display: block;
}

/* El video de fondo en escritorio (recortado para llenar espacio) */
.video-contenedor video {
    position: absolute; 
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover; /* Recorta para llenar */
}

/* Contenido (Texto) encima del video */
.contenido-superpuesto {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white; 
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Navegación (si la usas en el futuro) */
nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

nav a:hover {
    color: #f39c12;
}

/* ======================================= */
/* 3. MAIN (Sección de Imagen Construcción) */
/* ======================================= */

main {
    flex-grow: 1; 
    padding: 0;
    position: relative; 
    overflow: hidden;
    width: 100%;
}

.construccion-banner {
    width: 100%;
    /* Ocupa el resto de la pantalla en escritorio */
    min-height: calc(100vh - 600px); 
    position: relative;
    display: block; 
}

/* La imagen en escritorio (recortada para llenar) */
.construccion-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta para llenar */
    object-position: center;
    z-index: 1;
}

.mensaje-overlay {
    position: absolute;
    top: 50%;
    left: 50%; /* Centrado en escritorio */
    transform: translate(-50%, -50%); 
    z-index: 2;
    color: white; 
    text-align: center;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    max-width: 80%; 
}

/* Footer */
footer {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 15px;
    z-index: 10;
}

/* ======================================= */
/* 4. VERSIÓN MÓVIL (La Magia) */
/* ======================================= */

@media only screen and (max-width: 768px) {
    
    /* A. HEADER EN MÓVIL: Se adapta al tamaño del video */
    header {
        height: auto !important;     /* Altura automática */
        min-height: auto !important; /* Quita mínimos forzados */
        display: block;
    }

    /* B. VIDEO EN MÓVIL: Se ve completo (tira horizontal) */
    .video-contenedor video {
        position: relative !important; /* Deja de flotar */
        width: 100% !important;        /* Ancho total */
        height: auto !important;       /* Altura proporcional */
        min-height: 0 !important;
        transform: none !important;    /* Quita el centrado forzado */
        top: auto !important;
        left: auto !important;
        object-fit: contain !important; /* Muestra TODO el video */
        display: block;
    }

    /* C. CONTENEDOR DE IMAGEN EN MÓVIL */
    .construccion-banner {
        min-height: auto !important;
        height: auto !important;
    }

    /* D. IMAGEN EN MÓVIL: Se ve completa */
    .construccion-banner img {
        position: relative !important; /* Deja de flotar */
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important; /* Muestra TODA la imagen */
    }

    /* E. AJUSTE DE TEXTOS (Para que no tapen o queden raros) */
    .contenido-superpuesto, .mensaje-overlay {
        position: relative !important; /* Ya no flota encima */
        transform: none !important;
        top: auto !important;
        left: auto !important;
        width: 100%;
        background: #222; /* Fondo oscuro para que se lea el texto debajo */
        padding: 20px;
    }
}