#valores-sugeridos .listagem-card {
    padding: 10px;
    border-radius: 10px;
    background-color: #dadadf;
    font-size: 14pt;
}

#valores-sugeridos .listagem-card .listagem-card-valores li.valores-item {
    display: flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    font-weight: 500;
}

#valores-sugeridos .listagem-card .listagem-card-valores li.valores-item:last-child {
    border-bottom: none;
}

#valores-sugeridos .listagem-card .listagem-card-valores li.valores-item span.valores-item-dot {
    display: none;
}

#valores-sugeridos .listagem-card .listagem-card-valores li.valores-item span.valores-item-valores {
    white-space: nowrap;
}

#valores-sugeridos .listagem-card .listagem-card-logos {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
}

#valores-sugeridos .listagem-card .listagem-card-logos img {
    height: 60px;
    max-width: 100px;
    object-fit: contain;
}

#valores-sugeridos .listagem-card .listagem-card-logos img.logo-panoramica {
    height: auto;
    width: 100%;
    max-width: 200px;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

.justify-end {
    display: flex;
    justify-content: end;
}

.align-center {
    display: flex;
    align-items: center;
}

.fit-content-h {
    height: fit-content;
}

.logotipo {
    display: none;
}

.titulo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media print {
    body * {
        visibility: hidden;
    }

    .printable-area * {
        visibility: visible;
    }

    ul, .listagem-card-logos, .listagem-card {
        page-break-inside: avoid;
    }

    .listagem-card {
        border: 1px solid #dadadf;
        font-size: 14px !important;
    }

    #btn-imprimir {
        display: none;
    }

    .prazo {
        font-weight: bold;
    }

    .logotipo {
        width: 250px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .titulo {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}