/* -------------------------------------------------------
 * ESTILOS ENCABEZADO PAGINA ARCHIVO PROYECTOS - INICIO
 * (RESTAURANDO ESTILOS ORIGINALES DE ENCABEZADO
 * CON GALERIA LATERAL Y DISEÑO DOS COLUMNAS)
 * ------------------------------------------------------- */
 .proyectos-container { /* CLASE RENOMBRADA: quienes-somos-container */
    font-family: 'TuFuentePrincipal', sans-serif;
    color: #333333; /* CAMBIADO: Texto principal a GRIS OSCURO */
    line-height: 1.6;
    background-color: #f9f9f9; /* CAMBIADO: Fondo general a GRIS MUY CLARO */
}

.main-header {
    background-color: #222222; /* CAMBIADO: Fondo del header a GRIS MUY OSCURO */
    color: #eeeeee; /* CAMBIADO: Texto del header a GRIS MUY CLARO */
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
    min-height: 70vh;
    overflow: hidden;
    position: relative;
}

.header-text-column {
    /* Mantenemos el padding superior/inferior, y aumentamos el izquierdo/derecho */
    padding: 100px 50px 100px 50px; /* Aquí se añade espacio a IZQUIERDA y DERECHA */
    margin-right: -100px;
    position: relative;
    z-index: 10;
    text-align: left;
}

.header-gallery-column {
    position: relative;
    overflow: hidden;
}

.header-swiper {
    width: 100%;
    height: 100%;
}

.header-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-header h1 {
    font-size: 7.0em;
    font-weight: bold;
    letter-spacing: -4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
    opacity: 0.9; /* CAMBIADO: Opacidad a 0.55 */
    color: #dddddd; /* CAMBIADO: Color del título a GRIS CLARO */
}

.main-header p {
    font-size: 1.2em;
    opacity: 0.90; /* CAMBIADO: Opacidad a 0.90 */
    max-width: 80%;
    text-align: left;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.55); /* CAMBIADO: Overlay a GRIS OSCURO semi-transparente */
}

/* ESTILO DEL CONTENEDOR DE LA IMAGEN */
.header-fixed-image-container {
    /* Es crucial que el contenedor tenga la altura completa de su padre (.main-header) */
    width: 100%;
    height: 100%; /* <<-- ¡Asegura la altura! */
    position: relative; /* Necesario para posicionar el overlay */
    overflow: hidden; /* Oculta cualquier parte de la imagen que se desborde */
}

/* ESTILO DE LA IMAGEN FIJA */
.header-fixed-image-container .header-fixed-image {
    display: block;
    width: 100%;
    height: 100%; /* <<-- ¡Asegura la altura de la imagen! */
    /* La propiedad clave: Hace que la imagen cubra completamente el contenedor */
    object-fit: cover; 
}

/* Diseño Responsive - Cambios para el encabezado en móvil - VERSION COMPLETA */
@media (max-width: 768px) {
    .main-header {
        display: block;
        text-align: center;
        padding: 80px 20px;
        min-height: auto;
    }

    .header-text-column {
        padding-right: 0;
        padding-left: 0;
        margin-right: 0;
    }

    .header-gallery-column {
        display: none;
    }

    .main-header h1 {
        font-size: 4.0em;
        letter-spacing: -2px;
        opacity: 0.55; /* CAMBIADO: Opacidad a 0.55 en móvil */
        line-height: 1;
    }

    .main-header p {
        max-width: 95%;
        opacity: 0.90; /* CAMBIADO: Opacidad a 0.90 en móvil */
    }
}

.video-projects-grid {
padding-top: 6vw;
}

/* --- ESTILOS ESPECÍFICOS PARA LA GRILLA DE PROYECTOS --- */

/* Estilo para los títulos (h3) dentro de cada elemento de la grilla */
.video-project h3 {
    /* Define el color base del título (aunque el enlace lo sobrescribirá) */
    color: #000000; 
}

/* Estilo para el enlace (<a>) del título del proyecto */
.video-project h3 a {
    /* Establece el color del texto a negro */
    color: #000000 !important; 
    /* Quita la decoración que ya estaba en el HTML, pero es buena práctica mantenerla */
    text-decoration: none;
}

/* Estilo para el hover (opcional, pero recomendado para feedback visual) */
.video-project h3 a:hover {
    color: #444444 !important; /* Un gris oscuro al pasar el ratón */
    text-decoration: underline; /* Puedes añadir un subrayado al pasar el ratón */
}

/* Estilo para los títulos (h3) dentro de cada elemento de la grilla */
.video-project p {
    /* Define el color base del título (aunque el enlace lo sobrescribirá) */
    color: #000000; 
}


/* -------------------------------------------------------
 * ESTILOS ENCABEZADO PAGINA ARCHIVO PROYECTOS - FIN
 * ------------------------------------------------------- */