/* css/produtos.css */

body {
    font-family: Arial, sans-serif;
}

.produtos-section {
    padding: 40px 0;
    background-color: #f0eded;
    margin-top: 150px;
}

.container {
    width: 90%;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #7c7d80;
}

.produtos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.produto {
    position: relative;
    width: calc(20% - 20px);
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.produto img {
    width: 100%;
    height: auto;
    display: block;
}

.produto:hover {
    transform: scale(1.05);
}

.descricao {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.produto:hover .descricao {
    transform: translateY(0);
}

.descricao p {
    margin: 0;
    font-size: 0.9rem;
}

/* Lightbox Styles */
.lightbox {
    max-width: 80%;
    max-height: 80%;
}

@media (max-width: 768px) {
    .produto {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .produto {
        width: calc(100% - 20px);
    }
}
