/* ==========================================================================
   Webapp do Evento (4.events Light) — estilos base
   Mobile-first, container 480px, paleta roxa (--wa-primary vem do layout).
   ========================================================================== */

:root {
  --wa-primary: #7c3aed;
  --wa-on-primary: #ffffff;
  --wa-accent: #ec4899;
  --wa-bg: #f1f5f9;
  --wa-card: #ffffff;
  --wa-text: #0f172a;
  --wa-soft: #64748b;
  --wa-muted: #94a3b8;
  --wa-line: #e2e8f0;
  --wa-ok: #10b981;
  --wa-warn: #f59e0b;
  --wa-bad: #ef4444;
  --wa-radius: 16px;
  --wa-shadow: 0 2px 10px rgba(15, 23, 42, .06);
  --wa-header-h: 62px;
  --wa-nav-h: 72px;
  --wa-nav-gap: 12px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body { margin: 0; padding: 0; max-width: 100%; }

img, svg, video { max-width: 100%; }

.wa-body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--wa-bg);
  color: var(--wa-text);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

.wa-shell {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100dvh;
  background: var(--wa-bg);
  position: relative;
  box-shadow: 0 0 44px rgba(15, 23, 42, .07);
}

/* o `display` do agente de usuário para [hidden] perde para qualquer classe
   nossa com display (ex.: overlay de loading com display:flex) — o elemento
   ficava visível "para sempre" mesmo com o atributo hidden. */
[hidden] { display: none !important; }

/* ------------------------------- header -------------------------------- */

