.gp-card-lista {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}


.gp-card:hover {
  background: #fafcff;
   transform: translateY(-1px);
}

.gp-card-acoes {
    width: 46px;
    min-width: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.gp-btn-card {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #d8e1ec;
    background: transparent;
    color: #7b8ca3;
    cursor: pointer;
}

.gp-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.gp-card-foto-col {
    width: 100px;
    min-width: 100px;
    display: flex;
    justify-content: center;
}

.gp-card-avatar {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #dfe5ec;
    background-color: #f5f7fa;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.gp-card-conteudo {
    flex: 1;
    min-width: 0;
}

.gp-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;

    padding: 4px 10px;
    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    border: 1px solid transparent;
    white-space: nowrap;
    vertical-align: middle;
}

.gp-card-titulo {
    font-size: 16px;
    font-weight: 700;
    color: #34506d;
    margin-bottom: 8px;
    line-height: 1.35;
}

.gp-card-subtitulo {
    font-size: 14px;
    font-weight: 600;

    color: #60758d;

    margin-top: -4px;
    margin-bottom: 10px;

    line-height: 1.35;
}

.gp-card-row {
    margin-bottom: 4px;
}

.gp-card-col {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.35;
    color: #526681;
    word-break: normal;
    overflow-wrap: break-word;
}

.gp-card-label {
    font-weight: 700;
    color: #6f7f95;
    margin-right: 4px;
}

.gp-card-valor {
    color: #526681;
    font-weight: 500;
}

.gp-card-icon-label {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 13px;
    font-weight: 700;

    color: #64748b;

    margin-bottom: 4px;
}

.gp-card-icon-label i {
    font-size: 13px;
    color: #3b82f6;
}

@media (max-width: 768px) {

    .gp-card-lista {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 4px;
    }

    .gp-card-acoes {
        width: 34px;
        min-width: 34px;
    }

    .gp-card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 0;
    }

    .gp-card-foto-col {
        width: 100%;
        min-width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 6px;
    }

    .gp-card-avatar {
        width: 54px;
        height: 54px;
        min-width: 54px;
    }

    .gp-card-conteudo {
        width: 100%;
        text-align: left;
    }

    .gp-card-titulo {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 10px;
        text-align: center;
    }

    .gp-card-row {
        display: block !important;
        margin-bottom: 2px;
    }

    .gp-card-col {
        width: 100% !important;
        max-width: 100% !important;
        flex: 100% !important;
        display: block;
        font-size: 12px;
        line-height: 1.35;
        margin-bottom: 5px;
        padding: 0 !important;
        text-align: left;
    }

    .gp-card-label,
    .gp-card-valor {
        display: inline;
    }

    .gp-mobile-hidden {
       display: none !important;
    } 
    
    .gp-card-badge {
        font-size: 11px;
        padding: 4px 9px;
        margin-top: 2px;
    }    
}