/*aqui ajusta a tela -> bordas*/
.page{
  max-width: 960px;          
  margin: 0 auto 24px;        
  padding-inline: clamp(16px, 3vw, 40px); /*conceito clamp*/
}


.orcamento {
    font-family: Arial, sans-serif;
    background-color: #b5b5b5;
    padding-top: 0px;


    h1 {
        font-size: 1.6rem;
        text-align: center;
        color: #223c75;
        font-weight: 700;
    }

    .data-atualizacao {
        text-align: end;
        color: #4f4c4c;
    }

    .card-grafica {
        background-color: #174680;
        border-radius: 10px;
        color: #ffffff;

        .conteudo-card {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            justify-content: center;
        }

        .circulo {
            width: 200px;
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            overflow: hidden;
            background: #f5f7f5;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
        }


        .info-grafica {
            margin-left: 10px;
            display: flex;
            flex-direction: column;
            font-size: clamp(18px, 1.2vw + 14px, 28px);

        }


        .info-grafica h5 {
            font-size: 2rem;
        }

        .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;
        }

        /*Mobile*/
        @media (max-width: 425px) {


            .container-whatsapp {
                display: grid;
                justify-content: center;
                align-items: center;
            }
        }

        /*Ipad*/
        @media (min-width: 426px) and (max-width: 1024px) {

            .container-whatsapp {
                display: grid;
                justify-content: center;
                align-items: center;
            }
        }

        /*Web*/
        @media (min-width: 1025px) {

            .row.barras {
                gap: .5rem;
            }

            .row.barras>.col-12 {
                flex: 0 0 50%;
                max-width: 50%;
                /* vira 50/50 só no desktop */
            }

        }
    }

    .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;
        }
    }
}