/* Gate de senha do site SETOR */
.setor-site-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050608;
  padding: 24px;
}
.setor-site-gate.hidden,
.setor-password-modal.hidden,
#main-site.hidden { display: none !important; }
.setor-site-gate__card {
  text-align: center;
  max-width: 420px;
  padding: 40px 28px;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: linear-gradient(145deg, #0e1118, #141820);
}
.setor-site-gate__card img { width: 64px; height: 64px; border-radius: 12px; margin-bottom: 16px; }
.setor-site-gate__card h1 { color: #c9a227; font-size: 1.4rem; margin-bottom: 8px; }
.setor-site-gate__card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 20px; }
.setor-site-gate__btn {
  background: linear-gradient(135deg, #c9a227, #8b6914);
  color: #111;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}
.setor-password-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.setor-password-modal__card {
  width: 100%;
  max-width: 380px;
  padding: 28px;
  border-radius: 14px;
  background: #0e1118;
  border: 1px solid rgba(201, 162, 39, 0.3);
  position: relative;
}
.setor-password-modal__card h3 { color: #fff; margin-bottom: 8px; }
.setor-password-modal__card p { color: #94a3b8; font-size: 0.9rem; margin-bottom: 16px; }
.setor-password-modal__card input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: #050608;
  color: #fff;
  box-sizing: border-box;
}
.setor-password-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.4rem;
  cursor: pointer;
}
.password-error { color: #f87171; font-size: 0.85rem; margin-top: 8px; }
.password-error.hidden { display: none; }
