.float { 
display: none !important;
}

#orcamentoMesa{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:99999;
    font-family:Inter,Arial,sans-serif;
}

.orcamento-content h3 {
text-align: center;
  font-size: 27px;
}

.orcamento-box{
    position:relative;
    width:390px;
    max-width:calc(100vw - 30px);
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    display:none;

    box-shadow:
        0 20px 50px rgba(0,0,0,.15),
        0 5px 15px rgba(0,0,0,.08);

    margin-bottom:12px;
}

.orcamento-box.active{
    display:block;
    animation:orcamentoFade .35s ease;
}

@keyframes orcamentoFade{
    from{
        opacity:0;
        transform:translateY(25px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.orcamento-fechar{
    position:absolute;
    top:12px;
    right:12px;
    width:34px;
    height:34px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    z-index:20;
}

.orcamento-content{
    padding:18px;
}

.resumo-orcamento{
    background:#f8f8f8;
    border-radius:18px;
    padding:18px;
    margin-bottom:15px;
    text-align:center;
}

.orcamento-foto{
    width:100%;
    max-height:140px;
    object-fit:contain;
    margin-bottom:-20px;
margin-top: 30px;
}

.vezesmesa { 
margin-top: -11px;
}

.resumo-titulo{
    font-size:24px;
    font-weight:800;
    text-transform:uppercase;
    color:#222;
    margin-bottom:12px;
}

.resumo-preco{
    margin-top: 22px;
    font-size:30px;
    font-weight:800;
    color:#15803d;
    margin-bottom:15px;
    line-height:1;
}

.resumo-subtitulo{
    font-size:13px;
    line-height:1.6;
    color:#555;
    text-align:left;
}

.orcamento-box select{
    width:100%;
    margin-bottom:10px;
    padding:12px 14px;
    border-radius:12px;
    border:1px solid #ddd;
    background:#fff;
    font-size:14px;
}

.orcamento-box select:focus{
    outline:none;
    border-color:#15803d;
}

.btn-whatsapp{
    display:block;
    text-decoration:none;
    text-align:center;
    background:#25D366;
    color:#fff;
    padding:15px;
    border-radius:12px;
    font-weight:700;
    margin-top:10px;
    transition:.2s;
}

.btn-whatsapp:hover{
    transform:translateY(-2px);
}

.orcamento-toggle{
    background:linear-gradient(
        135deg,
        #15803d,
        #16a34a
    );

    color:white;
    padding:16px 22px;
    border-radius:50px;
    font-weight:700;
    cursor:pointer;
    text-align:center;

    box-shadow:
        0 10px 30px rgba(22,163,74,.35);
}

.orcamento-toggle.pulse{
    animation:pulse 1.8s infinite;
}

@keyframes pulse{

    0%{
        box-shadow:
            0 0 0 0 rgba(22,163,74,.7);
    }

    70%{
        box-shadow:
            0 0 0 18px rgba(22,163,74,0);
    }

    100%{
        box-shadow:
            0 0 0 0 rgba(22,163,74,0);
    }
}

@media(max-width:768px){

    #orcamentoMesa{
        right:10px;
        left:10px;
        bottom:15px;
    }

    .orcamento-box{
        width:auto;
    }

    .resumo-titulo{
        font-size:20px;
    }

    .resumo-preco{
        font-size:32px;
    }

    .orcamento-foto{
        max-height:120px;
    }

}