/* ProductSection.css */
.products-section { padding: 80px 5%; }
.products-header { text-align: center; margin-bottom: 50px; }
.products-subtitle { display: block; font-size: 0.8rem; letter-spacing: 4px; color: #FF0080; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.products-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-family: 'Playfair Display', serif; color: #fff; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    transition: opacity 0.3s ease;
    opacity: 1;
}
.products-fade { opacity: 0; }

.products-item {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}
.products-item:hover { border-color: #FF0080; }

.products-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

/* Botão Ver Mais */
.products-center-btn { text-align: center; margin-top: 20px; }
.products-btn-nav {
    padding: 15px 45px;
    background: linear-gradient(90deg, #FF0080, #7928CA);
    color: #fff;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.products-btn-nav:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255, 0, 128, 0.4); }

/* Modal com transição */
.products-modal { 
    display: none; position: fixed; z-index: 9999; top: 0; left: 0; 
    width: 100%; height: 100%; background: rgba(0,0,0,0.95); 
    justify-content: center; align-items: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.products-modal.products-show { opacity: 1; }
.products-modal-content { max-width: 85%; max-height: 85%; object-fit: contain; }
.products-close-modal { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; }

/* Responsividade Ajustada */
@media (max-width: 1280px) { .products-item { height: 220px; } }
@media (max-width: 992px) { 
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .products-item { height: 200px; } 
}
@media (max-width: 600px) { 
    .products-grid { grid-template-columns: 1fr; }
    .products-item { height: 250px; } 
}