.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; 
}

.Columnas img {
    max-width: 1000%; 
    height: 20rem; 
    margin-top: 100rem;
    margin: 20px auto; 
    border-radius: 15px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); 
    border: 3px solid #e0e0e0; 
    display: flex;
    text-align: center;
    justify-content: center; 

    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.Columnas img:hover {
    transform: scale(1.1); 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border-color: #d1a04c; 
}




@media (max-width: 768px) {
    .Columnas {
        grid-template-columns: 1fr; 
    }

    .Columnas img {
        max-width: 65%; 
        height: auto; 
        margin: 10px auto; 
    }

    .Imagen iframe {
        height: auto;
        max-width: 100%; 
    }
}
