#sec {
    padding: 20px;
}

#sec h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* Contenedor flex para imagen + texto */
.info-block {
    display: flex;
    align-items: center; /* Centra verticalmente la imagen con el texto */
    gap: 20px;
    margin-bottom: 30px;
}

/* Imagen más pequeña y responsiva */
.info-block .imgA {
    width: 400px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Texto */
.info-block p {
    margin: 0;
    flex: 1;
    line-height: 1.6;
}

/* Divisiones entre bloques */
#sec hr {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

/* RESPONSIVIDAD */
@media (max-width: 768px) {
    .info-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-block .imgA {
        width: 80%; 
        max-width: 250px;
    }
}
