/* Estilos para a seção de marcas de óculos */
.brands-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
    margin-top: 2rem;
}

.brands-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 150px;
    height: 100px;
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.brand-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .brands-container {
        gap: 1rem;
    }
    
    .brand-logo {
        width: 120px;
        height: 80px;
    }
    
    .brand-logo img {
        max-width: 100px;
        max-height: 50px;
    }
}
