/* Brand Logos Section Styles */
.brand-logos-section {
    padding: 80px 0;
    background: var(--ciclos-black);
    text-align: center;
}

.brand-logos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-logos-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--ciclos-yellow);
}

.brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.brand-logo-item {
    padding: 15px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px; /* Fixed height for consistency */
}

.brand-logo-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgb(255, 255, 255);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 70px; /* Max height for logos within the item */
    transition: all 0.3s ease;
}



@media (max-width: 768px) {
    .brand-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    .brand-logo-item {
        height: 80px;
    }
    .brand-logo-item img {
        max-height: 50px;
    }
}