/* single-proyecto.css */
/* Estilos generales para la página del proyecto individual */
.single-proyecto {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-family: sans-serif;
    color: #333;
}

/* ------------------------------------
    Sección HERO de Video
    ------------------------------------ */
.proyecto-video-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative; /* Añadido: Posicionamiento relativo para el contenedor Hero - NECESARIO PARA JS */
    display: flex;
    justify-content: center;
    align-items: center;
}

.proyecto-video-container video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
}

/* ------------------------------------
    Sección "Ver siguientes proyectos" (SOLUCIÓN FLEX Y ALTURA DE IMAGEN)
    ------------------------------------ */
    .siguientes-proyectos {
        padding: 60px 0;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        background-color: #f9f9f9;
    }
    
    .siguientes-proyectos h2 {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: #333;
    }
    
    .proyectos-galeria {
        display: flex;
        flex-direction: row;
        justify-content: space-between; 
        width: 100%;
        max-width: none; 
        margin: 30px auto;
        padding: 0 40px; 
        box-sizing: border-box;
    }
    
    .proyecto-item {
        flex-basis: 24%;
        margin-bottom: 30px; 
        text-align: center;
        box-sizing: border-box;
        /* APLICAMOS FLEX-DIRECTION: COLUMN para asegurar el flujo vertical estricto */
        display: flex; 
        flex-direction: column;
        justify-content: flex-start; 
    }
    
    /* Contenedor de la Imagen (el enlace <a>) */
    .proyecto-item a {
        display: block; 
        overflow: hidden; 
        border-radius: 10px; 
        /* Nuevo margen para separar la imagen del título */
        margin-bottom: 10px; 
    }
    
    .proyecto-item img {
        width: 80%; 
        height: 290px; /* Altura para formato más cuadrado */
        display: block;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
        box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.15);
        object-fit: cover; 
    }
    
    .proyecto-item h3 {
        font-size: 1.4em;
        /* CLAVE: Eliminamos todos los márgenes */
        margin: 0; 
        padding: 0;
        line-height: 1.2;
        color: #555;
    }
    
    /* Neutralizamos cualquier rastro de la etiqueta P, por si acaso */
    .proyecto-item p {
        margin: 0 !important;
        padding: 0;
        line-height: 1;
    }
    
    .proyecto-item h3 a:visited {
        color: inherit;
    }
    
    .proyecto-item h3:hover,
    .proyecto-item h3 a:hover {
        opacity: 0.8;
        color: #555;
    }

/* ------------------------------------
    Navegación fija (Proyectos Anterior/Siguiente)
    ------------------------------------ */
/* ... (resto del código de navegación sin cambios) ... */
.proyecto-nav {
    position: fixed; 
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0;
    z-index: 1000;
    border-radius: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    transition: top 0.5s ease-in-out; 
    width: 82.5px;
    height: 82.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: auto;
}

.proyecto-nav:hover {
    opacity: 1;
}

/* Estilos ENFOCADOS para los enlaces de navegación dentro de .proyecto-nav */
.proyecto-nav a {
    color: white !important;
    text-decoration: none;
    font-size: 0.94em !important;
    display: block;
    padding: 0 !important;
    text-align: center;
    line-height: 1.2em;
    white-space: normal;
    width: 100%;
    box-sizing: border-box;
}

.proyecto-nav-prev {
    left: 20px;
}

.proyecto-nav-next {
    right: 20px;
}

.nav-icon {
    font-size: 1.35em;
    margin-bottom: 0px;
    display: block;
}

.nav-text {
    font-size: 0.85em;
    display: block;
    line-height: 1.1em;
}