/* SLIDER */
.slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.slider-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-content {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
    max-width: 100%;
    height: 400px;
}

.slider-item {
    flex-shrink: 0;
    text-align: center;
}

.slider-item img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease;
}

.slider-item:hover img {
    transform: scale(1.05);
}

.slider-item p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 800;
}

/* Ajuste das setas */
.arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 8;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.arrow.left {
    left: 20px; /* Ajuste para ficar mais próximo do slider */
}

.arrow.right {
    right: 20px; /* Ajuste para ficar mais próximo do slider */
}

.arrow i {
    font-size: 18px;
}

.slider-content::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 1170px) {
    .arrow {
        display: none;
    }
}
