/* ===== Cores Rise Mode ===== */
:root {
  --bg: #07090e;
  --bg-2: #0b0e15;
  --card: #0d1119;
  --border: #1c2230;
  --border-2: #262e40;
  --text: #e8ecf4;
  --muted: #8a93a6;
  --blue: #0050ff;      /* azul escuro do logo */
  --blue-2: #0084ff;    /* azul claro do logo */
  --accent: #2f7bff;
  --green: #22c55e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
  font-family: "Chakra Petch", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  width: 1em;
  overflow: hidden;       /* evita mostrar o nome do ícone antes da fonte carregar */
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== Fundo ===== */
.glow {
  position: fixed;
  top: -35vh; left: 50%;
  width: 1100px; height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 80, 255, .28) 0%, rgba(0, 80, 255, .08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.grid-bg {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ===== Topo ===== */
.topbar {
  position: relative; z-index: 2;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 9, 14, .7);
  backdrop-filter: blur(8px);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
}
.brand img { height: 26px; }
.brand span {
  font-weight: 600; font-size: 15px; letter-spacing: .28em;
}
.brand b { color: var(--accent); font-weight: 600; }

/* ===== Conteúdo ===== */
.wrap {
  position: relative; z-index: 1;
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 48px 16px;
}

.card {
  width: 100%; max-width: 560px;
  text-align: center;
  background: linear-gradient(180deg, rgba(13,17,25,.92), rgba(11,14,21,.92));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 44px 36px 36px;
  box-shadow: 0 30px 80px -30px rgba(0, 80, 255, .25);
  animation: rise .7s cubic-bezier(.2,.8,.2,1) both;
}

.logo-ring {
  width: 104px; height: 104px;
  margin: 0 auto 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,132,255,.18), transparent 70%);
  border: 1px solid var(--border-2);
  position: relative;
}
.logo-ring::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--blue-2);
  border-right-color: rgba(0,132,255,.3);
  animation: spin 3s linear infinite;
}
.logo {
  height: 60px;
  filter: drop-shadow(0 0 18px rgba(0, 110, 255, .55));
  animation: flicker 3.2s ease-in-out infinite;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.25;
}

.dots {
  display: flex; justify-content: center; gap: 6px;
  margin: 20px 0 22px;
}
.dots span {
  width: 22px; height: 2px;
  background: var(--border-2);
  border-radius: 2px;
}
.dots span.on {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}

.lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto 26px;
}

.info {
  display: flex; align-items: flex-start; gap: 12px;
  text-align: left;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-2);
  margin-bottom: 14px;
}
.info .material-symbols-rounded { color: var(--accent); margin-top: 1px; }
.info p { font-size: 13.5px; line-height: 1.55; color: #c3cad8; }
.info strong { color: var(--text); font-weight: 600; }

/* ===== E-mail + copiar ===== */
.email-box {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 8px 8px 16px;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  background: #090c12;
  transition: border-color .2s, box-shadow .2s;
}
.email-box:hover {
  border-color: rgba(47, 123, 255, .6);
  box-shadow: 0 0 0 3px rgba(47, 123, 255, .12);
}
.icon-mail { color: var(--accent); }
.email {
  flex: 1; min-width: 0;
  text-align: left;
  color: var(--text);
  text-decoration: none;
  font-size: 15px; font-weight: 500;
  letter-spacing: .02em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.email:hover { color: var(--accent); }

.copy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  flex-shrink: 0;
  font-family: inherit; font-size: 13px; font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border: 0; border-radius: 7px;
  padding: 10px 14px;
  cursor: pointer;
  transition: transform .15s, filter .2s, box-shadow .2s;
}
.copy-btn:hover { filter: brightness(1.12); box-shadow: 0 6px 20px -6px rgba(0, 110, 255, .8); }
.copy-btn:active { transform: scale(.96); }
.copy-btn .material-symbols-rounded { font-size: 18px; }
.copy-btn.copied { background: var(--green); }

/* ===== Rodapé ===== */
.footer {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  justify-content: space-between; align-items: center;
  padding: 18px 24px;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted);
}
.secure { display: inline-flex; align-items: center; gap: 6px; }
.secure .material-symbols-rounded { font-size: 16px; color: var(--accent); }

/* ===== Toast ===== */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 10;
  transform: translate(-50%, 20px);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: var(--card);
  border: 1px solid rgba(34, 197, 94, .4);
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  box-shadow: 0 12px 40px -10px rgba(0,0,0,.7);
}
.toast .material-symbols-rounded { color: var(--green); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ===== Animações ===== */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { opacity: .45; } }
@keyframes flicker {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 18px rgba(0,110,255,.55)); }
  50% { transform: scale(1.04); filter: drop-shadow(0 0 26px rgba(0,132,255,.8)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ===== Mobile ===== */
@media (max-width: 520px) {
  .card { padding: 36px 20px 24px; }
  .email-box { flex-wrap: wrap; padding: 12px; }
  .email { font-size: 14px; }
  .copy-btn { width: 100%; justify-content: center; }
  .footer { justify-content: center; text-align: center; }
}
