.product-card {
            background-color: #FFF;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column; /* Garante que os itens fiquem em coluna */
            height: 100%; /* Faz todos os cartões terem a mesma altura no grid */
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-image {
            width: 100%;
            height: 250px; /* Altura fixa para as imagens */
            object-fit: cover;
            background-color: #e1dcd3; /* Cor de fundo caso a imagem quebre */
            display: block;
        }

        .product-info {
            background-color: var(--terracotta);
            color: #FFF;
            padding: 15px;
            margin-top: auto; /* Empurra a caixa de texto sempre para o fundo do cartão */
            text-align: center;
        }

        .product-info h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
        }

        .product-price {
            font-weight: 300;
            font-size: 0.95rem;
        }