/* ==========================================================================
   NEON CAROUSEL — Estilos avançados para sliders e carrosséis
   ========================================================================== */

/* ==========================================================================
   CONTAINER PRINCIPAL
   ========================================================================== */

.neon-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background-color: #0f1316;
}

/* Área que desliza */
.neon-carousel-track {
    display: flex;
    transition: transform .45s ease;
}

/* Cada slide */
.neon-carousel-slide {
    min-width: 100%;
    position: relative;
}

.neon-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   SETAS DE NAVEGAÇÃO
   ========================================================================== */

.neon-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(20, 24, 27, 0.7);
    color: #00e0e0;
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background .2s ease, color .2s ease;
    z-index: 10;
}

.neon-carousel-arrow:hover {
    background-color: #008285;
    color: #fff;
}

.neon-carousel-arrow.prev {
    left: 12px;
}

.neon-carousel-arrow.next {
    right: 12px;
}

/* ==========================================================================
   INDICADORES (BOLINHAS)
   ========================================================================== */

.neon-carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.neon-carousel-dot {
    width: 12px;
    height: 12px;
    background-color: #444;
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s ease;
}

.neon-carousel-dot.active {
    background-color: #00e0e0;
}

/* ==========================================================================
   LEGENDA DO SLIDE (OPCIONAL)
   ========================================================================== */

.neon-carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
    color: #fff;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 900px) {

    .neon-carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .neon-carousel-caption {
        font-size: 16px;
        padding: 12px;
    }
}

@media (max-width: 600px) {

    .neon-carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .neon-carousel-dot {
        width: 10px;
        height: 10px;
    }
}
