/* ==========================================================
   MaridoBH Design System - Módulo 4 UX/UI
   Camada visual global para cliente, profissional e admin.
   Mantém a lógica existente e padroniza cards, botões, badges,
   alertas, modais, timelines, tabelas e responsividade.
   ========================================================== */
:root{
  --mbh-primary:#1e88e5;
  --mbh-primary-700:#1565c0;
  --mbh-primary-soft:#eaf4ff;
  --mbh-success:#16a34a;
  --mbh-success-soft:#dcfce7;
  --mbh-warning:#f59e0b;
  --mbh-warning-soft:#fff7ed;
  --mbh-danger:#dc2626;
  --mbh-danger-soft:#fee2e2;
  --mbh-info:#2563eb;
  --mbh-info-soft:#dbeafe;
  --mbh-dark:#0f172a;
  --mbh-muted:#64748b;
  --mbh-border:#e2e8f0;
  --mbh-bg:#f8fafc;
  --mbh-surface:#ffffff;
  --mbh-radius-sm:8px;
  --mbh-radius:14px;
  --mbh-radius-lg:20px;
  --mbh-shadow:0 10px 30px rgba(15,23,42,.08);
  --mbh-shadow-soft:0 4px 14px rgba(15,23,42,.06);
  --mbh-font:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}

/* Escopo compartilhado */
.mbh-wrap,.mbh-page,.mbh-container,.mbh-card,.mbh-admin-wrap,.mbh-chat-modal,.mbh-card-pedido,.mbh-profissional-panel,.mbh-cliente-panel{
  box-sizing:border-box;
  font-family:var(--mbh-font);
}
.mbh-wrap *,.mbh-page *,.mbh-container *,.mbh-card *,.mbh-admin-wrap *,.mbh-chat-modal *,.mbh-card-pedido *{
  box-sizing:border-box;
}

/* Cards */
.mbh-card,.mbh-admin-card,.mbh-card-pedido,.mbh-dashboard-card,.mbh-metric-card,.mbh-panel-card,.mbh-chat-attendance-grid>div{
  background:var(--mbh-surface);
  border:1px solid var(--mbh-border);
  border-radius:var(--mbh-radius);
  box-shadow:var(--mbh-shadow-soft);
}
.mbh-card,.mbh-card-pedido,.mbh-panel-card{padding:16px;}
.mbh-card-header,.mbh-section-header,.mbh-pedido-card-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.mbh-card-title,.mbh-section-title{margin:0;color:var(--mbh-dark);font-weight:800;line-height:1.25;}
.mbh-card-subtitle,.mbh-muted{color:var(--mbh-muted);font-size:13px;line-height:1.4;}

