.orcamento{
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    padding-top: 10px;
    h1{
        font-size: 1.6rem;
        text-align: center;
        color: #223c75;
        font-weight: 700;
    }
    .data-atualizacao{
        text-align: end;
        color: #4f4c4c;
    }
    .card-grafica{
        background-color: #223c75;
        border-radius: 10px;
        color: #ffffff;
        .conteudo-card{
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
        }
        .circulo{
            width: 200px;
            height: 200px;
            img{
                width: 100%;
                height: 100%;
                object-fit: contain;
                border-radius: 50%;
                background-color: #f5f7f5;
            }
        }
        .info-grafica{
            margin-left: 10px;
            display: flex;
            flex-direction: column;
        }
        .btn-whatsapp{
            text-decoration: none;
            color: #54bc50;
            background-color: #ffffff;
            padding: 12px 30px;
            border-radius: 10px;
            font-size: .8rem;
            font-weight: 600;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3px;
            svg{
                height: auto;
                fill: #54bc50;
            }
            .img-esquerda{
                transform: rotate(3.142rad);
            }
        }
        .container-whatsapp{
            display: flex;
            justify-content: center;
            align-items: center;
        }
        @media (max-width: 425px) {
            .circulo{
                width: 100px;
                height: 100px;
                img{
                    width: 100px;
                    height: 100px;
                }
            }
        }
    }

    .container-tabelas{
        background-color: #f5f7f5dc;
        padding-top: 20px;
        padding-bottom: 20px;
        border-radius: 20px;
        h5{
            color: #223c75;
            font-weight: 700;
            font-size: 1.4rem;
        }
        .info{
            padding:10px 20px;
            background-color: #ffffff;
            color: #4f4c4c;
            .bold{
                font-weight: 600;
            }
            .img-produto-servico{
                width: 150px;
                height: 150px;
                img, svg{
                    object-fit: contain;
                    width: 100%;
                    height: 100%;
                    border-radius: 8px;
                }
            }
            p{
                margin-bottom: 2px;
                font-size: 1rem;
            }
            .nome-produto{
                font-size: 1.4rem;
            }
            .valor{
                font-size: 1.4rem;
                font-weight: 600;
            }
            @media (max-width: 425px) {
                .img-produto-servico{
                    width: 100px;
                    height: 100px;
                }
            }
        }
        .linha-totais{
            p{
                color: #223c75;
                margin-bottom: 0px;
                font-size: 1.3rem;
            }
            .vlr-monetario{
                font-weight: bold;
            }
        }
    }
    .linha-total{
        p{
            color: #223c75;
            margin-bottom: 0px;
            font-size: 1.3rem;
            font-weight: bold;
        }
    }

    .btn-action{
        width: 100%;
        color: #ffffff;
        font-weight: bold;
        border: none;
        border-radius: 30px;
        min-height: 48px;
        &.aprovar{
            background-color: #00a650;
        }
        &.reprovar{
            background-color: #ed1c24;
        }
    }
}