.suppliers {
    margin: 0 auto;
    background-color: var(--cor-primaria);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0 4rem 0;
    overflow-x: auto;
}

.suppliers>h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.suppliers-wrapper {
    padding: 0 1rem 0 1rem;
    max-width: 80%;
    scroll-behavior: smooth;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    display: flex;
    transition: transform 0.3s ease;
    justify-content:flex-start;
    gap: 2rem;
}

.suppliers-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
    padding: 1rem;
    width: 75px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    align-items: flex-start;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suppliers-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.suppliers-card p {
    font-weight: 600;
    color: #334155;
    margin: 0;
}

.suppliers-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgb(0 0 0 / 0.15);
}

@media (min-width: 1024px) {
    .suppliers-card {

        width: 180px;

    }

    .suppliers-wrapper {
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 0;
        
    }
}