.brands-container {
    width: 100%;
    padding: 20px 0;
}

.brands-grid {
    display: grid;
    gap: 16px;
    align-items: center;
    justify-items: center;
}

.brand-item {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/* Estilos específicos para SVG */
.brand-logo path,
.brand-logo circle,
.brand-logo rect {
    transition: fill 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .brand-item {
        padding: 1.5rem;
        height: 100px;
    }
}
