/* CLIENTS SECTION */
.clients-section {
    padding: 80px 20px;
    background-color: #f8fafc;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.video-wrapper {
    flex: 1;
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

.clients-content {
    flex: 1;
}

.clients-title {
    font-size: 2rem;
    color: #374151;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* RESPONSIVIDADE CLIENTS */
@media (max-width: 900px) {
    .clients-container {
        flex-direction: column;
        gap: 30px;
    }

    .video-wrapper {
        width: 100%;
    }

    .clients-content {
        width: 100%;
        text-align: center;
    }

    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}