.clients__section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    padding-top: 3rem;
    padding-bottom: 7rem;

    background: var(--cor-base-escura-2);
}

.clients__title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;

    color: var(--cor2-texto);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

    padding: 2rem 0 2rem 0;
    margin-bottom: 2rem;
    
    position: relative;
    overflow: hidden;
}

.clients__title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FF6100, #FF8A33);
    border-radius: 2px;
    animation: slideIn 0.8s ease-out;
}

.clients__title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 97, 0, 0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

.clients__description {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    color: var(--cor2-texto);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 0 1rem;
    font-family: var(--font-inter);
}

.clients__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.client__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.client__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 97, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.client__card:hover::before {
    left: 100%;
}

.client__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 97, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.client__logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.client__card:hover .client__logo {
    opacity: 1;
    transform: scale(1.05);
}

.client__name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cor2-texto);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.client__card:hover .client__name {
    color: var(--cor-da-marca);
}

.client__category {
    font-size: 0.9rem;
    color: rgba(242, 242, 245, 0.8);
    font-weight: 400;
    transition: color 0.3s ease;
}

.client__card:hover .client__category {
    color: rgba(255, 97, 0, 0.9);
}

.clients__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat__item {
    text-align: center;
    color: var(--cor2-texto);
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cor-da-marca);
    display: block;
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(242, 242, 245, 0.8);
}

@media screen and (max-width: 1023px) {
    .clients__section {
        padding-bottom: 4rem;
    }
    
    .clients__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .client__card {
        padding: 1.5rem;
    }
    
    .client__logo {
        width: 100px;
        height: 100px;
    }
    
    .clients__stats {
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .stat__number {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .clients__title {
        font-size: 2.5rem;
        letter-spacing: 1px;
        padding: 1.5rem 0 1.5rem 0;
        margin-bottom: 1rem;
    }
    
    .clients__title::before {
        width: 50px;
        height: 3px;
    }
    
    .clients__description {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 auto 2rem auto;
    }
    
    .clients__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .client__card {
        padding: 1rem;
    }
    
    .client__logo {
        width: 70px;
        height: 70px;
        margin-bottom: 0.8rem;
    }
    
    .client__name {
        font-size: 0.9rem;
    }
    
    .client__category {
        font-size: 0.7rem;
    }
    
    .clients__stats {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat__number {
        font-size: 2rem;
    }
    
    .stat__label {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .clients__title {
        font-size: 2rem;
        letter-spacing: 0.5px;
        padding: 1rem 0 1rem 0;
        margin-bottom: 1.5rem;
    }
    
    .clients__title::before {
        width: 40px;
        height: 2px;
    }
    
    .clients__title::after {
        animation: shimmer 1.5s infinite;
    }
    
    .clients__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 0.3rem;
    }
    
    .client__card {
        padding: 0.6rem;
    }
    
    .client__logo {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    
    .client__name {
        font-size: 0.8rem;
    }
    
    .client__category {
        font-size: 0.6rem;
    }
    
    .clients__stats {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat__number {
        font-size: 1.8rem;
    }
    
    .stat__label {
        font-size: 0.8rem;
    }
} 