.footer-content {
    display: flex;
    justify-content: space-between;
    background: var(--principal);
    color: var(--fontLight);
    padding: 0% 2%;
}
.footer-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.footer-section.left {
    max-width: 70%;
    margin: 2% 0 1% 1%;
}
.footer-section.left h3 {
    font-size: 0.8rem;
}
.footer-section.left li {
    margin-left: 30px;
}
.footer-section.left li a {
    padding-left: 3%;
    color: var(--fontLight);
}
.footer-contact-info .no-link {
    color: inherit; /* Hereda el color del texto del elemento padre*/ 
}
/*.footer-svg-icon {
    vertical-align: middle;
    width: 26px; 
    height: 26px;
    fill: currentColor;
}*/
.social-links-facebook {
    width: 25px;
}
.google-map {
    padding-top: 3%;
}
.google-map p {
    font-size: 0.9rem;
}
.google-map iframe {
    width: 70%;
    height:10vw; /* Puedes ajustar esta altura */
}
.footer-section.right {
    padding: 0% 5%;
    align-items: center;
    justify-content: center;
}
.footer-section.right img{
    max-width: 35%;
}
.footer-sobreNosotros {
    text-align: center;
    font-size: 1.2rem;
}
.copy {
    margin: 0 2%;
}

@media screen and (max-width: 650px) {
    .footer-section.left li a {
        display: block;
    }
    .footer-sobreNosotros {
        font-size: 1rem;
    }
    .google-map iframe {
        width: 100%;
        height: 20vw;
    }
}