.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 2rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 300;
}

.footer-info,
.footer-contact,
.footer-social {
    flex: 1;
    min-width: 250px;
}

.footer-info h3,
.footer-contact h4,
.footer-social h4 {
    font-weight: 400;
}

.footer-contact ul {
    list-style: none;
    margin-top: 2rem;
    line-height: 1.4;
}

.social-icons-footer {
    display: flex;
    gap: 1rem;
}

.social-icons-footer img {
    width: 50px;
    /* puedes ajustar a 14px o 12px si quieres aún más pequeño */
    height: 50px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
    margin-top: 4rem;
}

.social-icons-footer img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding: 5rem;
    border-top: 1px solid #ffffff;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.contact-section {
    background: #ffffff;
    padding: 4rem 2rem;
    font-family: "Poppins", sans-serif;
    color: #004030;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-container p {
    font-size: 1rem;
    margin-bottom: 2rem;
}