/* Momentos - identidade propria (sunset quente, distinta do Dots roxo) */
:root {
  --bg: #14100d;
  --bg-soft: #1e1813;
  --card: #241d17;
  --line: #362b22;
  --text: #fdf6ee;
  --muted: #b8aea4;
  --coral: #ff7a59;
  --amber: #ffb84c;
  --teal: #34d9c6;
  --grad: linear-gradient(135deg, #ff7a59 0%, #ffb84c 100%);
  --radius: 18px;
  --shadow: 0 12px 40px rgba(0,0,0,.45);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, 92vw); margin: 0 auto; }

/* ---- nav ---- */
nav {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(20,16,13,.72);
  border-bottom: 1px solid var(--line);
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -.02em; }
.dot { width: 14px; height: 14px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 18px rgba(255,122,89,.6); }

/* ---- botoes ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 13px 22px; border-radius: 999px;
  border: none; cursor: pointer; transition: transform .12s ease, box-shadow .2s ease;
}
.btn-primary { background: var(--grad); color: #2a1508; box-shadow: 0 8px 24px rgba(255,122,89,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,122,89,.5); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }
.btn-lg { padding: 16px 30px; font-size: 17px; }

/* ---- hero ---- */
.hero { padding: 78px 0 60px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -140px; right: -120px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,122,89,.28), transparent 66%); filter: blur(20px); z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--amber); background: rgba(255,184,76,.1); border: 1px solid rgba(255,184,76,.25);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 62px); line-height: 1.05; letter-spacing: -.03em; font-weight: 850;
  max-width: 14ch;
}
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.sub { font-size: clamp(17px, 2.4vw, 21px); color: var(--muted); max-width: 52ch; margin: 22px 0 32px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.trust { margin-top: 30px; display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 14px; flex-wrap: wrap; }
.trust b { color: var(--text); }

/* ---- steps ---- */
section.block { padding: 66px 0; }
.eyebrow { color: var(--coral); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
h2.title { font-size: clamp(26px, 4vw, 40px); letter-spacing: -.02em; margin: 10px 0 8px; font-weight: 800; }
.lead { color: var(--muted); max-width: 56ch; font-size: 17px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px;
}
.step .num {
  width: 42px; height: 42px; border-radius: 12px; background: var(--grad); color: #2a1508;
  display: grid; place-items: center; font-weight: 800; font-size: 19px; margin-bottom: 16px;
}
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---- features ---- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.feat { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.feat .ico { font-size: 26px; margin-bottom: 12px; }
.feat h3 { font-size: 17px; margin-bottom: 5px; }
.feat p { color: var(--muted); font-size: 14.5px; }

/* ---- cta final ---- */
.cta-band {
  background: var(--grad); border-radius: 28px; padding: 54px 40px; text-align: center; color: #2a1508;
  box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 850; letter-spacing: -.02em; }
.cta-band p { font-size: 18px; margin: 12px auto 26px; max-width: 44ch; opacity: .85; }
.cta-band .btn { background: #2a1508; color: #fff; }

/* ---- footer ---- */
footer { border-top: 1px solid var(--line); padding: 34px 0; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ---- modal criar album ---- */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.66); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; z-index: 50; padding: 20px;
}
.overlay.open { display: flex; }
.modal { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 30px; width: min(440px, 94vw); box-shadow: var(--shadow); }
.modal h3 { font-size: 23px; margin-bottom: 6px; }
.modal p.hint { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin: 14px 0 6px; }
input[type=text], input[type=date] {
  width: 100%; padding: 13px 14px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg); color: var(--text); font-size: 15px; font-family: inherit;
}
input:focus { outline: none; border-color: var(--coral); }
.modal .btn { width: 100%; margin-top: 22px; }
.modal .close { float: right; color: var(--muted); cursor: pointer; font-size: 22px; line-height: 1; }

/* seletor de tipo de evento */
.type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.type-opt {
  background: var(--bg); border: 1px solid var(--line); color: var(--text);
  padding: 11px 10px; border-radius: 11px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all .12s ease; text-align: left;
}
.type-opt:hover { border-color: var(--coral); }
.type-opt.selected { border-color: var(--coral); background: rgba(255,122,89,.12); color: var(--coral); }

@media (max-width: 800px) {
  .steps, .features { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
}

/* ============ TEMAS POR EVENTO (fundo) ============ */
/* aplicado no <body class="theme-x"> do album e do telao */
body[class*="theme-"] { position: relative; }
body[class*="theme-"]::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-size: cover; background-position: center; opacity: .5;
}
.theme-casamento { --coral:#e8b4bc; --amber:#d4af6a; --grad:linear-gradient(135deg,#e8b4bc,#d4af6a); }
.theme-casamento::before { background:
  radial-gradient(circle at 15% 20%, rgba(212,175,106,.16), transparent 40%),
  radial-gradient(circle at 85% 75%, rgba(232,180,188,.16), transparent 42%), #14100d; }
.theme-aniversario { --coral:#ff6ba6; --amber:#ffd23f; --grad:linear-gradient(135deg,#ff6ba6,#ffd23f); }
.theme-aniversario::before { background:
  radial-gradient(circle at 20% 15%, rgba(255,107,166,.18), transparent 38%),
  radial-gradient(circle at 80% 80%, rgba(255,210,63,.16), transparent 40%), #14100d; }
.theme-festa { --coral:#a855f7; --amber:#38bdf8; --grad:linear-gradient(135deg,#a855f7,#38bdf8); }
.theme-festa::before { background:
  radial-gradient(circle at 25% 20%, rgba(168,85,247,.2), transparent 40%),
  radial-gradient(circle at 75% 78%, rgba(56,189,248,.18), transparent 42%), #14100d; }
.theme-formatura { --coral:#facc15; --amber:#c9a227; --grad:linear-gradient(135deg,#1e3a8a,#facc15); }
.theme-formatura::before { background:
  radial-gradient(circle at 18% 22%, rgba(30,58,138,.28), transparent 44%),
  radial-gradient(circle at 82% 76%, rgba(250,204,21,.14), transparent 40%), #14100d; }
.theme-anonovo { --coral:#ffd700; --amber:#fff3b0; --grad:linear-gradient(135deg,#ffd700,#b8860b); }
.theme-anonovo::before { background:
  radial-gradient(circle at 50% 8%, rgba(255,215,0,.2), transparent 42%),
  radial-gradient(circle at 50% 95%, rgba(184,134,11,.16), transparent 44%), #14100d; }

/* botao deletar (admin) no grid */
.grid .cell { position: relative; }
.grid .del {
  position: absolute; top: 6px; right: 6px; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(20,16,13,.82); color: #fff; border: 1px solid rgba(255,255,255,.25);
  font-size: 17px; line-height: 1; cursor: pointer; display: grid; place-items: center; z-index: 2;
}
.grid .del:hover { background: #d64545; }
.grid .setcover {
  position: absolute; top: 6px; left: 6px; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(20,16,13,.82); color: #ffd23f; border: 1px solid rgba(255,255,255,.25);
  font-size: 15px; line-height: 1; cursor: pointer; display: grid; place-items: center; z-index: 2;
}
.grid .setcover:hover { background: var(--amber); color: #201007; }

/* moderacao (F19) */
.cell.pending img { opacity: .55; }
.pend-tag { position: absolute; bottom: 6px; left: 6px; background: rgba(60,60,70,.92); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 7px; border-radius: 6px; z-index: 2; }
.approve { position: absolute; bottom: 6px; right: 6px; background: #2f9e44; color: #fff; border: none; font-size: 12px; font-weight: 700; padding: 5px 9px; border-radius: 7px; cursor: pointer; z-index: 3; }
.approve:hover { background: #37b24d; }
.mod-toggle, label.check { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); font-weight: 600; margin-top: 12px; cursor: pointer; }
.mod-toggle input, label.check input { width: 16px; height: 16px; accent-color: var(--coral); }
.pend-badge { background: var(--amber); color: #201007; font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 999px; }
.ai-tag { background: rgba(52,217,198,.18); color: var(--teal); font-size: 10px; font-weight: 800; padding: 2px 7px; border-radius: 999px; letter-spacing: .04em; }

/* pessoas (F8) */
.people-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 14px; padding: 18px 0 120px; }
.person { text-align: center; cursor: pointer; }
.person img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; border: 2px solid var(--line); background: var(--card); }
.person:hover img { border-color: var(--coral); }
.pcount { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* capa do album (F14) */
.cover-banner {
  height: 220px; background-size: cover; background-position: center; position: relative;
}
.cover-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, var(--bg)); }
@media (max-width: 700px){ .cover-banner { height: 150px; } }

/* fora de foco */
.seg-btn.active, .blur-btn.active { background: var(--grad); color: #2a1508; border-color: transparent; }
.grid img.is-blurry { outline: 2px solid #e6a23c; outline-offset: -2px; }
.blur-tag {
  position: absolute; bottom: 6px; left: 6px; background: rgba(230,162,60,.92); color: #201007;
  font-size: 11px; font-weight: 700; padding: 3px 7px; border-radius: 6px; pointer-events: none; z-index: 2;
}
.blur-note { color: var(--muted); font-size: 14px; padding: 6px 0 12px; }
.toolbar { justify-content: space-between; align-items: center; }

/* ============ TELAO (slideshow ao vivo) ============ */
body.telao { background: #000; overflow: hidden; }
.telao-stage { position: fixed; inset: 0; display: grid; place-items: center; overflow: hidden; }
.telao-stage img {
  position: absolute; max-width: 100vw; max-height: 100vh; width: auto; height: auto;
  object-fit: contain; opacity: 0; transition: opacity 1s ease;
}
.telao-stage img.active { opacity: 1; }
.telao-bar {
  position: fixed; bottom: 0; left: 0; right: 0; padding: 20px 34px; z-index: 5;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent);
  display: flex; align-items: flex-end; justify-content: space-between; color: #fff;
}
.telao-title { font-size: 30px; font-weight: 800; letter-spacing: -.02em; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.telao-sub { font-size: 16px; opacity: .8; margin-top: 4px; }
.telao-author { font-size: 17px; opacity: .9; text-shadow: 0 2px 10px rgba(0,0,0,.7); }
.telao-empty { color: #fff; text-align: center; font-size: 26px; opacity: .85; }
.telao-empty .qbig { font-size: 60px; margin-bottom: 16px; }
.telao-new {
  position: fixed; top: 26px; right: 26px; z-index: 6; background: var(--grad, #ff7a59);
  color: #201007; font-weight: 800; font-size: 16px; padding: 12px 20px; border-radius: 999px;
  box-shadow: 0 8px 26px rgba(0,0,0,.5); opacity: 0; transform: translateY(-14px); transition: all .35s ease;
}
.telao-new.show { opacity: 1; transform: translateY(0); }
.telao-count { position: fixed; top: 26px; left: 26px; z-index: 6; color: #fff; font-size: 15px; opacity: .6; }

/* ================= ALBUM APP ================= */
.app-head {
  padding: 22px 0; border-bottom: 1px solid var(--line);
  background: var(--bg-soft); position: sticky; top: 0; z-index: 20; backdrop-filter: blur(10px);
}
.app-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.app-head h1 { font-size: clamp(20px, 4vw, 28px); letter-spacing: -.02em; }
.app-head .meta { color: var(--muted); font-size: 14px; margin-top: 2px; }

.toolbar { padding: 18px 0 4px; display: flex; }
.seg { display: inline-flex; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 4px; gap: 4px; }
.seg-btn {
  border: none; background: transparent; color: var(--muted); font-family: inherit;
  font-size: 14px; font-weight: 700; padding: 8px 16px; border-radius: 999px; cursor: pointer;
}
.seg-btn.active { background: var(--grad); color: #2a1508; }

.moment { padding-top: 18px; }
.moment-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.moment-label { font-size: 19px; font-weight: 800; letter-spacing: -.01em; }
.moment-range { font-size: 13px; color: var(--muted); }

.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px; padding: 12px 0 40px;
}
#content > .grid:last-child { padding-bottom: 120px; }
.grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; background: var(--card); cursor: pointer; display: block; }
.empty { text-align: center; padding: 80px 20px; color: var(--muted); }
.empty .big { font-size: 46px; margin-bottom: 14px; }

.fab {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #2a1508; font-weight: 800; font-size: 16px;
  padding: 16px 28px; border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 10px 30px rgba(255,122,89,.5); display: inline-flex; align-items: center; gap: 9px; z-index: 25;
}
.fab:active { transform: translateX(-50%) scale(.96); }

.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%);
  background: var(--card); border: 1px solid var(--line); color: var(--text);
  padding: 12px 20px; border-radius: 12px; font-size: 14px; z-index: 40; box-shadow: var(--shadow);
  opacity: 0; transition: opacity .2s; pointer-events: none;
}
.toast.show { opacity: 1; }

/* chat do album (F13) */
.chat-fab {
  position: fixed; bottom: 26px; right: 22px; width: 56px; height: 56px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--line); color: #fff; font-size: 24px; cursor: pointer;
  box-shadow: var(--shadow); z-index: 24;
}
.chat-panel {
  position: fixed; bottom: 0; right: 0; width: min(380px, 100vw); height: min(560px, 82vh);
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px 16px 0 0;
  display: none; flex-direction: column; z-index: 45; box-shadow: var(--shadow);
}
.chat-panel.open { display: flex; }
.chat-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--line); font-weight: 700; }
.chat-head button { background: none; border: none; color: var(--muted); font-size: 22px; cursor: pointer; }
.chat-msgs { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.chat-msg { max-width: 80%; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 8px 11px; font-size: 14px; align-self: flex-start; }
.chat-msg b { display: block; color: var(--coral); font-size: 12px; margin-bottom: 2px; }
.chat-msg.mine { align-self: flex-end; background: rgba(255,122,89,.2); border-color: var(--coral); }
.chat-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); }
.chat-form input { flex: 1; padding: 10px 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--bg); color: var(--text); font-size: 14px; font-family: inherit; }
.chat-form input:focus { outline: none; border-color: var(--coral); }

/* lightbox simples */
.lb { position: fixed; inset: 0; background: rgba(0,0,0,.92); display: none; align-items: center; justify-content: center; z-index: 60; }
.lb.open { display: flex; }
.lb-inner { display: flex; gap: 18px; align-items: center; max-width: 96vw; max-height: 92vh; }
.lb img { max-width: 64vw; max-height: 88vh; border-radius: 10px; object-fit: contain; }
.lb video { max-width: 64vw; max-height: 88vh; border-radius: 10px; background: #000; }

/* video no grid (F16) */
.play-ico {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%; background: rgba(20,16,13,.7);
  color: #fff; display: grid; place-items: center; font-size: 18px; padding-left: 3px;
  pointer-events: auto; cursor: pointer; z-index: 2;
}
.vid-dur { position: absolute; bottom: 6px; right: 6px; background: rgba(20,16,13,.82); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 6px; z-index: 2; }
.lb .x { position: absolute; top: 18px; right: 22px; font-size: 34px; color: #fff; cursor: pointer; z-index: 61; }
.lb-panel { width: 320px; max-height: 88vh; display: flex; flex-direction: column; gap: 12px; color: var(--text); }
.lb-author { font-size: 15px; opacity: .85; }
.lb-react { display: flex; gap: 8px; flex-wrap: wrap; }
.react {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff;
  font-size: 18px; padding: 7px 11px; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; gap: 5px;
}
.react span { font-size: 13px; font-weight: 700; }
.react.mine { background: rgba(255,122,89,.28); border-color: var(--coral); }
.lb-comments { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; padding-right: 4px; min-height: 60px; }
.lb-comment { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 8px 11px; font-size: 14px; }
.lb-comment b { color: var(--coral); }
.lb-cempty { color: var(--muted); font-size: 13px; }
.lb-cform { display: flex; gap: 8px; }
.lb-cform input {
  flex: 1; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--bg); color: var(--text); font-size: 14px; font-family: inherit;
}
.lb-cform input:focus { outline: none; border-color: var(--coral); }

.countdown { color: var(--amber); font-size: 14px; font-weight: 700; margin-top: 4px; }

/* programacao (F20) */
.planning-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; margin: 18px 0 4px; }
.planning-head h3 { font-size: 19px; margin-bottom: 12px; }
.plan-item { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; border-top: 1px solid var(--line); position: relative; }
.plan-item:first-of-type { border-top: none; }
.plan-time { font-weight: 800; color: var(--coral); font-size: 15px; min-width: 52px; padding-top: 1px; }
.plan-body b { font-size: 15px; }
.plan-loc, .plan-note { color: var(--muted); font-size: 13px; margin-top: 2px; }
.plan-del { position: absolute; right: 0; top: 10px; background: transparent; border: none; color: var(--muted); font-size: 20px; cursor: pointer; }
.plan-del:hover { color: #d64545; }
.planning-form { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.planning-form input { flex: 1; min-width: 120px; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg); color: var(--text); font-size: 14px; font-family: inherit; }
.planning-form input:focus { outline: none; border-color: var(--coral); }

@media (max-width: 820px){
  .lb-inner { flex-direction: column; gap: 10px; overflow-y: auto; }
  .lb img { max-width: 94vw; max-height: 52vh; }
  .lb-panel { width: 94vw; max-height: 38vh; }
}

/* painel admin (tela do anfitriao) */
.admin-panel {
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; margin: 22px 0 8px;
}
.admin-qr { text-align: center; }
.admin-qr img { width: 200px; height: 200px; border-radius: 14px; background: #fff; padding: 8px; display: block; }
.admin-hint { color: var(--muted); font-size: 12.5px; margin-top: 10px; max-width: 210px; }
.admin-actions h3 { font-size: 20px; margin-bottom: 12px; }
.admin-actions .btn { margin: 0 8px 10px 0; }
.link-box {
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px;
  font-size: 13px; color: var(--amber); word-break: break-all; margin-bottom: 14px;
}
@media (max-width: 700px) {
  .admin-panel { grid-template-columns: 1fr; text-align: center; }
  .admin-qr img { margin: 0 auto; }
  .admin-hint { margin-left: auto; margin-right: auto; }
  .admin-actions .btn { width: 100%; margin-right: 0; }
}

/* integracoes (WhatsApp/email) */
.wa-card { background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.35); border-radius: 12px; padding: 12px 14px; font-size: 13.5px; margin-top: 12px; line-height: 1.5; }
