/* Carrossel de Resultados Visíveis */
.results-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.carousel-container {
    max-width: 320px;
    margin: 0 auto;
    position: relative;
}

.carousel-wrapper {
    width: 320px;
    height: 449px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
    width: 320px;
    height: 449px;
}

.carousel-slide {
    width: 320px;
    height: 449px;
    flex-shrink: 0;
    position: relative;
}

.carousel-image {
    width: 320px;
    height: 449px;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 25px;
    text-align: center;
}

.carousel-caption h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Navegação */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 12px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #ff5722;
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: #ff5722;
}

/* Controles */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.carousel-control-btn {
    background: #ff5722;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-control-btn:hover {
    background: #e64a19;
    transform: translateY(-2px);
}

.carousel-control-btn:active {
    transform: translateY(0);
}

/* Status do auto-play */
.carousel-status {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

/* Responsividade */
@media (max-width: 768px) {
    .results-section {
        padding: 50px 0;
    }

    .carousel-container {
        max-width: 320px;
        padding: 0;
    }

    .carousel-wrapper {
        width: 320px;
        height: 449px;
    }

    .carousel-track {
        width: 320px;
        height: 449px;
    }

    .carousel-slide {
        width: 320px;
        height: 449px;
    }

    .carousel-image {
        width: 320px;
        height: 449px;
    }

    .carousel-caption {
        padding: 20px;
    }

    .carousel-caption h3 {
        font-size: 1.2rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-controls {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        max-width: 320px;
        padding: 0;
    }

    .carousel-wrapper {
        width: 320px;
        height: 449px;
    }

    .carousel-track {
        width: 320px;
        height: 449px;
    }

    .carousel-slide {
        width: 320px;
        height: 449px;
    }

    .carousel-image {
        width: 320px;
        height: 449px;
    }

    .carousel-caption {
        padding: 15px;
    }

    .carousel-caption h3 {
        font-size: 1.1rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}