.wa-header {
  position: sticky; top: 0; z-index: 40;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--wa-primary) 92%, #000) 0%,
    var(--wa-primary) 100%);
  color: var(--wa-on-primary);
  padding-top: env(safe-area-inset-top, 0px);
}
.wa-header-in {
  height: var(--wa-header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 0 16px;
}
.wa-header-brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit;
  flex: 1 1 auto; min-width: 0; overflow: hidden;
}
.wa-header-logo {
  height: 30px; max-width: 132px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.wa-header-logo img { height: 100%; width: auto; max-width: 132px; object-fit: contain; display: block; }
.wa-header-logo.is-text {
  width: 32px; border-radius: 10px; background: rgba(255, 255, 255, .18);
  font-weight: 800; font-size: 16px;
}
.wa-header-name {
  font-size: 15px; font-weight: 700; letter-spacing: -.01em;
  flex: 0 1 auto; min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wa-header-actions { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; }
.wa-header-icon {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: inherit; text-decoration: none; background: transparent;
}
.wa-header-icon:active { background: rgba(255, 255, 255, .18); }
.wa-header-icon .material-icons-round { font-size: 24px; }
.wa-header-avatar {
  width: 38px; height: 38px; border-radius: 50%; overflow: hidden; text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .22); color: inherit; font-size: 13px; font-weight: 800;
  border: 2px solid rgba(255, 255, 255, .45);
}
.wa-header-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wa-header-login {
  padding: 9px 16px; border-radius: 9999px; background: rgba(255, 255, 255, .96);
  color: var(--wa-primary); font-size: 13px; font-weight: 700; text-decoration: none;
}

/* -------------------------------- main --------------------------------- */

.wa-main { padding: 16px 14px calc(var(--wa-nav-h) + var(--wa-nav-gap) + 20px + env(safe-area-inset-bottom, 0px)); }
.wa-body-nonav .wa-main,
.wa-body-login .wa-main { padding-bottom: calc(26px + env(safe-area-inset-bottom, 0px)); }
.wa-body-login .wa-main { padding: 0; }
/* a tela Início é full-bleed (banner encostado nas bordas) */
.wa-route-inicio .wa-main { padding-left: 0; padding-right: 0; padding-top: 0; }

/* ------------------------------ bottom nav ----------------------------- */

/* barra branca flutuante em pílula; item ativo é um bloco arredondado
   com fundo em tint da primária (ícone + label juntos). */
.wa-nav {
  position: fixed; z-index: 45;
  bottom: calc(var(--wa-nav-gap) + env(safe-area-inset-bottom, 0px));
  left: 50%; transform: translateX(-50%);
  width: calc(100% - 2 * var(--wa-nav-gap)); max-width: 452px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .13), 0 2px 8px rgba(15, 23, 42, .06);
  display: flex; align-items: stretch;
  padding: 7px 8px;
}
.wa-nav-item {
  flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 9px 4px 8px; border-radius: 22px; text-decoration: none;
  color: color-mix(in srgb, var(--wa-primary) 34%, #94a3b8);
  font-size: 11px; font-weight: 600; line-height: 1.1;
  transition: background .18s, color .18s, transform .12s;
}
.wa-nav-ico {
  display: flex; align-items: center; justify-content: center;
  transition: transform .18s;
}
.wa-nav-ico .material-icons-round { font-size: 24px; }
.wa-nav-lb { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wa-nav-item:active { transform: scale(.96); }
.wa-nav-item.is-active {
  background: color-mix(in srgb, var(--wa-primary) 13%, #fff);
  color: var(--wa-primary);
  font-weight: 700;
}
.wa-nav-item.is-active .wa-nav-ico { color: var(--wa-primary); }

/* 6+ itens: aperta o respiro para não estourar a largura */
.wa-nav:has(.wa-nav-item:nth-child(6)) .wa-nav-item { font-size: 10px; padding-left: 2px; padding-right: 2px; }
.wa-nav:has(.wa-nav-item:nth-child(6)) .wa-nav-ico .material-icons-round { font-size: 22px; }

/* ------------------------------- blocos -------------------------------- */

.wa-card {
  background: var(--wa-card); border: 1px solid var(--wa-line);
  border-radius: var(--wa-radius); box-shadow: var(--wa-shadow); padding: 16px;
}
.wa-card + .wa-card { margin-top: 14px; }

.wa-section-title {
  display: flex; align-items: center; gap: 8px; margin: 22px 2px 12px;
  font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--wa-soft);
}
.wa-section-title .material-icons-round { font-size: 18px; color: var(--wa-primary); }
.wa-section-title:first-child { margin-top: 4px; }

.wa-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 9999px; border: 0; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 700; text-decoration: none;
  transition: transform .12s, box-shadow .16s, opacity .16s;
}
.wa-btn:active { transform: scale(.98); }
.wa-btn[disabled] { opacity: .55; cursor: not-allowed; }
.wa-btn .material-icons-round { font-size: 19px; }
.wa-btn-primary {
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent));
  color: #fff; box-shadow: 0 10px 22px rgba(124, 58, 237, .3);
}
.wa-btn-soft { background: color-mix(in srgb, var(--wa-primary) 11%, #fff); color: var(--wa-primary); }
.wa-btn-ghost { background: #fff; color: var(--wa-soft); border: 1px solid var(--wa-line); }
.wa-btn-block { display: flex; width: 100%; }

.wa-chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px;
  border-radius: 9999px; font-size: 12px; font-weight: 700;
  background: #f1f5f9; color: var(--wa-soft);
}
.wa-chip .material-icons-round { font-size: 15px; }
.wa-chip.is-ok { background: #ecfdf5; color: #047857; }
.wa-chip.is-warn { background: #fffbeb; color: #b45309; }
.wa-chip.is-bad { background: #fef2f2; color: #b91c1c; }
.wa-chip.is-primary { background: color-mix(in srgb, var(--wa-primary) 12%, #fff); color: var(--wa-primary); }

.wa-empty { text-align: center; padding: 34px 18px; color: var(--wa-muted); }
.wa-empty .material-icons-round { font-size: 44px; color: #cbd5e1; display: block; margin: 0 auto 10px; }
.wa-empty p { margin: 0; font-size: 13.5px; line-height: 1.6; }

/* ------------------------------- toasts -------------------------------- */

.wa-toast-wrap {
  position: fixed; left: 50%; transform: translateX(-50%); top: calc(12px + env(safe-area-inset-top, 0px));
  z-index: 9999; width: 100%; max-width: 440px; padding: 0 14px;
  display: flex; flex-direction: column; gap: 8px; pointer-events: none;
}
.wa-toast {
  display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-radius: 14px;
  background: #0f172a; color: #fff; font-size: 13.5px; font-weight: 600; line-height: 1.4;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .3);
  animation: waToastIn .22s ease;
}
.wa-toast .material-icons-round { font-size: 19px; }
.wa-toast.is-success { background: #065f46; }
.wa-toast.is-error { background: #991b1b; }
@keyframes waToastIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

/* ============================== tela: entrar ============================= */

.wa-login {
  min-height: 100dvh; display: flex; flex-direction: column;
  background: linear-gradient(165deg, #2e1065 0%, #5b21b6 42%, #9333ea 100%);
  color: #fff; padding: calc(34px + env(safe-area-inset-top, 0px)) 22px calc(26px + env(safe-area-inset-bottom, 0px));
}
.wa-login-top { text-align: center; padding: 14px 0 24px; }
.wa-login-logo {
  width: 78px; height: 78px; border-radius: 24px; margin: 0 auto 18px; overflow: hidden;
  background: rgba(255, 255, 255, .16); display: flex; align-items: center; justify-content: center;
  font-size: 33px; font-weight: 900; box-shadow: 0 14px 32px rgba(0, 0, 0, .26);
}
.wa-login-logo img { width: 100%; height: 100%; object-fit: cover; }
.wa-login-eyebrow { margin: 0 0 6px; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .72); }
.wa-login-title { margin: 0; font-size: 25px; font-weight: 800; line-height: 1.25; }
.wa-login-sub { margin: 10px 0 0; font-size: 14px; color: rgba(255, 255, 255, .82); line-height: 1.55; }

.wa-login-card {
  background: #fff; color: var(--wa-text); border-radius: 24px; padding: 24px 20px 22px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .3); margin-top: auto;
}
.wa-login-label { display: block; font-size: 13px; font-weight: 700; color: #334155; margin: 0 0 8px; }
.wa-input {
  width: 100%; padding: 15px 16px; border-radius: 14px; border: 1.5px solid var(--wa-line);
  font-family: inherit; font-size: 16px; color: var(--wa-text); background: #f8fafc; outline: 0;
  transition: border-color .16s, background .16s, box-shadow .16s;
}
.wa-input:focus { border-color: var(--wa-primary); background: #fff; box-shadow: 0 0 0 4px color-mix(in srgb, var(--wa-primary) 14%, transparent); }
.wa-input-hint { margin: 9px 2px 0; font-size: 12.5px; color: var(--wa-muted); line-height: 1.5; }
.wa-login-card .wa-btn { margin-top: 16px; }

.wa-otp-boxes { display: flex; gap: 10px; justify-content: center; margin: 4px 0 2px; }
.wa-otp-box {
  width: 60px; height: 70px; border-radius: 16px; border: 2px solid var(--wa-line); background: #f8fafc;
  text-align: center; font-size: 28px; font-weight: 800; color: var(--wa-text);
  font-family: inherit; outline: 0; transition: border-color .16s, background .16s, transform .12s;
}
.wa-otp-box:focus { border-color: var(--wa-primary); background: #fff; transform: translateY(-2px); }
.wa-otp-box.is-filled { border-color: color-mix(in srgb, var(--wa-primary) 55%, #fff); background: color-mix(in srgb, var(--wa-primary) 7%, #fff); }
.wa-otp-sent { text-align: center; font-size: 13.5px; color: var(--wa-soft); line-height: 1.55; margin: 0 0 16px; }
.wa-otp-sent b { color: var(--wa-text); }
.wa-otp-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; }
.wa-link-btn {
  background: 0; border: 0; padding: 6px 2px; cursor: pointer; font-family: inherit;
  font-size: 13px; font-weight: 700; color: var(--wa-primary);
}
.wa-link-btn[disabled] { color: var(--wa-muted); cursor: default; }
.wa-login-err {
  display: none; align-items: center; gap: 8px; margin-top: 12px; padding: 11px 13px;
  border-radius: 12px; background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c;
  font-size: 13px; font-weight: 600; line-height: 1.45;
}
.wa-login-err.is-on { display: flex; }
.wa-login-err .material-icons-round { font-size: 18px; }

/* ============================== tela: início ============================ */

/* capa full-bleed + logomarca sobreposta */
.wa-cover { position: relative; background: linear-gradient(135deg, var(--wa-primary), color-mix(in srgb, var(--wa-primary) 55%, var(--wa-accent))); }
.wa-cover-img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.wa-cover.is-plain { height: 128px; }
.wa-cover-mark {
  position: absolute; left: 16px; bottom: -30px; z-index: 2;
  width: 76px; height: 76px; border-radius: 20px; overflow: hidden;
  background: #fff; border: 3px solid #fff; box-shadow: 0 10px 26px rgba(15, 23, 42, .22);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 900; color: var(--wa-primary);
}
.wa-cover-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* apresentação do evento (bloco branco) */
.wa-about { background: #fff; padding: 44px 18px 20px; }
.wa-about-hi { margin: 0 0 6px; font-size: 13px; font-weight: 700; color: var(--wa-primary); }
.wa-about-title { margin: 0; font-size: 23px; font-weight: 800; line-height: 1.25; letter-spacing: -.02em; color: var(--wa-text); }
.wa-about-meta { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.wa-about-meta > span {
  display: flex; align-items: flex-start; gap: 7px; min-width: 0;
  font-size: 13px; font-weight: 600; color: var(--wa-soft); line-height: 1.45;
  overflow-wrap: anywhere;
}
.wa-about-meta .material-icons-round { font-size: 17px; color: var(--wa-primary); flex: 0 0 auto; margin-top: 1px; }
.wa-about-meta .wa-meta-txt {
  min-width: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.wa-about-desc { margin-top: 14px; font-size: 14.5px; line-height: 1.7; color: #334155; }
.wa-about-desc p { margin: 0 0 10px; }
.wa-about-desc p:last-child { margin-bottom: 0; }
.wa-about-desc b, .wa-about-desc strong { color: var(--wa-text); font-weight: 700; }
/* ações do hero: um cartão de destaque + uma linha secundária */
.wa-about-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

.wa-act-main {
  position: relative; display: flex; align-items: center; gap: 13px; width: 100%;
  padding: 14px 16px; border: 0; border-radius: 18px; cursor: pointer;
  font: inherit; text-align: left; text-decoration: none; color: #fff;
  background:
    radial-gradient(130% 150% at 100% 0%, rgba(255, 255, 255, .18) 0%, transparent 55%),
    linear-gradient(118deg, var(--wa-primary), var(--wa-accent));
  box-shadow: 0 12px 26px color-mix(in srgb, var(--wa-primary) 30%, transparent);
  transition: transform .14s, box-shadow .18s;
}
.wa-act-main:active {
  transform: scale(.988);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--wa-primary) 26%, transparent);
}
/* recorte lateral de bilhete — usa o branco de .wa-about como "furo" */
.wa-act-main.is-ticket::before,
.wa-act-main.is-ticket::after {
  content: ''; position: absolute; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%; background: #fff;
}
.wa-act-main.is-ticket::before { left: -8px; }
.wa-act-main.is-ticket::after { right: -8px; }

.wa-act-ico {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 14px;
  background: rgba(255, 255, 255, .2);
  display: flex; align-items: center; justify-content: center;
}
.wa-act-ico .material-icons-round { font-size: 23px; }

.wa-act-txt { flex: 1 1 auto; min-width: 0; }
.wa-act-txt b { display: block; font-size: 15.5px; font-weight: 800; line-height: 1.3; }
.wa-act-txt em {
  display: block; font-style: normal; font-size: 12px; line-height: 1.45;
  margin-top: 2px; opacity: .85;
}

.wa-act-go { flex: 0 0 auto; font-size: 20px; opacity: .85; transition: transform .18s; }
.wa-act-main:hover .wa-act-go { transform: translateX(3px); }

.wa-act-row {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 12px 14px; border-radius: 16px; cursor: pointer;
  font: inherit; text-align: left; text-decoration: none; color: var(--wa-text);
  background: #fff; border: 1px solid var(--wa-line); box-shadow: var(--wa-shadow);
  transition: border-color .16s, transform .14s;
}
.wa-act-row:active { transform: scale(.99); }
.wa-act-row:hover { border-color: color-mix(in srgb, var(--wa-primary) 32%, #fff); }
.wa-act-row-ico {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 12px;
  background: color-mix(in srgb, var(--wa-primary) 10%, #fff); color: var(--wa-primary);
  display: flex; align-items: center; justify-content: center;
}
.wa-act-row-ico .material-icons-round { font-size: 20px; }
.wa-act-row .wa-act-txt b { font-size: 14.5px; }
.wa-act-row .wa-act-txt em { color: var(--wa-muted); opacity: 1; }
.wa-act-row .wa-act-go { color: var(--wa-muted); font-size: 22px; opacity: 1; }

.wa-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.wa-social {
  width: 40px; height: 40px; border-radius: 12px; background: #f1f5f9;
  display: flex; align-items: center; justify-content: center; color: var(--wa-soft);
  transition: background .16s, color .16s, transform .12s;
}
.wa-social svg { width: 20px; height: 20px; fill: currentColor; display: block; }
.wa-social:active { transform: scale(.94); }
.wa-social:hover { background: color-mix(in srgb, var(--wa-primary) 12%, #fff); color: var(--wa-primary); }

/* seções abaixo da apresentação */
.wa-sec { padding: 20px 18px 4px; }
.wa-sec-title { margin: 0 0 14px; font-size: 17px; font-weight: 800; letter-spacing: -.01em; color: var(--wa-text); }

/* timeline dos próximos eventos */
.wa-tl { position: relative; }
.wa-tl-row { position: relative; padding: 0 0 22px 24px; }
.wa-tl-row::before {
  content: ''; position: absolute; left: 5px; top: 14px; bottom: 0; width: 2px; background: var(--wa-line);
}
.wa-tl-row:last-child { padding-bottom: 4px; }
.wa-tl-row:last-child::before { display: none; }
.wa-tl-dot {
  position: absolute; left: 0; top: 4px; width: 12px; height: 12px; border-radius: 50%;
  background: #cbd5e1; border: 2px solid var(--wa-bg); box-shadow: 0 0 0 2px #cbd5e1;
}
.wa-tl-row:first-child .wa-tl-dot { background: var(--wa-primary); box-shadow: 0 0 0 2px color-mix(in srgb, var(--wa-primary) 45%, #fff); }
.wa-tl-when { margin: 0 0 10px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.wa-tl-when b { font-size: 14.5px; font-weight: 700; color: var(--wa-text); }
.wa-tl-when span { font-size: 13px; color: var(--wa-muted); }
.wa-tl-card {
  border-radius: 14px; overflow: hidden; background: var(--wa-card);
  border: 1px solid var(--wa-line); box-shadow: var(--wa-shadow);
}
.wa-tl-card-img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #e2e8f0; }
.wa-tl-card-img.is-fallback {
  aspect-ratio: auto; height: 92px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent));
}
.wa-tl-card-img.is-fallback .material-icons-round { font-size: 34px; opacity: .9; }
.wa-tl-card-body { padding: 12px 14px 13px; }
.wa-tl-card-name { margin: 0; font-size: 14.5px; font-weight: 700; line-height: 1.35; color: var(--wa-text); }
.wa-tl-card-info {
  margin: 6px 0 0; display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; color: var(--wa-muted); line-height: 1.45;
}
.wa-tl-card-info .material-icons-round { font-size: 15px; }
.wa-tl-card-cta {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 11px; cursor: pointer;
  border: 1px solid color-mix(in srgb, var(--wa-primary) 26%, #fff); border-radius: 999px;
  background: color-mix(in srgb, var(--wa-primary) 8%, #fff); color: var(--wa-primary);
  padding: 8px 14px; font: inherit; font-size: 12.5px; font-weight: 800;
  transition: background .16s, transform .12s;
}
.wa-tl-card-cta .material-icons-round { font-size: 16px; }
.wa-tl-card-cta:active { transform: scale(.97); }
.wa-tl-card-cta:hover { background: color-mix(in srgb, var(--wa-primary) 14%, #fff); }

.wa-quick { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px; }
.wa-quick-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 8px; border-radius: 16px; text-decoration: none; text-align: center;
  background: var(--wa-card); border: 1px solid var(--wa-line); box-shadow: var(--wa-shadow);
  color: var(--wa-text); font-size: 11.5px; font-weight: 700; line-height: 1.25;
  transition: transform .12s, box-shadow .16s;
}
.wa-quick-item:active { transform: scale(.97); }
.wa-quick-ico {
  width: 42px; height: 42px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent)); color: #fff;
}
.wa-quick-ico .material-icons-round { font-size: 21px; }

/* ============================= tela: evento ============================= */

.wa-hero {
  border-radius: 20px; overflow: hidden; background: var(--wa-card);
  border: 1px solid var(--wa-line); box-shadow: var(--wa-shadow); margin-bottom: 16px;
}
.wa-hero-img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #e2e8f0; }
.wa-hero-body { padding: 16px; }
.wa-hero-title { margin: 0 0 8px; font-size: 20px; font-weight: 800; line-height: 1.3; letter-spacing: -.01em; }
.wa-hero-meta { display: flex; flex-wrap: wrap; gap: 7px; }

.wa-info-list { display: flex; flex-direction: column; gap: 2px; }
.wa-info-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f1f5f9; }
.wa-info-row:last-child { border-bottom: 0; }
.wa-info-ico {
  width: 38px; height: 38px; flex: 0 0 38px; border-radius: 12px;
  background: color-mix(in srgb, var(--wa-primary) 10%, #fff); color: var(--wa-primary);
  display: flex; align-items: center; justify-content: center;
}
.wa-info-ico .material-icons-round { font-size: 19px; }
.wa-info-txt { min-width: 0; }
.wa-info-lbl { font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--wa-muted); margin: 0 0 3px; }
.wa-info-val { font-size: 14px; font-weight: 600; color: var(--wa-text); line-height: 1.5; margin: 0; word-break: break-word; }

.wa-map { border-radius: var(--wa-radius); overflow: hidden; border: 1px solid var(--wa-line); box-shadow: var(--wa-shadow); background: #e2e8f0; }
.wa-map iframe { display: block; width: 100%; height: 220px; border: 0; }
.wa-map-foot { display: flex; }
.wa-map-foot a {
  flex: 1 1 0; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 13px; background: #fff; color: var(--wa-primary); font-size: 13.5px; font-weight: 700; text-decoration: none;
  border-top: 1px solid var(--wa-line);
}
.wa-map-foot .material-icons-round { font-size: 18px; }

.wa-rich { font-size: 14.5px; line-height: 1.7; color: var(--wa-soft); }
.wa-rich img { max-width: 100%; height: auto; border-radius: 12px; }
.wa-rich p:first-child { margin-top: 0; }
.wa-rich p:last-child { margin-bottom: 0; }
.wa-rich a { color: var(--wa-primary); }

/* ================== meu ingresso (bottom sheet global) ================== */

/* a sheet do ingresso é full-bleed: hero colorido + cartão sobreposto */
.wa-sheet.is-tk .wa-sheet-body {
  padding: 0 0 calc(22px + env(safe-area-inset-bottom, 0px));
  background: var(--wa-bg);
}
.wa-sheet.is-tk .wa-sheet-handle {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  z-index: 2; margin: 0; background: rgba(255, 255, 255, .55);
}
.wa-sheet.is-tk .wa-sheet-close { background: rgba(255, 255, 255, .2); color: #fff; backdrop-filter: blur(4px); }

.wa-tk-hero {
  background: linear-gradient(135deg, var(--wa-primary) 0%, color-mix(in srgb, var(--wa-primary) 45%, var(--wa-accent)) 100%);
  color: #fff; padding: 30px 22px 62px; text-align: center; position: relative;
}
.wa-tk-hero::after {
  content: ''; position: absolute; inset: auto 0 0; height: 120px; pointer-events: none;
  background: radial-gradient(120% 70% at 50% 100%, rgba(255, 255, 255, .16), transparent 70%);
}
.wa-tk-eyebrow {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px; border-radius: 999px;
  background: rgba(255, 255, 255, .18); font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
}
.wa-tk-eyebrow .material-icons-round { font-size: 15px; }
.wa-tk-ev { margin: 12px 0 0; font-size: 20px; font-weight: 800; line-height: 1.28; letter-spacing: -.01em; }
.wa-tk-when { margin: 7px 0 0; font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, .9); }

.wa-tk-card {
  position: relative; z-index: 1; margin: -44px 16px 0; background: var(--wa-card);
  border-radius: 22px; box-shadow: 0 14px 34px rgba(15, 23, 42, .16);
}
.wa-tk-person { display: flex; align-items: center; gap: 12px; padding: 16px 16px 0; }
.wa-tk-av {
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--wa-primary) 12%, #fff); color: var(--wa-primary);
  font-size: 15px; font-weight: 800;
}
.wa-tk-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wa-tk-person-txt { min-width: 0; }
.wa-tk-name { margin: 0; font-size: 16px; font-weight: 800; line-height: 1.3; word-break: break-word; }
.wa-tk-sub { margin: 3px 0 0; font-size: 12.5px; color: var(--wa-muted); line-height: 1.4; word-break: break-word; }

.wa-tk-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 12px 16px 0; }
.wa-tk-status {
  display: inline-flex; align-items: center; gap: 5px; padding: 6px 11px; border-radius: 999px;
  font-size: 11.5px; font-weight: 800; background: #fff7ed; color: #b45309;
}
.wa-tk-status .material-icons-round { font-size: 15px; }
.wa-tk-status.is-ok  { background: #ecfdf5; color: #047857; }
.wa-tk-status.is-bad { background: #fef2f2; color: #b91c1c; }
.wa-tk-status.is-in  { background: color-mix(in srgb, var(--wa-primary) 10%, #fff); color: var(--wa-primary); }

.wa-tk-cut { position: relative; height: 24px; margin-top: 14px; }
.wa-tk-cut::before,
.wa-tk-cut::after {
  content: ''; position: absolute; top: 50%; width: 22px; height: 22px; margin-top: -11px;
  border-radius: 50%; background: var(--wa-bg);
}
.wa-tk-cut::before { left: -11px; }
.wa-tk-cut::after { right: -11px; }
.wa-tk-dash { position: absolute; left: 16px; right: 16px; top: 50%; border-top: 2px dashed #e2e8f0; }

.wa-tk-qr { padding: 0 18px 20px; text-align: center; }
.wa-tk-qr-box {
  display: inline-block; padding: 12px; border-radius: 20px; background: #fff;
  border: 1px solid var(--wa-line); box-shadow: 0 6px 18px rgba(15, 23, 42, .07);
}
.wa-tk-qr-box img { display: block; width: 100%; max-width: 218px; height: auto; }
/* o código em texto do ingresso fica oculto — só o QR é apresentado */
#wa-tk-copy, .wa-tk-code { display: none !important; }
.wa-tk-qr-empty { padding: 18px 8px 4px; color: var(--wa-muted); }
.wa-tk-qr-empty .material-icons-round { font-size: 42px; color: var(--wa-line); }
.wa-tk-qr-empty p { margin: 8px 0 0; font-size: 13.5px; line-height: 1.55; }

.wa-tk-actions { display: flex; gap: 9px; margin: 16px 16px 0; }
.wa-tk-actions .wa-btn { flex: 1 1 0; padding: 13px 10px; font-size: 14px; }

.wa-tk-info {
  margin: 14px 16px 0; background: var(--wa-card); border-radius: 18px;
  border: 1px solid var(--wa-line); padding: 4px 14px;
}
.wa-tk-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f1f5f9; }
.wa-tk-row:last-child { border-bottom: 0; }
.wa-tk-row-ico {
  width: 34px; height: 34px; flex: 0 0 34px; border-radius: 11px;
  background: color-mix(in srgb, var(--wa-primary) 9%, #fff); color: var(--wa-primary);
  display: flex; align-items: center; justify-content: center;
}
.wa-tk-row-ico .material-icons-round { font-size: 18px; }
.wa-tk-row-txt { min-width: 0; }
.wa-tk-row-txt p { margin: 0; }
.wa-tk-row-txt .k { font-size: 10.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--wa-muted); margin-bottom: 3px; }
.wa-tk-row-txt .v { font-size: 13.5px; font-weight: 700; color: var(--wa-text); line-height: 1.45; word-break: break-word; }

.wa-tk-tip {
  display: flex; align-items: flex-start; gap: 9px; margin: 14px 16px 0;
  font-size: 12.5px; line-height: 1.55; color: var(--wa-soft);
}
.wa-tk-tip .material-icons-round { font-size: 18px; color: var(--wa-primary); flex: 0 0 auto; }

/* ============ detalhes do evento (bottom sheet "Ver detalhes") ========== */

.wa-sheet.is-ev .wa-sheet-body {
  padding: 0 0 calc(22px + env(safe-area-inset-bottom, 0px));
  background: var(--wa-bg);
}
.wa-sheet.is-ev .wa-sheet-handle {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  z-index: 2; margin: 0; background: rgba(255, 255, 255, .6);
}
.wa-sheet.is-ev .wa-sheet-close { background: rgba(15, 23, 42, .34); color: #fff; backdrop-filter: blur(4px); }

.wa-ev-cover { position: relative; background: #e2e8f0; }
.wa-ev-cover-img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.wa-ev-cover-fb {
  display: flex; align-items: center; justify-content: center; height: 132px; color: #fff;
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent));
}
.wa-ev-cover-fb .material-icons-round { font-size: 44px; opacity: .92; }
.wa-ev-cover::after {
  content: ''; position: absolute; inset: auto 0 0; height: 62%; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, .55));
}
.wa-ev-count {
  position: absolute; left: 14px; bottom: 12px; z-index: 1;
  display: inline-flex; align-items: center; padding: 6px 13px; border-radius: 999px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .02em;
  background: rgba(255, 255, 255, .94); color: var(--wa-primary);
  box-shadow: 0 4px 14px rgba(15, 23, 42, .18);
}
.wa-ev-count.is-live { background: #ecfdf5; color: #047857; }
.wa-ev-count.is-past { background: #f1f5f9; color: var(--wa-soft); }

.wa-ev-head { padding: 16px 18px 0; }
.wa-ev-eyebrow {
  display: inline-block; margin-bottom: 8px; padding: 5px 11px; border-radius: 999px;
  background: color-mix(in srgb, var(--wa-primary) 11%, #fff); color: var(--wa-primary);
  font-size: 10.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
}
.wa-ev-title { margin: 0; font-size: 20px; font-weight: 800; line-height: 1.28; letter-spacing: -.01em; }
.wa-ev-when { margin: 6px 0 0; font-size: 13px; color: var(--wa-muted); text-transform: capitalize; }

.wa-ev-info {
  margin: 14px 16px 0; background: var(--wa-card); border-radius: 18px;
  border: 1px solid var(--wa-line); padding: 4px 14px;
}
.wa-ev-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f1f5f9; }
.wa-ev-row:last-child { border-bottom: 0; }
.wa-ev-row-ico {
  width: 34px; height: 34px; flex: 0 0 34px; border-radius: 11px;
  background: color-mix(in srgb, var(--wa-primary) 9%, #fff); color: var(--wa-primary);
  display: flex; align-items: center; justify-content: center;
}
.wa-ev-row-ico .material-icons-round { font-size: 18px; }
.wa-ev-row-txt { min-width: 0; }
.wa-ev-row-txt p { margin: 0; }
.wa-ev-row-txt .k { font-size: 10.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--wa-muted); margin-bottom: 3px; }
.wa-ev-row-txt .v { font-size: 13.5px; font-weight: 700; color: var(--wa-text); line-height: 1.45; word-break: break-word; }

.wa-ev-map {
  margin: 14px 16px 0; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--wa-line); background: #fff; line-height: 0;
}
.wa-ev-map iframe { display: block; width: 100%; height: 170px; border: 0; }

.wa-ev-desc {
  margin: 14px 16px 0; background: var(--wa-card); border-radius: 18px;
  border: 1px solid var(--wa-line); padding: 15px 16px;
  font-size: 14px; line-height: 1.7; color: #334155;
}
.wa-ev-desc p:first-child { margin-top: 0; }
.wa-ev-desc p:last-child { margin-bottom: 0; }
.wa-ev-desc img { border-radius: 12px; height: auto; }

.wa-ev-actions { display: flex; flex-direction: column; gap: 9px; margin: 16px 16px 0; }
.wa-ev-actions .wa-btn { width: 100%; }

/* ============================== em breve =============================== */

.wa-soon { text-align: center; padding: 48px 22px; }
.wa-soon-ico {
  width: 78px; height: 78px; border-radius: 24px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent)); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.wa-soon-ico .material-icons-round { font-size: 36px; }
.wa-soon h2 { margin: 0 0 8px; font-size: 19px; font-weight: 800; }
.wa-soon p { margin: 0; font-size: 14px; color: var(--wa-soft); line-height: 1.6; }

/* ======================================================================
   FASE 2 — utilitários compartilhados
   ====================================================================== */

.wa-noscroll { overflow: hidden; touch-action: none; }

.wa-spin {
  display: inline-block; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, .22); border-top-color: var(--wa-primary);
  animation: waSpin .7s linear infinite; vertical-align: -3px;
}
.wa-btn-primary .wa-spin { border-color: rgba(255, 255, 255, .35); border-top-color: #fff; }
@keyframes waSpin { to { transform: rotate(360deg); } }

.wa-card-title {
  display: flex; align-items: center; gap: 7px; margin: 0 0 14px;
  font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--wa-soft);
}
.wa-card-title .material-icons-round { font-size: 17px; color: var(--wa-primary); }

.wa-chip.is-alert { background: #eef2ff; color: #4338ca; }

/* badge de notificações (header + navbar) */
.wa-badge {
  position: absolute; top: 4px; right: 4px; min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 9px; background: var(--wa-bad); color: #fff; font-size: 10px; font-weight: 800;
  line-height: 17px; text-align: center; box-shadow: 0 0 0 2px var(--wa-primary);
}
.wa-header-icon { position: relative; }
.wa-nav-ico { position: relative; }
.wa-badge-nav { top: -6px; right: -10px; box-shadow: 0 0 0 2px #fff; }
.wa-nav-item.is-active .wa-badge-nav { box-shadow: 0 0 0 2px color-mix(in srgb, var(--wa-primary) 13%, #fff); }

/* busca em pílula */
.wa-search {
  position: relative; display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--wa-line); border-radius: 999px;
  padding: 0 12px; height: 46px; box-shadow: var(--wa-shadow);
}
.wa-search > .material-icons-round { font-size: 20px; color: var(--wa-muted); flex: 0 0 auto; }
.wa-search input {
  flex: 1 1 auto; min-width: 0; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: 15px; color: var(--wa-text);
}
.wa-search input::placeholder { color: var(--wa-muted); }
.wa-search-clear {
  flex: 0 0 auto; width: 28px; height: 28px; border: 0; border-radius: 50%;
  background: #f1f5f9; color: var(--wa-soft); display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.wa-search-clear .material-icons-round { font-size: 17px; }

/* bottom sheet */
.wa-sheet-bg {
  position: fixed; inset: 0; z-index: 1200; background: rgba(15, 23, 42, .5);
  backdrop-filter: blur(2px); display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; transition: opacity .22s ease;
}
/* o [hidden] do HTML precisa vencer o display:flex acima, senão o overlay
   fica invisível (opacity:0) mas cobrindo a tela e bloqueando os cliques */
.wa-sheet-bg[hidden] { display: none !important; }
/* fechado (ou saindo) nunca intercepta toque */
.wa-sheet-bg:not(.is-open) { pointer-events: none; }
.wa-sheet-bg.is-open { opacity: 1; pointer-events: auto; }
.wa-sheet {
  position: relative; width: 100%; max-width: 480px; max-height: 92vh; overflow: hidden;
  background: #fff; border-radius: 22px 22px 0 0; box-shadow: 0 -8px 30px rgba(15, 23, 42, .22);
  transform: translateY(100%); transition: transform .26s cubic-bezier(.2, .9, .25, 1);
  display: flex; flex-direction: column;
}
.wa-sheet-bg.is-open .wa-sheet { transform: translateY(0); }
.wa-sheet-handle { flex: 0 0 auto; width: 42px; height: 4px; border-radius: 3px; background: #cbd5e1; margin: 10px auto 0; }
.wa-sheet-close {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 34px; height: 34px;
  border: 0; border-radius: 50%; background: #f1f5f9; color: var(--wa-soft);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.wa-sheet-close .material-icons-round { font-size: 20px; }
.wa-sheet-body {
  flex: 1 1 auto; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 16px 18px calc(24px + env(safe-area-inset-bottom, 0px));
}
.wa-sheet-loading { padding: 46px 0; text-align: center; }
.wa-sheet-loading .wa-spin { width: 26px; height: 26px; border-width: 3px; }

/* ======================================================================
   FASE 2 — Programação
   ====================================================================== */

/* barra de ferramentas: busca à esquerda, "Minha agenda" à direita */
.wa-prog-tools { display: flex; align-items: center; gap: 10px; }
.wa-prog-tools .wa-search { flex: 1 1 auto; min-width: 0; }

.wa-prog-fav-toggle {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px;
  height: 46px; padding: 0 15px; border: 0; border-radius: 999px; cursor: pointer;
  font: inherit; font-size: 13.5px; font-weight: 700; color: #fff; white-space: nowrap;
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent));
  box-shadow: 0 8px 18px color-mix(in srgb, var(--wa-primary) 26%, transparent);
  transition: transform .14s, box-shadow .18s;
}
.wa-prog-fav-toggle:active { transform: scale(.97); }
.wa-prog-fav-toggle .material-icons-round { font-size: 18px; }
.wa-prog-fav-count {
  min-width: 21px; height: 21px; padding: 0 6px; border-radius: 999px;
  background: rgba(255, 255, 255, .26); color: #fff;
  font-size: 11.5px; font-weight: 800; line-height: 21px; text-align: center;
}
.wa-prog-fav-x { display: none; }
/* ativo: anel em volta + "×" indicando que basta tocar para sair do filtro */
.wa-prog-fav-toggle.is-on {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--wa-primary) 20%, transparent),
              0 8px 18px color-mix(in srgb, var(--wa-primary) 26%, transparent);
}
.wa-prog-fav-toggle.is-on .wa-prog-fav-count { background: #fff; color: var(--wa-primary); }
.wa-prog-fav-toggle.is-on .wa-prog-fav-x { display: inline-block; font-size: 17px; opacity: .85; margin-right: -3px; }
@media (max-width: 400px) { .wa-prog-fav-txt { display: none; } }

.wa-prog-days {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  margin: 16px -14px 0; padding: 2px 14px 4px; scroll-snap-type: x proximity;
}
.wa-prog-days::-webkit-scrollbar { display: none; }
.wa-prog-day {
  flex: 0 0 auto; scroll-snap-align: center; min-width: 56px; padding: 9px 12px;
  border: 1px solid var(--wa-line); border-radius: 14px; background: #fff; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 1px; font: inherit;
}
.wa-prog-day b { font-size: 17px; font-weight: 800; color: var(--wa-text); line-height: 1.1; }
.wa-prog-day span { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--wa-muted); }
.wa-prog-day.is-active {
  background: linear-gradient(160deg, var(--wa-primary), color-mix(in srgb, var(--wa-primary) 62%, var(--wa-accent)));
  border-color: transparent; box-shadow: 0 4px 14px color-mix(in srgb, var(--wa-primary) 30%, transparent);
}
.wa-prog-day.is-active b, .wa-prog-day.is-active span { color: #fff; }

.wa-prog-daylabel {
  margin: 14px 2px 12px; font-size: 12.5px; font-weight: 700; color: var(--wa-soft);
  text-transform: capitalize;
}

.wa-prog-list { display: none; flex-direction: column; gap: 11px; }
.wa-prog-list.is-active { display: flex; }

/* filtrando (busca ou agenda): as abas de dia perdem o sentido — cada grupo
   de resultados ganha o próprio cabeçalho com a data. */
.wa-prog.is-filtering .wa-prog-days { display: none; }
.wa-prog.is-filtering .wa-prog-list.is-active::before {
  content: attr(data-label);
  margin: 18px 2px 2px; font-size: 11.5px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; color: var(--wa-muted);
}

.wa-prog-empty { text-align: center; padding: 46px 18px 26px; color: var(--wa-muted); }
.wa-prog-empty .material-icons-round { font-size: 40px; color: #cbd5e1; display: block; margin: 0 auto 10px; }
.wa-prog-empty p { margin: 0 auto; max-width: 264px; font-size: 13.5px; line-height: 1.5; }

.wa-prog-item {
  display: grid; grid-template-columns: 58px 1fr; gap: 12px; cursor: pointer;
  background: #fff; border: 1px solid var(--wa-line); border-radius: var(--wa-radius);
  padding: 13px 14px; box-shadow: var(--wa-shadow); transition: transform .16s, border-color .16s;
}
.wa-prog-item:active { transform: scale(.99); border-color: color-mix(in srgb, var(--wa-primary) 35%, #fff); }
.wa-prog-time {
  display: flex; flex-direction: column; gap: 2px; padding-right: 11px;
  border-right: 2px solid color-mix(in srgb, var(--wa-primary) 16%, #fff);
}
.wa-prog-time b { font-size: 15px; font-weight: 800; color: var(--wa-primary); line-height: 1.15; }
.wa-prog-time span { font-size: 11.5px; color: var(--wa-muted); font-weight: 600; }
.wa-prog-body { min-width: 0; }
.wa-prog-head { display: flex; align-items: flex-start; gap: 8px; }
.wa-prog-name {
  flex: 1 1 auto; min-width: 0; margin: 0; font-size: 15px; font-weight: 700;
  line-height: 1.4; color: var(--wa-text); overflow-wrap: anywhere;
}
.wa-prog-fav-btn {
  flex: 0 0 auto; width: 32px; height: 32px; margin: -4px -5px 0 0; border: 0; border-radius: 50%;
  background: transparent; color: var(--wa-muted); display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.wa-prog-fav-btn .material-icons-round { font-size: 21px; }
.wa-prog-fav-btn.is-on { color: var(--wa-primary); }

.wa-prog-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.wa-prog-room, .wa-prog-group, .wa-prog-live, .wa-prog-sub, .wa-prog-tag, .wa-prog-subs {
  display: inline-flex; align-items: center; gap: 4px; max-width: 100%;
  border-radius: 999px; padding: 4px 9px; font-size: 11.5px; font-weight: 700; overflow-wrap: anywhere;
}
.wa-prog-room .material-icons-round,
.wa-prog-live .material-icons-round,
.wa-prog-subs .material-icons-round,
.wa-prog-sub .material-icons-round { font-size: 13px; }
.wa-prog-group { background: #f1f5f9; color: #475569; }
.wa-prog-live { background: #fef2f2; color: #b91c1c; }
.wa-prog-sub { background: #ecfdf5; color: #047857; }
.wa-prog-tag { background: #eef2ff; color: #4338ca; }
.wa-prog-subs { background: #f5f3ff; color: #6d28d9; }

.wa-prog-speakers { display: flex; align-items: center; gap: 7px; margin-top: 10px; min-width: 0; }
.wa-prog-sp {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; overflow: hidden;
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent)); color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 2px #fff;
}
.wa-prog-sp:not(:first-child) { margin-left: -12px; }
.wa-prog-sp img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wa-prog-sp i { font-style: normal; font-size: 10px; font-weight: 800; }
.wa-prog-speakers em {
  min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-style: normal; font-size: 12.5px; color: var(--wa-soft); margin-left: 3px;
}

.wa-prog-noresult { text-align: center; padding: 30px 16px; color: var(--wa-muted); }
.wa-prog-noresult .material-icons-round { font-size: 38px; color: #cbd5e1; display: block; margin: 0 auto 8px; }
.wa-prog-noresult p { margin: 0; font-size: 13.5px; }

/* detalhe da atividade (sheet) */
.wa-act-banner { display: block; width: 100%; border-radius: 14px; margin-bottom: 14px; }
.wa-act-when { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--wa-primary); }
.wa-act-when .material-icons-round { font-size: 16px; }
.wa-act-title-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 7px; }
.wa-act-title { flex: 1 1 auto; min-width: 0; margin: 0; font-size: 19px; font-weight: 800; line-height: 1.35; overflow-wrap: anywhere; }
.wa-act-fav {
  flex: 0 0 auto; width: 38px; height: 38px; border: 1px solid var(--wa-line); border-radius: 50%;
  background: #fff; color: var(--wa-soft); display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.wa-act-fav.is-on { border-color: color-mix(in srgb, var(--wa-primary) 40%, #fff); background: color-mix(in srgb, var(--wa-primary) 10%, #fff); color: var(--wa-primary); }
.wa-act-head .wa-prog-tags { margin-top: 11px; }
.wa-act-desc { margin-top: 15px; font-size: 14.5px; line-height: 1.7; color: #334155; overflow-wrap: anywhere; }
.wa-act-desc p { margin: 0 0 10px; }
.wa-act-desc img { border-radius: 10px; }
.wa-act-sec { margin: 20px 0 10px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--wa-muted); }
.wa-act-sps { display: flex; flex-direction: column; gap: 10px; }
.wa-act-sp { display: flex; align-items: center; gap: 11px; }
.wa-act-sp img, .wa-act-sp-ini {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800;
}
.wa-act-sp-txt { min-width: 0; }
.wa-act-sp-txt b { display: block; font-size: 14.5px; font-weight: 700; line-height: 1.35; }
.wa-act-sp-txt span { display: block; font-size: 12.5px; color: var(--wa-muted); margin-top: 2px; }
.wa-act-sptxt { margin: 0; font-size: 14px; color: #334155; line-height: 1.6; }

/* subatividades da sessão (module Programação Científica) */
.wa-act-subs { display: flex; flex-direction: column; gap: 8px; }
.wa-act-sub {
  display: flex; gap: 11px; padding: 11px 12px; border-radius: 12px;
  background: #f8fafc; border: 1px solid var(--wa-line); border-left: 3px solid var(--wa-primary);
}
.wa-act-sub-time {
  flex: 0 0 52px; font-size: 13px; font-weight: 800; color: var(--wa-primary); line-height: 1.3;
}
.wa-act-sub-time i { display: block; font-style: normal; font-size: 11.5px; font-weight: 600; color: var(--wa-muted); }
.wa-act-sub-body { min-width: 0; }
.wa-act-sub-body b { display: block; font-size: 14px; font-weight: 700; line-height: 1.4; overflow-wrap: anywhere; }
.wa-act-sub-body span { display: block; font-size: 12.5px; color: var(--wa-muted); margin-top: 3px; overflow-wrap: anywhere; }

.wa-act-sponsor {
  display: block; padding: 12px; border: 1px solid var(--wa-line); border-radius: 12px;
  background: #fff; text-align: center;
}
.wa-act-sponsor img { max-width: 100%; max-height: 90px; object-fit: contain; }

/* ======================================================================
   FASE 2 — Participantes / conexões
   ====================================================================== */

.wa-dir-tabs {
  display: flex; gap: 6px; background: #fff; border: 1px solid var(--wa-line);
  border-radius: 999px; padding: 5px; box-shadow: var(--wa-shadow); margin-bottom: 16px;
}
.wa-dir-tab {
  flex: 1 1 0; min-width: 0; display: flex; align-items: center; justify-content: center; gap: 5px;
  border: 0; background: transparent; border-radius: 999px; padding: 9px 6px; cursor: pointer;
  font: inherit; font-size: 12.5px; font-weight: 700; color: var(--wa-soft); white-space: nowrap;
}
.wa-dir-tab .material-icons-round { font-size: 17px; }
.wa-dir-tab em {
  font-style: normal; font-size: 10.5px; font-weight: 800; min-width: 17px; height: 17px; line-height: 17px;
  border-radius: 9px; background: #e2e8f0; color: #475569; padding: 0 4px; text-align: center;
}
.wa-dir-tab em.is-alert { background: var(--wa-bad); color: #fff; }
.wa-dir-tab.is-active {
  background: linear-gradient(160deg, var(--wa-primary), color-mix(in srgb, var(--wa-primary) 62%, var(--wa-accent)));
  color: #fff; box-shadow: 0 3px 12px color-mix(in srgb, var(--wa-primary) 30%, transparent);
}
.wa-dir-tab.is-active em { background: rgba(255, 255, 255, .26); color: #fff; }

.wa-dir-pane { display: none; }
.wa-dir-pane.is-active { display: block; }
.wa-dir-count { margin: 14px 2px 10px; font-size: 12.5px; font-weight: 700; color: var(--wa-muted); }
.wa-dir-list { display: flex; flex-direction: column; gap: 10px; }
.wa-dir-pane .wa-section-title { margin-top: 20px; }

.wa-person {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  background: #fff; border: 1px solid var(--wa-line); border-radius: var(--wa-radius);
  padding: 12px 13px; box-shadow: var(--wa-shadow); transition: transform .16s, border-color .16s;
}
.wa-person:active { transform: scale(.99); border-color: color-mix(in srgb, var(--wa-primary) 35%, #fff); }
.wa-person.is-invite { align-items: flex-start; background: linear-gradient(180deg, #f5f3ff 0%, #fff 62%); }
.wa-person-av {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; overflow: hidden;
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent)); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.wa-person-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wa-person-av i { font-style: normal; font-size: 15px; font-weight: 800; }
.wa-person-txt { flex: 1 1 auto; min-width: 0; }
.wa-person-txt > b { display: block; font-size: 14.5px; font-weight: 700; line-height: 1.35; overflow-wrap: anywhere; }
.wa-person-txt > span { display: block; font-size: 12.5px; color: var(--wa-muted); margin-top: 2px; overflow-wrap: anywhere; }
.wa-person-msg {
  display: block; margin: 8px 0 0; padding: 8px 10px; border-radius: 10px; quotes: none;
  background: #f8fafc; border-left: 3px solid color-mix(in srgb, var(--wa-primary) 45%, #fff);
  font-size: 12.5px; font-style: italic; color: #475569; line-height: 1.5;
}
.wa-person-contacts { display: flex; flex-direction: column; gap: 4px; margin-top: 7px; }
.wa-person-contacts a {
  display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600;
  color: var(--wa-primary); text-decoration: none; overflow-wrap: anywhere;
}
.wa-person-contacts .material-icons-round { font-size: 14px; }
.wa-person-acts { display: flex; gap: 8px; margin-top: 11px; }
.wa-mini-btn {
  display: inline-flex; align-items: center; gap: 5px; border: 1px solid var(--wa-line);
  background: #fff; color: var(--wa-soft); border-radius: 999px; padding: 8px 14px;
  font: inherit; font-size: 13px; font-weight: 700; cursor: pointer;
}
.wa-mini-btn .material-icons-round { font-size: 16px; }
.wa-mini-btn.is-ok { background: var(--wa-primary); border-color: transparent; color: #fff; }
.wa-mini-btn[disabled] { opacity: .55; }

.wa-person-add, .wa-person-ok, .wa-person-pend {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.wa-person-add {
  border: 1px solid color-mix(in srgb, var(--wa-primary) 32%, #fff); cursor: pointer;
  background: color-mix(in srgb, var(--wa-primary) 9%, #fff); color: var(--wa-primary);
}
.wa-person-add.is-in { background: var(--wa-primary); border-color: transparent; color: #fff; }
.wa-person-add[disabled] { opacity: .55; }
.wa-person-add .material-icons-round { font-size: 19px; }
.wa-person-ok { background: #ecfdf5; color: #047857; }
.wa-person-pend { background: #fffbeb; color: #b45309; }
.wa-person-ok .material-icons-round, .wa-person-pend .material-icons-round { font-size: 19px; }

/* perfil público (sheet) */
.wa-pp { text-align: center; padding-top: 6px; }
.wa-pp-av {
  display: flex; align-items: center; justify-content: center; width: 92px; height: 92px;
  margin: 0 auto 14px; border-radius: 50%; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent));
  box-shadow: 0 6px 20px color-mix(in srgb, var(--wa-primary) 26%, transparent);
}
.wa-pp-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wa-pp-av i { font-style: normal; font-size: 30px; font-weight: 800; }
.wa-pp-name { margin: 0; font-size: 20px; font-weight: 800; line-height: 1.3; overflow-wrap: anywhere; }
.wa-pp-sub { margin: 6px 0 0; font-size: 13.5px; color: var(--wa-soft); overflow-wrap: anywhere; }
.wa-pp-bio {
  margin: 14px 0 0; padding: 13px 15px; border-radius: 14px; background: #f8fafc;
  font-size: 14px; line-height: 1.65; color: #334155; text-align: left; overflow-wrap: anywhere;
}
.wa-pp-links { display: flex; justify-content: center; gap: 9px; margin-top: 15px; }
.wa-pp-link {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--wa-primary) 9%, #fff); color: var(--wa-primary); text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--wa-primary) 22%, #fff);
}
.wa-pp-link .material-icons-round { font-size: 19px; }
.wa-pp-contacts { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; }
.wa-pp-contacts a {
  display: flex; align-items: center; gap: 9px; padding: 12px 14px; border-radius: 13px;
  background: #f8fafc; border: 1px solid var(--wa-line); color: var(--wa-text);
  text-decoration: none; font-size: 14px; font-weight: 600; overflow-wrap: anywhere;
}
.wa-pp-contacts .material-icons-round { font-size: 18px; color: var(--wa-primary); flex: 0 0 auto; }
.wa-pp-nocontact { margin: 0; font-size: 13px; color: var(--wa-muted); }
.wa-pp-acts { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; }
.wa-pp-hint { margin: 12px 0 0; font-size: 12.5px; color: var(--wa-muted); line-height: 1.55; }

/* ======================================================================
   FASE 2 — Notificações
   ====================================================================== */

.wa-notif { display: flex; flex-direction: column; gap: 10px; }
.wa-notif-head { margin: 0 0 2px; }
.wa-notif-item {
  position: relative; display: flex; gap: 12px; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--wa-line); border-radius: var(--wa-radius);
  padding: 13px 14px; box-shadow: var(--wa-shadow); transition: border-color .18s, background .3s;
}
.wa-notif-item.is-unread {
  background: linear-gradient(180deg, #f5f3ff 0%, #fff 70%);
  border-color: color-mix(in srgb, var(--wa-primary) 26%, #fff);
}
.wa-notif-ico {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--wa-primary) 11%, #fff); color: var(--wa-primary);
}
.wa-notif-ico .material-icons-round { font-size: 20px; }
.wa-notif-ico.is-alert { background: #fef2f2; color: #b91c1c; }
.wa-notif-ico.is-warning,
.wa-notif-ico.is-alerta { background: #fffbeb; color: #b45309; }
.wa-notif-ico.is-schedule,
.wa-notif-ico.is-sucesso { background: #ecfdf5; color: #047857; }
.wa-notif-ico.is-connection { background: #eef2ff; color: #4338ca; }
.wa-notif-txt { flex: 1 1 auto; min-width: 0; }
.wa-notif-top { display: flex; align-items: baseline; gap: 8px; }
.wa-notif-top b { flex: 1 1 auto; min-width: 0; font-size: 14.5px; font-weight: 700; line-height: 1.4; overflow-wrap: anywhere; }
.wa-notif-top em { flex: 0 0 auto; font-style: normal; font-size: 11.5px; color: var(--wa-muted); }
.wa-notif-body {
  margin-top: 5px; font-size: 13.5px; line-height: 1.6; color: #475569; overflow-wrap: anywhere;
}
.wa-notif-body p { margin: 0 0 7px; }
.wa-notif-body p:last-child { margin-bottom: 0; }
.wa-notif-cta {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 9px;
  font-size: 12.5px; font-weight: 800; color: var(--wa-primary);
}
.wa-notif-cta .material-icons-round { font-size: 15px; }
.wa-notif-dot {
  position: absolute; top: 13px; right: 13px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--wa-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--wa-primary) 18%, #fff);
}

/* ======================================================================
   FASE 2 — Perfil
   ====================================================================== */

.wa-prof { display: block; }
.wa-prof-hero { text-align: center; padding-top: 22px; }
.wa-prof-avwrap { position: relative; width: 104px; margin: 0 auto 14px; }
.wa-prof-av {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 104px; height: 104px; border-radius: 50%; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent));
  box-shadow: 0 8px 22px color-mix(in srgb, var(--wa-primary) 26%, transparent);
}
.wa-prof-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wa-prof-av i { font-style: normal; font-size: 34px; font-weight: 800; }
.wa-prof-av-load {
  position: absolute; inset: 0; background: rgba(15, 23, 42, .48);
  display: flex; align-items: center; justify-content: center;
}
.wa-prof-av-load .wa-spin { border-color: rgba(255, 255, 255, .35); border-top-color: #fff; width: 24px; height: 24px; border-width: 3px; }
.wa-prof-av-btn {
  position: absolute; right: -2px; bottom: -2px; width: 36px; height: 36px; border-radius: 50%;
  border: 3px solid #fff; background: var(--wa-primary); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(15, 23, 42, .2);
}
.wa-prof-av-btn .material-icons-round { font-size: 18px; }
.wa-prof-name { margin: 0; font-size: 20px; font-weight: 800; line-height: 1.3; overflow-wrap: anywhere; }
.wa-prof-chips { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 10px; }
.wa-prof-hint { margin: 12px 0 0; font-size: 12.5px; color: var(--wa-muted); line-height: 1.55; }

.wa-field { margin-bottom: 14px; }
.wa-field:last-child { margin-bottom: 0; }
.wa-field label { display: block; font-size: 12.5px; font-weight: 700; color: #475569; margin-bottom: 6px; }
.wa-field input, .wa-field textarea {
  width: 100%; border: 1.5px solid var(--wa-line); border-radius: 12px; background: #f8fafc;
  padding: 12px 13px; font: inherit; font-size: 15px; color: var(--wa-text); outline: 0;
  transition: border-color .16s, box-shadow .16s, background .16s;
}
.wa-field textarea { resize: vertical; line-height: 1.6; font-size: 14.5px; }
.wa-field input:focus, .wa-field textarea:focus {
  border-color: var(--wa-primary); background: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--wa-primary) 12%, transparent);
}
.wa-field input[readonly] { background: #f1f5f9; color: var(--wa-muted); }
.wa-field-note { display: block; margin-top: 6px; font-size: 11.5px; color: var(--wa-muted); line-height: 1.5; }
.wa-counter { display: block; margin-top: 5px; text-align: right; font-size: 11.5px; color: var(--wa-muted); }
.wa-counter.is-warn { color: var(--wa-warn); font-weight: 700; }

.wa-switch { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; padding: 10px 0; }
.wa-switch + .wa-switch { border-top: 1px solid #f1f5f9; }
.wa-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.wa-switch-ui {
  flex: 0 0 auto; position: relative; width: 44px; height: 26px; border-radius: 999px;
  background: #cbd5e1; transition: background .2s; margin-top: 2px;
}
.wa-switch-ui::after {
  content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 3px rgba(15, 23, 42, .25); transition: transform .2s;
}
.wa-switch input:checked + .wa-switch-ui { background: var(--wa-primary); }
.wa-switch input:checked + .wa-switch-ui::after { transform: translateX(18px); }
.wa-switch-txt { min-width: 0; }
.wa-switch-txt b { display: block; font-size: 14px; font-weight: 700; line-height: 1.4; }
.wa-switch-txt em { display: block; font-style: normal; font-size: 12.5px; color: var(--wa-muted); margin-top: 3px; line-height: 1.5; }

/* -------------------------- cartão do facial --------------------------- */

.wa-facial {
  position: relative; overflow: hidden;
  border-color: color-mix(in srgb, var(--wa-primary) 20%, var(--wa-line));
  background:
    radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--wa-accent) 13%, transparent) 0%, transparent 62%),
    radial-gradient(110% 90% at 0% 0%, color-mix(in srgb, var(--wa-primary) 12%, transparent) 0%, transparent 58%),
    #fff;
}
.wa-facial.is-done {
  border-color: color-mix(in srgb, var(--wa-ok) 34%, var(--wa-line));
  background:
    radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--wa-ok) 13%, transparent) 0%, transparent 62%),
    #fff;
}

.wa-facial-hero { display: flex; align-items: center; gap: 14px; }
.wa-facial-txt { min-width: 0; }
.wa-facial-eyebrow {
  display: block; font-size: 10.5px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--wa-primary);
}
.wa-facial.is-done .wa-facial-eyebrow { color: #047857; }
.wa-facial-txt h3 { margin: 5px 0 0; font-size: 17px; font-weight: 800; line-height: 1.25; }
.wa-facial-txt p { margin: 6px 0 0; font-size: 12.5px; line-height: 1.55; color: var(--wa-soft); }

/* moldura de leitura (estado "ainda não cadastrou") */
.wa-facial-scan {
  position: relative; flex: 0 0 auto; width: 76px; height: 76px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: linear-gradient(140deg, var(--wa-primary), var(--wa-accent));
  box-shadow: 0 10px 22px color-mix(in srgb, var(--wa-primary) 30%, transparent);
}
.wa-facial-scan .material-icons-round { font-size: 34px; color: #fff; }
/* 4 cantos em L, desenhados com 8 faixas de fundo */
.wa-facial-scan::before {
  content: ''; position: absolute; inset: 9px; opacity: .72;
  background-image:
    linear-gradient(#fff, #fff), linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff), linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff), linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: left top, left top, right top, right top,
                       left bottom, left bottom, right bottom, right bottom;
  background-size: 13px 2px, 2px 13px, 13px 2px, 2px 13px,
                   13px 2px, 2px 13px, 13px 2px, 2px 13px;
}
.wa-facial-scan::after {
  content: ''; position: absolute; left: 14%; right: 14%; top: 20%; height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  box-shadow: 0 0 12px rgba(255, 255, 255, .85);
  animation: waFacialScan 2.8s ease-in-out infinite;
}
@keyframes waFacialScan {
  0%, 100% { top: 20%; opacity: .3; }
  50%      { top: 76%; opacity: 1; }
}

/* foto já cadastrada */
.wa-facial-shot {
  position: relative; flex: 0 0 auto; width: 76px; height: 76px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, #34d399, var(--wa-ok)); color: #fff;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--wa-ok) 28%, transparent);
}
.wa-facial-shot img { width: 100%; height: 100%; border-radius: 20px; object-fit: cover; display: block; }
.wa-facial-shot-ico { font-size: 34px; }
.wa-facial-check {
  position: absolute; right: -5px; bottom: -5px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--wa-ok); color: #fff; font-size: 16px; border: 2.5px solid #fff;
  display: flex; align-items: center; justify-content: center;
}

.wa-facial-perks {
  list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 0; padding: 0;
}
.wa-facial-perks li {
  display: inline-flex; align-items: center; gap: 5px; padding: 6px 11px; border-radius: 9999px;
  font-size: 11.5px; font-weight: 700; color: var(--wa-soft);
  background: #fff; border: 1px solid var(--wa-line);
}
.wa-facial-perks .material-icons-round { font-size: 14px; color: var(--wa-primary); }

.wa-facial-cta {
  display: flex; align-items: center; gap: 11px; margin-top: 14px;
  padding: 12px 14px; border-radius: 15px; text-decoration: none;
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent)); color: #fff;
  font-size: 14.5px; font-weight: 800;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--wa-primary) 30%, transparent);
  transition: transform .14s, box-shadow .18s;
}
.wa-facial-cta:active { transform: scale(.985); box-shadow: 0 5px 14px color-mix(in srgb, var(--wa-primary) 26%, transparent); }
.wa-facial-cta > span { flex: 1 1 auto; }
.wa-facial-cta > .material-icons-round:first-child {
  flex: 0 0 auto; width: 32px; height: 32px; border-radius: 10px; font-size: 18px;
  background: rgba(255, 255, 255, .2);
  display: flex; align-items: center; justify-content: center;
}
.wa-facial-cta-go { font-size: 18px; opacity: .85; transition: transform .18s; }
.wa-facial-cta:hover .wa-facial-cta-go { transform: translateX(3px); }

.wa-facial-redo {
  display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 14px;
  padding: 11px 14px; border-radius: 13px; text-decoration: none;
  font-size: 13.5px; font-weight: 700; color: #047857;
  background: color-mix(in srgb, var(--wa-ok) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--wa-ok) 26%, #fff);
}
.wa-facial-redo .material-icons-round { font-size: 17px; }
.wa-facial-redo:active { transform: scale(.99); }

.wa-prof-save { margin-top: 18px; }

/* ======================================================================
   FASE 3 — Social (feed)
   ====================================================================== */

.wa-feed { display: flex; flex-direction: column; gap: 14px; }

/* atalho para os reels */
.wa-feed-reels {
  display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--wa-primary) 92%, #000) 0%, var(--wa-primary) 55%, #ec4899 100%);
  border-radius: var(--wa-radius); padding: 13px 14px; color: #fff;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--wa-primary) 26%, transparent);
}
.wa-feed-reels-ico {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 13px;
  background: rgba(255, 255, 255, .2); display: flex; align-items: center; justify-content: center;
}
.wa-feed-reels-ico .material-icons-round { font-size: 24px; }
.wa-feed-reels-txt { flex: 1 1 auto; min-width: 0; }
.wa-feed-reels-txt b { display: block; font-size: 14.5px; font-weight: 800; }
.wa-feed-reels-txt em { display: block; font-style: normal; font-size: 12px; opacity: .85; margin-top: 2px; }
.wa-feed-reels-go { opacity: .8; }

/* ------ carrossel de reels: uma "bolinha" por participante que postou ----- */

.wa-rings {
  background: var(--wa-card); border: 1px solid var(--wa-line);
  border-radius: var(--wa-radius); box-shadow: var(--wa-shadow);
  padding: 12px 0 11px;
}
.wa-rings-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 0 14px 10px;
}
.wa-rings-head b { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 800; }
.wa-rings-head b .material-icons-round { font-size: 18px; color: var(--wa-primary); }
.wa-rings-head a { font-size: 12.5px; font-weight: 700; color: var(--wa-primary); text-decoration: none; }

.wa-rings-wrap { position: relative; }
.wa-rings-track {
  display: flex; gap: 13px; overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x proximity; padding: 3px 14px 2px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.wa-rings-track::-webkit-scrollbar { display: none; }

.wa-ring {
  flex: 0 0 auto; width: 68px; scroll-snap-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-decoration: none; color: inherit;
}
.wa-ring-av {
  position: relative; width: 66px; height: 66px; border-radius: 50%; padding: 2.5px;
  background: conic-gradient(from 150deg,
    var(--wa-primary), var(--wa-accent) 34%, #f59e0b 62%, var(--wa-primary));
  transition: transform .16s;
}
.wa-ring:active .wa-ring-av { transform: scale(.94); }
.wa-ring-in {
  display: block; width: 100%; height: 100%; border-radius: 50%;
  border: 2px solid var(--wa-card); background: #eef2f7; overflow: hidden;
}
.wa-ring-in img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wa-ring-in i {
  display: flex; width: 100%; height: 100%; align-items: center; justify-content: center;
  font-style: normal; font-size: 17px; font-weight: 800; color: var(--wa-primary);
  background: color-mix(in srgb, var(--wa-primary) 12%, #fff);
}
.wa-ring-badge {
  position: absolute; right: -1px; bottom: -1px; min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 9999px; border: 2px solid var(--wa-card);
  background: var(--wa-primary); color: #fff;
  font-style: normal; font-size: 10.5px; font-weight: 800; line-height: 16px; text-align: center;
}
.wa-ring.is-org .wa-ring-av {
  background: conic-gradient(from 150deg, #0ea5e9, #6366f1 40%, #0ea5e9);
}
.wa-ring-name {
  max-width: 68px; font-size: 11.5px; font-weight: 600; color: var(--wa-soft);
  text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* setas só no desktop — no celular o carrossel é arrastável */
.wa-rings-nav {
  position: absolute; top: 30px; z-index: 2;
  width: 30px; height: 30px; border: 1px solid var(--wa-line); border-radius: 50%; cursor: pointer;
  background: #fff; color: var(--wa-text); box-shadow: 0 3px 10px rgba(15, 23, 42, .16);
  display: none; align-items: center; justify-content: center;
}
.wa-rings-nav .material-icons-round { font-size: 20px; }
.wa-rings-nav.is-prev { left: 4px; }
.wa-rings-nav.is-next { right: 4px; }
@media (hover: hover) and (pointer: fine) {
  .wa-rings-nav { display: flex; }
  .wa-rings-nav[hidden] { display: none !important; }
  .wa-ring:hover .wa-ring-av { transform: scale(1.05); }
}

/* aviso de login */
.wa-feed-login { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.wa-feed-login > .material-icons-round { font-size: 26px; color: var(--wa-primary); }
.wa-feed-login div { flex: 1 1 190px; min-width: 0; }
.wa-feed-login b { display: block; font-size: 14.5px; font-weight: 800; }
.wa-feed-login span { display: block; font-size: 12.5px; color: var(--wa-muted); line-height: 1.5; margin-top: 3px; }

/* composer */
.wa-comp {
  background: var(--wa-card); border: 1px solid var(--wa-line);
  border-radius: var(--wa-radius); box-shadow: var(--wa-shadow); padding: 13px 14px;
}
.wa-comp-top { display: flex; align-items: flex-start; gap: 11px; }
.wa-comp-av,
.wa-post-av,
.wa-cmt-av {
  flex: 0 0 auto; border-radius: 50%; overflow: hidden; display: flex;
  align-items: center; justify-content: center; color: #fff; font-weight: 800;
  background: linear-gradient(135deg, var(--wa-primary), color-mix(in srgb, var(--wa-primary) 55%, #ec4899));
}
.wa-comp-av { width: 40px; height: 40px; font-size: 14px; }
.wa-comp-av img, .wa-post-av img, .wa-cmt-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wa-comp-av i, .wa-post-av i, .wa-cmt-av i { font-style: normal; }
.wa-comp-top textarea {
  flex: 1 1 auto; min-width: 0; border: 0; outline: 0; resize: none; background: transparent;
  font: inherit; font-size: 14.5px; line-height: 1.6; color: var(--wa-text);
  padding: 9px 0; min-height: 40px; max-height: 220px;
}
.wa-comp-top textarea::placeholder { color: var(--wa-muted); }

.wa-comp-preview { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.wa-comp-thumb {
  position: relative; width: 74px; height: 74px; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--wa-line); background: #f1f5f9; display: block;
}
.wa-comp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wa-comp-thumb-vid {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: #0f172a; color: #fff;
}
.wa-comp-thumb button {
  position: absolute; top: 3px; right: 3px; width: 22px; height: 22px; border: 0; border-radius: 50%;
  background: rgba(15, 23, 42, .72); color: #fff; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
}
.wa-comp-thumb button .material-icons-round { font-size: 14px; }

.wa-comp-bar {
  display: flex; align-items: center; gap: 10px; margin-top: 10px;
  padding-top: 11px; border-top: 1px solid #f1f5f9;
}
.wa-comp-attach {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  padding: 7px 12px; border-radius: 9999px; background: #f1f5f9;
  font-size: 12.5px; font-weight: 700; color: var(--wa-soft);
}
.wa-comp-attach:active { background: #e2e8f0; }
.wa-comp-attach .material-icons-round { font-size: 18px; color: var(--wa-primary); }
.wa-comp-count { margin-left: auto; font-size: 11.5px; color: var(--wa-muted); }
.wa-comp-count.is-warn { color: var(--wa-warn); font-weight: 700; }
.wa-comp-send { padding: 9px 16px; font-size: 13px; }

/* post */
.wa-feed-list { display: flex; flex-direction: column; gap: 14px; }
.wa-post {
  background: var(--wa-card); border: 1px solid var(--wa-line);
  border-radius: var(--wa-radius); box-shadow: var(--wa-shadow); overflow: hidden;
}
.wa-post.is-new { animation: waPostIn .32s ease; }
@keyframes waPostIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.wa-post-head { display: flex; align-items: center; gap: 11px; padding: 13px 14px 0; }
.wa-post-av { width: 42px; height: 42px; font-size: 14px; }
.wa-post-av.is-org { background: linear-gradient(135deg, #0f172a, #334155); }
.wa-post-who { flex: 1 1 auto; min-width: 0; }
.wa-post-who b {
  display: flex; align-items: center; gap: 6px; font-size: 14.5px; font-weight: 800;
  line-height: 1.35; overflow-wrap: anywhere;
}
.wa-post-who span { display: block; font-size: 12px; color: var(--wa-muted); margin-top: 2px; }
.wa-post-tag {
  flex: 0 0 auto; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  padding: 2px 7px; border-radius: 9999px; background: #eef2ff; color: #4338ca;
}
.wa-post-pin { font-size: 17px; color: var(--wa-primary); transform: rotate(35deg); }
.wa-post-menu {
  flex: 0 0 auto; width: 32px; height: 32px; border: 0; border-radius: 50%; background: transparent;
  color: var(--wa-muted); cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.wa-post-menu:active { background: #f1f5f9; color: var(--wa-bad); }
.wa-post-menu .material-icons-round { font-size: 19px; }

.wa-post-body {
  padding: 10px 14px 0; font-size: 14.5px; line-height: 1.65; color: var(--wa-text);
  overflow-wrap: anywhere;
}
.wa-post-body a { color: var(--wa-primary); font-weight: 600; }

.wa-post-media { display: grid; gap: 3px; margin-top: 12px; background: #0f172a; }
.wa-post-media[data-n="1"] { grid-template-columns: 1fr; }
.wa-post-media[data-n="2"] { grid-template-columns: 1fr 1fr; }
.wa-post-media[data-n="3"] { grid-template-columns: 1fr 1fr; }
.wa-post-media[data-n="3"] .wa-pm-item:first-child { grid-column: 1 / -1; }
.wa-post-media[data-n="4"] { grid-template-columns: 1fr 1fr; }
.wa-pm-item { position: relative; display: block; background: #0f172a; aspect-ratio: 1 / 1; }
.wa-post-media[data-n="1"] .wa-pm-item { aspect-ratio: auto; max-height: 460px; }
.wa-pm-item img, .wa-pm-item video { width: 100%; height: 100%; object-fit: cover; display: block; }
.wa-post-media[data-n="1"] .wa-pm-item img { object-fit: contain; max-height: 460px; }
.wa-pm-item.is-video video { object-fit: contain; background: #000; }
.wa-pm-item img { cursor: zoom-in; }

.wa-post-acts { display: flex; align-items: center; gap: 6px; padding: 6px 8px 8px; }
.wa-post-act {
  display: inline-flex; align-items: center; gap: 6px; border: 0; background: transparent; cursor: pointer;
  padding: 8px 12px; border-radius: 9999px; color: var(--wa-soft); font: inherit; font-size: 13px; font-weight: 700;
  transition: background .16s, color .16s;
}
.wa-post-act:active { background: #f1f5f9; }
.wa-post-act .material-icons-round { font-size: 19px; }
.wa-post-act em { font-style: normal; }
.wa-post-act.is-on { color: #e11d48; }
.wa-post-act.is-pop .material-icons-round { animation: waPop .34s ease; }
@keyframes waPop { 0% { transform: scale(1); } 45% { transform: scale(1.35); } 100% { transform: scale(1); } }

/* comentários */
.wa-post-comments { border-top: 1px solid #f1f5f9; padding: 12px 14px 14px; background: #f8fafc; }
.wa-cmt-list { display: flex; flex-direction: column; gap: 10px; }
.wa-cmt { display: flex; align-items: flex-start; gap: 9px; }
.wa-cmt-av { width: 32px; height: 32px; font-size: 11.5px; }
.wa-cmt-bubble {
  flex: 1 1 auto; min-width: 0; background: #fff; border: 1px solid var(--wa-line);
  border-radius: 14px; padding: 9px 12px;
}
.wa-cmt-bubble b { display: block; font-size: 12.5px; font-weight: 800; }
.wa-cmt-bubble > div { font-size: 13.5px; line-height: 1.55; margin-top: 2px; overflow-wrap: anywhere; }
.wa-cmt-bubble a { color: var(--wa-primary); font-weight: 600; }
.wa-cmt-time { display: block; font-size: 11px; color: var(--wa-muted); margin-top: 5px; }
.wa-cmt-time button {
  border: 0; background: transparent; padding: 0; font: inherit; font-size: 11px;
  color: var(--wa-bad); cursor: pointer; text-decoration: underline;
}
.wa-cmt-empty { margin: 0; font-size: 12.5px; color: var(--wa-muted); text-align: center; padding: 6px 0; }

.wa-cmt-form { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.wa-cmt-form input {
  flex: 1 1 auto; min-width: 0; border: 1.5px solid var(--wa-line); border-radius: 9999px;
  background: #fff; padding: 10px 14px; font: inherit; font-size: 13.5px; outline: 0;
  transition: border-color .16s, box-shadow .16s;
}
.wa-cmt-form input:focus {
  border-color: var(--wa-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--wa-primary) 12%, transparent);
}
.wa-cmt-form button {
  flex: 0 0 auto; width: 38px; height: 38px; border: 0; border-radius: 50%; cursor: pointer;
  background: var(--wa-primary); color: #fff; display: flex; align-items: center; justify-content: center;
}
.wa-cmt-form button .material-icons-round { font-size: 18px; }

.wa-sheet-loading.is-sm { padding: 20px 0; }

/* lightbox / galeria */
.wa-lightbox {
  position: fixed; inset: 0; z-index: 9998; background: rgba(2, 6, 23, .94);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  animation: waFade .18s ease;
}
.wa-lightbox[hidden] { display: none !important; }
@keyframes waFade { from { opacity: 0; } to { opacity: 1; } }
.wa-lightbox-close {
  position: absolute; top: calc(14px + env(safe-area-inset-top, 0px)); right: 14px; z-index: 3;
  width: 40px; height: 40px; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .16); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.wa-lightbox-count {
  position: absolute; top: calc(18px + env(safe-area-inset-top, 0px)); left: 50%;
  transform: translateX(-50%); z-index: 3;
  padding: 5px 12px; border-radius: 9999px; background: rgba(255, 255, 255, .16);
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .02em;
}

/* trilho horizontal: uma imagem por "página", arrastável */
.wa-lb-viewport {
  width: 100%; height: 100%; overflow: hidden; touch-action: pan-y pinch-zoom;
  cursor: grab; user-select: none; -webkit-user-select: none;
}
.wa-lb-viewport:active { cursor: grabbing; }
.wa-lb-track { display: flex; height: 100%; will-change: transform; }
.wa-lb-slide {
  flex: 0 0 100%; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.wa-lb-slide img {
  max-width: 100%; max-height: 100%; border-radius: 10px; display: block;
  -webkit-user-drag: none;
}

.wa-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .16); color: #fff; backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  transition: background .16s, transform .14s;
}
.wa-lb-nav:hover { background: rgba(255, 255, 255, .3); }
.wa-lb-nav:active { transform: translateY(-50%) scale(.92); }
.wa-lb-nav .material-icons-round { font-size: 26px; }
.wa-lb-nav.is-prev { left: 10px; }
.wa-lb-nav.is-next { right: 10px; }

.wa-lb-dots {
  position: absolute; left: 0; right: 0; z-index: 3;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  display: flex; justify-content: center; gap: 6px;
}
.wa-lb-dots span {
  width: 7px; height: 7px; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .34); transition: background .16s, transform .16s;
}
.wa-lb-dots span.is-on { background: #fff; transform: scale(1.25); }

/* ======================================================================
   FASE 3 — Reels
   ====================================================================== */

.wa-route-reels { background: #000; }
.wa-route-reels .wa-header { display: none; }
.wa-route-reels .wa-main { padding: 0; }
.wa-route-reels .wa-shell { background: #000; }
/* a tela é um pager de tela cheia: a página em si nunca rola */
.wa-route-reels, .wa-route-reels .wa-shell { height: 100dvh; overflow: hidden; }

/* viewport do pager — o deslocamento é por transform, não por scroll */
.wa-reels {
  position: relative; overflow: hidden; background: #000;
  height: calc(100dvh - var(--wa-nav-h) - var(--wa-nav-gap) - env(safe-area-inset-bottom, 0px));
  touch-action: none; user-select: none; -webkit-user-select: none;
}
.wa-body-nonav .wa-reels { height: 100dvh; }
.wa-reels-loading { height: 100%; display: flex; align-items: center; justify-content: center; }

.wa-reels-track {
  display: flex; flex-direction: column; height: 100%;
  will-change: transform; transform: translate3d(0, 0, 0);
  transition: transform .34s cubic-bezier(.22, .61, .36, 1);
}
.wa-reels-track.is-drag { transition: none; }
.wa-reels-track > * { flex: 0 0 100%; height: 100%; min-height: 0; }
@media (prefers-reduced-motion: reduce) { .wa-reels-track { transition: none; } }

.wa-reels-back {
  position: fixed; z-index: 46; left: 14px; top: calc(14px + env(safe-area-inset-top, 0px));
  width: 40px; height: 40px; border-radius: 50%; text-decoration: none;
  background: rgba(15, 23, 42, .55); color: #fff; backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
}
.wa-reels-back .material-icons-round { font-size: 22px; }

/* recorte por participante (veio de uma "bolinha" do feed) */
.wa-reels-chip {
  position: fixed; z-index: 46; left: 62px; top: calc(14px + env(safe-area-inset-top, 0px));
  max-width: calc(100% - 130px); height: 40px; padding: 0 8px 0 14px;
  border-radius: 9999px; text-decoration: none;
  background: rgba(15, 23, 42, .55); color: #fff; backdrop-filter: blur(4px);
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700;
}
.wa-reels-chip span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wa-reels-chip .material-icons-round { font-size: 18px; opacity: .8; }
.wa-spin.is-light { border-color: rgba(255, 255, 255, .25); border-top-color: #fff; width: 26px; height: 26px; border-width: 3px; }

.wa-reels-empty {
  height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: #cbd5e1; text-align: center; padding: 30px;
}
.wa-reels-empty .material-icons-round { font-size: 54px; color: #475569; }
.wa-reels-empty p { margin: 0; font-size: 14px; line-height: 1.6; }

.wa-reel {
  position: relative; height: 100%;
  display: flex; align-items: center; justify-content: center; background: #000; overflow: hidden;
}
.wa-reel-video {
  width: 100%; height: 100%; object-fit: contain; display: block; background: #000;
  pointer-events: none; -webkit-user-drag: none;
}

/* spinner enquanto o vídeo do slide ativo carrega */
.wa-reel-load {
  position: absolute; inset: 0; display: none; align-items: center; justify-content: center;
  pointer-events: none;
}
.wa-reel.is-buffering .wa-reel-load { display: flex; }

/* barra de progresso do vídeo (rodapé do slide) */
.wa-reel-prog {
  position: absolute; left: 0; right: 0; bottom: 0; height: 2.5px; z-index: 4;
  background: rgba(255, 255, 255, .18);
}
.wa-reel-prog i {
  display: block; height: 100%; width: 100%; background: #fff; border-radius: 0 2px 2px 0;
  transform: scaleX(0); transform-origin: 0 50%;
}

.wa-reel-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0; transition: opacity .18s;
}
.wa-reel.is-paused .wa-reel-play { opacity: 1; }
.wa-reel-play .material-icons-round {
  font-size: 42px; color: #fff; width: 78px; height: 78px; border-radius: 50%;
  background: rgba(15, 23, 42, .55); display: flex; align-items: center; justify-content: center;
}

.wa-reel-side {
  position: absolute; right: 10px; bottom: 96px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.wa-reel-btn {
  border: 0; background: transparent; cursor: pointer; padding: 0; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font: inherit; font-size: 11.5px; font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
}
.wa-reel-btn .material-icons-round { font-size: 30px; filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .5)); }
.wa-reel-btn em { font-style: normal; }
.wa-reel-btn.is-on { color: #fb7185; }
.wa-reel-btn.is-static { cursor: default; }
.wa-reel-btn.is-danger .material-icons-round { color: #fca5a5; }
.wa-reel-btn.is-pop .material-icons-round { animation: waPop .34s ease; }

.wa-reel-info {
  position: absolute; left: 0; right: 74px; bottom: 0; z-index: 2; padding: 0 14px 22px;
  color: #fff; background: linear-gradient(180deg, transparent, rgba(2, 6, 23, .78) 62%);
  padding-top: 60px;
}
.wa-reel-author { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.wa-reel-av {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800;
  background: linear-gradient(135deg, var(--wa-primary), #ec4899); border: 1.5px solid rgba(255, 255, 255, .8);
}
.wa-reel-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wa-reel-av i { font-style: normal; }
.wa-reel-author b { font-size: 14px; font-weight: 800; display: flex; align-items: center; gap: 6px; }
.wa-reel-author b em {
  font-style: normal; font-size: 10px; text-transform: uppercase; letter-spacing: .04em;
  padding: 2px 7px; border-radius: 9999px; background: rgba(255, 255, 255, .22);
}
.wa-reel-time { font-size: 11.5px; opacity: .78; }
.wa-reel-caption {
  margin: 9px 0 0; font-size: 13.5px; line-height: 1.55; overflow-wrap: anywhere;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.wa-reels-new {
  position: fixed; z-index: 46; right: 14px;
  bottom: calc(var(--wa-nav-h) + var(--wa-nav-gap) + 16px + env(safe-area-inset-bottom, 0px));
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer; color: #fff;
  background: linear-gradient(135deg, var(--wa-primary), #ec4899);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
  display: flex; align-items: center; justify-content: center;
}
.wa-reels-new .material-icons-round { font-size: 26px; }

.wa-reel-form { display: flex; flex-direction: column; gap: 14px; }
.wa-reel-prev {
  width: 100%; max-height: 260px; border-radius: 14px; background: #0f172a; object-fit: contain; display: block;
}
.wa-reel-hint {
  display: flex; align-items: flex-start; gap: 7px; margin: 0;
  font-size: 12px; color: var(--wa-muted); line-height: 1.5;
}
.wa-reel-hint .material-icons-round { font-size: 16px; color: var(--wa-primary); }

/* ======================================================================
   Instalar na tela inicial (PWA) — bottom sheet global
   ====================================================================== */

.wa-sheet.is-inst .wa-sheet-body {
  padding: 6px 20px calc(22px + env(safe-area-inset-bottom, 0px));
  display: flex; flex-direction: column; gap: 14px;
}

.wa-inst-head { display: flex; align-items: center; gap: 14px; padding-right: 34px; }
.wa-inst-icon {
  width: 62px; height: 62px; flex: 0 0 62px; border-radius: 17px; object-fit: cover;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .16); background: var(--wa-primary);
}
.wa-inst-icon.is-text {
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 27px; font-weight: 800;
}
.wa-inst-eyebrow {
  display: block; font-size: 10.5px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--wa-primary); margin-bottom: 3px;
}
.wa-inst-title { margin: 0; font-size: 18px; font-weight: 800; line-height: 1.3; color: var(--wa-text); }
.wa-inst-sub { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--wa-soft); }
.wa-inst-sub b { color: var(--wa-text); }

.wa-inst-perks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.wa-inst-perks li {
  display: flex; align-items: center; gap: 11px;
  font-size: 13.5px; font-weight: 600; color: var(--wa-soft);
}
.wa-inst-perks .material-icons-round {
  width: 32px; height: 32px; flex: 0 0 32px; border-radius: 10px; font-size: 17px;
  background: color-mix(in srgb, var(--wa-primary) 10%, #fff); color: var(--wa-primary);
  display: flex; align-items: center; justify-content: center;
}

.wa-inst-steps {
  list-style: none; margin: 0; padding: 4px 0; display: flex; flex-direction: column; gap: 2px;
  background: var(--wa-card); border: 1px solid var(--wa-line); border-radius: 16px;
}
.wa-inst-steps li {
  display: flex; align-items: center; gap: 11px; padding: 11px 14px;
  border-bottom: 1px solid #f1f5f9;
}
.wa-inst-steps li:last-child { border-bottom: 0; }
.wa-inst-step-n {
  width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%;
  background: var(--wa-primary); color: #fff;
  font-size: 11.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.wa-inst-step-tx { flex: 1 1 auto; font-size: 13.5px; line-height: 1.5; color: var(--wa-soft); }
.wa-inst-step-tx b { color: var(--wa-text); font-weight: 700; }
.wa-inst-step-ico { font-size: 19px; color: var(--wa-primary); flex: 0 0 auto; }

.wa-inst-ok {
  display: flex; align-items: center; gap: 12px; padding: 14px;
  border-radius: 16px; background: #f0fdf4; border: 1px solid #bbf7d0;
}
.wa-inst-ok .material-icons-round { font-size: 26px; color: #16a34a; }
.wa-inst-ok b { display: block; font-size: 14px; color: #14532d; }
.wa-inst-ok span { font-size: 13px; color: #166534; }

/* linha "Instalar app" no Perfil */
.wa-inst-row.is-installed { opacity: .7; }
.wa-inst-row.is-installed .wa-prof-row-go { display: none; }

/* ======================================================================
   FASE 4 — Expositores
   ====================================================================== */

/* cabeçalho de seção com atalho "Ver tudo" (usado no /inicio) */
.wa-sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.wa-sec-head .wa-sec-title { margin: 0; }
.wa-sec-link {
  display: inline-flex; align-items: center; gap: 2px; flex: 0 0 auto;
  font-size: 13px; font-weight: 700; color: var(--wa-primary); text-decoration: none;
}
.wa-sec-link .material-icons-round { font-size: 17px; }

/* ----------------------------- vitrine --------------------------------- */

.wa-exh { padding: 16px 16px 4px; }

.wa-exh-tools { display: flex; align-items: center; gap: 8px; }
.wa-exh-tools .wa-search { flex: 1 1 auto; min-width: 0; }

.wa-exh-fav-toggle {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px;
  height: 42px; padding: 0 14px; border-radius: 999px;
  background: var(--wa-card); border: 1px solid var(--wa-line); color: var(--wa-soft);
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.wa-exh-fav-toggle .material-icons-round { font-size: 18px; }
.wa-exh-fav-toggle.is-on { background: #fff1f2; border-color: #fecdd3; color: #e11d48; }
.wa-exh-fav-toggle.is-on .material-icons-round { color: #e11d48; }

.wa-exh-types {
  display: flex; gap: 8px; margin-top: 12px; padding-bottom: 2px;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.wa-exh-types::-webkit-scrollbar { display: none; }
.wa-exh-type {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 999px; white-space: nowrap;
  background: var(--wa-card); border: 1px solid var(--wa-line); color: var(--wa-soft);
  font-size: 12.5px; font-weight: 700; cursor: pointer;
}
.wa-exh-type i { font-style: normal; font-size: 11px; opacity: .7; }
.wa-exh-type.is-active {
  background: var(--wa-primary); border-color: var(--wa-primary); color: var(--wa-on-primary);
}
.wa-exh-type.is-active i { opacity: .85; }

.wa-exh-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 14px;
}
.wa-exh-card {
  position: relative; background: var(--wa-card); border: 1px solid var(--wa-line);
  border-radius: var(--wa-radius); box-shadow: var(--wa-shadow); overflow: hidden;
  transition: transform .16s, box-shadow .16s;
}
.wa-exh-card:active { transform: scale(.98); }
.wa-exh-card-link {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 12px 14px; text-decoration: none; color: inherit;
}
.wa-exh-logo {
  width: 84px; height: 84px; border-radius: 18px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #f8fafc; border: 1px solid var(--wa-line);
}
.wa-exh-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.wa-exh-logo i {
  font-style: normal; font-size: 24px; font-weight: 800; letter-spacing: .02em;
  color: var(--wa-on-primary); width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent));
}
.wa-exh-name {
  font-size: 13.5px; font-weight: 700; color: var(--wa-text); text-align: center; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wa-exh-meta { display: flex; justify-content: center; }
.wa-exh-booth,
.wa-exh-kind {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 999px;
  font-size: 11px; font-weight: 700; line-height: 1.5;
}
.wa-exh-booth { background: #eef2ff; color: #4338ca; }
.wa-exh-booth .material-icons-round { font-size: 13px; }
.wa-exh-kind { background: #f1f5f9; color: var(--wa-soft); }

.wa-exh-fav-btn {
  position: absolute; top: 6px; right: 6px; width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .92); border: 1px solid var(--wa-line);
  color: var(--wa-muted); cursor: pointer; transition: color .18s, background .18s, border-color .18s;
}
.wa-exh-fav-btn .material-icons-round { font-size: 18px; }
.wa-exh-fav-btn.is-on { background: #fff1f2; border-color: #fecdd3; color: #e11d48; }
.wa-exh-fav-btn:disabled { opacity: .5; }

.wa-exh-noresult { text-align: center; padding: 34px 18px; color: var(--wa-muted); }
.wa-exh-noresult .material-icons-round { font-size: 42px; color: #cbd5e1; display: block; margin: 0 auto 8px; }
.wa-exh-noresult p { margin: 0; font-size: 13.5px; }

/* ------------------------ página do expositor -------------------------- */

.wa-exh-back {
  display: inline-flex; align-items: center; gap: 4px; margin: 14px 16px 0;
  font-size: 13px; font-weight: 700; color: var(--wa-soft); text-decoration: none;
}
.wa-exh-back .material-icons-round { font-size: 18px; }

.wa-exh-page { padding: 12px 16px 4px; }

.wa-exh-hero {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 26px 18px 22px; text-align: center;
  background: var(--wa-card); border: 1px solid var(--wa-line);
  border-radius: 22px; box-shadow: var(--wa-shadow);
}
.wa-exh-hero::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 96px;
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent)); opacity: .12;
}
.wa-exh-hero-logo {
  position: relative; width: 116px; height: 116px; border-radius: 26px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--wa-line); box-shadow: 0 8px 22px rgba(15, 23, 42, .1);
}
.wa-exh-hero-logo img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.wa-exh-hero-logo span {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 34px; font-weight: 800; color: var(--wa-on-primary);
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent));
}
.wa-exh-hero-name {
  position: relative; margin: 2px 0 0; font-size: 21px; font-weight: 800;
  letter-spacing: -.02em; line-height: 1.25; color: var(--wa-text);
}
.wa-exh-hero-chips { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }

.wa-exh-actions { display: flex; gap: 8px; margin-top: 12px; }
.wa-exh-fav-big {
  flex: 1 1 auto; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; border-radius: 999px; cursor: pointer;
  background: var(--wa-primary); border: 1px solid var(--wa-primary); color: var(--wa-on-primary);
  font-size: 14.5px; font-weight: 700;
  transition: background .18s, color .18s, border-color .18s;
}
.wa-exh-fav-big .material-icons-round { font-size: 20px; }
.wa-exh-fav-big.is-on { background: #fff1f2; border-color: #fecdd3; color: #e11d48; }
.wa-exh-fav-big:disabled { opacity: .6; }
.wa-exh-share {
  flex: 0 0 48px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: var(--wa-card); border: 1px solid var(--wa-line); color: var(--wa-soft);
}
.wa-exh-share .material-icons-round { font-size: 20px; }

.wa-exh-block { margin-top: 14px; }
.wa-exh-block-title {
  margin: 0 0 10px; font-size: 12px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--wa-soft);
}
.wa-exh-desc { color: var(--wa-soft); }

.wa-exh-links { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.wa-exh-links .wa-exh-block-title { margin-bottom: 2px; }
.wa-exh-link {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; text-decoration: none;
  background: var(--wa-card); border: 1px solid var(--wa-line);
  border-radius: 16px; box-shadow: var(--wa-shadow);
  transition: transform .16s, border-color .16s;
}
.wa-exh-link:active { transform: scale(.99); }
.wa-exh-link-ico {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: #f1f5f9; color: var(--wa-soft);
}
.wa-exh-link-ico .material-icons-round { font-size: 20px; }
.wa-exh-link.is-whats .wa-exh-link-ico { background: #dcfce7; color: #15803d; }
.wa-exh-link.is-site  .wa-exh-link-ico { background: #eef2ff; color: #4338ca; }
.wa-exh-link.is-insta .wa-exh-link-ico { background: #fce7f3; color: #be185d; }
.wa-exh-link.is-linkedin .wa-exh-link-ico { background: #e0f2fe; color: #0369a1; }
.wa-exh-link.is-facebook .wa-exh-link-ico { background: #e0e7ff; color: #3730a3; }
.wa-exh-link.is-youtube  .wa-exh-link-ico { background: #fee2e2; color: #b91c1c; }
.wa-exh-link-txt { flex: 1 1 auto; min-width: 0; }
.wa-exh-link-txt b { display: block; font-size: 14px; font-weight: 700; color: var(--wa-text); }
.wa-exh-link-txt small {
  display: block; font-size: 12.5px; color: var(--wa-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wa-exh-link-go { font-size: 18px; color: var(--wa-muted); flex: 0 0 auto; }

/* ------------------- blocos de favoritos no /inicio --------------------- */

.wa-myag { display: flex; flex-direction: column; gap: 8px; }
.wa-myag-item {
  display: flex; align-items: center; gap: 12px; padding: 11px 13px; text-decoration: none;
  background: var(--wa-card); border: 1px solid var(--wa-line);
  border-radius: 14px; box-shadow: var(--wa-shadow);
  transition: transform .16s;
}
.wa-myag-item:active { transform: scale(.99); }
.wa-myag-day {
  flex: 0 0 44px; width: 44px; padding: 6px 0; border-radius: 12px; text-align: center;
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent)); color: var(--wa-on-primary);
}
.wa-myag-day b { display: block; font-size: 17px; font-weight: 800; line-height: 1.1; }
.wa-myag-day small { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: .08em; opacity: .9; }
.wa-myag-body { flex: 1 1 auto; min-width: 0; }
.wa-myag-name {
  display: block; font-size: 14px; font-weight: 700; color: var(--wa-text); line-height: 1.35;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.wa-myag-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 3px; }
.wa-myag-meta span { display: inline-flex; align-items: center; gap: 3px; font-size: 12px; color: var(--wa-muted); }
.wa-myag-meta .material-icons-round { font-size: 14px; }
.wa-myag-go { font-size: 20px; color: var(--wa-muted); flex: 0 0 auto; }

.wa-myexh {
  display: flex; gap: 10px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity; scrollbar-width: none; padding-bottom: 4px;
}
.wa-myexh::-webkit-scrollbar { display: none; }
.wa-myexh-item {
  flex: 0 0 108px; scroll-snap-align: start; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 12px 8px;
  background: var(--wa-card); border: 1px solid var(--wa-line);
  border-radius: 16px; box-shadow: var(--wa-shadow);
}
.wa-myexh-item:active { transform: scale(.98); }
.wa-myexh-logo {
  width: 62px; height: 62px; border-radius: 16px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #f8fafc; border: 1px solid var(--wa-line);
}
.wa-myexh-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.wa-myexh-logo i {
  font-style: normal; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 800; color: var(--wa-on-primary);
  background: linear-gradient(135deg, var(--wa-primary), var(--wa-accent));
}
.wa-myexh-name {
  font-size: 12px; font-weight: 700; color: var(--wa-text); text-align: center; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wa-myexh-booth {
  font-size: 10.5px; font-weight: 700; color: #4338ca;
  background: #eef2ff; border-radius: 999px; padding: 2px 8px;
  max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ======================================================================
   Esqueletos (carregamento) + barra de progresso da navegação

   A tela aparece na hora com blocos cinza pulsando no lugar do conteúdo,
   e o HTML real entra por cima quando chega. Gerados por waSk()/
   waSkeletonFor() em app.js — as classes abaixo só desenham.
   ====================================================================== */

.wa-sk { --wa-sk-a: #e3e9f1; --wa-sk-b: #f2f6fa; }
.wa-sk.is-dark { --wa-sk-a: #1b1f27; --wa-sk-b: #2a303b; }

.wa-sk-line, .wa-sk-av, .wa-sk-media, .wa-sk-time, .wa-sk-logo,
.wa-sk-dot, .wa-sk-search, .wa-sk-sectitle, .wa-sk-hero, .wa-sk-full {
  display: block; border-radius: 8px;
  background: var(--wa-sk-a);
  background-image: linear-gradient(100deg, transparent 28%, var(--wa-sk-b) 46%, transparent 64%);
  background-size: 320% 100%;
  background-repeat: no-repeat;
  animation: waSkShine 1.25s ease-in-out infinite;
}

@keyframes waSkShine {
  0%   { background-position: 130% 0; }
  100% { background-position: -30% 0; }
}

.wa-sk-line { height: 11px; margin-bottom: 9px; }
.wa-sk-line:last-child { margin-bottom: 0; }
.wa-sk-line.is-sm    { height: 9px; opacity: .72; }
.wa-sk-line.is-title { height: 15px; border-radius: 7px; margin-bottom: 12px; }
.wa-sk-line.is-pill  { height: 28px; border-radius: 9999px; margin-bottom: 0; }

.wa-sk-av  { width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto; }
.wa-sk-av.is-xl { width: 92px; height: 92px; margin: 0 auto 14px; }
.wa-sk-media { height: 168px; border-radius: 12px; margin: 12px 0 4px; }
.wa-sk-time  { width: 52px; height: 46px; border-radius: 10px; flex: 0 0 auto; }
.wa-sk-logo  { width: 62px; height: 62px; border-radius: 16px; margin: 0 auto 10px; }
.wa-sk-dot   { width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto; }
.wa-sk-search   { height: 46px; border-radius: 9999px; margin-bottom: 14px; }
.wa-sk-sectitle { width: 42%; height: 15px; border-radius: 7px; margin: 20px 0 12px; }
.wa-sk-hero     { height: 196px; border-radius: 0; }
.wa-sk-hero.is-sm { height: 132px; border-radius: 18px; margin-bottom: 16px; }
.wa-sk-full     { height: calc(100dvh - var(--wa-nav-h) - var(--wa-nav-gap) - env(safe-area-inset-bottom, 0px)); border-radius: 0; }

.wa-sk-col   { flex: 1 1 auto; min-width: 0; }
.wa-sk-pad   { padding: 16px 14px 0; }
.wa-sk-chips { display: flex; gap: 8px; margin-bottom: 16px; overflow: hidden; }
.wa-sk-chips .wa-sk-line { flex: 0 0 auto; }
.wa-sk-acts  { display: flex; gap: 10px; margin-top: 12px; }
.wa-sk-grid  { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

.wa-sk-row {
  display: flex; align-items: center; gap: 12px; padding: 14px;
  background: var(--wa-card); border: 1px solid var(--wa-line);
  border-radius: 16px; margin-bottom: 10px;
}
.wa-sk-row.is-flat { padding: 0; background: none; border: 0; border-radius: 0; margin-bottom: 12px; }

.wa-sk-card {
  padding: 16px; background: var(--wa-card); border: 1px solid var(--wa-line);
  border-radius: var(--wa-radius); box-shadow: var(--wa-shadow); margin-bottom: 12px;
}
.wa-sk-card.is-flat  { padding: 14px; }
.wa-sk-card.is-center { text-align: center; }
.wa-sk-card.is-prog,
.wa-sk-card.is-notif { display: flex; gap: 12px; align-items: flex-start; }

.wa-sk-tile {
  padding: 14px 10px; text-align: center; background: var(--wa-card);
  border: 1px solid var(--wa-line); border-radius: 16px; box-shadow: var(--wa-shadow);
}
.wa-sk-tile .wa-sk-line { margin-left: auto; margin-right: auto; }

.wa-sk-screen { animation: waSkIn .18s ease-out; }
@keyframes waSkIn { from { opacity: 0; } to { opacity: 1; } }

/* barra fininha no topo enquanto a próxima tela não chega
   (scaleX em vez de width: acompanha a largura do "celular" no desktop) */
.wa-navbar-progress {
  position: fixed; z-index: 60; top: 0; left: 0; right: 0;
  height: 3px; max-width: 480px; margin: 0 auto;
  background: linear-gradient(90deg, var(--wa-primary), var(--wa-accent));
  transform: scaleX(0); transform-origin: left center;
  opacity: 0; pointer-events: none;
  transition: transform .2s ease-out, opacity .2s;
}
.wa-navbar-progress.is-on   { opacity: 1; transform: scaleX(.82); transition: transform 2.4s cubic-bezier(.1, .8, .3, 1), opacity .12s; }
.wa-navbar-progress.is-done { opacity: 0; transform: scaleX(1);   transition: transform .18s ease-out, opacity .3s .16s; }

@media (prefers-reduced-motion: reduce) {
  .wa-sk-line, .wa-sk-av, .wa-sk-media, .wa-sk-time, .wa-sk-logo,
  .wa-sk-dot, .wa-sk-search, .wa-sk-sectitle, .wa-sk-hero, .wa-sk-full { animation: none; }
  .wa-sk-screen { animation: none; }
  .wa-navbar-progress { transition: opacity .2s; }
  .wa-facial-scan::after { animation: none; top: 48%; opacity: .6; }
}

/* --------------------------- telas maiores ----------------------------- */

@media (min-width: 481px) {
  .wa-body { background: #e2e8f0; }
  .wa-shell { border-left: 1px solid rgba(15, 23, 42, .06); border-right: 1px solid rgba(15, 23, 42, .06); }
  .wa-body.wa-route-reels { background: #000; }
  .wa-exh-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .wa-sk-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
