/* ============================================
   PRODUTOS-STYLES.CSS - UNIVERSAL
   Use em /br/produtos/ e /en/products/
   ============================================ */

/* SECTION PRODUTOS */
.produtos-section {
    padding: 80px 0;
    background: var(--light);
}

/* GRID DE PRODUTOS - RESPONSIVO */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* MOBILE - 1 CARD POR LINHA */
@media (max-width: 768px) {
    .produtos-section {
        padding: 40px 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem !important;
    }
    
    .product-card h3 {
        font-size: 1.3rem !important;
    }
}

/* CARD - HOVER EFFECT */
.product-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* BADGE - ANIMAÇÃO PULSE */
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* BOTÃO COMPRAR */
.btn-buy {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary), #0066cc);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-buy:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

/* RIPPLE EFFECT */
.btn-buy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-buy:hover::before {
    width: 300px;
    height: 300px;
}

/* TABLET - 2 CARDS */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP LARGE */
@media (min-width: 1200px) {
    .products-grid {
        max-width: 1200px;
        margin: 0 auto;
    }
}