/* Widgets Carousel - CSS Responsivo e Moderno */
.wc-carousel {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #fff;
}

.wc-carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.wc-slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.wc-slide:first-child {
    display: block;
}

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

.wc-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.wc-caption h3 {
    margin: 0 0 8px 0;
    font-size: 1.2em;
    font-weight: bold;
}

.wc-caption p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.9;
}

/* Navegação */
.wc-prev, .wc-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.wc-prev:hover, .wc-next:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
}

.wc-prev {
    left: 15px;
}

.wc-next {
    right: 15px;
}

/* Dots/Indicadores */
.wc-dots {
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.9);
}

.wc-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wc-dot:hover {
    background: #999;
    transform: scale(1.2);
}

.wc-dot.active {
    background: #333;
    transform: scale(1.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .wc-carousel {
        margin: 0 10px;
        border-radius: 4px;
    }
    
    .wc-prev, .wc-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .wc-prev {
        left: 10px;
    }
    
    .wc-next {
        right: 10px;
    }
    
    .wc-caption {
        padding: 15px;
    }
    
    .wc-caption h3 {
        font-size: 1.1em;
    }
    
    .wc-caption p {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .wc-carousel {
        margin: 0 5px;
    }
    
    .wc-prev, .wc-next {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .wc-caption {
        padding: 10px;
    }
    
    .wc-caption h3 {
        font-size: 1em;
    }
}