/* Botões */
.mbh-btn,.mbh-button,.mbh-admin-wrap .button.mbh-btn,.mbh-chat-form button,.mbh-action-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-height:40px;
  padding:9px 14px;
  border-radius:10px;
  border:1px solid transparent;
  font-weight:800;
  text-decoration:none!important;
  cursor:pointer;
  line-height:1.15;
  transition:transform .12s ease,box-shadow .12s ease,background .12s ease,border-color .12s ease;
  white-space:nowrap;
}
.mbh-btn:hover,.mbh-button:hover,.mbh-action-btn:hover{transform:translateY(-1px);box-shadow:0 8px 18px rgba(15,23,42,.10);}
.mbh-btn:active,.mbh-button:active,.mbh-action-btn:active{transform:translateY(0);}
.mbh-btn-primary,.mbh-button-primary,.mbh-action-primary{background:var(--mbh-primary);color:#fff!important;border-color:var(--mbh-primary);}
.mbh-btn-success,.mbh-button-success{background:var(--mbh-success);color:#fff!important;border-color:var(--mbh-success);}
.mbh-btn-warning,.mbh-button-warning{background:var(--mbh-warning);color:#111827!important;border-color:var(--mbh-warning);}
.mbh-btn-danger,.mbh-button-danger{background:var(--mbh-danger);color:#fff!important;border-color:var(--mbh-danger);}
.mbh-btn-outline,.mbh-button-outline{background:#fff;color:var(--mbh-primary)!important;border-color:#bfdbfe;}
.mbh-btn-small,.mbh-button-small{min-height:34px;padding:7px 10px;font-size:12px;border-radius:9px;}
.mbh-btn-mini{min-height:30px;padding:5px 8px;font-size:11px;border-radius:8px;}
.mbh-inline-actions,.mbh-card-actions,.mbh-actions{display:flex;align-items:center;gap:8px;flex-wrap:wrap;}

/* Badges e status */
.mbh-badge,.mbh-status,.mbh-admin-badge,.mbh-chat-unread-badge,.mbh-verified-pill,.mbh-sla-badge{
  display:inline-flex;
  align-items:center;
  gap:5px;
  width:auto;
  max-width:100%;
  border-radius:999px;
  padding:4px 9px;
  font-size:12px;
  line-height:1.2;
  font-weight:800;
  white-space:nowrap;
}
.mbh-badge-info,.mbh-status-info{background:var(--mbh-info-soft);color:#1d4ed8;}
.mbh-badge-success,.mbh-status-concluido,.mbh-status-ativo,.mbh-status-aprovado{background:var(--mbh-success-soft);color:#166534;}
.mbh-badge-warning,.mbh-status-pendente,.mbh-status-aguardando,.mbh-status-expirado{background:#fef3c7;color:#92400e;}
.mbh-badge-danger,.mbh-status-cancelado,.mbh-status-erro,.mbh-status-reprovado{background:var(--mbh-danger-soft);color:#991b1b;}
.mbh-badge-muted,.mbh-status-finalizado{background:#f1f5f9;color:#475569;}
.mbh-chat-unread-badge{background:var(--mbh-primary);color:#fff;}

/* Alertas / Central de avisos */
.mbh-alert,.mbh-notice-card,.mbh-warning-box,.mbh-info-box,.mbh-success-box,.mbh-error-box{
  border-radius:var(--mbh-radius);
  border:1px solid var(--mbh-border);
  padding:13px 14px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  line-height:1.4;
  margin:12px 0;
  box-shadow:var(--mbh-shadow-soft);
}
.mbh-alert strong,.mbh-notice-card strong{display:block;margin-bottom:3px;color:var(--mbh-dark);}
.mbh-alert-info,.mbh-info-box{background:var(--mbh-info-soft);border-color:#bfdbfe;color:#1e3a8a;}
.mbh-alert-success,.mbh-success-box{background:var(--mbh-success-soft);border-color:#bbf7d0;color:#14532d;}
.mbh-alert-warning,.mbh-warning-box{background:#fff7ed;border-color:#fed7aa;color:#7c2d12;}
.mbh-alert-danger,.mbh-error-box{background:var(--mbh-danger-soft);border-color:#fecaca;color:#7f1d1d;}

/* Formulários */
.mbh-field,.mbh-form-row{margin-bottom:14px;}
.mbh-field label,.mbh-form-row label{display:block;font-weight:800;margin-bottom:6px;color:var(--mbh-dark);}
.mbh-field input,.mbh-field select,.mbh-field textarea,.mbh-form-row input,.mbh-form-row select,.mbh-form-row textarea,
.mbh-admin-wrap input[type="text"],.mbh-admin-wrap input[type="email"],.mbh-admin-wrap input[type="number"],.mbh-admin-wrap input[type="date"],.mbh-admin-wrap input[type="url"],.mbh-admin-wrap select,.mbh-admin-wrap textarea{
  max-width:100%;
  border-radius:10px;
  border:1px solid #cbd5e1;
  min-height:40px;
}
.mbh-field textarea,.mbh-form-row textarea{min-height:96px;resize:vertical;}

/* Tabelas */
.mbh-table-wrap,.mbh-admin-wrap .mbh-table-wrap,.mbh-admin-wrap .widefat-wrapper{
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border-radius:var(--mbh-radius);
}
.mbh-table,.mbh-admin-wrap table.widefat,.mbh-admin-wrap table.mbh-table{
  border-collapse:separate;
  border-spacing:0;
  min-width:760px;
}
.mbh-table th,.mbh-table td,.mbh-admin-wrap table.widefat th,.mbh-admin-wrap table.widefat td,.mbh-admin-wrap table.mbh-table th,.mbh-admin-wrap table.mbh-table td{
  vertical-align:top;
  word-break:normal!important;
  overflow-wrap:break-word!important;
}
.mbh-admin-wrap table.widefat th:first-child,.mbh-admin-wrap table.widefat td:first-child,.mbh-admin-wrap table.mbh-table th:first-child,.mbh-admin-wrap table.mbh-table td:first-child{
  white-space:nowrap!important;
  min-width:54px!important;
  width:1%;
}
.mbh-admin-wrap table.widefat th:nth-child(2),.mbh-admin-wrap table.widefat td:nth-child(2){min-width:130px;}
.mbh-admin-wrap td .button,.mbh-admin-wrap td .mbh-btn{margin:2px;}

/* Paginação */
.mbh-pagination{display:flex;gap:6px;align-items:center;justify-content:center;flex-wrap:wrap;margin:18px 0;}
.mbh-pagination a,.mbh-pagination span{display:inline-flex;align-items:center;justify-content:center;min-width:36px;min-height:36px;padding:6px 10px;border-radius:10px;border:1px solid var(--mbh-border);background:#fff;text-decoration:none;font-weight:800;}
.mbh-pagination .current,.mbh-pagination .is-active{background:var(--mbh-primary);border-color:var(--mbh-primary);color:#fff;}

/* Timeline */
.mbh-timeline{position:relative;display:flex;flex-direction:column;gap:10px;margin:12px 0;}
.mbh-timeline-item{display:flex;gap:10px;align-items:flex-start;color:var(--mbh-muted);}
.mbh-timeline-dot{width:22px;height:22px;min-width:22px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:#e2e8f0;color:#475569;font-size:12px;font-weight:900;}
.mbh-timeline-item.is-done{color:var(--mbh-dark);}
.mbh-timeline-item.is-done .mbh-timeline-dot{background:var(--mbh-success);color:#fff;}
.mbh-timeline-item.is-current .mbh-timeline-dot{background:var(--mbh-primary);color:#fff;box-shadow:0 0 0 4px var(--mbh-primary-soft);}

/* Modais gerais */
.mbh-modal,.mbh-chat-modal{animation:mbhFadeIn .16s ease both;}
.mbh-modal-box,.mbh-chat-modal-dialog{animation:mbhSlideUp .18s ease both;}
@keyframes mbhFadeIn{from{opacity:0}to{opacity:1}}
@keyframes mbhSlideUp{from{transform:translateY(12px);opacity:.96}to{transform:translateY(0);opacity:1}}

/* Chat / Central do atendimento */
.mbh-chat-modal-header{background:linear-gradient(135deg,#eaf4ff,#f8fbff)!important;color:var(--mbh-dark)!important;border-bottom:1px solid var(--mbh-border)!important;}
.mbh-chat-modal-title,.mbh-chat-modal-header strong,.mbh-chat-modal-header h3{color:var(--mbh-dark)!important;}
.mbh-chat-modal-subtitle,.mbh-chat-modal-header small{color:#475569!important;}
.mbh-chat-modal-close,[data-mbh-close-chat]{background:#fff!important;color:var(--mbh-dark)!important;border:1px solid var(--mbh-border)!important;border-radius:999px!important;}
.mbh-chat-messages{background:linear-gradient(180deg,#f8fafc,#ffffff);}
.mbh-chat-message{border-radius:16px!important;box-shadow:var(--mbh-shadow-soft)!important;}
.mbh-chat-form{border-top:1px solid var(--mbh-border)!important;background:#fff!important;}
.mbh-chat-form textarea{border-radius:16px!important;border-color:#cbd5e1!important;line-height:1.35!important;}
.mbh-chat-plus{border-radius:999px!important;background:var(--mbh-primary-soft)!important;color:var(--mbh-primary-700)!important;border:1px solid #bfdbfe!important;}

/* Loading */
.mbh-loading{display:inline-flex;align-items:center;gap:8px;color:var(--mbh-muted);font-weight:700;}
.mbh-loading::before{content:"";width:16px;height:16px;border-radius:50%;border:2px solid #cbd5e1;border-top-color:var(--mbh-primary);animation:mbhSpin .8s linear infinite;}
@keyframes mbhSpin{to{transform:rotate(360deg)}}

/* Mobile */
@media (max-width:782px){
  .mbh-admin-wrap,.wrap.mbh-admin-wrap{padding-right:10px!important;}
  .mbh-card,.mbh-card-pedido,.mbh-panel-card{padding:13px;border-radius:14px;}
  .mbh-card-header,.mbh-section-header,.mbh-pedido-card-header{flex-direction:column;align-items:stretch;gap:8px;}
  .mbh-inline-actions,.mbh-card-actions,.mbh-actions{display:grid;grid-template-columns:1fr;gap:8px;width:100%;}
  .mbh-inline-actions .mbh-btn,.mbh-card-actions .mbh-btn,.mbh-actions .mbh-btn,.mbh-inline-actions .button,.mbh-card-actions .button,.mbh-actions .button{width:100%;justify-content:center;}
  .mbh-btn,.mbh-button,.mbh-action-btn{white-space:normal;min-height:42px;text-align:center;}
  .mbh-admin-grid,.mbh-dashboard-grid,.mbh-grid{grid-template-columns:1fr!important;gap:12px!important;}
  .mbh-table,.mbh-admin-wrap table.widefat,.mbh-admin-wrap table.mbh-table{min-width:820px!important;}
  .mbh-admin-wrap table.form-table,.mbh-admin-wrap table.form-table tbody,.mbh-admin-wrap table.form-table tr,.mbh-admin-wrap table.form-table th,.mbh-admin-wrap table.form-table td{display:block;width:100%;}
  .mbh-admin-wrap table.form-table th{padding-bottom:4px;}
  .mbh-admin-wrap table.form-table td{padding-top:4px;}
  .mbh-admin-wrap input:not([type="checkbox"]):not([type="radio"]),.mbh-admin-wrap select,.mbh-admin-wrap textarea{width:100%;}
  .mbh-alert,.mbh-notice-card{padding:12px;}
  .mbh-chat-modal-dialog{width:96vw!important;height:96vh!important;max-height:96vh!important;border-radius:18px!important;}
  .mbh-chat-modal-header{padding:10px 12px!important;}
  .mbh-chat-modal-tabs{overflow-x:auto;white-space:nowrap;}
  .mbh-chat-message{max-width:88%!important;}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;transition-duration:.001ms!important;scroll-behavior:auto!important;}
}

/* ==========================================================
   MaridoBH 4.3.0 — Refinamento Visual UX Premium · Fase 1
   Camada exclusivamente visual e responsiva.
   ========================================================== */

/* Ritmo e hierarquia dos painéis principais */
.mbh-cliente-panel,
.mbh-profissional-panel{
  --mbh-content-gap:16px;
}
.mbh-cliente-panel .mbh-card-pedido,
.mbh-profissional-panel .mbh-card-pedido{
  padding:18px;
  border-radius:22px;
  box-shadow:0 10px 28px rgba(15,23,42,.055);
}
.mbh-cliente-panel .mbh-card-pedido > * + *,
.mbh-profissional-panel .mbh-card-pedido > * + *{
  margin-top:var(--mbh-content-gap);
}

/* Subcards de informação com aparência uniforme */
.mbh-card-pedido .mbh-panel-card,
.mbh-card-pedido .mbh-info-card,
.mbh-card-pedido .mbh-profissional-card,
.mbh-card-pedido .mbh-cliente-card{
  border:1px solid #e2e8f0;
  border-radius:18px;
  background:#fff;
  box-shadow:none;
}

/* Botões: mesma geometria e leitura em todas as telas móveis */
.mbh-cliente-panel .mbh-btn,
.mbh-profissional-panel .mbh-btn,
.mbh-cliente-panel button,
.mbh-profissional-panel button{
  max-width:100%;
  box-sizing:border-box;
}
.mbh-cliente-panel .mbh-btn,
.mbh-profissional-panel .mbh-btn{
  border-radius:14px;
  min-height:46px;
  padding:11px 16px;
  line-height:1.25;
  white-space:normal;
  text-align:center;
}

/* Chat: contador integrado ao botão, sem etiqueta duplicada abaixo */
.mbh-chat-modal-entry{
  width:100%;
  max-width:100%;
}
.mbh-chat-modal-entry .mbh-chat-open-btn{
  width:100%;
  min-height:50px;
  position:relative;
  justify-content:center;
  gap:9px;
  padding-inline:18px 58px;
}
.mbh-chat-btn-count{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:30px;
  height:30px;
  padding:0 8px;
  border-radius:999px;
  background:#fff;
  color:#334155;
  font-size:14px;
  font-weight:900;
  line-height:1;
  box-shadow:0 2px 8px rgba(15,23,42,.12);
}
.mbh-chat-inline-unread{display:none!important;}

/* Badges de status mais consistentes e sem estouro */
.mbh-card-pedido .mbh-badge,
.mbh-card-pedido .mbh-status,
.mbh-card-pedido [class*="status-badge"]{
  max-width:100%;
  overflow-wrap:anywhere;
}

/* Blocos de ações sempre contidos */
.mbh-card-pedido .mbh-actions,
.mbh-card-pedido .mbh-card-actions,
.mbh-card-pedido .mbh-inline-actions{
  max-width:100%;
  min-width:0;
}
.mbh-card-pedido form{
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
}

/* Atualizações da Central Realtime com transição discreta */
.mbh-card-pedido.mbh-realtime-updated,
.mbh-status-sync-inner.mbh-realtime-updated{
  animation:mbhUxUpdated .28s ease both;
}
@keyframes mbhUxUpdated{
  from{opacity:.72;transform:translateY(3px)}
  to{opacity:1;transform:translateY(0)}
}

/* Mobile: menos aperto, ações empilhadas e textos legíveis */
@media (max-width:640px){
  .mbh-cliente-panel .mbh-card-pedido,
  .mbh-profissional-panel .mbh-card-pedido{
    padding:15px;
    border-radius:18px;
  }
  .mbh-card-pedido .mbh-actions,
  .mbh-card-pedido .mbh-card-actions,
  .mbh-card-pedido .mbh-inline-actions{
    display:grid;
    grid-template-columns:minmax(0,1fr);
    gap:10px;
    width:100%;
  }
  .mbh-card-pedido .mbh-actions > *,
  .mbh-card-pedido .mbh-card-actions > *,
  .mbh-card-pedido .mbh-inline-actions > *{
    width:100%;
    max-width:100%;
    min-width:0;
  }
  .mbh-card-pedido .mbh-btn,
  .mbh-card-pedido button.mbh-btn,
  .mbh-card-pedido a.mbh-btn{
    width:100%;
    justify-content:center;
  }
}

/* 4.3.3 — Chat vivo: ponte principal do atendimento */
.mbh-chat-modal-entry .mbh-chat-open-btn{
  overflow:visible;
  isolation:isolate;
  background:linear-gradient(135deg,#087fe8 0%,#0565d8 58%,#064fc1 100%)!important;
  border:1px solid rgba(255,255,255,.2)!important;
  color:#fff!important;
  font-weight:900!important;
  letter-spacing:.01em;
  box-shadow:0 12px 28px rgba(5,101,216,.3),inset 0 1px 0 rgba(255,255,255,.2)!important;
  transition:transform .18s ease,box-shadow .18s ease,filter .18s ease!important;
}
.mbh-chat-modal-entry .mbh-chat-open-btn:hover,
.mbh-chat-modal-entry .mbh-chat-open-btn:focus-visible{
  transform:translateY(-1px);
  filter:brightness(1.04);
  box-shadow:0 15px 34px rgba(5,101,216,.38),inset 0 1px 0 rgba(255,255,255,.24)!important;
}
.mbh-chat-modal-entry .mbh-chat-open-btn:active{transform:translateY(0) scale(.995)}
.mbh-chat-modal-entry.has-unread-chat .mbh-chat-open-btn{
  box-shadow:0 15px 38px rgba(5,101,216,.42),0 0 0 4px rgba(14,165,233,.12)!important;
}
.mbh-chat-modal-entry.has-unread-chat .mbh-chat-btn-count{
  animation:mbh-chat-count-pop .28s ease-out,mbh-chat-count-pulse 2.2s ease-in-out 1;
}
@keyframes mbh-chat-count-pop{
  from{opacity:0;transform:translateY(-50%) scale(.55)}
  to{opacity:1;transform:translateY(-50%) scale(1)}
}
@keyframes mbh-chat-count-pulse{
  0%,100%{box-shadow:0 2px 8px rgba(15,23,42,.12)}
  35%{box-shadow:0 0 0 7px rgba(255,255,255,.22),0 4px 14px rgba(15,23,42,.18)}
}
@media(prefers-reduced-motion:reduce){
  .mbh-chat-modal-entry .mbh-chat-open-btn,
  .mbh-chat-modal-entry.has-unread-chat .mbh-chat-btn-count{animation:none!important;transition:none!important}
}

/* ==========================================================
   MaridoBH 4.8.0 — Design System 2.0 e telas principais
   Unifica listas, filtros, tabs, cartões, ações, vazios e
   responsividade em Cliente e Profissional sem alterar regras.
   ========================================================== */
:root{
  --mbh-brand-navy:#073f80;
  --mbh-brand-blue:#087be5;
  --mbh-brand-blue-2:#0e91ee;
  --mbh-brand-gold:#ffc83d;
  --mbh-brand-ink:#0b2d4e;
  --mbh-page-bg:#f4f8fc;
  --mbh-surface-raised:#fff;
  --mbh-border-soft:#dce7f2;
  --mbh-radius-xl:26px;
  --mbh-shadow-card:0 14px 36px rgba(18,63,105,.08);
}

.mbh-main-screen{
  position:relative;
  width:min(100%,1120px);
  margin:0 auto;
  padding:clamp(18px,3vw,30px)!important;
  border:1px solid var(--mbh-border-soft)!important;
  border-radius:var(--mbh-radius-xl)!important;
  background:linear-gradient(180deg,#fff 0%,#fbfdff 100%)!important;
  box-shadow:var(--mbh-shadow-card)!important;
  overflow:hidden;
}
.mbh-main-screen:before{
  content:"";
  position:absolute;
  top:-110px;right:-90px;
  width:230px;height:230px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(14,145,238,.12),rgba(14,145,238,0) 70%);
  pointer-events:none;
}
.mbh-main-screen>.mbh-kicker{
  position:relative;z-index:1;
  display:inline-flex;align-items:center;gap:7px;
  padding:7px 12px;
  border:1px solid #bfdcff;
  border-radius:999px;
  background:#eef7ff;
  color:#075ea9;
  font-size:12px;font-weight:900;letter-spacing:.05em;text-transform:uppercase;
}
.mbh-main-screen>.mbh-section-title{
  position:relative;z-index:1;
  margin:12px 0 5px!important;
  color:var(--mbh-brand-ink)!important;
  font-size:clamp(27px,4vw,38px)!important;
  letter-spacing:-.035em;
}
.mbh-main-screen>.mbh-section-subtitle{
  position:relative;z-index:1;
  max-width:720px;
  margin:0 0 20px!important;
  color:#62758a!important;
  font-size:15px;line-height:1.55;
}

/* Filtros e abas */
.mbh-main-screen .mbh-tabs{
  display:flex;gap:8px;align-items:center;
  padding:6px;
  border:1px solid var(--mbh-border-soft);
  border-radius:18px;
  background:#f5f9fd;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}
.mbh-main-screen .mbh-tab,
.mbh-main-screen .mbh-tabs>a{
  min-height:42px;
  display:inline-flex;align-items:center;justify-content:center;gap:7px;
  padding:9px 14px!important;
  border:0!important;border-radius:13px!important;
  background:transparent!important;
  color:#50677d!important;
  text-decoration:none!important;
  font-weight:850!important;
  transition:.18s ease;
}
.mbh-main-screen .mbh-tab:hover,
.mbh-main-screen .mbh-tabs>a:hover{background:#fff!important;color:#075ea9!important;}
.mbh-main-screen .mbh-tab.is-active,
.mbh-main-screen .mbh-tabs>a.is-active{
  background:linear-gradient(135deg,var(--mbh-brand-blue),var(--mbh-brand-blue-2))!important;
  color:#fff!important;
  box-shadow:0 7px 16px rgba(8,123,229,.25);
}
.mbh-main-screen .mbh-filters,
.mbh-main-screen .mbh-op-filtros{
  border-color:var(--mbh-border-soft)!important;
  border-radius:20px!important;
  background:#fff!important;
  box-shadow:0 9px 26px rgba(18,63,105,.06)!important;
}
.mbh-main-screen .mbh-filters label,
.mbh-main-screen .mbh-op-filtros label{
  color:#294b68!important;
  font-size:12px!important;
  font-weight:900!important;
  letter-spacing:.025em;
}
.mbh-main-screen input[type="text"],
.mbh-main-screen input[type="search"],
.mbh-main-screen input[type="date"],
.mbh-main-screen select,
.mbh-main-screen textarea{
  min-height:46px!important;
  padding:10px 13px!important;
  border:1px solid #ccdceb!important;
  border-radius:13px!important;
  background:#fbfdff!important;
  color:#163b5d!important;
  box-shadow:0 1px 0 rgba(255,255,255,.9),inset 0 1px 2px rgba(15,23,42,.03)!important;
}
.mbh-main-screen input:focus,
.mbh-main-screen select:focus,
.mbh-main-screen textarea:focus{
  outline:none!important;border-color:#4aa9f3!important;
  box-shadow:0 0 0 4px rgba(14,145,238,.13)!important;
}

/* Botões do fluxo principal */
.mbh-main-screen .mbh-btn{
  min-height:44px;
  border-radius:13px!important;
  font-weight:900!important;
}
.mbh-main-screen .mbh-btn:not(.mbh-btn-outline):not(.mbh-btn-secondary):not(.mbh-btn-danger-outline){
  background:linear-gradient(135deg,var(--mbh-brand-blue),var(--mbh-brand-blue-2));
  border-color:transparent;color:#fff!important;
  box-shadow:0 8px 18px rgba(8,123,229,.20);
}
.mbh-main-screen .mbh-btn-outline,.mbh-main-screen .mbh-btn-secondary{
  background:#fff!important;border-color:#b8d8f5!important;color:#0866b5!important;
}
.mbh-main-screen .mbh-btn-danger-outline{background:#fff5f5!important;border-color:#fecaca!important;color:#b91c1c!important;}

/* Cards de pedidos e oportunidades */
.mbh-main-screen .mbh-service-list,
.mbh-main-screen .mbh-oportunidades-grid{gap:16px!important;}
.mbh-main-screen .mbh-service-card,
.mbh-main-screen .mbh-op-card{
  position:relative;
  border:1px solid var(--mbh-border-soft)!important;
  border-radius:22px!important;
  background:#fff!important;
  box-shadow:0 10px 28px rgba(18,63,105,.07)!important;
  overflow:hidden;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.mbh-main-screen .mbh-service-card:before,
.mbh-main-screen .mbh-op-card:before{
  content:"";position:absolute;left:0;top:0;bottom:0;width:5px;
  background:linear-gradient(180deg,var(--mbh-brand-blue),#66c4ff);
}
.mbh-main-screen .mbh-service-card:hover,
.mbh-main-screen .mbh-op-card:hover{transform:translateY(-2px);box-shadow:0 16px 35px rgba(18,63,105,.11)!important;border-color:#bddbf3!important;}
.mbh-main-screen .mbh-card-toggle,
.mbh-main-screen .mbh-op-card-head{padding:3px 2px 10px!important;}
.mbh-main-screen .mbh-card-title-wrap strong,
.mbh-main-screen .mbh-op-card-title{color:var(--mbh-brand-ink)!important;font-size:17px!important;}
.mbh-main-screen .mbh-card-subtitle,
.mbh-main-screen .mbh-op-meta{color:#6b7f93!important;line-height:1.45;}
.mbh-main-screen .mbh-service-card-body{border-top:1px solid #edf3f8;padding-top:15px!important;}
.mbh-main-screen .mbh-status{padding:6px 10px!important;border-radius:999px!important;font-size:11px!important;text-transform:none;}
.mbh-main-screen .mbh-op-actions{display:grid!important;grid-template-columns:1fr 1fr;gap:10px!important;margin-top:15px;}
.mbh-main-screen .mbh-op-actions .mbh-btn{width:100%!important;min-height:46px;}
.mbh-main-screen .mbh-card-badges{display:flex;gap:6px;flex-wrap:wrap;justify-content:flex-end;}

/* Oportunidades: cabeçalho operacional */
.mbh-work-topline{
  border:1px solid #bfdbfe!important;
  border-radius:18px!important;
  background:linear-gradient(135deg,#eff7ff,#fff)!important;
  padding:14px 16px!important;
}
.mbh-work-counter{background:var(--mbh-brand-blue)!important;color:#fff!important;border-radius:999px!important;box-shadow:0 5px 12px rgba(8,123,229,.2);}

/* Notificações */
.mbh-notifications-screen .mbh-grid{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:12px!important;
}
.mbh-notifications-screen .mbh-box-stat{
  min-height:92px;
  display:flex;flex-direction:column;justify-content:center;
  padding:15px 17px!important;
  border:1px solid var(--mbh-border-soft)!important;
  border-radius:18px!important;
  background:linear-gradient(145deg,#fff,#f5faff)!important;
  box-shadow:0 8px 20px rgba(18,63,105,.06)!important;
}
.mbh-notifications-screen .mbh-box-stat strong{color:#64788c!important;font-size:12px;text-transform:uppercase;letter-spacing:.035em;}
.mbh-notifications-screen .mbh-box-stat span{color:#075a98!important;font-size:28px!important;font-weight:950!important;line-height:1.1;}
.mbh-notification-list{display:flex;flex-direction:column;gap:12px;margin-top:18px;}
.mbh-notification{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:16px!important;
  border:1px solid var(--mbh-border-soft)!important;
  border-radius:19px!important;
  background:#fff!important;
  box-shadow:0 8px 22px rgba(18,63,105,.06)!important;
}
.mbh-notification-unread{border-color:#9dcef6!important;background:linear-gradient(135deg,#eff8ff,#fff)!important;box-shadow:0 10px 25px rgba(8,123,229,.10)!important;}
.mbh-notification-head strong{color:var(--mbh-brand-ink)!important;font-size:15px;}
.mbh-notification-content p{margin:7px 0!important;color:#50677d!important;line-height:1.45;}
.mbh-notification-meta{color:#8392a2!important;}
.mbh-notification-actions{display:flex;gap:7px;flex-wrap:wrap;justify-content:flex-end;}

/* Estados vazios e feedback */
.mbh-empty-state{
  min-height:150px;
  align-items:center!important;justify-content:center!important;text-align:left;
  padding:24px!important;
  border-style:dashed!important;
  background:linear-gradient(145deg,#f5faff,#fff)!important;
}
.mbh-empty-state-icon{width:54px;height:54px;display:inline-flex;align-items:center;justify-content:center;flex:0 0 54px;border-radius:18px;background:#e5f3ff;font-size:25px;}
.mbh-empty-state strong{font-size:17px!important;color:var(--mbh-brand-ink)!important;margin:0 0 4px!important;}
.mbh-empty-state span:not(.mbh-empty-state-icon){display:block;color:#64788c;line-height:1.45;}

/* Paginação */
.mbh-main-screen .mbh-pagination{padding-top:10px;border-top:1px solid #edf3f8;}
.mbh-main-screen .mbh-pagination a,
.mbh-main-screen .mbh-pagination span{border-radius:12px!important;border-color:#d6e5f2!important;color:#31556f;}

/* Mobile / WebView */
@media(max-width:700px){
  .mbh-main-screen{padding:18px 14px!important;border-radius:22px!important;box-shadow:0 9px 25px rgba(18,63,105,.07)!important;}
  .mbh-main-screen>.mbh-section-title{font-size:28px!important;}
  .mbh-main-screen>.mbh-section-subtitle{font-size:14px;}
  .mbh-main-screen .mbh-tabs{overflow-x:auto;flex-wrap:nowrap;justify-content:flex-start;padding:5px;-webkit-overflow-scrolling:touch;scrollbar-width:none;}
  .mbh-main-screen .mbh-tabs::-webkit-scrollbar{display:none;}
  .mbh-main-screen .mbh-tab,.mbh-main-screen .mbh-tabs>a{flex:0 0 auto;min-height:40px;padding:8px 12px!important;font-size:13px!important;}
  .mbh-main-screen .mbh-service-card,.mbh-main-screen .mbh-op-card{border-radius:19px!important;padding:15px!important;}
  .mbh-main-screen .mbh-card-title-wrap strong,.mbh-main-screen .mbh-op-card-title{font-size:16px!important;}
  .mbh-main-screen .mbh-card-badges{justify-content:flex-start;margin-top:8px;}
  .mbh-main-screen .mbh-op-actions{grid-template-columns:1fr 1fr!important;}
  .mbh-main-screen .mbh-op-actions .mbh-btn{font-size:14px!important;padding:10px 8px!important;white-space:normal!important;}
  .mbh-notifications-screen .mbh-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
  .mbh-notifications-screen .mbh-box-stat{min-height:76px;padding:11px!important;}
  .mbh-notifications-screen .mbh-box-stat strong{font-size:10px!important;}
  .mbh-notifications-screen .mbh-box-stat span{font-size:23px!important;}
  .mbh-notification{align-items:flex-start;flex-direction:column;padding:14px!important;}
  .mbh-notification-actions{width:100%;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));}
  .mbh-notification-actions .mbh-btn{width:100%;padding:7px 5px!important;white-space:normal!important;text-align:center;}
  .mbh-empty-state{min-height:130px;justify-content:flex-start!important;padding:18px!important;}
}
@media(max-width:390px){
  .mbh-main-screen{padding:16px 11px!important;}
  .mbh-main-screen .mbh-op-actions{grid-template-columns:1fr!important;}
  .mbh-notification-actions{grid-template-columns:1fr 1fr;}
}

/* ==========================================================
   MaridoBH 4.8.1 — Fluxo Operacional Premium
   Melhoria exclusivamente visual nas telas de trabalho,
   acompanhamento, detalhes, chat, orçamento e avaliação.
   ========================================================== */
.mbh-operational-screen{
  --mbh-op-blue:#087be5;
  --mbh-op-deep:#073f80;
  --mbh-op-ink:#0b2d4e;
  --mbh-op-muted:#64798e;
  --mbh-op-line:#dbe7f2;
}
.mbh-professional-work-screen .mbh-work-summary{
  gap:12px!important;
  margin:18px 0!important;
}
.mbh-professional-work-screen .mbh-work-summary-card{
  position:relative;
  min-height:104px;
  justify-content:center;
  padding:17px!important;
  border:1px solid var(--mbh-op-line)!important;
  border-radius:20px!important;
  background:linear-gradient(145deg,#fff,#f7fbff)!important;
  box-shadow:0 10px 24px rgba(18,63,105,.07)!important;
  overflow:hidden;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.mbh-professional-work-screen .mbh-work-summary-card:after{
  content:"";position:absolute;right:-26px;bottom:-30px;width:82px;height:82px;border-radius:50%;background:rgba(8,123,229,.07);
}
.mbh-professional-work-screen .mbh-work-summary-card:hover{transform:translateY(-2px);border-color:#b7daf7!important;box-shadow:0 16px 30px rgba(18,63,105,.11)!important;}
.mbh-professional-work-screen .mbh-work-summary-card strong{font-size:31px!important;color:var(--mbh-op-deep)!important;letter-spacing:-.04em;}
.mbh-professional-work-screen .mbh-work-summary-card span{position:relative;z-index:1;color:#61768b!important;line-height:1.25;}
.mbh-professional-work-screen .mbh-work-summary-card.is-active{border-color:#85c7f8!important;background:linear-gradient(145deg,#eef8ff,#fff)!important;box-shadow:0 12px 28px rgba(8,123,229,.13)!important;}
.mbh-professional-work-screen .mbh-work-summary-action{background:linear-gradient(135deg,#087be5,#0756be)!important;border-color:transparent!important;}
.mbh-professional-work-screen .mbh-work-summary-action strong,.mbh-professional-work-screen .mbh-work-summary-action span{color:#fff!important;}

/* Cartão operacional: resumo, conteúdo e próxima ação */
.mbh-operational-screen .mbh-service-card{border-radius:24px!important;}
.mbh-operational-screen .mbh-card-toggle{
  width:100%;display:flex;align-items:flex-start;justify-content:space-between;gap:16px;
  padding:18px 19px!important;background:linear-gradient(180deg,#fff,#fbfdff)!important;border:0!important;text-align:left;
}
.mbh-operational-screen .mbh-card-title-wrap{display:flex;flex-direction:column;gap:5px;min-width:0;}
.mbh-operational-screen .mbh-card-title-wrap>strong{font-size:18px!important;line-height:1.25;color:var(--mbh-op-ink)!important;}
.mbh-operational-screen .mbh-card-subtitle{font-size:13px!important;color:var(--mbh-op-muted)!important;}
.mbh-operational-screen .mbh-service-card-body{padding:18px 19px 20px!important;background:#fff;}
.mbh-operational-screen .mbh-service-description{padding:14px 15px;border:1px solid #e3edf6;border-radius:16px;background:#f8fbfe;color:#284c6b;line-height:1.55;}
.mbh-operational-screen .mbh-inner-box{
  margin:14px 0!important;padding:16px!important;border:1px solid #dce8f3!important;border-radius:18px!important;background:linear-gradient(145deg,#f8fbfe,#fff)!important;box-shadow:none!important;
}
.mbh-operational-screen .mbh-inner-box h3{margin:0 0 10px!important;color:var(--mbh-op-ink)!important;font-size:16px!important;}
.mbh-operational-screen .mbh-card-badges{align-items:center!important;}
.mbh-operational-screen .mbh-toggle-label{color:#557087;font-size:12px;font-weight:850;}
.mbh-operational-screen .mbh-toggle-icon{display:grid;place-items:center;width:28px;height:28px;border-radius:9px;background:#edf6fe;color:#0869bd;font-weight:900;}

/* Status e blocos dinâmicos */
.mbh-operational-screen .mbh-status-sync,
.mbh-operational-screen .mbh-realtime-order,
.mbh-operational-screen .mbh-profissional-realtime-location{
  border-radius:18px;
}
.mbh-operational-screen .mbh-status-servico-form,
.mbh-operational-screen .mbh-cliente-realtime-area form,
.mbh-operational-screen .mbh-profissional-realtime-area form{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:12px;
}
.mbh-operational-screen .mbh-status-servico-form .mbh-btn,
.mbh-operational-screen .mbh-cliente-realtime-area form .mbh-btn,
.mbh-operational-screen .mbh-profissional-realtime-area form .mbh-btn{width:100%;justify-content:center;min-height:48px;}
.mbh-operational-screen .mbh-chat-modal-entry{margin:14px 0!important;}
.mbh-operational-screen .mbh-chat-open-btn{min-height:50px!important;border-radius:15px!important;}

/* Orçamento e valores: hierarquia mais clara sem alterar cálculos */
.mbh-operational-screen [class*="orcamento"],
.mbh-operational-screen [class*="budget"]{border-radius:18px;}
.mbh-operational-screen .mbh-orcamento-resumo,
.mbh-operational-screen .mbh-budget-summary{
  padding:16px!important;border:1px solid #dce8f3!important;background:linear-gradient(145deg,#f7fbff,#fff)!important;box-shadow:0 8px 22px rgba(18,63,105,.06)!important;
}
.mbh-operational-screen .mbh-orcamento-resumo strong,
.mbh-operational-screen .mbh-budget-summary strong{color:var(--mbh-op-ink);}

/* Tela de avaliação */
.mbh-rating-screen{max-width:820px!important;}
.mbh-rating-screen .mbh-attendance-summary{
  position:relative;padding:20px!important;border:1px solid #cfe2f4!important;border-radius:22px!important;background:linear-gradient(145deg,#f2f9ff,#fff)!important;box-shadow:0 12px 28px rgba(18,63,105,.08)!important;
}
.mbh-rating-screen .mbh-attendance-summary:before{content:"✓";position:absolute;right:18px;top:18px;display:grid;place-items:center;width:38px;height:38px;border-radius:13px;background:#e9f8ef;color:#16824a;font-weight:950;}
.mbh-rating-screen .mbh-rating-form{
  padding:20px;border:1px solid var(--mbh-op-line);border-radius:22px;background:#fff;box-shadow:0 12px 30px rgba(18,63,105,.07);
}
.mbh-rating-screen .mbh-rating-form label{display:block;margin:0 0 7px;color:#294b68;font-weight:900;}
.mbh-rating-screen .mbh-rating-form select,.mbh-rating-screen .mbh-rating-form textarea{width:100%;margin-bottom:16px;}
.mbh-rating-screen .mbh-rating-form .mbh-btn{width:100%;justify-content:center;margin-top:6px;}
.mbh-rating-screen .mbh-rating-form .mbh-btn-secondary{margin-top:10px;}

/* Linha do tempo: reforça etapa atual e etapas concluídas */
.mbh-operational-screen [class*="timeline"]{position:relative;}
.mbh-operational-screen [class*="timeline"] li,
.mbh-operational-screen [class*="timeline"] .mbh-step,
.mbh-operational-screen [class*="timeline"] .mbh-timeline-item{
  border-radius:14px;
}
.mbh-operational-screen [class*="timeline"] .is-active,
.mbh-operational-screen [class*="timeline"] .current{
  border-color:#78bef4!important;background:#eef8ff!important;box-shadow:0 6px 18px rgba(8,123,229,.10)!important;
}

@media(max-width:700px){
  .mbh-operational-screen .mbh-card-toggle{padding:15px!important;gap:10px;}
  .mbh-operational-screen .mbh-card-badges{max-width:44%;}
  .mbh-operational-screen .mbh-service-card-body{padding:15px!important;}
  .mbh-operational-screen .mbh-status-servico-form,
  .mbh-operational-screen .mbh-cliente-realtime-area form,
  .mbh-operational-screen .mbh-profissional-realtime-area form{grid-template-columns:1fr;}
  .mbh-rating-screen .mbh-rating-form{padding:16px;}
}

/* ==========================================================
   MaridoBH 4.8.2 — Perfil e Plano Premium
   Padronização visual das telas do profissional, sem alterar regras.
   ========================================================== */
.mbh-professional-profile-screen,
.mbh-professional-plan-screen{
  --mbh-soft-blue:#eff8ff;
  --mbh-soft-line:#d8e7f3;
  --mbh-profile-ink:#0b3156;
  --mbh-profile-muted:#687d91;
  position:relative;
  overflow:hidden;
  background:linear-gradient(145deg,#fff 0%,#fbfdff 68%,#f1f9ff 100%)!important;
}
.mbh-professional-profile-screen:before,
.mbh-professional-plan-screen:before{
  content:"";position:absolute;right:-95px;top:-110px;width:250px;height:250px;border-radius:50%;
  background:radial-gradient(circle,rgba(18,152,245,.12),rgba(18,152,245,0) 70%);pointer-events:none;
}
.mbh-screen-kicker{
  display:inline-flex;align-items:center;min-height:38px;margin:0 0 20px;padding:7px 17px;
  border:1px solid #b8d9f2;border-radius:999px;background:#f2f9ff;color:#1267a2;
  font-size:13px;font-weight:950;letter-spacing:.055em;
}
.mbh-professional-profile-screen>.mbh-section-title,
.mbh-professional-plan-screen>.mbh-section-title{position:relative;z-index:1;margin-bottom:6px!important;}
.mbh-professional-profile-screen>.mbh-section-subtitle,
.mbh-professional-plan-screen>.mbh-section-subtitle{position:relative;z-index:1;max-width:720px;margin-bottom:22px!important;}

/* Perfil — resumos superiores */
.mbh-professional-profile-screen .mbh-profile-summary-grid{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin:18px 0 22px;
}
.mbh-professional-profile-screen .mbh-profile-summary-card{
  position:relative;min-height:100px;display:flex;flex-direction:column;justify-content:center;gap:7px;
  padding:16px;border:1px solid var(--mbh-soft-line);border-radius:20px;
  background:linear-gradient(145deg,#fff,#f6fbff);box-shadow:0 10px 24px rgba(18,63,105,.065);overflow:hidden;
}
.mbh-professional-profile-screen .mbh-profile-summary-card:after{
  content:"";position:absolute;right:-24px;bottom:-30px;width:76px;height:76px;border-radius:50%;background:rgba(8,123,229,.07);
}
.mbh-professional-profile-screen .mbh-profile-summary-card span{position:relative;z-index:1;color:#667b8f;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.045em;}
.mbh-professional-profile-screen .mbh-profile-summary-card strong{position:relative;z-index:1;color:var(--mbh-profile-ink);font-size:17px;line-height:1.22;}

/* Perfil — formulário em blocos leves */
.mbh-professional-profile-screen>.mbh-form{
  display:block;margin:0 0 20px;padding:22px;border:1px solid var(--mbh-soft-line);border-radius:24px;
  background:#fff;box-shadow:0 12px 30px rgba(18,63,105,.07);
}
.mbh-professional-profile-screen .mbh-form>label,
.mbh-professional-profile-screen .mbh-form .mbh-grid-2 label{color:#294d6b;font-weight:900;}
.mbh-professional-profile-screen .mbh-form input[type="text"],
.mbh-professional-profile-screen .mbh-form input[type="email"],
.mbh-professional-profile-screen .mbh-form input[type="date"],
.mbh-professional-profile-screen .mbh-form input[type="number"],
.mbh-professional-profile-screen .mbh-form textarea,
.mbh-professional-profile-screen .mbh-form select{
  border:1px solid #cfdfea!important;border-radius:15px!important;background:#fbfdff!important;min-height:50px;
  box-shadow:inset 0 1px 2px rgba(18,63,105,.025)!important;
}
.mbh-professional-profile-screen .mbh-form input:focus,
.mbh-professional-profile-screen .mbh-form textarea:focus,
.mbh-professional-profile-screen .mbh-form select:focus{border-color:#73bdf0!important;box-shadow:0 0 0 4px rgba(8,123,229,.10)!important;background:#fff!important;}
.mbh-professional-profile-screen .mbh-form small{display:block;color:#73869a;line-height:1.45;margin-top:5px;}
.mbh-professional-profile-screen .mbh-profile-location-card,
.mbh-professional-profile-screen .mbh-profile-categories-card{
  margin:19px 0!important;padding:19px!important;border:1px solid #d7e6f2!important;border-radius:20px!important;
  background:linear-gradient(145deg,#f4faff,#fff)!important;box-shadow:none!important;
}
.mbh-professional-profile-screen .mbh-profile-location-card>strong,
.mbh-professional-profile-screen .mbh-profile-categories-card>label:first-child{display:block;margin-bottom:6px;color:var(--mbh-profile-ink);font-size:17px;font-weight:950;}
.mbh-professional-profile-screen .mbh-check-grid{gap:9px!important;}
.mbh-professional-profile-screen .mbh-check{
  min-height:42px;display:flex!important;align-items:center;gap:8px;padding:9px 11px!important;
  border:1px solid #dce8f2;border-radius:13px;background:#fff;color:#365b78;font-weight:750!important;
}
.mbh-professional-profile-screen .mbh-location-mode{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin:13px 0;}
.mbh-professional-profile-screen>.mbh-form>button[type="submit"]{width:100%;min-height:52px;justify-content:center;border-radius:15px!important;margin-top:17px;}

/* Perfil — identidade e assinatura */
.mbh-professional-profile-screen .mbh-identidade-card,
.mbh-professional-profile-screen .mbh-plano-resumo-card{
  margin-top:18px!important;padding:21px!important;border:1px solid var(--mbh-soft-line)!important;border-radius:24px!important;
  background:#fff!important;box-shadow:0 12px 30px rgba(18,63,105,.07)!important;
}
.mbh-professional-profile-screen .mbh-profile-card-head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;margin-bottom:16px;}
.mbh-professional-profile-screen .mbh-profile-card-head h3{margin:3px 0 0!important;color:var(--mbh-profile-ink)!important;font-size:20px!important;}
.mbh-professional-profile-screen .mbh-profile-card-kicker{color:#0871c8;font-size:11px;font-weight:950;text-transform:uppercase;letter-spacing:.08em;}
.mbh-professional-profile-screen .mbh-profile-progress-head{display:flex;justify-content:space-between;gap:12px;color:#365772;}
.mbh-professional-profile-screen .mbh-profile-progress-bar{height:10px;margin:11px 0 14px;border-radius:999px;background:#e8f1f8;overflow:hidden;}
.mbh-professional-profile-screen .mbh-profile-progress-bar>div{height:100%;border-radius:inherit;background:linear-gradient(90deg,#149cf2,#0865d3);}
.mbh-professional-profile-screen .mbh-profile-checklist{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;margin-bottom:15px;}
.mbh-professional-profile-screen .mbh-profile-checklist>div{display:flex;align-items:center;gap:9px;padding:11px;border:1px solid #e0eaf2;border-radius:13px;background:#fbfdff;}
.mbh-professional-profile-screen .mbh-profile-checklist .is-ok span{color:#17864d;}
.mbh-professional-profile-screen .mbh-plan-summary-line{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:13px 0;}
.mbh-professional-profile-screen .mbh-plan-summary-line>div{padding:14px;border:1px solid #dce8f2;border-radius:15px;background:#f8fbfe;}
.mbh-professional-profile-screen .mbh-plan-summary-line span{display:block;color:#73869a;font-size:12px;font-weight:850;text-transform:uppercase;}
.mbh-professional-profile-screen .mbh-plan-summary-line strong{display:block;margin-top:4px;color:var(--mbh-profile-ink);font-size:20px;}

/* Meu Plano — resumos e plano atual */
.mbh-professional-plan-screen>.mbh-grid-3{gap:12px!important;margin:18px 0!important;}
.mbh-professional-plan-screen>.mbh-grid-3>.mbh-box{
  min-height:102px;padding:17px!important;border:1px solid var(--mbh-soft-line)!important;border-radius:20px!important;
  background:linear-gradient(145deg,#fff,#f5faff)!important;box-shadow:0 10px 24px rgba(18,63,105,.065)!important;
}
.mbh-professional-plan-screen>.mbh-grid-3>.mbh-box h3{margin:0 0 9px!important;color:#64798d!important;font-size:12px!important;text-transform:uppercase;letter-spacing:.045em;}
.mbh-professional-plan-screen>.mbh-grid-3>.mbh-box p{margin:0!important;color:var(--mbh-profile-ink);}
.mbh-professional-plan-screen>.mbh-grid-3>.mbh-box p strong{font-size:28px;letter-spacing:-.04em;}
.mbh-professional-plan-screen>.mbh-box,
.mbh-professional-plan-screen>.mbh-verificacao-card{
  margin:16px 0!important;padding:20px!important;border:1px solid var(--mbh-soft-line)!important;border-radius:22px!important;
  background:#fff!important;box-shadow:0 11px 28px rgba(18,63,105,.07)!important;
}
.mbh-professional-plan-screen>.mbh-box h3{color:var(--mbh-profile-ink)!important;}
.mbh-professional-plan-screen>.mbh-box form .mbh-btn{margin-top:8px;}
.mbh-professional-plan-screen .mbh-mp-waiting{padding:15px;border:1px solid #f0d69a;border-radius:16px;background:#fffaf0;}

/* Meu Plano — cards de contratação */
.mbh-professional-plan-screen>.mbh-grid-3:last-of-type{align-items:stretch;}
.mbh-professional-plan-screen .mbh-plan-card{
  height:100%;display:flex;flex-direction:column;padding:20px!important;border:1px solid #d8e6f1!important;border-radius:23px!important;
  background:linear-gradient(155deg,#fff,#f6fbff)!important;box-shadow:0 12px 28px rgba(18,63,105,.075)!important;overflow:hidden;
}
.mbh-professional-plan-screen .mbh-plan-card.mbh-plan-current{border-color:#65b8ef!important;background:linear-gradient(145deg,#eef8ff,#fff)!important;box-shadow:0 14px 30px rgba(8,123,229,.13)!important;}
.mbh-professional-plan-screen .mbh-plan-card.mbh-plan-upgrade{border-color:#a7d7f7!important;}
.mbh-professional-plan-screen .mbh-plan-card-head{min-height:55px;}
.mbh-professional-plan-screen .mbh-plan-card-head h3{margin:0!important;color:var(--mbh-profile-ink)!important;font-size:21px!important;}
.mbh-professional-plan-screen .mbh-plan-price-row{display:flex;align-items:center;justify-content:space-between;gap:10px;margin:14px 0 10px;}
.mbh-professional-plan-screen .mbh-price{margin:0!important;color:#0759b1!important;font-size:31px!important;font-weight:950!important;letter-spacing:-.045em;}
.mbh-professional-plan-screen .mbh-plan-short-desc{color:#657b8f;line-height:1.5;min-height:44px;}
.mbh-professional-plan-screen .mbh-plan-card>.mbh-btn{width:100%;justify-content:center;min-height:50px;margin-top:auto;border-radius:15px!important;}
.mbh-professional-plan-screen .mbh-plan-benefits{margin-top:14px;padding-top:13px;border-top:1px solid #e3edf5;}
.mbh-professional-plan-screen .mbh-plan-benefits summary{cursor:pointer;color:#28618f;font-weight:900;}
.mbh-professional-plan-screen .mbh-verificacao-card{display:flex;align-items:flex-start;gap:16px;background:linear-gradient(145deg,#f5faff,#fff)!important;}
.mbh-professional-plan-screen .mbh-verificacao-icon{display:grid;place-items:center;flex:0 0 54px;width:54px;height:54px;border-radius:17px;background:#e7f4ff;font-size:24px;}

@media(max-width:900px){
  .mbh-professional-profile-screen .mbh-profile-summary-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:700px){
  .mbh-screen-kicker{margin-bottom:18px;min-height:36px;padding:6px 15px;font-size:12px;}
  .mbh-professional-profile-screen>.mbh-form{padding:16px;border-radius:21px;}
  .mbh-professional-profile-screen .mbh-profile-summary-card{min-height:92px;padding:14px;}
  .mbh-professional-profile-screen .mbh-profile-summary-card strong{font-size:15px;}
  .mbh-professional-profile-screen .mbh-location-mode,
  .mbh-professional-profile-screen .mbh-profile-checklist,
  .mbh-professional-profile-screen .mbh-plan-summary-line{grid-template-columns:1fr;}
  .mbh-professional-profile-screen .mbh-identidade-card,
  .mbh-professional-profile-screen .mbh-plano-resumo-card{padding:17px!important;border-radius:21px!important;}
  .mbh-professional-plan-screen>.mbh-grid-3{grid-template-columns:1fr!important;}
  .mbh-professional-plan-screen>.mbh-grid-3>.mbh-box{min-height:auto;}
  .mbh-professional-plan-screen>.mbh-box{padding:17px!important;border-radius:20px!important;}
  .mbh-professional-plan-screen .mbh-verificacao-card{flex-direction:column;}
}
@media(max-width:390px){
  .mbh-professional-profile-screen .mbh-profile-summary-grid{gap:9px;}
  .mbh-professional-profile-screen .mbh-profile-summary-card{padding:12px;}
  .mbh-professional-profile-screen .mbh-profile-summary-card span{font-size:10px;}
  .mbh-professional-profile-screen .mbh-profile-summary-card strong{font-size:14px;}
}

/* MaridoBH 4.8.3 — Mercado do profissional Premium */
.mbh-professional-market-screen{overflow:hidden}
.mbh-market-summary-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:26px 0}
.mbh-market-summary-card{position:relative;overflow:hidden;min-height:142px;padding:24px;border:1px solid #dce7f1;border-radius:24px;background:linear-gradient(135deg,#fff 0%,#f8fbfe 100%);box-shadow:0 12px 30px rgba(24,64,105,.07);display:flex;align-items:center;gap:18px}
.mbh-market-summary-card:after{content:"";position:absolute;width:96px;height:96px;right:-30px;bottom:-38px;border-radius:50%;background:rgba(24,143,232,.08)}
.mbh-market-summary-card.mbh-market-summary-primary{border-color:#8bcdf3;background:linear-gradient(135deg,#edf8ff 0%,#fbfdff 72%)}
.mbh-market-summary-card.is-active{border-color:#bce8d2;background:linear-gradient(135deg,#effbf5,#fcfffd)}
.mbh-market-summary-card.is-inactive{border-color:#f0d7a6;background:linear-gradient(135deg,#fff8e8,#fffdf8)}
.mbh-market-summary-icon{position:relative;z-index:1;display:grid;place-items:center;flex:0 0 52px;width:52px;height:52px;border-radius:17px;background:#e9f5ff;color:#0877c9;font-size:24px;font-weight:900}
.mbh-market-summary-card.is-active .mbh-market-summary-icon{background:#dcf7e8;color:#158452}
.mbh-market-summary-card.is-inactive .mbh-market-summary-icon{background:#fff0cf;color:#986a06}
.mbh-market-summary-card>div{position:relative;z-index:1;display:grid;gap:2px;min-width:0}
.mbh-market-summary-card small{color:#63778a;font-size:12px;font-weight:900;letter-spacing:.035em;text-transform:uppercase}
.mbh-market-summary-card strong{color:#083f68;font-size:34px;line-height:1;font-weight:950;letter-spacing:-.03em}
.mbh-market-summary-card strong.mbh-market-plan-status{font-size:24px;line-height:1.08}
.mbh-market-summary-card>div>span{color:#718295;font-size:12px;line-height:1.35}
.mbh-market-tools-card,.mbh-market-tip-card{display:flex;align-items:center;justify-content:space-between;gap:18px;margin:0 0 20px;padding:20px 22px;border:1px solid #dbe7f1;border-radius:22px;background:#fff;box-shadow:0 10px 28px rgba(24,64,105,.06)}
.mbh-market-tools-copy,.mbh-market-tip-card>div{display:flex;align-items:center;gap:15px;min-width:0}
.mbh-market-tools-copy>div,.mbh-market-tip-card>div>div{min-width:0}
.mbh-market-tools-icon,.mbh-market-tip-card>span{display:grid;place-items:center;flex:0 0 45px;width:45px;height:45px;border-radius:15px;background:#edf7ff;font-size:21px}
.mbh-market-tools-copy strong,.mbh-market-tip-card strong{display:block;color:#173b58;font-size:15px;font-weight:900}
.mbh-market-tools-copy p,.mbh-market-tip-card p{margin:4px 0 0;color:#718195;font-size:12.5px;line-height:1.5}
.mbh-market-notification-action{flex:0 0 auto}
.mbh-market-notification-action .mbh-btn,.mbh-market-notification-action button{margin:0!important}
.mbh-market-plan-callout{position:relative;overflow:hidden;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:20px;margin:0 0 24px;padding:25px;border:1px solid #9ecff2;border-radius:25px;background:linear-gradient(120deg,#edf8ff 0%,#f8fcff 62%,#e5f4ff 100%);box-shadow:0 13px 31px rgba(24,114,178,.10)}
.mbh-market-plan-callout:after{content:"";position:absolute;right:-45px;top:-50px;width:145px;height:145px;border-radius:50%;background:rgba(22,144,232,.08)}
.mbh-market-plan-callout-icon{position:relative;z-index:1;display:grid;place-items:center;width:60px;height:60px;border-radius:20px;background:linear-gradient(135deg,#0c8ee6,#0963c7);box-shadow:0 10px 22px rgba(9,100,199,.22);font-size:28px}
.mbh-market-plan-callout-copy{position:relative;z-index:1}
.mbh-market-plan-callout-copy>span,.mbh-market-eyebrow{color:#0b78bf;font-size:11px;font-weight:950;letter-spacing:.11em}
.mbh-market-plan-callout h3{margin:4px 0 5px;color:#123e60;font-size:19px;line-height:1.2}
.mbh-market-plan-callout p{margin:0;color:#667d90;font-size:13px;line-height:1.5}
.mbh-market-plan-callout>.mbh-btn{position:relative;z-index:1;white-space:nowrap;margin:0!important}
.mbh-market-demand-card{margin:0 0 20px;padding:26px;border:1px solid #dbe6ef;border-radius:26px;background:#fff;box-shadow:0 13px 34px rgba(24,64,105,.07)}
.mbh-market-section-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;margin-bottom:22px}
.mbh-market-section-heading h3{margin:4px 0 5px;color:#153d5b;font-size:21px;line-height:1.25}
.mbh-market-section-heading p{margin:0;color:#738396;font-size:12.5px;line-height:1.5}
.mbh-market-total-pill{flex:0 0 auto;padding:8px 13px;border-radius:999px;background:#eaf6ff;color:#0873bd;font-size:12px;font-weight:900;white-space:nowrap}
.mbh-market-demand-list{display:grid;gap:13px}
.mbh-market-demand-item{display:grid;grid-template-columns:38px minmax(0,1fr);align-items:center;gap:13px;padding:15px 16px;border:1px solid #e3ebf2;border-radius:18px;background:linear-gradient(100deg,#fbfdff,#fff)}
.mbh-market-demand-rank{display:grid;place-items:center;width:38px;height:38px;border-radius:13px;background:#edf7ff;color:#0874be;font-size:13px;font-weight:950}
.mbh-market-demand-content{min-width:0}
.mbh-market-demand-line{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:9px}
.mbh-market-demand-line strong{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#24425b;font-size:14px}
.mbh-market-demand-line span{flex:0 0 auto;color:#718296;font-size:12px;font-weight:800}
.mbh-market-demand-track{height:8px;overflow:hidden;border-radius:999px;background:#eaf0f5}
.mbh-market-demand-track>span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#0a78d1,#1aa2ee);box-shadow:0 0 12px rgba(24,156,232,.22)}
.mbh-market-empty-state{padding:34px 22px;text-align:center;border:1px dashed #bfd7e8;border-radius:20px;background:#f8fcff}
.mbh-market-empty-state>span{display:grid;place-items:center;width:56px;height:56px;margin:0 auto 13px;border-radius:18px;background:#e9f6ff;font-size:27px}
.mbh-market-empty-state h4{margin:0 0 7px;color:#224762;font-size:17px}
.mbh-market-empty-state p{max-width:520px;margin:0 auto;color:#718397;font-size:13px;line-height:1.55}
.mbh-market-tip-card{background:linear-gradient(100deg,#fff9e9,#fffdf8);border-color:#efdfb8}
.mbh-market-tip-card>span{background:#fff0c9}
.mbh-market-tip-card>a{flex:0 0 auto;color:#0874be;font-size:13px;font-weight:900;text-decoration:none}
@media(max-width:700px){
 .mbh-market-summary-grid{gap:12px;margin:22px 0}
 .mbh-market-summary-card{min-height:132px;padding:18px 15px;align-items:flex-start;flex-direction:column;gap:11px;border-radius:21px}
 .mbh-market-summary-icon{width:43px;height:43px;flex-basis:43px;border-radius:14px;font-size:20px}
 .mbh-market-summary-card small{font-size:10px}.mbh-market-summary-card strong{font-size:29px}.mbh-market-summary-card strong.mbh-market-plan-status{font-size:19px}
 .mbh-market-tools-card{align-items:flex-start;flex-direction:column;padding:18px;border-radius:20px}.mbh-market-notification-action{width:100%}.mbh-market-notification-action .mbh-btn,.mbh-market-notification-action button{width:100%!important}
 .mbh-market-plan-callout{grid-template-columns:auto 1fr;padding:20px 18px;border-radius:22px}.mbh-market-plan-callout>.mbh-btn{grid-column:1/-1;width:100%!important}
 .mbh-market-plan-callout-icon{width:50px;height:50px;border-radius:17px;font-size:23px}
 .mbh-market-demand-card{padding:21px 16px;border-radius:22px}.mbh-market-section-heading{display:block}.mbh-market-total-pill{display:inline-flex;margin-top:12px}
 .mbh-market-demand-item{padding:13px 12px;grid-template-columns:34px minmax(0,1fr);gap:10px}.mbh-market-demand-rank{width:34px;height:34px;border-radius:11px}
 .mbh-market-demand-line{align-items:flex-start}.mbh-market-demand-line strong{white-space:normal;line-height:1.25}
 .mbh-market-tip-card{align-items:flex-start;display:grid;grid-template-columns:auto 1fr}.mbh-market-tip-card>a{grid-column:2}
}
@media(max-width:390px){.mbh-market-summary-grid{grid-template-columns:1fr}.mbh-market-summary-card{min-height:0;flex-direction:row;align-items:center}.mbh-market-summary-card strong{font-size:27px}}


/* MaridoBH 4.8.4 — Solicitar serviço do cliente Premium */
.mbh-client-request-screen{align-items:start;gap:24px}
.mbh-client-request-sidebar{position:sticky;top:18px;border:1px solid #dbe7f1!important;border-radius:24px!important;background:linear-gradient(145deg,#f5faff,#fff)!important;box-shadow:0 12px 30px rgba(24,64,105,.06)!important}
.mbh-client-request-screen>.mbh-client-request-card{overflow:visible;padding:0!important;border:1px solid #dce7f1!important;border-radius:28px!important;background:#f8fbfe!important;box-shadow:0 16px 42px rgba(24,64,105,.09)!important}
.mbh-client-request-hero{position:relative;overflow:hidden;padding:30px 30px 26px;border-radius:28px 28px 0 0;background:linear-gradient(135deg,#f8fcff 0%,#eef8ff 70%,#e3f3ff 100%);border-bottom:1px solid #dceaf4}
.mbh-client-request-hero:after{content:"";position:absolute;right:-48px;top:-58px;width:180px;height:180px;border-radius:50%;background:rgba(13,139,226,.08)}
.mbh-client-request-hero-copy{position:relative;z-index:1;display:flex;align-items:center;gap:18px;margin-top:18px}
.mbh-client-request-icon{display:grid;place-items:center;flex:0 0 62px;width:62px;height:62px;border-radius:20px;background:linear-gradient(135deg,#118fe8,#0865cb);box-shadow:0 12px 25px rgba(10,109,205,.23);font-size:28px}
.mbh-client-request-hero h1{margin:0;color:#0c3858;font-size:34px;line-height:1.08;letter-spacing:-.035em;font-weight:950}
.mbh-client-request-hero p{max-width:620px;margin:8px 0 0;color:#6d7f91;font-size:14px;line-height:1.55}
.mbh-client-request-steps{position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:23px}
.mbh-client-request-steps>div{display:flex;align-items:center;gap:9px;padding:10px 12px;border:1px solid rgba(147,199,235,.65);border-radius:15px;background:rgba(255,255,255,.76)}
.mbh-client-request-steps strong{display:grid;place-items:center;width:27px;height:27px;border-radius:9px;background:#e6f4ff;color:#0875bf;font-size:12px;font-weight:950}
.mbh-client-request-steps span{color:#3e6079;font-size:12px;font-weight:850}
.mbh-client-request-card>.mbh-alert,.mbh-client-request-card>.mbh-actions{margin-left:28px;margin-right:28px}
.mbh-client-request-card>#mbh-solicitar-servico-form{display:grid;gap:16px;padding:26px 28px 30px}
#mbh-solicitar-servico-form>label,#mbh-solicitar-servico-form>.mbh-geo-box,#mbh-solicitar-servico-form>.mbh-multiespecialidades,#mbh-solicitar-servico-form>.mbh-chat-fotos-info{margin:0!important;padding:20px!important;border:1px solid #dfe9f1!important;border-radius:21px!important;background:#fff!important;box-shadow:0 8px 24px rgba(30,72,110,.045)}
#mbh-solicitar-servico-form>label{display:block;color:#23445d;font-size:14px;font-weight:900}
#mbh-solicitar-servico-form input[type=text],#mbh-solicitar-servico-form input[type=number],#mbh-solicitar-servico-form input[type=date],#mbh-solicitar-servico-form input[type=time],#mbh-solicitar-servico-form select,#mbh-solicitar-servico-form textarea{min-height:52px;margin-top:9px;border:1px solid #d7e4ee!important;border-radius:15px!important;background:#fbfdff!important;box-shadow:inset 0 1px 2px rgba(24,64,105,.025);font-size:14px!important;transition:border-color .18s ease,box-shadow .18s ease,background .18s ease}
#mbh-solicitar-servico-form textarea{min-height:135px;resize:vertical;padding:15px!important}
#mbh-solicitar-servico-form input:focus,#mbh-solicitar-servico-form select:focus,#mbh-solicitar-servico-form textarea:focus{outline:none;border-color:#65b9ed!important;background:#fff!important;box-shadow:0 0 0 4px rgba(24,151,231,.10)!important}
#mbh-solicitar-servico-form>.mbh-geo-box{position:relative;background:linear-gradient(145deg,#fafdff,#fff)!important}
#mbh-solicitar-servico-form>.mbh-geo-box>strong{display:block;color:#153f5e;font-size:18px;font-weight:950}
#mbh-solicitar-servico-form>.mbh-geo-box>.mbh-muted{margin:6px 0 16px;color:#718397;line-height:1.5}
#mbh-solicitar-servico-form .mbh-location-preview{border-radius:17px!important;background:#eff9ff!important}
#mbh-solicitar-servico-form .mbh-actions{display:flex;flex-wrap:wrap;gap:10px}
#mbh-solicitar-servico-form .mbh-actions .mbh-btn{min-height:46px;border-radius:14px!important}
#mbh-solicitar-servico-form .mbh-auto-republicar-card{border-color:#dce8f1!important;border-radius:17px!important;background:#f8fbfe!important}
#mbh-solicitar-servico-form .mbh-urgencia-trigger{min-height:58px;padding:11px 42px 11px 14px;border-radius:15px!important;background:#fbfdff}
#mbh-solicitar-servico-form .mbh-urgencia-options{border-radius:17px!important;box-shadow:0 18px 38px rgba(15,62,102,.16)!important}
#mbh-solicitar-servico-form>.mbh-chat-fotos-info{border-color:#cfe5f5!important;background:linear-gradient(135deg,#eef8ff,#fbfdff)!important}
#mbh-solicitar-servico-form .mbh-chat-fotos-info strong{color:#174766;font-size:15px}
#mbh-solicitar-servico-form .mbh-client-request-submit{display:flex!important;align-items:center;justify-content:space-between;width:100%!important;min-height:58px;margin:2px 0 0!important;padding:0 22px!important;border:0!important;border-radius:18px!important;background:linear-gradient(135deg,#1499eb,#0865cc)!important;box-shadow:0 13px 28px rgba(8,104,205,.24)!important;color:#fff!important;font-size:16px!important;font-weight:950!important}
#mbh-solicitar-servico-form .mbh-client-request-submit strong{display:grid;place-items:center;width:34px;height:34px;border-radius:11px;background:rgba(255,255,255,.17);font-size:19px}
#mbh-solicitar-servico-form .mbh-client-request-submit:hover{transform:translateY(-1px);box-shadow:0 16px 32px rgba(8,104,205,.28)!important}
@media(max-width:900px){.mbh-client-request-sidebar{display:none!important}.mbh-client-request-screen{display:block!important}.mbh-client-request-screen>.mbh-client-request-card{width:100%!important}}
@media(max-width:700px){
 .mbh-client-request-screen>.mbh-client-request-card{border-radius:23px!important}
 .mbh-client-request-hero{padding:22px 18px 20px;border-radius:23px 23px 0 0}
 .mbh-client-request-hero-copy{align-items:flex-start;gap:13px;margin-top:14px}
 .mbh-client-request-icon{width:50px;height:50px;flex-basis:50px;border-radius:16px;font-size:23px}
 .mbh-client-request-hero h1{font-size:27px}.mbh-client-request-hero p{font-size:12.5px}
 .mbh-client-request-steps{gap:7px;margin-top:18px}.mbh-client-request-steps>div{justify-content:center;padding:8px 6px}.mbh-client-request-steps strong{width:24px;height:24px}.mbh-client-request-steps span{font-size:10px}
 .mbh-client-request-card>#mbh-solicitar-servico-form{gap:13px;padding:17px 14px 22px}
 #mbh-solicitar-servico-form>label,#mbh-solicitar-servico-form>.mbh-geo-box,#mbh-solicitar-servico-form>.mbh-multiespecialidades,#mbh-solicitar-servico-form>.mbh-chat-fotos-info{padding:16px!important;border-radius:18px!important}
 #mbh-solicitar-servico-form input[type=text],#mbh-solicitar-servico-form input[type=number],#mbh-solicitar-servico-form input[type=date],#mbh-solicitar-servico-form input[type=time],#mbh-solicitar-servico-form select,#mbh-solicitar-servico-form textarea{min-height:49px;border-radius:13px!important}
 #mbh-solicitar-servico-form .mbh-actions{display:grid;grid-template-columns:1fr}.mbh-client-request-card>.mbh-alert,.mbh-client-request-card>.mbh-actions{margin-left:14px;margin-right:14px}
}
@media(max-width:390px){.mbh-client-request-steps span{display:none}.mbh-client-request-steps>div{padding:7px}.mbh-client-request-hero h1{font-size:25px}}


/* MaridoBH 4.8.5 — painel do cliente mais limpo */
.mbh-dashboard-columns.mbh-dashboard-columns-single{grid-template-columns:minmax(0,1fr);}

/* 5.3.3.4 — Data de nascimento com dia, mês e ano visíveis. */
.mbh-birthdate-selector {
    display: grid;
    grid-template-columns: minmax(76px, .7fr) minmax(132px, 1.35fr) minmax(92px, .85fr);
    gap: 10px;
    width: 100%;
}
.mbh-birthdate-selector select {
    width: 100%;
    min-width: 0;
}
@media (max-width: 520px) {
    .mbh-birthdate-selector {
        grid-template-columns: .72fr 1.35fr .88fr;
        gap: 7px;
    }
    .mbh-birthdate-selector select {
        padding-left: 10px !important;
        padding-right: 24px !important;
        font-size: 15px !important;
    }
}

/* 5.3.3.5 — Campos de cadastro e nascimento com acabamento mais atual. */
.mbh-form > label,
.mbh-form .mbh-grid-2 > label {
    display: grid;
    gap: 8px;
    color: #26374a;
    font-size: 14px;
    font-weight: 800;
}
.mbh-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.mbh-form select,
.mbh-form textarea {
    width: 100%;
    min-height: 54px;
    padding: 13px 15px;
    border: 1px solid #d5e0eb;
    border-radius: 15px;
    background: #fff;
    color: #172033;
    font: inherit;
    font-weight: 500;
    line-height: 1.3;
    box-shadow: 0 3px 10px rgba(15, 55, 90, .035);
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
    -webkit-appearance: none;
    appearance: none;
}
.mbh-form textarea {
    min-height: 112px;
    resize: vertical;
}
.mbh-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):hover,
.mbh-form select:hover,
.mbh-form textarea:hover {
    border-color: #b9cadb;
}
.mbh-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus,
.mbh-form select:focus,
.mbh-form textarea:focus {
    outline: none;
    border-color: #1687e8;
    background: #fbfdff;
    box-shadow: 0 0 0 4px rgba(22, 135, 232, .12);
}
.mbh-form input::placeholder,
.mbh-form textarea::placeholder {
    color: #8a98a8;
    opacity: 1;
}
.mbh-form .mbh-birthdate-selector select {
    min-height: 54px;
    padding: 13px 38px 13px 14px !important;
    border: 1px solid #d5e0eb !important;
    border-radius: 15px !important;
    background-color: #fff !important;
    background-image: linear-gradient(45deg, transparent 50%, #607286 50%), linear-gradient(135deg, #607286 50%, transparent 50%);
    background-position: calc(100% - 17px) 23px, calc(100% - 12px) 23px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    color: #172033;
    box-shadow: 0 3px 10px rgba(15, 55, 90, .035);
}
.mbh-form .mbh-birthdate-selector select:focus {
    border-color: #1687e8 !important;
    box-shadow: 0 0 0 4px rgba(22, 135, 232, .12) !important;
}

@media (max-width: 520px) {
    .mbh-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
    .mbh-form select,
    .mbh-form textarea,
    .mbh-form .mbh-birthdate-selector select {
        min-height: 52px;
        font-size: 16px !important;
    }
    .mbh-form .mbh-birthdate-selector {
        gap: 8px;
    }
}
