/* Estilos para o carousel de parceiros */
.swiper-partners {
    width: 100%;
    padding: 40px 0;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    height: 180px;
}

.partner-logo img {
    max-width: 90%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.partner-logo img:hover {
    opacity: 0.8;
}

/* Responsividade para logos menores em mobile */
@media (max-width: 767px) {
    .partner-logo img {
        max-width: 150px;
        max-height: 80px;
    }
}
