.site-footer {
    background-color: #ffffff;
    color: #222;
    padding: 3rem 1.5rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-top: 1px solid #ccc;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info,
.footer-contact,
.footer-social {
    text-align: center;
}

.footer-info img {
    width: 130px;
    margin-bottom: 1rem;
}

.footer-info h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.footer-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
}

.patrocinadores-icons-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
}

.patrocinadores-icons-footer img {
    width: 70px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s;
    filter: grayscale(40%);
}

.patrocinadores-icons-footer img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.social-icons-footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons-footer img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
    filter: grayscale(30%);
}

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

.whatsapp-container {
    margin-top: 1.5rem;
}

.whatsapp-btn {
    font-size: 2rem;
    color: #25d366;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.2);
}

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

/* Responsive: columnas en pantallas grandes */
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

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