/* ========================================
   SECCIÓN MISIÓN Y VISIÓN
   ======================================== */

.mision-vision-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 12.8vh 0;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mision-vision-container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: grid;
    gap: 5vh;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    top: 32vh;
    width: 80%;
    transition: top 0.5s ease-out;
}

/* ========================================
   COLUMNA MISIÓN
   ======================================== */

.mision-column {
    text-align: center;
}

.mision-title {
    color: #ffffff;
    font-size: 5vh;
    font-weight: 700;
    margin-bottom: 1vh;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    position: relative;
}

.mision-text {
    color: #ffffff;
    font-size: 2vh;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
}

/* ========================================
   COLUMNA IMAGEN CENTRAL
   ======================================== */

.imagen-central-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagen-container {
    position: relative;
    width: 70vh;
    height: 70vh;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mision-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* ========================================
   COLUMNA VISIÓN
   ======================================== */

.vision-column {
    text-align: center;
}

.vision-title {
    color: #ffffff;
    font-size: 5vh;
    font-weight: 700;
    margin-bottom: 1vh;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    position: relative;
}

.vision-text {
    color: #ffffff;
    font-size: 2vh;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .mision-vision-container {
        grid-template-columns: 1fr;
        gap: 6vh;
        text-align: center;
    }
    
    .mision-column, .vision-column {
        padding: 0 3.5vh;
    }
    
    .imagen-container {
        width: 48vh;
        height: 48vh;
    }
}

@media (max-width: 768px) {
    .mision-vision-section {
        padding: 9.5vh 0;
        background-attachment: scroll;
    }
    
    .mision-vision-container {
        gap: 2.5vh;
        width: 90%;
    }
    
    .mision-title, .vision-title {
        font-size: 4.5vh;
        margin-bottom: 3.5vh;
    }
    
    .mision-text, .vision-text {
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .mision-vision-section {
        padding: 6vh 0;
    }
    
    .mision-title, .vision-title {
        font-size: 4vh;
    }
    
    .mision-text, .vision-text {
        font-size: 2vh;
    }

    .imagen-container {
        width: 40vh;
        height: 40vh;
    }
}

/* ========================================
   ESTADOS INICIALES PARA ANIMACIONES
   ======================================== */

.mision-column,
.vision-column {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

/* ========================================
   ESTADOS ACTIVOS PARA ANIMACIONES
   ======================================== */

.mision-vision-container.animate-container {
    top: 0;
}

.mision-column.animate-column,
.vision-column.animate-column {
    opacity: 1;
} 