/* ==========================================
   PÁGINA DE CLIENTES - Estilos Específicos
   ========================================== */

/* Header da página */
.clientes-header {
    padding: 140px 0 60px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb i.fa-chevron-right {
    font-size: 0.8rem;
    opacity: 0.7;
}

.clientes-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.clientes-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Section */
.clientes-stats-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-box .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-box .stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Gallery Section */
.clientes-gallery {
    padding: 80px 0;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.gallery-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.gallery-item {
    background: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.gallery-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all var(--transition-normal);
}

.gallery-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.gallery-item::after {
    content: attr(data-name);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover::after {
    transform: translateY(0);
}

/* CTA Section */
.clientes-cta {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Menu active state */
.nav-link.active {
    background: rgba(139, 30, 63, 0.1);
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .clientes-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .clientes-header {
        padding: 120px 0 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .gallery-item {
        padding: 15px;
    }
    
    .gallery-item img {
        max-height: 50px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-box .stat-number {
        font-size: 2.5rem;
    }
    
    .clientes-header h1 {
        font-size: 1.8rem;
    }
}
