/* Konetic — Modal de login/cadastro do visitante */
#sc-visitor-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9998;
  align-items: flex-end;
  justify-content: center;
}
#sc-visitor-overlay.sc-open { display: flex; }
#sc-visitor-modal {
  background: #fff;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 480px;
  padding: 24px 20px 32px;
  max-height: 90vh;
  overflow-y: auto;
}
.sc-modal-handle {
  width: 36px;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  margin: 0 auto 20px;
}
.sc-modal-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}
.sc-modal-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  border-bottom: 2px solid transparent;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.sc-modal-tab.active { color: #2BBBA4; border-bottom-color: #2BBBA4; }
.sc-modal-panel { display: none; }
.sc-modal-panel.active { display: block; }
.sc-field { margin-bottom: 14px; }
.sc-field label { display: block; font-size: 13px; color: #555; margin-bottom: 4px; }
.sc-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
}
.sc-field input:focus { outline: none; border-color: #2BBBA4; }
.sc-btn-primary {
  width: 100%;
  padding: 13px;
  background: #2BBBA4;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
}
.sc-btn-primary:hover { background: #1f9684; }
.sc-divider {
  text-align: center;
  color: #aaa;
  font-size: 13px;
  margin: 14px 0;
}
.sc-modal-error {
  background: #fff0f0;
  color: #c0392b;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 12px;
  display: none;
}
.sc-modal-success {
  background: #f0fff8;
  color: #1a8c76;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 12px;
  display: none;
}
.sc-link { color: #2BBBA4; text-decoration: none; font-size: 13px; cursor: pointer; }
.sc-terms-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #555;
  margin-bottom: 14px;
}
.sc-terms-check input { margin-top: 2px; flex-shrink: 0; }
.sc-header-btn {
  background: #2BBBA4;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}