/* Estilos para a seção de clientes */
.clients-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.clients-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('../images/pattern-light.png');
    opacity: 0.05;
}

.clients-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.clients-section h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #ff0099;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.clients-section .section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.clients-carousel {
    margin: 0 -15px;
}

.client-item {
    padding: 15px;
    text-align: center;
}

.client-logo {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
}

@media (max-width: 767px) {
    .clients-section {
        padding: 60px 0;
    }
    
    .client-logo {
        height: 100px;
    }
    
    .client-logo img {
        max-height: 60px;
    }
}
