/* Estilos para o Slider de Produtos em Destaque */

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: #FF6F61;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.slider-arrow:hover {
    background-color: #FF6F61;
    color: white;
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

.product-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.product-slide-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.product-slide-info {
    text-align: center;
    width: 100%;
}

.product-slide-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.product-slide-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FF6F61;
    margin-bottom: 10px;
}

.product-slide-price.price-discount {
    color: #FF6F61;
}

.product-slide-price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-left: 10px;
}

.product-slide-price .discount-badge {
    background-color: #FF6F61;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-left: 10px;
}

.product-slide-description {
    margin-bottom: 20px;
    color: #666;
}

.product-slide-category {
    color: #4A90E2;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 768px) {
    .product-slide {
        width: 95%;
        padding: 15px;
    }
    
    .product-slide-name {
        font-size: 1.5rem;
    }
    
    .product-slide-price {
        font-size: 1.3rem;
    }
    
    .slider-arrow {
        width: 30px;
        height: 30px;
    }
}