/* ---- WRAP & LARGURA ---- */
.acb-wrap{ width:100%; padding:0 20px; }
.acb-card{
  background:#fff; border-radius:14px; box-shadow:0 10px 32px rgba(0,0,0,.07);
  padding:28px; max-width:1350px; margin:28px auto;
}

/* grid responsiva */
.acb-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:980px){ .acb-grid{ grid-template-columns:1fr; } }
.acb-grid.extras{ display:flex; flex-direction:column; gap:18px; }

/* TIPOGRAFIA */
.acb-form, .acb-form input, .acb-form select, .acb-form textarea, .acb-form button{ font-family:inherit !important; }
.acb-title{ font-size:28px; margin:0 0 6px; color:#122; }
.acb-sub{ margin:0 0 6px; color:#445; opacity:.9; }

/* SECÇÕES */
.acb-section{
  border:1px solid #eef1f4; background:#fafbfd; border-radius:12px;
  padding:18px; margin:26px 0;
}
.acb-section>legend{
  font-weight:700; font-size:20px; color:#3d5c2c; padding:0 8px; margin:0 0 12px;
}

/* CAMPOS */
.acb-field{ display:flex; flex-direction:column; gap:6px; }
.acb-form input[type="text"], .acb-form input[type="email"], .acb-form input[type="tel"],
.acb-form input[type="number"], .acb-form input[type="date"], .acb-form select, .acb-form textarea{
  width:100%; border:1px solid #dfe3ea !important; border-radius:10px !important;
  padding:12px 14px !important; background:#fff; font-size:16px; height:46px;
  outline:none; transition:.15s;
}
.acb-form textarea{ min-height:110px; height:auto; resize:vertical; }
.acb-form input:focus, .acb-form select:focus, .acb-form textarea:focus{
  border-color:#2c7be5; box-shadow:0 0 0 3px rgba(44,123,229,.12);
}
/* seta do select */
.acb-form select{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23848A97' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 12px center; background-size:12px 8px;
  padding-right:34px !important;
}

/* TOGGLES + QUANTIDADES (quantidade colada à borda direita) */
.acb-inline .acb-row{ display:flex; align-items:center; gap:12px; }
.acb-price{ color:#334; opacity:.85; font-weight:600; }

.acb-qty{
  width:78px !important; height:44px !important; border-radius:10px !important;
  text-align:center; margin-left:auto !important; margin-right:0 !important; flex:0 0 auto !important;
}
.acb-unit{
  color:#556; opacity:.85; display:inline-block; margin-left:6px !important;
  margin-right:0 !important; white-space:nowrap; flex:0 0 auto !important;
}

/* SWITCH */
.acb-switch{ position:relative; display:inline-block; width:60px; height:34px; }
.acb-switch input{ display:none; }
.acb-slider{
  position:absolute; inset:0; background:#d5d9e2; border-radius:999px; transition:.2s; cursor:pointer;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.acb-slider:before{
  content:""; position:absolute; height:26px; width:26px; left:4px; top:4px; background:#fff; border-radius:50%;
  transition:.2s; box-shadow:0 2px 6px rgba(0,0,0,.18);
}
.acb-switch input:checked + .acb-slider{ background:#2c7be5; }
.acb-switch input:checked + .acb-slider:before{ transform:translateX(26px); }

/* CONSENT + BOTÃO */
.acb-consent{ margin:16px 0 }
.acb-consent label{ display:flex; align-items:flex-start; gap:8px; line-height:1.35; }
.acb-consent a{ color:#f4b400; font-weight:700; text-decoration:underline; }
.acb-consent a:hover{ opacity:.85; }

.acb-actions{ margin-top:22px; }
.acb-btn{
  background:#f4b400; color:#1b1b1b; font-weight:700; border:none;
  padding:14px 18px; border-radius:999px; cursor:pointer; transition:.15s; font-size:16px;
}
.acb-btn:hover{ transform:translateY(-1px); box-shadow:0 6px 18px rgba(0,0,0,.08) }

/* OBSERVAÇÕES – espaço extra antes do título */
label[for="acb_obs"]{ margin-top:22px; display:block; }

/* ERROS */
.acb-invalid{ border-color:#e53935 !important; box-shadow:0 0 0 3px rgba(229,57,53,.12) !important; }
select.acb-invalid{ outline:2px solid rgba(229,57,53,.35); outline-offset:0; }
label.acb-invalid-label{ color:#b71c1c !important; font-weight:700; }
.acb-error{ color:#c62828; font-size:13px; margin-top:4px; }
#acbMsg.acb-error-summary{
  background:#fff4f4; border:1px solid #f8c7c7; color:#b71c1c;
  padding:10px 12px; border-radius:8px; margin-top:8px; display:none;
}
#acbMsg.acb-error-summary.show{ display:block; }

/* ASTERISCO (um só) */
.acb-label-required::after{ content:" *"; color:#c00; font-weight:700; margin-left:3px; }

/* PESO DOS RÓTULOS: regular; legend: bold */
.acb-form .acb-field>label, .acb-form .acb-inline>label { font-weight:400 !important; }
.acb-section>legend { font-weight:700 !important; color:#3d5c2c; }
.acb-modal-backdrop{
  position:fixed; inset:0; background:rgba(0,0,0,.45);
  display:none; z-index:9999;
}
.acb-modal{
  background:#fff; width:min(720px,92vw); margin:8vh auto 0;
  border-radius:12px; padding:22px; box-shadow:0 12px 36px rgba(0,0,0,.2);
}
.acb-modal .close{
  float:right; cursor:pointer; font-size:22px; line-height:1;
  background:transparent; border:0;
}
