.products {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.products h2 {
    text-align: center;
    color: #9747FF;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(151, 71, 255, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(151, 71, 255, 0.2);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 15px;
}

.product-card p {
    color: #666;
    margin: 0 15px 20px;
    line-height: 1.6;
}

.product-link {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 15px 15px;
    background-color: #9747FF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.product-link:hover {
    background-color: #7935CC;
}

.whatsapp-button {
    display: block;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    margin: 15px;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128c7e;
}

.whatsapp-button i {
    margin-right: 8px;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products h2 {
        font-size: 2rem;
    }
    
    .product-card img {
        height: 200px;
    }
}