.container-slide {
    position: relative;
    /* padding: 0 30px; */
    max-width: 83%;
    margin: 0 auto;
}

.border-slide {
    border-top: solid 1px #FF6E00;
    border-bottom: solid 1px #FF6E00;
}

.trusted-partners-section {
    width: 100%;
    position: relative;
    z-index: 10;
    background-color: #ffffff;
    padding: 40px;
}

.trusted-partners-title {
    text-align: center;
    color: #ff8c00;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
    margin-top: 30px;
}

.parceiros-carrossel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 60px;
}

.parceiros-carrossel {
    display: flex;
    gap: 50px;
    transition: transform 0.5s ease;
    align-items: center;
}

.parceiro-item {
    flex: 0 0 calc(33.333% - 27px);
    min-width: calc(33.333% - 27px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.parceiro-item:hover {
    transform: scale(1.05);
}

.parceiro-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.parceiro-placeholder {
    padding: 30px;
    background: #f5f5f5;
    border-radius: 8px;
}

.carrossel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #ff8c00;
}

.carrossel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carrossel-prev {
    left: 0;
}

.carrossel-next {
    right: 0;
}

@media (max-width: 1024px) {
    .parceiro-item {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .container-slide{
        max-width: 100%;
    }
    .parceiro-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .parceiros-carrossel-container {
        padding: 20px 50px;
    }
}