/*--------------imagen en body sección de inicio------------------------------*/
body {
    margin: 0;
    margin-top: 140px;
    font-family: 'Arial', sans-serif;
}

/* Sección parallax */
.parallax {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/pergamino.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    z-index: 1;
}

/* Contenido encima del parallax */
.content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    color: black;
    /* Descomenta si deseas fondo semitransparente:
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    */
}

/* Título de la sección */
.section-title {
    text-align: center;
    font-size: clamp(1.8em, 5vw, 2.5em); /* Escalable */
    margin-bottom: 20px;
}

/* Párrafos del texto */
.section-text {
    text-align: justify;
    font-size: clamp(1em, 2.5vw, 1.3em);
    text-indent: 40px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ---------- Responsivo para pantallas pequeñas ---------- */
@media (max-width: 768px) {
    body{
        margin-top: 75px;
    }
    .content {
        padding: 20px 15px;
        max-width: 90%;
    }

    .section-text {
        text-indent: 30px;
    }

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