/* ========================================
   FOOTER PATROCINADORES
   ======================================== */
.footer-patrocinadores {
    /* padding: 60px 0; */
    background-color: var(--color-bg);
    border-top: 1px dotted rgba(242, 187, 28, 0.2);
    margin-top: 0;
}

.footer-patrocinadores h5 {
    color: var(--color-texto-blanco);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.img-patrocinador {
    max-width: 180px;
    height: auto;
    filter: grayscale(1) brightness(1.5);
    transition: all 0.4s ease;
    opacity: 0.7;
}

.img-patrocinador:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}