/* =====================================================
   VARIABLES CSS - PALETA DE COLORES
   (Variables globales para todo el proyecto)
===================================================== */
:root {
    --primary: #000000;
    --secondary: #facc15;
    --accent: #eab308;
    --bg: #ffffff;
    --text: #334155;
    --muted: #94a3b8;
}

/* =====================================================
   RESET Y ESTILOS BASE
   (Estilos base del documento)
===================================================== */
body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    
}

/* =====================================================
   HEADER - NAVEGACIÓN PRINCIPAL
   (Estilos personalizados para el header - NO Bootstrap)
===================================================== */
.header__container {
    height: 64px;
    background: var(--primary);
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    height: 10vh;
}

.header__nav__link {
    color: #fff;
    margin: 0 12px;
    text-decoration: none;
    cursor: pointer;
}

.header__nav__link.active {
    color: var(--secondary);
    position: relative;
}

.header__nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
}

.header__btn__menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
}

/* =====================================================
   SIDEBAR - MENÚ MÓVIL
   (Estilos personalizados para el sidebar móvil - NO Bootstrap)
===================================================== */
.sidebar__container {
    position: fixed;
    top: 64px;
    left: -50%;
    width: 50%;
    height: 100vh;
    background: var(--primary);
    transition: 0.3s;
    z-index: 999;
    padding-top: 20px;
}

.sidebar__container.active {
    left: 0;
}

.sidebar__link {
    display: block;
    padding: 16px 20px;
    color: #fff;
    text-decoration: none;
}

/* =====================================================
   MAIN - CONTENEDOR PRINCIPAL
   (Estilos personalizados para el contenedor principal - NO Bootstrap)
===================================================== */
.main__container {
    margin-top: 64px;
}

/* =====================================================
   HERO - SECCIÓN DE VIDEO
   (Estilos personalizados para el video hero - NO Bootstrap)
===================================================== */
.hero__video__container {
    height: 90vh;
    position: relative;
}

.hero__video__container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__video__btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--secondary);
    border: none;
    padding: 12px 14px;
    border-radius: 50%;
}

/* =====================================================
   COLABORACIONES - SLIDER DE LOGOS
   (Estilos personalizados para la sección de colaboraciones - NO Bootstrap)
===================================================== */
.colaboraciones__section {
    background: linear-gradient(180deg, 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.colaboraciones__section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.colaboraciones__section .container {
    padding: 0;
    max-width: 100%;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg);
    border-radius: 2px;
}

/* Animación del slider */
@keyframes scroll__animation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 12));
    }
}

.slider__container {
    background: transparent;
    height: 120px;
    margin: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.slider__container::before,
.slider__container::after {
    background: linear-gradient(to right, transparent 100%);
    content: "";
    height: 120px;
    position: absolute;
    width: 150px;
    z-index: 2;
    top: 20px;
}

.slider__container::after {
    right: 0;
    top: 20px;
    transform: rotateZ(180deg);
}

.slider__container::before {
    left: 0;
    top: 20px;
}

.slide__track {
    animation: scroll__animation 40s linear infinite;
    display: flex;
    width: calc(250px * 24);
    gap: 0;
}

.slide__item {
    height: 120px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    flex-shrink: 0;
}

.slide__item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.slide__item:hover img {
    filter: grayscale(0%) brightness(1.2);
    opacity: 1;
    transform: scale(1.05);
}

/* =====================================================
   MÉTRICAS - SECCIÓN DE ESTADÍSTICAS
   (Estilos personalizados para la sección de métricas - NO Bootstrap)
===================================================== */
.metrics__section {
    padding: 60px 0;
}

.metrics__card {
    text-align: center;
}

.metrics__number {
    font-size: 42px;
    color: var(--accent);
}

/* =====================================================
   NOSOTROS - SECCIÓN ACERCA DE
   (Estilos personalizados para la sección nosotros - NO Bootstrap)
===================================================== */
.about__card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

/* =====================================================
   GALERÍA - GRID DE IMÁGENES
   (Estilos personalizados para la galería - NO Bootstrap)
===================================================== */
.gallery__grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

.image__container {
    position: relative;
    overflow: hidden;
}

.overlay__effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image__container:hover .overlay__effect {
    opacity: 1;
}
/* =====================================================
   REPOSITORIO - ICONOS DE TIPOS DE PROYECTO
   (Estilos para la barra de iconos de tipos de proyecto)
===================================================== */
.cttn__header__icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    width: 100%;
    padding: 10px 0 20px 0;
}

