/* Estilos para la sección de Misión */

body {
    margin: 0;
    margin-top: 140px;
    font-family: 'Arial', sans-serif;
}

/* Contenedor con efecto parallax */
.parallax {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/fondo_utiles2m.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

/* Contenido sobre el fondo */
.content {
    position: relative;
    color: white;
    padding: 100px 30px;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4); /* Agrega legibilidad */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.section-title {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.section-text {
    text-align: justify;
    font-size: 1.4em;
    line-height: 1.6;
    text-indent: 40px;
}

/* Responsividad */
@media (max-width: 768px) {
    body {
        margin-top: 60px;
    }

    .parallax {
        background-attachment: scroll; /* Mejora compatibilidad en móviles */
    }

    .content {
        padding: 80px 15px;
        max-width: 95%;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .section-title {
        font-size: 2em;
    }

    .section-text {
        font-size: 1em;
        text-indent: 20px;
    }
}
