
/* ==========================================================
   HEROHAZARD UOL V4 — Login + histórico + valores menores
   ========================================================== */

/* A linha FAÇA PARTE DA LIVE começa alinhada ao topo do card de donate. */
@media (min-width: 901px) {
  .hero-grid {
    align-items: start !important;
  }
  .hero-copy {
    padding-top: 0 !important;
    align-self: start !important;
  }
  .eyebrow {
    margin-top: 0 !important;
  }
}

/* Agora são 6 opções: 0,50 | 1 | 5 | 10 | 20 | 50 */
.amount-pills {
  grid-template-columns: repeat(6, minmax(0,1fr)) !important;
  gap: 6px !important;
}
.amount-pills button {
  min-width: 0;
  padding-left: 4px !important;
  padding-right: 4px !important;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .amount-pills {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Login no topo */
.hz-auth-actions {
  position: fixed;
  z-index: 150;
  top: 17px;
  right: calc(50% - 450px);
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: Arial, Helvetica, sans-serif;
}
.hz-auth-actions button {
  appearance: none;
  border: 1px solid #ffffff18;
  background: #10131dE8;
  color: #d9dce8;
  min-height: 31px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .065em;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: .18s ease;
}
.hz-auth-actions button:hover {
  border-color: #8e5cff80;
  color: #fff;
  transform: translateY(-1px);
}
.hz-auth-actions .primary-auth {
  color: #fff;
  border-color: #8b5cf666;
  background: linear-gradient(135deg,#5833d7,#9b43eb);
}
.hz-auth-actions .account-auth {
  color: #38e2d0;
}
@media (max-width: 1100px) {
  .hz-auth-actions {
    right: 150px;
  }
}
@media (max-width: 760px) {
  .hz-auth-actions {
    top: 64px;
    right: 12px;
  }
}

/* Modal de autenticação */
.hz-modal-backdrop,
.hz-account-page {
  position: fixed;
  inset: 0;
  z-index: 500;
  font-family: Arial, Helvetica, sans-serif;
}
.hz-modal-backdrop {
  display: grid;
  place-items: center;
  background: rgba(3,5,14,.78);
  backdrop-filter: blur(14px);
  padding: 18px;
}
.hz-modal {
  width: min(440px, 100%);
  color: #f7f7fb;
  background: linear-gradient(180deg,#151926,#0e111a);
  border: 1px solid #7c5cff50;
  box-shadow: 0 30px 90px #000a;
  border-radius: 24px;
  padding: 26px;
}
.hz-modal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hz-modal-head img,
.hz-account-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 11px;
  box-shadow: 0 0 18px #31d7d84d;
}
.hz-modal-head h2 {
  margin: 0 0 3px;
  font-size: 21px;
}
.hz-modal-head p {
  margin: 0;
  color: #9298aa;
  font-size: 12px;
}
.hz-modal .close-x,
.hz-account-page .close-x {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #8e94a7;
  font-size: 26px;
  cursor: pointer;
}
.hz-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 4px;
  border-radius: 14px;
  background: #090c14;
  border: 1px solid #ffffff0d;
  margin-bottom: 18px;
}
.hz-tabs button {
  border: 0;
  border-radius: 10px;
  padding: 9px;
  background: transparent;
  color: #777e92;
  font-weight: 800;
  cursor: pointer;
}
.hz-tabs button.active {
  color: #fff;
  background: linear-gradient(135deg,#5531c9,#8d3ee9);
}
.hz-auth-form {
  display: grid;
  gap: 11px;
}
.hz-auth-form label {
  display: grid;
  gap: 5px;
  color: #b7bbca;
  font-size: 11px;
  font-weight: 700;
}
.hz-auth-form input {
  width: 100%;
  padding: 12px 13px;
  border-radius: 11px;
  border: 1px solid #2b3040;
  outline: none;
  background: #090c14;
  color: #fff;
}
.hz-auth-form input:focus {
  border-color: #8558f7;
  box-shadow: 0 0 0 3px #8558f719;
}
.hz-auth-submit,
.hz-demo-button {
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 900;
  cursor: pointer;
}
.hz-auth-submit {
  color: #fff;
  background: linear-gradient(135deg,#6933ef,#ad49ea);
}
.hz-demo-button {
  margin-top: 10px;
  width: 100%;
  color: #33d9cf;
  background: #0c1420;
  border: 1px solid #2ad5c535;
}
.hz-auth-error {
  min-height: 15px;
  color: #ff6f99;
  font-size: 11px;
}

/* Tela "Minha conta" */
.hz-account-page {
  overflow: auto;
  color: #eef0f8;
  background:
    radial-gradient(circle at 20% 0%, #35126b36, transparent 36%),
    radial-gradient(circle at 85% 100%, #043d5740, transparent 32%),
    #070a12;
}
.hz-account-wrap {
  width: min(1020px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 60px;
}
.hz-account-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ffffff0d;
}
.hz-account-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.hz-account-brand strong {
  font-size: 17px;
}
.hz-account-brand strong span {
  color: #32d8d3;
}
.hz-account-header-actions {
  display: flex;
  gap: 8px;
}
.hz-account-header-actions button {
  border-radius: 999px;
  padding: 9px 13px;
  border: 1px solid #ffffff18;
  background: #10141f;
  color: #d9dcea;
  cursor: pointer;
}
.hz-account-hero {
  padding: 38px 0 22px;
}
.hz-account-hero small {
  color: #3adfd2;
  font-weight: 900;
  letter-spacing: .12em;
}
.hz-account-hero h1 {
  margin: 9px 0 8px;
  font-size: clamp(30px,5vw,48px);
}
.hz-account-hero p {
  color: #9198aa;
  margin: 0;
}
.hz-account-summary {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin: 10px 0 24px;
}
.hz-summary-card {
  background: #10141eE8;
  border: 1px solid #ffffff10;
  border-radius: 18px;
  padding: 18px;
}
.hz-summary-card span {
  display: block;
  color: #8e94a6;
  font-size: 11px;
  margin-bottom: 8px;
}
.hz-summary-card strong {
  font-size: 24px;
}
.hz-history-panel {
  background: #0e121cE8;
  border: 1px solid #ffffff10;
  border-radius: 20px;
  overflow: hidden;
}
.hz-history-title {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:18px 20px;
  border-bottom:1px solid #ffffff0d;
}
.hz-history-title h2 {
  margin:0;
  font-size:18px;
}
.hz-example-note {
  color:#ffca62;
  background:#ffb83b10;
  border:1px solid #ffbf4435;
  padding:8px 10px;
  border-radius:999px;
  font-size:10px;
  font-weight:800;
}
.hz-history-list {
  display:grid;
}
.hz-history-row {
  display:grid;
  grid-template-columns: 135px 120px 1fr 120px;
  align-items:center;
  gap:12px;
  padding:15px 20px;
  border-bottom:1px solid #ffffff09;
}
.hz-history-row:last-child {
  border-bottom:0;
}
.hz-history-date {
  color:#8f96a8;
  font-size:11px;
}
.hz-history-amount {
  font-weight:900;
  color:#39dfd1;
}
.hz-history-message {
  color:#d9dce5;
  font-size:12px;
}
.hz-status-chip {
  justify-self:end;
  padding:6px 9px;
  border-radius:999px;
  color:#3ce0d3;
  background:#2bd4c510;
  border:1px solid #2bd4c52c;
  font-size:10px;
  font-weight:900;
}
.hz-status-chip.example {
  color:#ffc85c;
  background:#ffc85c0c;
  border-color:#ffc85c30;
}
.hz-empty-real {
  padding: 15px 20px 5px;
  color: #858b9d;
  font-size: 12px;
}

@media (max-width: 700px) {
  .hz-account-summary {
    grid-template-columns:1fr;
  }
  .hz-history-row {
    grid-template-columns: 1fr auto;
  }
  .hz-history-message {
    grid-column:1 / -1;
  }
  .hz-status-chip {
    grid-column:2;
    grid-row:1;
  }
}