.cttn__header__icons__div {
    text-align: center;
}

.cttn__header__icons__div__div {
    color: #000000;
    border-radius: 10px;
    transition: 0.2s;
    width: 100%;
    padding: 15px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cttn__header__icons__div__div svg {
    width: 70px !important;
    height: 70px !important;
}

.cttn__header__icons__div__div:hover {
    background: rgba(255, 255, 255, 0.5);
    color: #1f1e1e;
    transform: scale(1.05);
}

/* =====================================================
   REPOSITORIO - BUSCADOR
   (Estilos para el buscador de proyectos)
===================================================== */
.cttn__header__search {
    width: 85%;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 40px;
}

.cttn__header__search div:first-child {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
    margin: 40px 0;
}

.cttn__header__search div:first-child label {
    color: #fff;
    font-size: 36px;
    font-style: italic;
    text-align: center;
}

.cttn__header__search div:nth-child(2) {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 0;
    padding: 50px 20px;
}

.cttn__header__search div:nth-child(2) input {
    border-radius: 20px;
    border: 0px;
    padding: 12px;
    font-style: italic;
    width: 50%;
}

.cttn__header__search div:nth-child(2) select {
    border-radius: 20px;
    border: 0px;
    padding: 12px;
    background: #10bd6d;
    width: 16%;
    color: #fff;
    margin: 0 15px;
}

.cttn__header__search div:nth-child(2) button {
    border-radius: 20px;
    border: 0px;
    padding: 10px 0;
    background: #044f32;
    width: 16%;
    margin: 0 15px;
    color: #fff;
}

input:focus, select:focus {
    outline: none;
}

/* =====================================================
   REPOSITORIO - VISTA DE PROYECTOS INICIO
   (Estilos para la vista de proyectos en la página principal)
===================================================== */
.cttn__proyectos__inicio {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px 0;
}

.card {
    position: relative;
    width: 30%;
    margin: 10px;
    height: 200px;
    background-color: #f2f2f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
    box-shadow: 0 0 0 5px #ffffff80;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.card__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #6c8c73;
    color: #fff;
    transform: rotateX(-90deg);
    transform-origin: bottom;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover .card__content {
    transform: rotateX(0deg);
}

.card__title {
    margin: 0;
    font-size: 15px;
    color: #f6f6f6;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: justify;
}

.card__description {
    margin: 10px 0 0;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: justify;
}

/* =====================================================
   REPOSITORIO - VISTA DE BÚSQUEDA DE PROYECTOS
   (Estilos para los resultados de búsqueda con efecto libro 3D)
===================================================== */
.cttn__busqueda {
    display: flex;
    justify-content: space-around;
    align-items: start;
    width: 90%;
    flex-wrap: wrap;
    gap: 25px 0;
    margin: 25px auto;
}

.cttn__busqueda__proyecto {
    width: 48%;
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40vh;
}

.cttn__busqueda__proyecto__img {
    width: 48%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.cttn__busqueda__proyecto__info {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
}

.cttn__busqueda__proyecto__info div:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.cttn__busqueda__proyecto__info div:first-child h6:first-child {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: justify;
}

.cttn__busqueda__proyecto__info .autor {
    color: #717171;
    font-weight: bold;
}

.cttn__busqueda__proyecto__info span {
    color: #b4bd10;
    border-radius: 8px;
    border: 1px solid #b4bd10;
    padding: 5px 8px;
    transition: .3s ease-in-out;
    cursor: pointer;
}

.cttn__busqueda__proyecto__info span:hover {
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.excerpt {
    text-align: justify;
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

/* =====================================================
   REPOSITORIO - EFECTO LIBRO 3D
   (Estilos para el efecto de libro 3D en los resultados)
===================================================== */
.front-content-book {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-book .front-content-book p {
    font-size: 20px;
    font-weight: 700;
    padding: 0 10px;
    opacity: 1;
    background: linear-gradient(-45deg, #29b3f8 0%, #540fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    position: absolute;
    z-index: 10;
}

.card-book .content-book {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    background: linear-gradient(315deg, #71a256, #216351);
    color: #e8e8e8;
    padding: 20px;
    line-height: 1.5;
    border-radius: 5px;
    pointer-events: none;
    transform: translateY(96%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-book .content-book .heading-book {
    font-size: 32px;
    font-weight: 700;
}

.card-book:hover .content-book {
    transform: translateY(0);
}

.card-book:hover .front-content-book {
    transform: translateY(-30%);
}

.card-book:hover .front-content-book p {
    opacity: 0;
}

/* =====================================================
   REPOSITORIO - VISTA DETALLADA DE PROYECTO
   (Estilos para la vista detallada de un proyecto)
===================================================== */
.cttn__informacion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 0;
    width: 80%;
    margin: 0 auto;
    height: 75vh;
    border-radius: 16px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
    background: #6c8c73;
    border: 1px solid #63836a;
}

.cttn__informacion__img {
    width: 40%;
    height: 100%;
    position: relative;
    overflow: visible;
}

.cttn__informacion__img img {
    width: 100%;
    height: 100%;
    padding: 25px 0 25px 0;
    position: absolute;
    left: -40px;
    transition: transform 0.3s;
    filter: drop-shadow(10px 10px 10px rgba(46, 46, 46, 0.8));
}

.cttn__informacion__info {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 20px 10px 0;
}

.cttn__informacion__info__cabecera {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    color: #fff;
}

.cttn__informacion__info__cabecera h6 {
    color: #e1e1e1;
    font-style: italic;
    font-size: 16px;
    margin-bottom: 20px;
    width: 100%;
}

.cttn__informacion__info__cabecera h4 {
    text-align: justify;
    font-size: 20px;
    width: 100%;
}

.cttn__informacion__info__cabecera h5 {
    color: #ffffff;
    font-size: 18px;
    width: 100%;
    font-weight: 100 !important;
}

.cttn__informacion__info__data div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.cttn__informacion__info__data label {
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.cttn__informacion__info__data button:first-child {
    border: 1px solid #fff;
    border-radius: 16px;
    color: #fff;
    padding: 10px;
    width: 10%;
    background: transparent;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: .2s ease-in;
}

.cttn__informacion__info__data button:first-child:hover {
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.cttn__informacion__info__data button:nth-child(2) {
    background: rgb(16 94 58);
    border: none;
    border-radius: 16px;
    color: #fff;
    padding: 10px;
    width: 80%;
    transition: .2s ease-in-out;
}

.cttn__informacion__info__data button:nth-child(2):hover {
    background: #fff;
    color: rgb(16 94 58);
}

/* =====================================================
   REPOSITORIO - PANTALLA DE CARGA
   (Estilos para la pantalla de carga)
===================================================== */
.pantalla_carga {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1060;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loader {
    --dim: 5rem;
    width: var(--dim);
    height: var(--dim);
    position: absolute;
    animation: spin988 2s linear infinite;
}

.loader .circle {
    --color: #ffffff;
    --dim: 1.2rem;
    width: var(--dim);
    height: var(--dim);
    background-color: var(--color);
    border-radius: 50%;
    position: absolute;
}

.loader .circle:nth-child(1) {
    top: 0;
    left: 0;
}

.loader .circle:nth-child(2) {
    top: 0;
    right: 0;
}

.loader .circle:nth-child(3) {
    bottom: 0;
    left: 0;
}

.loader .circle:nth-child(4) {
    bottom: 0;
    right: 0;
}

@keyframes spin988 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* =====================================================
   REPOSITORIO - MENSAJES DE NOTIFICACIÓN
   (Estilos para los mensajes de éxito, advertencia y error)
===================================================== */
.content__body__mensajes {
    position: absolute;
    top: 70vh !important;
    right: 0 !important;
    overflow: hidden;
    z-index: 1200;
}

.success {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 320px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    background: #EDFBD8;
    border-radius: 8px;
    box-shadow: 0px 0px 5px -3px #111;
    border: 1px solid #12b963;
    transition: .5s ease-in;
    transform: translateX(100%);
}

.success__icon {
    width: 20px;
    height: 20px;
    transform: translateY(-2px);
    margin-right: 8px;
}

.success__icon path {
    fill: #84D65A;
}

.success__title {
    font-weight: 500;
    font-size: 14px;
    color: #2B641E;
}

.success__close {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
}

.success__close path {
    fill: #2B641E;
}

.warning {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 320px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    background: #FFF4CD;
    border-radius: 8px;
    box-shadow: 0px 0px 5px -3px #111;
    border: 1px solid #F59E0B;
    transition: .5s ease-in;
    transform: translateX(100%);
}

.warning__icon {
    width: 20px;
    height: 20px;
    transform: translateY(-2px);
    margin-right: 8px;
}

.warning__icon path {
    fill: #F59E0B;
}

.warning__title {
    font-weight: 500;
    font-size: 14px;
    color: #92400E;
}

.warning__close {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
}

.warning__close path {
    fill: #92400E;
}

.error {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 320px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    background: #FEE;
    border-radius: 8px;
    box-shadow: 0px 0px 5px -3px #111;
    border: 1px solid #EF4444;
    transition: .5s ease-in;
    transform: translateX(100%);
}

.error__icon {
    width: 20px;
    height: 20px;
    transform: translateY(-2px);
    margin-right: 8px;
}

.error__icon path {
    fill: #F87171;
}

.error__title {
    font-weight: 500;
    font-size: 14px;
    color: #991B1B;
}

.error__close {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
}

.error__close path {
    fill: #71192F;
}
/* =====================================================
   FOOTER - PIE DE PÁGINA
   (Estilos personalizados para el footer - NO Bootstrap)
===================================================== */
#footer {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #13151b;
    padding: 20px 0 20px;
    backdrop-filter: blur(3px);
}

.footer__container {
    max-width: 1170px;
    margin: auto;
}

.footer__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.footer__title__utb {
    color: #fff;
    margin: 0;
    margin-left: 15px;
}

.footer__ul {
    list-style: none;
    padding: 0 !important;
}

.footer__li {
    list-style-type: none !important;
}

.footer__col {
    width: 21%;
    padding: 0 15px;
}

.footer__col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer__col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #ffb700;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer__col .footer__ul .footer__li:not(:last-child) {
    margin-bottom: 10px;
}

.footer__col .footer__ul .footer__li .footer__link {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer__col .footer__ul .footer__li .footer__link:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer__col .social-links .footer__link {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer__col .social-links .footer__link:hover {
    color: #24262b;
    background-color: #ffffff;
}

.footer__header {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer__header img {
    height: 30px;
    padding-left: 15px;
}

.footer__copyright {
    margin: 0;
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 10px;
    text-align: end;
}

.icon__fontawesome {
    margin: 7px;
    font-weight: 600;
}

/* =====================================================
   MEDIA QUERIES - DISEÑO RESPONSIVE
   (Ajustes para diferentes tamaños de pantalla)
===================================================== */

/* Tablet y pantallas medianas */
@media (max-width: 992px) {
    .slider__container::before,
    .slider__container::after {
        width: 80px;
    }
    .header__logo {
        height: 7vh;
    }
}

/* Móvil y pantallas pequeñas */
@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .colaboraciones__section {
        padding: 50px 0;
    }

    .slider__container {
        height: 100px;
        padding: 15px 0;
    }

    .slide__item {
        width: 200px;
        height: 100px;
        padding: 0 15px;
    }

    .slide__item img {
        max-height: 60px;
    }

    .slider__container::before,
    .slider__container::after {
        width: 60px;
        height: 100px;
        top: 15px;
    }

    .footer__col {
        width: 50%;
        margin-bottom: 30px;
    }
}

/* Móvil pequeño */
@media (max-width: 576px) {
    .colaboraciones__section {
        padding: 40px 0;
    }

    .slider__container {
        height: 80px;
        padding: 10px 0;
    }

    .slide__item {
        width: 150px;
        height: 80px;
        padding: 0 10px;
    }

    .slide__item img {
        max-height: 50px;
    }

    .slider__container::before,
    .slider__container::after {
        width: 40px;
        height: 80px;
        top: 10px;
    }

    .slide__track {
        width: calc(150px * 24);
    }

    .footer__col {
        width: 100%;
    }
}

/* Móvil extra pequeño */
@media (max-width: 574px) {
    .header__logo {
        height: 6vh;
    }
    .footer__col {
        width: 100%;
    }
}



/* =====================================================
   REPOSITORIO - MEDIA QUERIES RESPONSIVE
   (Ajustes responsive para la funcionalidad del repositorio)
===================================================== */

/* Tablet y pantallas medianas */
@media (max-width: 950px) {
    .card {
        width: 45% !important;
    }
}

@media (max-width: 900px) {
    .cttn__busqueda__proyecto {
        width: 90% !important;
    }

    .cttn__informacion {
        width: 85% !important;
    }
}

/* Móvil y pantallas pequeñas */
@media (max-width: 750px) {
    .cttn__header__search div:nth-child(2) input {
        width: 100%;
    }

    .cttn__header__search div:nth-child(2) select {
        width: 40%;
    }

    .cttn__header__search div:nth-child(2) button {
        width: 40%;
    }

    .cttn__header__icons__div {
        width: 40%;
    }

    .cttn__header__search div:first-child {
        padding: 5px;
        margin: 20px 0;
    }

    .cttn__header__search div:first-child label {
        font-size: 30px;
    }

    .cttn__informacion {
        width: 70% !important;
        height: 100vh !important;
    }

    .cttn__informacion__img {
        width: 100% !important;
        height: 40% !important;
    }

    .cttn__informacion__img img {
        width: 100%;
        height: 100%;
        padding: 0 !important;
        position: absolute;
        left: -40px;
        top: -20px;
        filter: drop-shadow(10px 10px 10px rgba(46, 46, 46, 0.8));
    }

    .cttn__informacion__info {
        width: 100% !important;
        height: 60% !important;
        padding: 0 15px 15px 15px !important;
    }

    .cttn__informacion__info__cabecera h4 {
        font-size: 18px !important;
    }

    .cttn__informacion__info__cabecera h5 {
        font-size: 16px !important;
    }

    .cttn__informacion__info__data label {
        font-size: 16px !important;
    }

    .cttn__informacion__info__data button {
        padding: 8px !important;
    }

    .cttn__informacion__info__data button:nth-child(2) {
        width: 60% !important;
    }

    .cttn__informacion__info__data button:first-child {
        width: 30% !important;
    }
}

@media (max-width: 600px) {
    .card {
        width: 85% !important;
    }

    .cttn__header__icons__div {
        width: 70%;
        margin: 0;
    }

    .cttn__header__search div:nth-child(2) select {
        width: 100%;
        margin: 0;
    }

    .cttn__header__search div:nth-child(2) button {
        width: 100%;
        margin: 0;
    }

    .cttn__header__search {
        padding: 0;
    }

    .cttn__header__search div:first-child label {
        font-size: 26px !important;
    }

    .cttn__busqueda__proyecto {
        width: 98% !important;
    }

    .cttn__informacion {
        width: 75% !important;
        height: 120vh !important;
    }

    .cttn__informacion__img {
        height: 35% !important;
    }

    .cttn__informacion__img img {
        left: -25px !important;
        top: -15px !important;
    }

    .cttn__informacion__info {
        height: 65% !important;
    }

    .cttn__informacion__info__cabecera h4 {
        font-size: 17px !important;
    }

    .cttn__informacion__info__cabecera h5 {
        font-size: 15px !important;
    }
}

@media (max-width: 450px) {
    .cttn__informacion {
        width: 80% !important;
    }

    .cttn__informacion__info__cabecera h4 {
        font-size: 17px !important;
    }

    .cttn__informacion__info__cabecera h5 {
        font-size: 15px !important;
    }

    .cttn__informacion__info__data label {
        font-size: 15px !important;
    }

    .cttn__informacion__info__data button {
        padding: 6px !important;
    }

    .cttn__informacion__info__data button:first-child {
        width: 32% !important;
    }
}