/* CONTENEDOR GENERAL */

.mision-container {
    padding-top: 140px;
    max-width: 1200px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* TÍTULO */

.titulo-mision {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 55px;
}

.titulo-mision img {
    width: 180px;
}

.titulo-mision h1 {
    font-family: 'DM Serif Display', serif;
    color: var(--azul-oscuro);
    font-size: 3.2rem;
    letter-spacing: 1px;
}

.linea {
    width: 100%;
    height: 8px;
    background: var(--amarillo);
    margin-top: 15px;
}

/* MENSAJE PRESIDENTE */

.mensaje-presidente-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 45px;
    margin-bottom: 50px;
    box-shadow: var(--sombra-card);
    border-left: 8px solid var(--amarillo);

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 38px;
    align-items: center;
}

/* IMAGEN DEL PRESIDENTE */

.imagen-presidente {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: aparecerIzquierda 1s ease forwards;
}

.imagen-presidente img {
    width: 100%;
    max-width: 360px;
    height: 430px;
    object-fit: cover;
    border-radius: 24px;
    border: 6px solid #ffffff;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
    animation: flotarImagen 4s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.imagen-presidente img:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.30);
}

/* TEXTO ORIGINAL */

.texto-presidente {
    width: 100%;
}

.texto-original {
    font-family: 'DM Sans', sans-serif;
    color: #333333;
    font-size: 1.05rem;
    line-height: 1.75;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0;
}

/* FIRMA */

.firma-presidente {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 3px solid var(--amarillo);
    text-align: right;
}

.firma-presidente p {
    font-family: 'DM Sans', sans-serif;
    color: var(--azul-oscuro);
    font-weight: 600;
    margin: 5px 0;
}

.firma-presidente p:last-child {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* IMAGEN DIRECTIVA */

.directiva-section {
    margin-bottom: 55px;
}

.imagen-directiva {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--sombra-card);
    animation: aparecerAbajo 1s ease forwards;
}

.imagen-directiva img {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    display: block;
    border-radius: 14px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.imagen-directiva img:hover {
    transform: scale(1.015);
}

/* MISIÓN Y VISIÓN */

.mision-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.mision-card,
.vision-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: var(--sombra-card);
    border-top: 8px solid var(--amarillo);
    transition: transform 0.3s ease;
}

.mision-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
}

.mision-card h2,
.vision-card h2 {
    font-family: 'DM Serif Display', serif;
    color: var(--azul-oscuro);
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.mision-card p,
.vision-card p {
    font-family: 'DM Sans', sans-serif;
    color: #333333;
    font-size: 1.08rem;
    line-height: 1.75;
}

/* REDES FOOTER */

.redes img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* ANIMACIONES */

@keyframes aparecerIzquierda {
    from {
        opacity: 0;
        transform: translateX(-45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes aparecerAbajo {
    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes flotarImagen {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width: 992px) {

    .mensaje-presidente-card {
        grid-template-columns: 1fr;
    }

    .imagen-presidente img {
        max-width: 330px;
        height: 400px;
    }

    .titulo-mision h1 {
        font-size: 2.6rem;
    }

}

@media(max-width: 768px) {

    .titulo-mision {
        flex-direction: column;
        text-align: center;
    }

    .titulo-mision h1 {
        font-size: 2.1rem;
    }

    .mensaje-presidente-card {
        padding: 30px 22px;
    }

    .mision-vision-grid {
        grid-template-columns: 1fr;
    }

    .firma-presidente {
        text-align: left;
    }

    .mision-card,
    .vision-card {
        padding: 30px 24px;
    }

    .mision-card h2,
    .vision-card h2 {
        font-size: 2rem;
    }

}

@media(max-width: 480px) {

    .texto-original {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .imagen-presidente img {
        max-width: 260px;
        height: 330px;
    }

}