.Columnas {
    display: grid;
    grid-template-columns: repeat(2 ,1fr); 
    gap: 1%; 
    background-color: #ffffff; 
    padding: 1%; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); 
    border: 1px solid #ddd; 
}

.Columnas p {
    font-family: 'Arial', sans-serif; 
    font-size: 1.06rem; 
    line-height: 1.8;
    color: #000000;
    margin-bottom: 15px; 
    text-align: justify; 
}

.Columnas h1 {
    padding-left: 3.3%;
    grid-column: 1 / -1; 
    margin-bottom: 20px; 
    text-align: left; 
    font-family: 'Arial', sans-serif; 
    font-size: 2rem;
    color: #000000;
}

.Columnas div {
    padding: 4%;
    text-align: justify; 
}

.Columnas .column2 .texto-centrado{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
}

.column2  img{
    display: flex;
    text-align: center;
    justify-content: center; 
    max-width: 100%; 
    height: 20rem;
    margin: 20px auto; 
    
}


@media (max-width: 768px) {
    .Columnas {
        grid-template-columns: 1fr; 
    }

    .column2 img{
        max-width: 70%; 
        max-height: 70%;
    }
}
