/* Estilos para la sección Misión y Visión */
.mision-vision-container {
    display: flex;
    width: 100%;
    min-height: 70vh;
    font-family: 'Arial', sans-serif;
}

/* Columnas compartidas */
.columna {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
}

.contenido {
    max-width: 600px;
    width: 100%;
}

.titulo {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.texto {
    line-height: 1.8;
    font-size: 18px;
    text-align: justify;
}

.texto p {
    margin-bottom: 25px;
}

.texto p:last-child {
    margin-bottom: 0;
}

.mision {
    background-color: #EF982E;
}

.vision {
    background-color: #486AAD;
}

/* Estilos para la sección Valores */
.valores-container {
    width: 100%;
    padding: 80px 20px;
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

.valores-contenido {
    max-width: 1200px;
    margin: 0 auto;
}

.valores-titulo {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.valores-titulo:after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    margin: 15px auto;
    border-radius: 2px;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.valor-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.valor-icono {
    font-size: 48px;
    margin-bottom: 20px;
}

.valor-nombre {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.valor-descripcion {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

/* Responsive */
@media (max-width: 1024px) {
    .mision-vision-container {
        flex-direction: column;
        min-height: auto;
    }

    .columna {
        padding: 50px 30px;
    }

    .titulo {
        font-size: 32px;
    }

    .texto {
        font-size: 17px;
    }

    .valores-titulo {
        font-size: 36px;
    }

    .valores-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .columna {
        padding: 40px 25px;
    }

    .titulo {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .texto {
        font-size: 16px;
        line-height: 1.7;
    }

    .texto p {
        margin-bottom: 20px;
    }

    .valores-container {
        padding: 60px 15px;
    }

    .valores-titulo {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .valor-card {
        padding: 25px;
    }

    .valor-nombre {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .columna {
        padding: 30px 20px;
    }

    .titulo {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .texto {
        font-size: 15px;
        line-height: 1.6;
    }

    .valores-grid {
        grid-template-columns: 1fr;
    }

    .valores-titulo {
        font-size: 28px;
    }

    .valor-card {
        padding: 20px;
    }

    .valor-icono {
        font-size: 40px;
    }
}