.unal-main-wrapper {
    width: 100%;
    max-width: 100%;
    margin: -35px 0 50px 0;
    border-radius: 0%;
    padding: 0;
}

body {
    background-color: #FFF;
    background-image: none;
}

.component-main-col {
    padding: 0;
}

.main-container.detalle {
    margin: 0;
}

/* HERO IMAGE */
.hero-image {
    width: 100%;
    height: 45vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* MENÚ UNAL */
.menu-horizontal-unal {
    width: 100%;
    display: flex;
    background-color: #0b5a3c;
}

/* BOTONES */
.menu-horizontal-unal a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    height: 64px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
}

/* Quitar borde del último */
.menu-horizontal-unal a:last-child {
    border-right: none;
}

/* HOVER */
.menu-horizontal-unal a:hover {
    background-color: #0f6d4a;
}

/* BOTÓN ACTIVO (opcional) */
.menu-horizontal-unal a.active {
    background-color: #ffffff;
    color: #0b5a3c;
}

/* CONTENIDO */
.articulo-contenido {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .menu-horizontal-unal {
        flex-direction: column;
    }

    .menu-horizontal-unal a {
        height: 56px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* SECCIÓN GENERAL */
.seccion-dos-columnas {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 30px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}


/* COLUMNA TEXTO */
.columna-texto h2 {
    color: #0b5a3c;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.columna-texto h3 {
    color: #444;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.columna-texto p {
    color: #555;
    line-height: 1.6;
    max-width: 480px;
}

/* COLUMNA SLIDER */
.columna-slider {
    width: 100%;
}

.columna-slider img,
.columna-slider iframe {
    width: 100%;
    height: auto;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .seccion-dos-columnas {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .columna-texto {
        text-align: center;
    }

    .columna-texto p {
        margin: 0 auto;
    }
}

hr {
    border: none;
    height: 3px;
    background-color: #0b5a3c;
    margin: 0 auto;
    width: 90%;
}

/* SECCIÓN SLIDERS 70 / 30 */
.seccion-sliders-70-30 {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 50px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 2rem;
}


/* SLIDER GRANDE */
.slider-principal {
    width: 100%;
}

/* SLIDER PEQUEÑO */
.slider-secundario {
    width: 100%;
}

/* Asegurar responsive del slider */
.slider-principal img,
.slider-secundario img,
.slider-principal iframe,
.slider-secundario iframe {
    width: 100%;
    height: auto;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .seccion-sliders-70-30 {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PROYECTOS EGRESADOS
========================= */

.proyectos-egresados {
    background-color: #7f7cf7;
    padding: 4rem 2rem;
}

.proyectos-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    box-sizing: border-box;
}

/* TEXTO */
.proyectos-texto h2 {
    color: #ffffff;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.proyectos-texto p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 380px;
    margin-bottom: 2rem;
}

.btn-ver-todos {
    display: inline-block;
    background-color: #0b3cff;
    color: #ffffff !important;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

/* TARJETAS */
.proyectos-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.proyecto-card {
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 36px;
    padding: 1.5rem;
    text-align: center;
    box-sizing: border-box;
}

.proyecto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.proyecto-card.white {
    background-color: #ffffff;
    color: #000;
}

.proyecto-card.dark {
    background-color: #020b4f;
    color: #ffffff;
}

/* CONTENEDOR CUADRADO */
.proyecto-imagen {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* ← cuadrado perfecto */
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

/* IMAGEN */
.proyecto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ← recorta sin deformar */
    display: block;
}



.proyecto-card h3 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin: 0;
}

.h3-black-background {
    color: #FFF;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .proyectos-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .proyectos-texto p {
        margin: 0 auto 2rem;
    }
}

@media (max-width: 900px) {
    .proyectos-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .proyecto-imagen {
        height: 200px;
    }
}