/* ====================================
   CARROS

SEL SIMPLES - MOBILE FIRST
   ==================================== */

.feedback-carousel-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #1A0F2E 0%, #6B46C1 50%, #1A0F2E 100%);
    width: 100%;
    overflow: hidden;
}

/* Container do Carousel */
.simple-carousel {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 2rem auto 0;
    padding: 0 10px;
}

/* Item individual do carousel */
.carousel-item {
    display: none;
    width: 100%;
    text-align: center;
}

.carousel-item.active {
    display: block;
    animation: fadeIn 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Imagem */
.carousel-item img {
    max-width: 100%;
    width: auto;
    max-height: 500px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Botões de navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(212, 175, 55, 0.9);
    color: white;
    border: none;
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background-color: #D4AF37;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Dots de navegação */
.carousel-dots {
    text-align: center;
    padding: 20px 0 10px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid rgba(212, 175, 55, 0.6);
}

.dot.active {
    background-color: #D4AF37;
    width: 32px;
    border-radius: 6px;
}

.dot:hover {
    background-color: rgba(212, 175, 55, 0.7);
}

/* MOBILE - Extra small devices */
@media (max-width: 480px) {
    .carousel-item img {
        max-height: 400px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }
}

/* TABLET */
@media (min-width: 768px) {
    .simple-carousel {
        max-width: 600px;
        padding: 0 40px;
    }

    .carousel-item img {
        max-height: 600px;
    }

    .carousel-btn.prev {
        left: -20px;
    }

    .carousel-btn.next {
        right: -20px;
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .simple-carousel {
        max-width: 700px;
    }

    .carousel-item img {
        max-height: 700px;
    }
}