.slide picture {
    display: block;
    width: 100%;
}

.slide picture img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.slider {
    width: 100%;
    margin-top: 80px;
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
}

.slides-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform; /* Avisa ao navegador para usar GPU */
}

.slide {
    min-width: 100%; /* Cada slide ocupa exatamente o tamanho do slider */
}

.slide img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Navegação */
.slider-nav {
    position: absolute;
    bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
}

.nav-dot.active, .nav-dot:hover {
    background: #fff;
    transform: scale(1.2);
}

.nav-dot:focus-visible {
    outline: 3px solid #FFD700;
    outline-offset: 4px;
}

@media (max-width: 768px) {
    .slider-nav {
        display: flex;
        bottom: 15px;
        gap: 10px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }   
}