:root{
  --bg-green: #1f5e3f;

  --btn: #22674F;
  --btn-hover: #35a94f;

  --text-title: #1b5a3d;
  --text-muted: #737373;

  --border: #E5E5E5;
  --shadow-xs: 0px 1px 2px rgba(0,0,0,0.1);

  --radius: 10px;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Larguras padrão do Figma */
  --w-control: 343px;
}

/* Página */
.login-page{
  min-height: 100vh;
  background: var(--bg-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  font-family: var(--font);
}

/* Card (desktop: duas colunas) */
.login-card{
  width: min(980px, 100%);
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* Área da imagem */
.login-media{
  min-height: 520px;
  background-image: url("grandha-login.png");
  background-size: cover;
  background-position: center;
}

/* Conteúdo/form */
.login-content{
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand-top{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.brand-logo-img{
  width: 77px;
  height: 105px;
  object-fit: contain;
  display: block;
}

.brand-logo-img.big{
  width: 44px;
  height: 44px;
}

.brand-name{
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: .6px;
  color: var(--text-title);
  font-weight: 600;
  text-transform: lowercase;
}

.login-title{
  margin: 10px 0 4px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--text-title);
  font-weight: 700;
  text-align: center;
}

.login-subtitle{
  margin-bottom: 18px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* Form */
.login-form{
  width: var(--w-control);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* Campo + label */
.field{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label{
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}

/* INPUT/SELECT (Figma) */
.field-control{
  box-sizing: border-box;
  display: flex;
  align-items: center;

  width: 100%;
  height: 44px;
  padding: 12px 12px 12px 20px;

  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);

  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-muted);

  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.field-control::placeholder{
  color: var(--text-muted);
  opacity: 1;
}

.field-control:focus{
  border-color: var(--btn);
  box-shadow: 0 0 0 3px rgba(61,184,88,.22);
}

/* BOTÃO (Figma) - Base padronizada para todas as telas */
.btn,
.btn-entrar{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 48px;
  padding: 16px 24px;

  background: var(--btn);
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);

  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  line-height: 16px;
  color: #FAFAFA;

  cursor: pointer;
  transition: background .15s ease, transform .05s ease, box-shadow .15s ease;
}

.btn:hover,
.btn-entrar:hover{ background: var(--btn-hover); }
.btn:active,
.btn-entrar:active{ transform: translateY(1px); }
.btn:focus,
.btn-entrar:focus{ outline: none; box-shadow: 0 0 0 3px rgba(61,184,88,.22); }

.btn-entrar{ width: 100%; }

/* Ícone do botão (seta esquerda ou direita) */
.btn-icon{
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-icon svg{
  width: 100%;
  height: 100%;
}
.btn-icon path{
  stroke: #FFFFFF;
  stroke-width: 2;
}

/* Botão com ícone à esquerda (ex.: Voltar) */
.btn--icon-left{ gap: 10px; }

/* Botão com ícone à direita (ex.: Enviar, Lançar Orçamento) */
.btn--icon-right{ gap: 10px; }

/* Botão largura total */
.btn--full{ width: 100%; }

.link-muted{
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: none;
  margin-top: 6px;
}
.link-muted:hover{ text-decoration: underline; }

.brand-bottom{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Rodapé */
.login-footer{
  margin-top: 16px;
  font-size: 10px;
  color: rgba(255,255,255,.75);
  text-align: center;
}

/* =========================
   MOBILE (como seu print)
   ========================= */
@media (max-width: 860px){
  .login-card{
    width: min(420px, 100%);
    grid-template-columns: 1fr; /* empilha */
    border-radius: 8px;
  }

  .login-media{
    min-height: 180px;
    margin: 14px;
    border-radius: 8px;
    background-image: url("grandha-login.png");
  }

  .login-content{
    padding: 18px 18px 22px;
    justify-content: flex-start;
  }

  .login-title{ font-size: 20px; }
  .login-form{ width: 100%; }
  :root{ --w-control: 100%; }
}

/* Extra: telas bem pequenas */
@media (max-width: 380px){
  .login-content{ padding: 16px 14px 20px; }
  .login-media{ margin: 12px; }
}
/* ======================================================
   RESET GERAL
   ====================================================== */

   *,
   *::before,
   *::after{
     box-sizing: border-box;
   }
   
   html, body{
     margin: 0;
     padding: 0;
     width: 100%;
     height: 100%;
     overflow-x: hidden;
     font-family: "Inter", "DM Sans", Arial, sans-serif;
   }
   
   
   /* ======================================================
      MENU DESKTOP
      ====================================================== */
   
   .menu-desktop{
     position: relative;
     width: 100%;
     height: 100vh;
     background: #F0F0F0;
   
     display: flex;
     justify-content: center;
     align-items: center;
   
     overflow: hidden;
   }
   
   
   /* ======================================================
      ELIPSE DE FUNDO
      ====================================================== */
   
   .menu-bg-ellipse{
     position: absolute;
   
     width: 1400px;
     height: 700px;
   
     left: 50%;
     top: 70%;
   
     transform: translate(-50%, -50%) rotate(-177deg);
   
     background: linear-gradient(
       180deg,
       rgba(34,103,79,0.15) 0%,
       rgba(99,239,190,0.075) 100%
     );
   
     filter: blur(97px);
   
     pointer-events: none;
   
     z-index: 0;
   }
   
   
   /* ======================================================
      CONTAINER DO CARD
      ====================================================== */
   
   .menu-container{
     position: relative;
     z-index: 2;
   
     display: flex;
     flex-direction: column;
     align-items: center;
   
     gap: 33px;
   
     width: 466px;
     max-width: 100%;
   
     padding: 30px 75px 80px;
   
     background: #FFFFFF;
   
     border-radius: 25px;
   
     box-shadow: 0 20px 40px rgba(0,0,0,0.08);
   }
   
   
   /* ======================================================
      LOGO
      ====================================================== */
   
   .menu-logo{
     width: 93px;
     height: 68px;
   
     background-size: contain;
     background-repeat: no-repeat;
     background-position: center;
   }
   
   
   /* ======================================================
      TITULO
      ====================================================== */
   
   .menu-title{
     width: 100%;
   
     text-align: center;
   
     font-weight: 500;
     font-size: 22px;
     line-height: 27px;
   
     color: #323232;
   }
   
   
   /* ======================================================
      BOTÕES (usam base .btn + .btn--icon-right)
      ====================================================== */

   .menu-btn{
     width: 100%;
     max-width: 316px;
   }
   
   
   /* ======================================================
      RESPONSIVO TABLET
      ====================================================== */
   
   @media (max-width: 1024px){
   
     .menu-container{
       padding: 30px 40px 60px;
     }
   
     .menu-bg-ellipse{
       width: 1100px;
       height: 600px;
     }
   
   }
   
   
   /* ======================================================
      RESPONSIVO MOBILE
      ====================================================== */
   
   @media (max-width: 640px){
   
     .menu-desktop{
       padding: 20px;
     }
   
     .menu-container{
       width: 100%;
       padding: 25px 20px 35px;
       gap: 20px;
     }
   
     .menu-logo{
       width: 80px;
       height: 60px;
     }
   
     .menu-title{
       font-size: 20px;
     }
   
     .menu-btn{
       width: 100%;
       height: 50px;
       padding: 12px 20px;
     }

     .menu-bg-ellipse{
       width: 900px;
       height: 450px;
       filter: blur(70px);
     }
   
   }
   
   
   /* ======================================================
      MOBILE PEQUENO
      ====================================================== */
   
   @media (max-width: 380px){
   
     .menu-title{
       font-size: 18px;
     }

     .menu-btn{
       height: 48px;
     }
   }

   /* ======================================================
RESET
====================================================== */

*{
  box-sizing:border-box;
}

html, body{
  margin:0;
  padding:0;
  font-family:"Inter", Arial, sans-serif;
  background:#F3F3F3;
  color:#3b3b3b;
}


/* ======================================================
PÁGINA
====================================================== */

.orc-page{
  position: relative;
  z-index: 2;
  min-height:100vh;
  background: transparent;
  padding:24px 28px 40px;
}

/* Wrapper com fundo gradiente (elipse) igual à tela MBINI0000_02 */
.orc-page-wrap{
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #F0F0F0;
  overflow: hidden;
}

/* Na tela de orçamento, elipse nos 40% inferiores da tela */
.orc-page-wrap .menu-bg-ellipse{
  top: 0;
  transform: translate(-50%, 40%) rotate(-177deg);
}


/* ======================================================
TOPO
====================================================== */

.orc-topbar{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:10px;
}

.orc-topbar .btn{
  width: auto;
}

.orc-logo{
  width:120px;
  height:auto;
}


/* ======================================================
TÍTULO
====================================================== */

.orc-header{
  max-width:1280px;
  margin:0 auto 36px auto;
  padding:0 24px;
}

.orc-title{
  margin:0;
  font-size:64px;
  line-height:1.05;
  font-weight:500;
  color:#175A40;
}

.orc-title-little{
  margin:0;
  font-size:38px;
  line-height:1.05;
  font-weight:500;
  color:#175A40;
}

.orc-subtitle{
  margin-top:18px;
  font-size:22px;
  color:#3f3f3f;
  letter-spacing:.3px;
}

.orc-subtitle-little{
  margin-top:10px;
  font-size:16px;
  color:#3f3f3f;
  letter-spacing:.3px;
}


/* ======================================================
CONTAINER PRINCIPAL
====================================================== */

.orc-box{
  max-width:1280px;
  margin:0 auto;
  border:1px solid #f1f1f1;
  border-radius:25px;
  background:#FFFFFF;
  padding:34px 34px 26px;
}

/* Caixa de mensagem de sucesso (tela pedido finalizado) */
.orc-success-box{
  text-align:center;
  padding:48px 34px;
}
.orc-success-message{
  max-width:480px;
  margin:0 auto;
}
.orc-success-title{
  margin:0 0 16px 0;
  font-size:22px;
  font-weight:600;
  color:#175A40;
}
.orc-success-text{
  margin:0;
  font-size:18px;
  font-weight:500;
  color:#333;
}

/* Tela de confirmação do orçamento (MBVEN0001_02) */
.orc-confirm-cliente{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:24px;
  padding:20px 0;
  border-bottom:1px solid #f0f0f0;
}
.orc-confirm-cliente-label{
  font-size:14px;
  font-weight:500;
  color:#175A40;
}
.orc-confirm-cliente-nome{
  font-size:20px;
  font-weight:500;
  color:#333;
}
.orc-confirm-list{
  max-height:280px;
  margin-bottom:20px;
}
.orc-confirm-total{
  text-align:center;
  padding:18px 0 26px;
  border-bottom:1px solid #dddddd;
}
.orc-confirm-total-label{
  font-size:18px;
  font-weight:500;
  color:#175A40;
  margin-bottom:14px;
}
.orc-confirm-total-value{
  font-size:38px;
  line-height:1.05;
  font-weight:600;
  color:#333333;
}
.orc-confirm-actions{
  display:flex;
  justify-content:center;
}

.orc-confirm-data{
  margin-top:0;
  padding-top:0;
  border-top:none;
}

.orc-confirm-obs{
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid #f0f0f0;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.orc-confirm-obs-text{
  font-size:15px;
  color:#464646;
  white-space:pre-wrap;
  word-break:break-word;
}

/* Utilitário: esconder elemento */
.escondeVendas{
  display:none;
}

/* Tela Orçamentos Enviados - filtro por período (MBVEN0001_04) */
.orc-period-filter{
  margin-bottom:28px;
  align-items:center;
  justify-content:center;
}
.orc-period-inputs{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:18px;
}
.orc-period-input{
  width:150px;
  height:38px;
  border:1px solid #e3e3e3;
  border-radius:7px;
  background:#fafafa;
  text-align:center;
  font-size:16px;
  color:#555555;
  outline:none;
  padding:0 12px;
}

.orc-env-divider{
  height:1px;
  background:#e6e6e6;
  margin:18px auto 26px;
  width:82%;
}

.orc-period-sep{
  font-weight:600;
  color:#666;
  font-size:14px;
}
.orc-field-error{
  display:block;
  margin-top:6px;
  font-size:12px;
  color:#c00;
  font-weight:600;
}
.orc-period-actions{
  display:flex;
  justify-content:center;
}

/* ======================================================
CABEÇALHO INTERNO
====================================================== */

.orc-box-header{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  margin-bottom:26px;
}

.orc-box-title{
  font-size:22px;
  font-weight:550;
  color:#333;
  text-align:center;
}

.orc-box-actions{
  display:flex;
  gap:18px;
  align-items:center;
}

.orc-pill,
.orc-search{
  height:56px;
  border:1px solid #e1e1e1;
  border-radius:999px;
  background:#f8f8f8;
  display:flex;
  align-items:center;
  padding:0 26px;
  color:#5a5a5a;
  font-size:14px;
}

.orc-pill{
  min-width:230px;
  justify-content:space-between;
  gap:14px;
}

.orc-search{
  min-width:360px;
  gap:12px;
  background:#FFFFFF;
}

.orc-search:focus-within{
  border-color: var(--btn);
  box-shadow: 0 0 0 3px rgba(61,184,88,.22);
}

.orc-search input{
  border:none;
  background:transparent;
  outline:none;
  width:100%;
  font-size:14px;
  color:#5a5a5a;
}

.orc-search svg,
.orc-pill svg{
  width:18px;
  height:18px;
  color:#8b8ba3;
}


/* ======================================================
ÁREA DOS GRUPOS
====================================================== */

.orc-groups{
  border:1px solid #f0f0f0;
  border-radius:25px;
  padding:28px 20px 10px;
  background:transparent;
}

.orc-group{
  background:#ffffff;
  border-radius:25px;
  margin-bottom:18px;
  overflow:hidden;
  
}

/* Accordion: itens fechados por padrão */
.orc-group-body{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease-out;
  padding:0 30px;
  background:#fff;
}

.orc-group.is-open .orc-group-body{
  max-height:5000px;
  transition:max-height 0.5s ease-in;
  padding:0 30px 26px;
}

.orc-group.has-selected{
  border: 2px solid #2E7D32;
}

.orc-group.is-open{
  border: 2px solid #2E7D32;
}

.orc-group-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:28px 26px;
  cursor:pointer;
}

/* Ícone + / - do accordion */
.orc-group-head::after{
  content:'+';
  font-size:22px;
  font-weight:bold;
  color:#666;
  line-height:1;
  transition:transform 0.2s ease;
}

.orc-group.is-open .orc-group-head::after{
  content:'-';
}

.orc-group-head-left{
  display:flex;
  align-items:center;
  gap:18px;
  min-width:0;
}

.orc-group-title{
  font-size:20px;
  font-weight:500;
  color:#323232;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.orc-group-count{
  font-size:14px;
  color:#666;
  white-space:nowrap;
  margin-left:auto;
  text-align:right;
}

.orc-status{
  width:24px;
  height:24px;
  flex:0 0 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.orc-status svg{
  width:24px;
  height:24px;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
}

.orc-status-closed{
  display:block;
}

.orc-status-open{
  display:none;
}

.orc-group.is-open .orc-status-closed{
  display:none;
}

.orc-group.is-open .orc-status-open{
  display:block;
}


/* ======================================================
CONTEÚDO DO ACCORDION (quando aberto)
====================================================== */

.orc-group-body .orc-row{
  display:grid;
  grid-template-columns: minmax(320px, 1fr) 120px 120px;
  gap:20px;
  align-items:center;
  padding:28px 0;
  border-top:1px solid #f0f0f0;
}

.orc-row:first-child{
  border-top:none;
}

.orc-row-left{
  display:flex;
  align-items:center;
  gap:22px;
  min-width:0;
}

.orc-check{
  width:20px;
  height:20px;
  border:1.5px solid #b7b7b7;
  border-radius:5px;
  background:#fff;
  flex:0 0 20px;
}

.orc-qty-wrap{
  width:68px;
  flex:0 0 68px;
  text-align:center;
}

.orc-qty-label{
  display:block;
  font-size:10px;
  color:#747474;
  margin-bottom:6px;
}

.orc-qtyD{
  width:68px;
  height:38px;
  border:1px solid #ececec;
  border-radius:7px;
  background:#fafafa;
  text-align:center;
  font-size:16px;
  color:#7b7b7b;
  outline:none;
}

.orc-qty{
  width:68px;
  height:38px;
  border:1px solid #ececec;
  border-radius:7px;
  background:#FFFFFF;
  text-align:center;
  font-size:16px;
  color:#000000;
  outline:none;
}

.orc-qty:focus{
  border-color: var(--btn);
  box-shadow: 0 0 0 3px rgba(61,184,88,.22);
}

.orc-product-name{
  font-size:16px;
  font-weight:500;
  color:#4a4a4a;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.orc-col{
  text-align:center;
}

.orc-col-label{
  display:block;
  font-size:11px;
  color:#777;
  margin-bottom:4px;
}

.orc-col-value{
  font-size:18px;
  font-weight:600;
  color:#666;
}

.orc-col-total .orc-col-value{
  font-size:20px;
  color:#9b9b9b;
}

.orc-col-total.is-active .orc-col-value{
  color:#175A40;
}


/* ======================================================
RESPONSIVO
====================================================== */

@media (max-width: 1200px){
  .orc-title{
    font-size:52px;
  }

  .orc-box-header{
    flex-direction:column;
    align-items:flex-start;
    width:100%;
  }

  .orc-box-actions{
    width:100%;
    flex-wrap:wrap;
  }

  .orc-search{
    flex:1;
    min-width:280px;
  }
}

@media (max-width: 860px){
  .orc-page{
    padding:18px 16px 30px;
  }

  .orc-topbar{
    align-items:center;
  }

  .orc-logo{
    width:90px;
  }

  .btn-voltar{
    padding:12px 18px;
    font-size:16px;
  }

  .orc-header{
    padding:0 4px;
  }

  .orc-title{
    font-size:40px;
  }

  .orc-subtitle{
    font-size:18px;
    margin-top:12px;
  }

  .orc-box{
    padding:24px 18px 18px;
    border-radius:25px;
  }

  .orc-box-title{
    font-size:22px;
  }

  .orc-groups{
    padding:14px 10px 4px;
    border-radius:25px;
  }

  .orc-group{
    border-radius:25px;
  }

  .orc-group-head{
    padding:20px 18px;
  }

  .orc-group-title{
    font-size:18px;
    white-space:normal;
  }

  .orc-group.is-open .orc-group-body{
    padding:0 18px 18px;
  }

  .orc-group-body .orc-row,
  .orc-row{
    grid-template-columns:1fr;
    gap:14px;
    padding:18px 0;
  }

  .orc-row-left{
    align-items:flex-start;
    flex-wrap:wrap;
    gap:14px;
  }

  .orc-product-name{
    width:100%;
    white-space:normal;
  }

  .orc-col{
    text-align:left;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-left:44px;
  }

  .orc-col-label{
    margin-bottom:0;
    font-size:12px;
  }

  .orc-col-value{
    font-size:18px;
  }
}

@media (max-width: 540px){
  .orc-topbar{
    flex-direction:row;
    gap:10px;
  }

  .orc-box-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .orc-pill,
  .orc-search{
    width:100%;
    min-width:0;
  }

  .orc-title{
    font-size:32px;
  }

  .orc-subtitle{
    font-size:16px;
  }

  .orc-group-count{
    display:none;
  }

  .orc-row-left{
    gap:12px;
  }

  .orc-col{
    padding-left:0;
    width:100%;
    min-width:0;
  }
}

/* ======================================================
FINALIZAÇÃO / CHECKOUT
====================================================== */

.orc-final-box{
  max-width:1280px;
  margin:32px auto 0;
  border:1px solid #ececec;
  border-radius:25px;
  background:rgba(245,245,245,0.92);
  padding:42px 46px 46px;
}

.orc-final-grid{
  display:grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap:54px;
  align-items:start;
}


/* ======================================================
COLUNA ESQUERDA
====================================================== */

.orc-cart-title,
.orc-obs-title{
  margin:0 0 22px 0;
  font-size:24px;
  font-weight:600;
  color:#333;
}

.orc-cart-wrap{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin-bottom:58px;
}

.orc-cart-list{
  flex:1;
  max-height:292px;
  overflow-y:auto;
  background:#ffffff;
  border:1px solid #ededed;
  border-radius:25px;
}

.orc-cart-list-larger{
  flex:1;
  max-height:400px;
  overflow-y:auto;
  background:#ffffff;
  border:1px solid #ededed;
  border-radius:25px;
}

/* Scrollbar do carrinho em verde */
.orc-cart-list{
  scrollbar-color:#175A40 #f3f3f3; /* Firefox */
}

.orc-cart-list::-webkit-scrollbar{
  width:8px;
}

.orc-cart-list::-webkit-scrollbar-track{
  background:#f3f3f3;
  border-radius:999px;
}

.orc-cart-list::-webkit-scrollbar-thumb{
  background:#175A40;
  border-radius:999px;
}

.orc-cart-scroll-indicator{
  width:12px;
  height:250px;
  background:#f3f3f3;
  border-radius:30px;
  position:relative;
  margin-top:22px;
  flex:0 0 12px;
}

.orc-cart-scroll-indicator::after{
  content:"";
  position:absolute;
  left:0;
  top:var(--scroll-thumb-offset, 26px);
  width:12px;
  height:28px;
  background:#175A40;
  border-radius:11px;
}


/* ======================================================
ITEM DO CARRINHO
====================================================== */

.orc-cart-item{
  display:grid;
  grid-template-columns:minmax(0,1fr) 120px;
  gap:24px;
  align-items:center;
  padding:18px 26px;
  border-bottom:1px solid #ececec;
}

.orc-cart-item:last-child{
  border-bottom:none;
}

.orc-cart-info{
  min-width:0;
}

.orc-cart-name{
  margin:0 0 10px 0;
  font-size:16px;
  font-weight:bold;
  color:#464646;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.orc-cart-qtd{
  margin:0;
  font-size:14px;
  color:#818181;
}

.orc-cart-total{
  text-align:center;
}

.orc-cart-total-label{
  display:block;
  font-size:10px;
  color:#555;
  margin-bottom:4px;
}

.orc-cart-total-value{
  font-size:18px;
  font-weight:600;
  color:#464646;
}

/* Item da lista de orçamentos enviados (MBVEN0001_05): botão à esquerda */
.orc-sent-item{
  grid-template-columns: 52px minmax(0,1fr) 120px;
}
.orc-cart-item-btn{
  display:flex;
  align-items:stretch;
  min-width:0;
}
.orc-cart-item-btn .btn{
  align-self:stretch;
  width:100%;
  min-width:0;
  padding:0;
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.orc-cart-item-btn .btn-icon{
  width:20px;
  height:20px;
}


/* ======================================================
OBSERVAÇÕES
====================================================== */

.orc-obs-box{
  width:100%;
  min-height:108px;
  resize:vertical;
  border:1px solid #e2e2e2;
  border-radius:25px;
  background:#FFFFFF;
  padding:18px 20px;
  font-size:15px;
  font-family:"Inter", Arial, sans-serif;
  color:#444;
  outline:none;
}

.orc-obs-box:focus{
  border-color: var(--btn);
  box-shadow: 0 0 0 3px rgba(61,184,88,.22);
}


/* ======================================================
COLUNA DIREITA
====================================================== */

.orc-total-side{
  padding-top:128px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:28px;
}

.orc-total-title{
  font-size:25px;
  font-weight:600;
  color:#323232;
  text-align:center;
}

.orc-total-value{
  font-size:40px;
  line-height:1.1;
  font-weight:600;
  color:#175A40;
  text-align:center;
}

.orc-submit-btn{
  width: 263px;
}


/* ======================================================
RESPONSIVO
====================================================== */

@media (max-width: 1100px){
  .orc-final-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .orc-total-side{
    padding-top:0;
  }
}

@media (max-width: 768px){
  .orc-final-box{
    padding:24px 18px 24px;
    border-radius:25px;
  }

  .orc-cart-title,
  .orc-obs-title{
    font-size:22px;
    margin-bottom:16px;
  }

  .orc-cart-wrap{
    margin-bottom:34px;
  }

  .orc-cart-scroll-indicator{
    display:none;
  }

  .orc-cart-item{
    grid-template-columns:1fr;
    gap:12px;
    padding:16px 18px;
  }

  /* Lista orçamentos enviados (_05): empilha em mobile */
  .orc-sent-item{
    grid-template-columns:1fr;
    gap:12px;
    padding:16px 18px;
  }
  .orc-sent-item .orc-cart-item-btn{
    order:-1;
    justify-content:flex-start;
  }
  .orc-sent-item .orc-cart-item-btn .btn{
    width:auto;
    min-width:44px;
    padding:10px 14px;
  }

  .orc-cart-total{
    text-align:left;
  }

  .orc-total-value{
    font-size:34px;
  }

  .orc-submit-btn{
    width:100%;
    max-width:320px;
  }

  /* Confirmação / detalhe orçamento (_02, _06) */
  .orc-confirm-cliente-nome{
    font-size:18px;
  }
  .orc-confirm-total-value{
    font-size:30px;
  }
  .orc-confirm-list{
    max-height:240px;
  }
  .orc-confirm-obs-text{
    font-size:14px;
  }

  /* Sucesso (_03) */
  .orc-success-box{
    padding:32px 20px;
  }
  .orc-success-title{
    font-size:18px;
  }
  .orc-success-text{
    font-size:16px;
  }

  /* Filtro período (_04) */
  .orc-period-inputs{
    gap:12px;
  }
  .orc-period-input{
    width:100%;
    max-width:160px;
  }
}

@media (max-width: 480px){
  .orc-cart-name{
    white-space:normal;
  }

  .orc-total-title{
    font-size:22px;
  }

  .orc-total-value{
    font-size:30px;
  }

  .orc-submit-btn{
    height:50px;
    border-radius:16px;
    font-size:15px;
  }

  /* Confirmação / detalhe (_02, _06) */
  .orc-confirm-cliente{
    padding:14px 0;
    margin-bottom:18px;
  }
  .orc-confirm-cliente-nome{
    font-size:16px;
  }
  .orc-confirm-total{
    padding:14px 0 20px;
  }
  .orc-confirm-total-label{
    font-size:16px;
  }
  .orc-confirm-total-value{
    font-size:26px;
  }
  .orc-confirm-list{
    max-height:200px;
    margin-bottom:16px;
  }

  /* Sucesso (_03) */
  .orc-success-box{
    padding:24px 16px;
  }
  .orc-success-title{
    font-size:16px;
  }
  .orc-success-text{
    font-size:14px;
  }

  /* Filtro período (_04) */
  .orc-period-filter{
    margin-bottom:20px;
  }
  .orc-period-inputs{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    margin-top:12px;
  }
  .orc-period-input{
    max-width:none;
    width:100%;
  }
  .orc-period-sep{
    text-align:center;
  }
}
   
.accordion-item,
.orc-group {
    width: 100%;
    margin: 10px 0;
}

.accordion-item.has-selected,
.orc-group.has-selected {
    border: 2px solid #2E7D32;
}

.accordion-header,
.orc-group-head {
    background-color: #F7F7F7;
}

.accordion-item.hidden-by-search,
.orc-group.hidden-by-search {
    display: none;
}

.accordion-item.visible-by-search .accordion-content,
.orc-group.visible-by-search .orc-group-body {
    max-height: 5000px !important;
}

.orc-cart-list {
    overflow-y: auto;
}


.product-row.hidden-by-search {
    display: none;
}  	