.presentes-lista {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 20px;
    padding-left:5px;
    align-items: stretch; /* Mantém a mesma altura em todos os cards da linha */
}

/* Contentor Principal (Card) */
.product-card {
    background-color: #ffffff;
    border: 1px dashed #dcdcdc; 
    border-radius: 16px;
    width: 100%;    
    overflow: hidden;
    padding: 10px;
    padding-left: 10px;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    height: 100%; /* Força o card a esticar na linha */
}

/* Bloco do Título (Topo) */
.title-container {
    margin-bottom: 0px;
    padding-left: 10px;
    text-align:left;
    gap: 8px;
    
    width:130px;
    width:59%;
}

.card-title {
    font-size: 20px;
    color: #222222;
    font-weight: 700;
    line-height: 1.3;
    width:100%;
   
}

/* Barra verde horizontal, por baixo do título, à esquerda */
.green-line {
    height: 3px;
    background-color: #00a04a;
    border-radius: 2px;
    margin:0;
    margin-top:10px;
    padding-left: 10px;
    width:100%;
}


/* Secção da Imagem (À Esquerda dentro do card-body) */
.card-image {
    display:block;
    width:150px;
    width:40%;
    margin-top:10px;
    margin-bottom:0px;
    line-height:0px;
}

.card-image img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

/* Secção de Conteúdo/Descrição (À Direita dentro do card-body) */
.card-linha {
   display:block;
}

.card-linha div {
    float:left;
}

.card-content {
    position:relative;
    text-align:center;
}

/* Descrição */
.card-description {
    font-size: 16px;
    color: #555555;
    font-weight: 500;
    line-height: 1.4;
    margin-top:0px;
    margin-bottom: 0px;
    padding-left: 10px;
    /* display:block; */
    padding-top: 8px; 
    overflow: hidden;
    text-align:left;
    width:130px;
    width:59%;
    /* height:120px;*/
    
    display: flex;
    align-items: center;
}

.card-limpa {
    clear:both;
    display:block;
    margin-bottom:10px;
}

/* Badge de Pontos - Alinhado no fundo */
.points-badge {
    display: inline-flex;
    align-items: center;
    border: 2px solid #00a04a;
    border-radius: 24px;
    overflow: hidden;
    width: fit-content;
    margin-top: auto; /* Mantém o botão de pontos sempre colado ao fundo */
}

/* Lado Verde do Badge */
.badge-icon {
    background-color: #00a04a;
    color: #ffffff;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 18px;
    height: 18px;
}

/* Lado Branco do Badge */
.badge-text {
    background-color: #ffffff;
    padding: 0 14px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.badge-text .number {
    font-size: 24px;
    font-weight: 800;
    color: #000000;
    line-height: 1;
}

.badge-text .text {
    font-size: 11px;
    font-weight: 700;
    color: #00a04a;
    letter-spacing: 0.5px;
}

/* Responsividade para Mobile */
@media (max-width: 480px) {
    
    .card-image {
        max-width: 100%;
        flex: auto;
    }
    
    .card-image {
        width:33%;
    }
    
    .card-description {
        width:66%;
        height: auto;
    }
}