/* Estilos para a seu00e7u00e3o de Clientes da SinapseTech */

#our-clients {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Efeito de fundo sutil */
#our-clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/about/dna-pattern.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

/* Container principal */
.clients-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Cabeu00e7alho da seu00e7u00e3o */
.clients-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.clients-header h2 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0077b6;
    margin-bottom: 10px;
}

.clients-header h1,
.clients-header .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #0077b6, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.clients-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin: 0 auto 20px;
}

/* Grid de logotipos */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin: 40px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Estilo para cada logo */
.client-logo {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo:hover::before {
    left: 100%;
}

.client-logo img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
}



/* Badges de confiana */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.trust-badge-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0077b6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.trust-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Responsividade */
@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 700px;
    }
    
    .client-logo {
        height: 90px;
    }
}

@media (max-width: 768px) {
    #our-clients {
        padding: 80px 0;
    }
    
    .clients-header h1,
.clients-header .section-title {
        font-size: 28px;
    }
    
    .clients-header p {
        font-size: 16px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 450px;
    }
    
    .client-logo {
        height: 80px;
    }
    
    .trust-badges {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .clients-header h1,
.clients-header .section-title {
        font-size: 24px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 280px;
    }
    
    .client-logo {
        height: 70px;
    }
    
    .trust-badge {
        padding: 8px 15px;
    }
    
    .trust-badge-icon {
        width: 25px;
        height: 25px;
    }
    
    .trust-badge-text {
        font-size: 12px;
    }
}
