﻿.loja-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.produto-card {
    width: 20%;
    height: 450px; /* Ajustado para acomodar melhor a imagem */
    background-color: transparent;
    border-radius: 20px;
    border-width: 1px;
    border-color: #D9D9D9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #0c0f1e;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .produto-card:hover {
        transform: scale(1.05);
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

.produto-imagem {
    width: 100%;
    height: 70%; /* Define um tamanho fixo para a imagem */
    object-fit: cover; /* Mantém a proporção e cobre a área */
    border-radius: 10px;
}

.produto-titulo {
    text-align: left;
    margin-top: 10px;
    font-size: 18px;
}

.produto-moedas {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #0c0f1e;
}

.produto-valor {
    font-size: clamp(14px, 2vw, 20px);
}

.icone-moeda {
    width: 20px;
    height: 20px;
}

.produtocad-icone-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
    justify-content: flex-end; /* Alinha os botões à esquerda */
    width: 100%; /* Garante que a div ocupe toda a largura disponível */
}

.loja-titulo-card {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: none;
    margin-left: 15px;
    justify-content: space-between;
}

.loja-titulo-pagina {
    margin: 10px;
    font-size: 30px;
    font-weight: bold;
}

.produto-adicionar {
    background-color: #44B0CF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.produto-adicionar-icone {
    width: 40px;
    height: 40px;
    margin: 0;
}
