/* ========================================================================
   O Casal Legendário — app styles. Sanctuary-dark, gold, editorial.
   Tokens audited from the real site (DESIGN_SYSTEM_REAL.md).
   ===================================================================== */

:root {
  /* surfaces */
  --ink:       #090806;
  --bg:        #0D0A07;
  --bg-2:      #120E09;
  --surface:   rgba(255,255,255,0.045);
  --surface-2: rgba(255,255,255,0.085);
  --line:      rgba(245,240,234,0.12);
  --line-2:    rgba(245,240,234,0.06);
  /* text */
  --text:      #F5F0EA;
  --cream:     #E8DDD0;
  --muted:     rgba(245,240,234,0.66);
  --muted-2:   rgba(245,240,234,0.86);
  --faint:     rgba(245,240,234,0.52);
  /* accent — gold is the brand signature */
  --accent:      #C9A96E;
  --accent-deep: #A98A4F;
  --accent-soft: rgba(201,169,110,0.16);
  --accent-line: rgba(201,169,110,0.42);
  --on-accent:   #2A2114;
  /* category accents (parcimony) */
  --navy:    #3a5a86;
  --green:   #6f9e7b;
  --copper:  #D08A48;
  --ember:   #C83030;
  --danger:  #D8A08E;
  --success: #D4C28B;
  /* form */
  --radius:    24px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --shadow:    0 26px 90px rgba(0,0,0,0.55);
  --shadow-sm: 0 12px 34px rgba(0,0,0,0.35);
  --ease:      cubic-bezier(.22,1,.36,1);
  /* type */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --mono:  'DM Mono', ui-monospace, monospace;
  /* density (driven by tweaks) */
  --density: 1;
  --tsize: 1;
}

/* light mode (tweak) */
:root[data-theme="light"] {
  --ink:       #F3EEE4;
  --bg:        #F7F2E9;
  --bg-2:      #FBF7EF;
  --surface:   rgba(40,30,16,0.035);
  --surface-2: rgba(40,30,16,0.06);
  --line:      rgba(40,30,16,0.14);
  --line-2:    rgba(40,30,16,0.07);
  --text:      #26211A;
  --cream:     #3a3228;
  --muted:     rgba(38,33,26,0.62);
  --muted-2:   rgba(38,33,26,0.82);
  --faint:     rgba(38,33,26,0.40);
  --accent-soft: rgba(169,138,79,0.14);
  --accent-line: rgba(169,138,79,0.5);
  --on-accent:   #2A2114;
  --shadow:    0 26px 70px rgba(60,45,20,0.16);
  --shadow-sm: 0 12px 30px rgba(60,45,20,0.10);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  background: var(--ink);
  /* Trava de zoom mobile: bloqueia duplo-toque, ajuste automático de texto e
     reflow de balão (Android + iOS). Pareado com user-scalable=no no viewport. */
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;   /* trava o desplazamento lateral: o <html> rolava porque só o body tinha overflow-x */
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: calc(16px * var(--tsize));
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  touch-action: manipulation;
  overscroll-behavior-y: none;        /* mata o "bounce"/pull-to-refresh que parece zoom */
  -webkit-tap-highlight-color: transparent;
}

/* iOS faz auto-zoom ao focar qualquer campo com fonte < 16px. Piso de 16px
   em TODOS os controles preserva o scaling do --tsize sem disparar o zoom.
   Esta é a causa-raiz nº1 do "fica aproximando" ao tocar nos inputs. */
input, textarea, select,
.field, .twk-field {
  font-size: max(16px, calc(15px * var(--tsize)));
}
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent-soft); }

/* scrollbar */
*::-webkit-scrollbar { width: 9px; height: 9px; }
*::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
*::-webkit-scrollbar-track { background: transparent; }

/* ── type primitives ─────────────────────────────────────────── */
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: 0; }
.verse { font-family: var(--verse-font, var(--serif)); font-style: italic; font-weight: 500; line-height: 1.22; text-wrap: pretty; }
.mono  { font-family: var(--mono); }
.eyebrow {
  font-family: var(--mono); font-size: calc(11px * var(--tsize)); font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
}
.eyebrow.muted { color: var(--muted); }
.kicker {
  font-family: var(--mono); font-size: calc(10px * var(--tsize)); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--faint);
}

/* ── glow ───────────────────────────────────────────────────── */
.glow-top { overflow: hidden; overflow: clip; }
.glow-top::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: min(680px, max(0px, calc(100% - 24px))); height: 360px; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at center, var(--accent-soft), transparent 68%);
  opacity: 0.9;
}
@media (prefers-reduced-motion: no-preference) {
  .glow-top::before { animation: glowBreath 8s ease-in-out infinite; }
}
@keyframes glowBreath {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

/* ── buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid transparent; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; letter-spacing: 0.01em;
  font-size: calc(15px * var(--tsize)); line-height: 1;
  padding: calc(14px * var(--density)) calc(22px * var(--density));
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-gold { background: var(--accent); color: var(--on-accent); box-shadow: 0 10px 28px rgba(0,0,0,0.38), 0 3px 14px rgba(201,169,110,0.28); }
.btn-gold:hover { background: #d4b67c; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.42), 0 6px 20px rgba(201,169,110,0.40); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent-line); transform: translateY(-2px); }
.btn-soft { background: var(--surface); color: var(--text); border-color: var(--line); }
.btn-soft:hover { background: var(--surface-2); border-color: var(--accent-line); }
.btn-full { width: 100%; }
.btn-lg { font-size: calc(16px * var(--tsize)); padding: calc(16px * var(--density)) calc(26px * var(--density)); }
.btn-sm { font-size: calc(13px * var(--tsize)); padding: calc(9px * var(--density)) calc(15px * var(--density)); }

/* ── cards ──────────────────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: calc(20px * var(--density));
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}
.card-sm { border-radius: var(--radius-sm); padding: calc(14px * var(--density)); }
/* hover sóbrio: a borda só firma (--line), sem puxar ouro — ouro fica reservado ao foco/ação */
.card-hover:hover { transform: translateY(-2px); border-color: var(--line); }
.card-accent { border-color: var(--accent-line); background: linear-gradient(160deg, var(--accent-soft), var(--surface) 55%); }
.card-tap { cursor: pointer; }

/* ── pills / chips / tags ──────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px; border-radius: 999px;
  padding: 9px 16px; min-height: 40px; font-size: calc(13px * var(--tsize)); font-weight: 500;
  background: var(--surface); border: 1px solid var(--line); color: var(--muted-2);
  white-space: nowrap; cursor: pointer; transition: all .16s var(--ease);
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.pill:hover { border-color: var(--accent-line); color: var(--text); background: var(--surface-2); transform: translateY(-1px); }
.pill.on { background: var(--accent); color: var(--on-accent); border-color: var(--accent); font-weight: 600; }
.tag {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono);
  font-size: calc(10px * var(--tsize)); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent-line); border-radius: var(--radius-xs); padding: 4px 8px;
}
.tag-plain { color: var(--muted); border-color: var(--line); }
.chip-streak {
  display: inline-flex; align-items: center; gap: 6px; border-radius: 999px;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  padding: 6px 12px; color: var(--accent); font-family: var(--mono); font-weight: 500;
  font-size: calc(13px * var(--tsize));
}

/* ── progress ──────────────────────────────────────────────── */
.bar { height: 7px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.bar > i { display: block; height: 100%; background: var(--accent); border-radius: 999px; transition: width .5s var(--ease); }
.jpips { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.jpip {
  width: 14px; height: 4px; border-radius: 999px;
  background: var(--surface-2);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.jpip.on { background: var(--accent); transform: scaleY(1.5); }
@media (prefers-reduced-motion: reduce) {
  .jpip { transition: none; }
}

/* ── inputs ────────────────────────────────────────────────── */
.field {
  width: 100%; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-xs); color: var(--text); font-family: var(--sans);
  /* piso de 16px: impede o auto-zoom do iOS ao focar, mantendo o scaling do --tsize */
  font-size: max(16px, calc(15px * var(--tsize))); padding: 13px 15px; transition: border-color .16s var(--ease);
}
/* ── foco de teclado: anel de ouro consistente em todo o sistema (WCAG 2.4.7) ── */
.btn:focus-visible,
.pill:focus-visible,
.qa:focus-visible,
.lrow:focus-visible,
.iconbtn:focus-visible,
.side-link:focus-visible,
.tab-item:focus-visible,
.card-tap:focus-visible {
  outline: none;
  /* gap escuro (--bg) + anel ouro sólido (--accent) para contraste real do foco */
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
}
.field:focus {
  outline: none;
  border-color: var(--accent-line);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
/* ── foco visível (teclado): anel ouro, só em :focus-visible para não poluir toque/mouse ── */
:where(button, a, input, textarea, select, [role="button"], [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 8px;
}
.field:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent-line);
}
/* mantém o input sem anel quando o foco vem do toque/mouse, preservando o visual atual */
.field:focus:not(:focus-visible) { outline: none; box-shadow: none; }
.field::placeholder { color: var(--faint); }
textarea.field { resize: vertical; min-height: 110px; line-height: 1.5; }
.label { font-family: var(--mono); font-size: calc(11px * var(--tsize)); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }

/* ── notices ──────────────────────────────────────────────── */
.notice {
  display: flex; gap: 11px; align-items: flex-start; border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: calc(13.5px * var(--tsize)); line-height: 1.5;
  background: rgba(216,160,142,0.08); border: 1px solid rgba(216,160,142,0.3); color: var(--muted-2);
}
.notice .ico { color: var(--danger); flex: 0 0 auto; margin-top: 1px; }

/* ── divider ──────────────────────────────────────────────── */
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.rule-soft { background: var(--line-2); }

/* ── layout shell ─────────────────────────────────────────── */
#root { min-height: 100vh; min-height: 100dvh; }
.app { height: 100vh; height: 100dvh; display: flex; overflow: hidden; position: relative; }

/* sidebar (desktop) */
.sidebar {
  display: none; flex-direction: column; gap: 4px; width: 248px; flex: 0 0 248px;
  padding: 26px 18px; border-right: 1px solid var(--line);
  position: sticky; top: 0; height: 100vh; height: 100dvh; background: var(--bg);
}
.side-brand { display: flex; align-items: center; gap: 11px; padding: 4px 8px 20px; }
.side-brand img { width: 38px; height: 38px; border-radius: var(--radius-xs); }
.side-brand .nm { font-family: var(--serif); font-size: 21px; color: var(--accent); line-height: 1.05; }
.side-link {
  display: flex; align-items: center; gap: 13px; padding: 11px 13px; border-radius: var(--radius-xs);
  color: var(--muted); font-weight: 500; font-size: 15px; transition: all .15s var(--ease); cursor: pointer;
}
.side-link:hover { background: var(--surface); color: var(--text); }
.side-link.on { background: var(--accent-soft); color: var(--text); font-weight: 600; }
.side-link.on svg { color: var(--accent); }
.side-foot { margin-top: auto; padding: 14px 10px 0; }

/* main column */
.main { flex: 1; min-width: 0; display: flex; flex-direction: column; height: 100vh; height: 100dvh; min-height: 0; overflow: hidden; }
.scroll { flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.col {
  width: 100%; max-width: 780px; margin: 0 auto;
  padding: 0 18px calc(120px * var(--density));
}
.col-wide { max-width: 1080px; }

/* tab bar (mobile) */
.tabbar {
  position: sticky; bottom: 0; z-index: 40; display: flex; align-items: stretch;
  justify-content: space-around; padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.tab-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  background: none; border: 0; color: var(--muted); padding: 8px 2px; border-radius: var(--radius-xs);
  min-height: 48px; position: relative;
  font-size: max(11.5px, calc(11.5px * var(--tsize))); font-weight: 500; transition: color .15s var(--ease);
}
.tab-item.on { color: var(--accent); }
.tab-item svg { transition: transform .2s var(--ease); }
.tab-item.on svg { transform: translateY(-1px); }
/* estado ativo reforçado SEM depender só de cor (WCAG 1.4.1): peso + barrinha superior */
.tab-item.on span { font-weight: 700; }
.tab-item.on::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 22px; height: 3px; border-radius: 0 0 3px 3px; background: var(--accent); pointer-events: none;
}

/* top app bar (mobile) */
.appbar {
  position: sticky; top: 0; z-index: 30; display: flex; align-items: center; gap: 12px;
  padding: calc(14px + env(safe-area-inset-top)) 18px 14px; min-height: 56px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.appbar .ttl { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; flex: 1; min-width: 0; }
.iconbtn {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: var(--radius-xs); background: transparent; border: 1px solid transparent; color: var(--text);
  transition: all .15s var(--ease); flex: 0 0 auto;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.iconbtn:hover { background: var(--surface); border-color: var(--line); }

/* ── botão "Voltar" com texto: affordance óbvio em standalone (sem barra do navegador) ──
   NÃO declarar .backbtn:focus-visible: a regra genérica :where(button...) (foco ouro) já cobre. */
.backbtn {
  display: inline-flex; align-items: center; gap: 4px; height: 44px; padding: 0 12px 0 6px;
  border-radius: var(--radius-xs); background: transparent; border: 1px solid transparent;
  color: var(--text); font-weight: 600; font-size: 15px; flex: 0 0 auto;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.backbtn:hover { background: var(--surface); border-color: var(--line); }

/* ── <div onClick> → <button>: remove o chrome nativo do button SEM apagar o fundo/borda das classes
   (.card/.qa/.lrow têm var(--surface) próprio; só .side-link é transparente). NÃO mexer em display. ── */
button.side-link, button.qa, button.card-tap, button.lrow {
  width: 100%; margin: 0; font: inherit; color: inherit; text-align: inherit;
  -webkit-appearance: none; appearance: none; cursor: pointer;
}
button.side-link { background: transparent; border: 0; }
button.qa { text-align: center; }

/* ── texto só p/ leitor de tela (visually hidden) + sem anel ao focar o conteúdo por programa ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.scroll:focus { outline: none; }
.scroll:focus-visible { outline: none; }

/* ── pular para o conteúdo: oculto até receber foco por teclado ── */
.skip-link { position: absolute; left: 8px; top: -56px; z-index: 100; background: var(--accent); color: var(--on-accent); padding: 10px 14px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: top .15s; }
.skip-link:focus { top: calc(8px + env(safe-area-inset-top)); outline: 2px solid var(--on-accent); outline-offset: 2px; }

/* ── coach-mark de primeiro uso: ancorado sobre a tab bar, dispensável ── */
.coach-nav {
  position: fixed; left: 12px; right: 12px; bottom: calc(76px + env(safe-area-inset-bottom));
  z-index: 60; background: var(--bg-2); border: 1px solid var(--accent-line);
  border-radius: 16px; padding: 14px 16px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 10px; animation: riseIn .4s var(--ease) both;
}
.coach-nav-txt { font-size: 14px; line-height: 1.5; color: var(--text); }
.coach-nav .btn { align-self: flex-end; }

/* section head */
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0 0 14px; }
.sec-head .lnk { font-size: 13px; color: var(--accent); font-weight: 600; cursor: pointer; white-space: nowrap; }

/* ── ring (streak) ─────────────────────────────────────────── */
.ring-wrap { position: relative; display: inline-grid; place-items: center; }
.ring-wrap .ctr { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }

/* ── image placeholder (when real asset missing) ──────────── */
.imgph {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  background:
    repeating-linear-gradient(135deg, rgba(245,240,234,0.05) 0 10px, rgba(245,240,234,0.02) 10px 20px),
    var(--bg-2);
  border: 1px solid var(--line);
}
.imgph > span {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint);
}
.cover { background-size: cover; background-position: center; }

/* ── sheet / modal ─────────────────────────────────────────── */
.scrim {
  /* absolute: ancora no .app (containing block), não no viewport.
     Crítico p/ funcionar dentro da moldura iPhone, cujo ancestral tem overflow:hidden/transform
     e fazia o scrim fixed cair "lá embaixo", exigindo scroll. */
  position: absolute; inset: 0; z-index: 100; background: rgba(5,4,3,0.62);
  backdrop-filter: blur(3px); display: flex; align-items: flex-end; justify-content: center;
  animation: fade .2s var(--ease);
}
.scrim.center { align-items: center; padding: 20px; }
.sheet {
  width: 100%; max-width: 560px; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 26px 26px 0 0; box-shadow: var(--shadow); max-height: 92vh; overflow-y: auto;
  animation: rise .26s var(--ease);
}
.sheet.modal { border-radius: 24px; max-height: 86vh; animation: pop .24s var(--ease); }
.sheet-grab { width: 40px; height: 4px; border-radius: 999px; background: var(--line); margin: 12px auto 0; }
@keyframes fade { from { opacity: 0; } }
@keyframes rise { from { transform: translateY(40px); opacity: .6; } }
@keyframes pop { from { transform: scale(.96); opacity: .4; } }

/* ── reader (devocional / oração / dia de jornada) ────────── */
.reader { font-size: calc(17px * var(--tsize)); line-height: 1.72; color: var(--muted-2); text-wrap: pretty; }
.reader p { margin: 0 0 18px; }
.reader .big-verse {
  font-family: var(--verse-font, var(--serif)); font-style: italic; font-weight: 500;
  font-size: clamp(28px, 6.4vw, 40px); line-height: 1.16; color: var(--text); margin: 0;
}
.reader h4 { font-size: calc(13px * var(--tsize)); font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin: 32px 0 12px; font-weight: 500; }

/* ── entrance animations ──────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .rise-in { animation: riseIn .5s var(--ease) both; }
  .rise-in-2 { animation: riseIn .5s var(--ease) .06s both; }
  .rise-in-3 { animation: riseIn .5s var(--ease) .12s both; }
  .rise-in-4 { animation: riseIn .5s var(--ease) .18s both; }
}
@keyframes riseIn { from { opacity: 0; transform: translateY(14px); } }

/* flame flicker */
@media (prefers-reduced-motion: no-preference) {
  .flame { animation: flick 2.6s ease-in-out infinite; transform-origin: 50% 80%; }
}
@keyframes flick { 0%,100% { transform: scale(1) rotate(-1deg); } 50% { transform: scale(1.06) rotate(1.5deg); } }

/* grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.row { display: flex; align-items: center; gap: 12px; }
.col-flow { display: flex; flex-direction: column; }
.stack { display: flex; flex-direction: column; gap: 12px; }
.spread { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.wrap { flex-wrap: wrap; }
.scroll-x { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.scroll-x::-webkit-scrollbar { display: none; }

/* quick-access tile */
.qa {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 8px; border-radius: var(--radius-sm); background: var(--surface);
  border: 1px solid var(--line); color: var(--text); transition: all .16s var(--ease); cursor: pointer; text-align: center;
}
.qa:hover { transform: translateY(-2px); border-color: var(--accent-line); background: var(--surface-2); }
.qa:active { transform: translateY(0) scale(.97); }
.qa .ic {
  position: relative; color: var(--accent); display: grid; place-items: center;
  width: 44px; height: 44px; flex: 0 0 auto; border-radius: 50%; background: var(--accent-soft);
  transition: transform .18s var(--ease);
}
.qa:hover .ic { transform: scale(1.06); }
.qa span { font-size: calc(12.5px * var(--tsize)); font-weight: 500; }

/* list row */
.lrow {
  display: flex; align-items: center; gap: 13px; padding: 13px 14px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--line); cursor: pointer; transition: all .16s var(--ease);
}
.lrow:hover { border-color: var(--accent-line); transform: translateY(-1px); }
.lrow-ico { width: 40px; height: 40px; border-radius: var(--radius-xs); background: var(--surface-2); display: grid; place-items: center; flex: 0 0 auto; color: var(--accent); }

/* price */
.price-old { text-decoration: line-through; color: var(--faint); font-size: 0.85em; }
.price-now { color: var(--accent); font-weight: 700; }

/* ── selos de oferta / conversão (loja) ─────────────────────── */
/* INTENÇÃO: centralizar selo de desconto + pill de economia no design system,
   evitando estilos inline repetidos. NÃO são inputs — font-size < 16px aqui é
   seguro e não reintroduz o auto-zoom do iOS (piso de 16px é só para .field/input).
   .disc-badge é position:absolute: o container-pai DEVE ser position:relative
   (a capa de produto .imgph / Picture já é relative — ok). */
.disc-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 5px 8px;
  border-radius: var(--radius-xs);
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 4px 14px var(--accent-soft);
  pointer-events: none;
}
.save-pill {
  display: inline-flex; align-items: center;
  font-family: var(--mono); font-size: calc(11px * var(--tsize)); font-weight: 500;
  letter-spacing: 0.04em; color: var(--accent);
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  border-radius: 999px; padding: 4px 10px; line-height: 1; white-space: nowrap;
}

/* responsive */
@media (min-width: 900px) {
  .sidebar { display: flex; }
  .tabbar { display: none; }
  .appbar { display: none; }
  .col { padding-top: 30px; }
  .desk-only { display: revert; }
  .mob-only { display: none !important; }
}
@media (max-width: 899px) {
  .desk-only { display: none !important; }
}

.center-narrow { max-width: 460px; margin: 0 auto; }
.muted { color: var(--muted); }
.faint { color: var(--faint); }
.accent { color: var(--accent); }
.tc { text-align: center; }
.hidden { display: none !important; }
.starline { color: var(--accent); letter-spacing: 2px; font-size: 13px; }

/* estado capitulo atual — destaque ritual da timeline (mudanca screen-jornadas) */
.lrow--now {
  border-color: var(--accent-line);
  background: linear-gradient(160deg, var(--accent-soft), var(--surface) 60%);
  box-shadow: 0 0 0 1px var(--accent-line), 0 10px 30px -8px var(--accent-soft);
}
.lrow--now .lrow-ico {
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px var(--accent-line);
}

/* ── respeito total a prefers-reduced-motion: zera animações/transições e
   neutraliza translateY de entrada, sem alterar o layout final. Cobre o que
   o @media no-preference acima NÃO cobre: scrim fade/rise/pop, o riseIn
   aplicado inline no onboarding/cards e todas as transitions de hover. ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .flame { animation: none !important; }
  .rise-in, .rise-in-2, .rise-in-3, .rise-in-4 { animation: none !important; }
}

/* ── Orar: leitura de oração (santuário dourado) ───────────────
   Suporte às classes aplicadas em screen-orar.jsx (dependência que
   ficou pendente do workflow: .prayer-read/.prayer-amen/.prayer-sanctuary). */
.prayer-read {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: calc(20px * var(--tsize)); line-height: 1.62;
  color: var(--cream); text-wrap: pretty;
}
.prayer-amen {
  display: inline-block; margin-top: 14px; font-style: normal;
  font-family: var(--mono); font-size: calc(12px * var(--tsize));
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
}
.prayer-sanctuary { position: relative; }
.prayer-sanctuary::before {
  content: ''; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: min(420px, 90%); height: 200px; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at center, var(--accent-soft), transparent 70%);
  opacity: 0.85;
}
.prayer-sanctuary > * { position: relative; z-index: 1; }

/* ════════════════════════════════════════════════════════════════
   WOW VISÍVEL (Tier 1) — sóbrio, reverente. Reusa tokens santuário.
   ════════════════════════════════════════════════════════════════ */

/* ── Splash de abertura: anéis da aliança se entrelaçando ──────── */
#ocl-splash{position:fixed;inset:0;z-index:9999;display:grid;place-content:center;justify-items:center;gap:16px;
  background:radial-gradient(ellipse at 50% 42%, #15100A 0%, #0B0805 62%, #090806 100%);
  animation:splGone .55s var(--ease) 1s forwards;}
#ocl-splash.out{opacity:0;pointer-events:none;}
#ocl-splash .spl-rings{filter:drop-shadow(0 0 22px rgba(201,169,110,.32));}
#ocl-splash .spl-ring{stroke-dasharray:126;stroke-dashoffset:126;animation:splRing 1s var(--ease) forwards;}
#ocl-splash .spl-ring-r{animation-delay:.16s;}
#ocl-splash .spl-name{font-family:var(--serif,'Cormorant Garamond',serif);font-weight:600;font-size:clamp(26px,7vw,32px);
  letter-spacing:.005em;color:var(--text,#F5F0EA);opacity:0;animation:splFade .7s var(--ease) .5s forwards;}
#ocl-splash .spl-tag{font-family:var(--mono,'DM Mono',monospace);font-size:11px;letter-spacing:.22em;text-transform:uppercase;
  color:var(--accent,#C9A96E);opacity:0;animation:splFade .7s var(--ease) .72s forwards;}
@keyframes splRing{to{stroke-dashoffset:0;}}
@keyframes splFade{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:none;}}
@keyframes splGone{to{opacity:0;visibility:hidden;pointer-events:none;}}

/* ── Transição de tela: o "caro invisível" (~280ms) ───────────── */
.screen-anim{animation:screenIn .28s var(--ease) both;}
@keyframes screenIn{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:none;}}

/* ── Atmosfera: glow do santuário um pouco mais vivo (sutil) ───── */
.glow-top::before{filter:saturate(1.06) brightness(1.04);}

@media (prefers-reduced-motion: reduce){
  .screen-anim{animation:none;}
  #ocl-splash{animation:splGone .3s linear .4s forwards;}
  #ocl-splash .spl-ring,#ocl-splash .spl-name,#ocl-splash .spl-tag{animation-duration:.01ms;animation-delay:0ms;opacity:1;stroke-dashoffset:0;}
}

/* ── Modo Casal: selo de aliança com os dois nomes (Home) ──────── */
.casal-badge{display:inline-flex;align-items:center;gap:9px;margin-bottom:9px;
  padding:5px 13px 5px 8px;border:1px solid var(--accent-line);border-radius:999px;background:var(--accent-soft);}
.casal-badge svg{flex:0 0 auto;filter:drop-shadow(0 0 6px rgba(201,169,110,.25));}
.casal-badge .casal-nomes{font-family:var(--serif,'Cormorant Garamond',serif);font-size:16px;font-weight:600;color:var(--cream);letter-spacing:.01em;white-space:nowrap;}
.casal-badge .amp{color:var(--accent);font-style:italic;padding:0 1px;}

/* ── Encerramento ritual sóbrio: selo dourado que se firma (sem confete) ── */
.selo-alianca{width:62px;height:62px;margin:0 auto;border-radius:50%;display:grid;place-items:center;
  background:var(--accent-soft);border:1.5px solid var(--accent-line);box-shadow:0 0 0 6px rgba(201,169,110,.06);
  animation:seloIn .5s var(--ease) both;}
@keyframes seloIn{from{transform:scale(.72);opacity:0;}60%{transform:scale(1.04);}to{transform:scale(1);opacity:1;}}
@media (prefers-reduced-motion: reduce){.selo-alianca{animation:none;}}

/* ── Hero cinematográfico da Home: foto do casal + véu + título editorial ── */
.hero-cine{ position:relative; margin:0 -18px; min-height:46vh; min-height:46dvh; display:flex; overflow:hidden; isolation:isolate; }
.hero-cine-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:50% 22%; z-index:-2; }
.hero-cine-veil{ position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg, rgba(9,8,6,.52) 0%, rgba(9,8,6,.10) 30%, rgba(9,8,6,.70) 72%, var(--bg) 100%); }
.hero-cine-body{ position:relative; flex:1; display:flex; flex-direction:column; padding:18px 18px 8px; }
.hero-cine-title{ font-size:clamp(34px,10vw,56px); font-weight:600; line-height:1.0; letter-spacing:-0.015em;
  margin:6px 0 0; color:var(--text); text-shadow:0 2px 34px rgba(0,0,0,.45); }
.hero-cine-sub{ font-size:15px; color:var(--cream); margin:11px 0 0; max-width:430px; line-height:1.5; text-shadow:0 1px 18px rgba(0,0,0,.5); }
@media (min-width: 880px){ .hero-cine{ margin-top:-30px; border-radius:0 0 var(--radius) var(--radius); } }

/* ── Jornadas cinematográficas: mapa editorial de transformação ── */
.jornadas-page,
.jornada-detail-page{
  --journey-stage-h: clamp(430px, 58dvh, 620px);
}
.journeys-stage,
.journey-detail-stage{
  position:relative; margin:0 -18px; min-height:var(--journey-stage-h); overflow:hidden; isolation:isolate;
  border-bottom:1px solid var(--line-2);
}
.journeys-stage-media,
.journey-detail-media{
  position:absolute !important; inset:0; width:100%; height:100%; border:0 !important; border-radius:0 !important; z-index:-3;
}
.journeys-stage-media img,
.journey-detail-media img{ width:100%; height:100%; object-fit:cover; object-position:50% 28%; }
.journeys-stage-veil,
.journey-detail-veil{
  position:absolute; inset:0; z-index:-2;
  background:
    radial-gradient(ellipse at 82% 12%, color-mix(in srgb, var(--accent) 26%, transparent), transparent 38%),
    linear-gradient(180deg, rgba(9,8,6,.34) 0%, rgba(9,8,6,.12) 28%, rgba(9,8,6,.76) 72%, var(--bg) 100%),
    linear-gradient(90deg, rgba(9,8,6,.90) 0%, rgba(9,8,6,.48) 42%, rgba(9,8,6,.14) 100%);
}
.journeys-stage-body,
.journey-detail-body{
  position:relative; min-height:var(--journey-stage-h); display:flex; flex-direction:column; justify-content:flex-end; gap:24px;
  padding:clamp(22px, 6vw, 54px) 18px 24px;
}
.journeys-stage-title,
.journey-detail-copy h1{
  font-size:clamp(42px, 12vw, 76px); font-weight:600; line-height:.95; letter-spacing:0;
  margin:10px 0 0; color:var(--text); text-shadow:0 2px 34px rgba(0,0,0,.52);
  max-width:780px;
}
.journeys-stage-body > div:first-child p,
.journey-detail-copy p{
  max-width:560px; margin:14px 0 0; color:var(--cream); font-size:clamp(15px, 3.9vw, 18px); line-height:1.55;
  text-shadow:0 1px 18px rgba(0,0,0,.48);
}
.journeys-stage-panel,
.journey-detail-panel{
  width:min(100%, 420px); padding:16px; border:1px solid var(--accent-line); border-radius:20px;
  background:linear-gradient(160deg, rgba(13,10,7,.78), rgba(18,14,9,.52));
  box-shadow:0 22px 70px rgba(0,0,0,.34);
}
.journeys-stage-panel h2{
  font-size:27px; font-weight:600; line-height:1; margin:12px 0 0; color:var(--text);
}
.journeys-stage-panel p,
.journey-detail-panel p{ color:var(--muted-2); font-size:14px; line-height:1.55; margin:8px 0 0; }
.journey-progress{ margin-top:14px; }
.journey-progress.compact{ margin-top:16px; }
.journey-progress-meta{
  display:flex; justify-content:space-between; gap:12px; margin-top:7px; font-size:11px; letter-spacing:.04em;
}
.journeys-stage-panel .btn,
.journey-detail-panel .btn{ margin-top:14px; }
.journey-section-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px; margin:28px 0 14px;
}
.journey-cine-list{ display:grid; gap:14px; }
.journey-card-cine{
  position:relative; display:grid; grid-template-columns:38% 1fr; min-height:190px; width:100%; overflow:hidden;
  padding:0; border:1px solid var(--line-2); border-radius:22px; background:var(--surface); color:var(--text);
  text-align:left; font:inherit; box-shadow:none;
  animation:journeyCardIn .52s cubic-bezier(.22,1,.36,1) both;
  animation-delay:calc(min(var(--i, 0), 3) * 70ms);
}
.journey-card-cine::after{
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(115deg, color-mix(in srgb, var(--j-accent) 22%, transparent), transparent 42%);
  opacity:.42;
}
.journey-card-media{ position:relative; min-height:190px; overflow:hidden; }
.journey-card-media .imgph{ height:100% !important; border:0; border-radius:0 !important; }
.journey-card-media img{ width:100%; height:100%; object-fit:cover; object-position:50% 24%; }
.journey-card-scrim{ position:absolute; inset:0; background:linear-gradient(90deg, rgba(9,8,6,.04), rgba(9,8,6,.68)); }
.journey-card-index{
  position:absolute; left:12px; bottom:12px; color:var(--accent); font-size:12px; letter-spacing:.16em;
  text-shadow:0 1px 16px rgba(0,0,0,.55);
}
.journey-card-body{
  position:relative; z-index:1; display:flex; flex-direction:column; min-width:0; padding:18px 16px 16px;
}
.journey-kicker-row{ display:flex; align-items:center; gap:7px; flex-wrap:wrap; }
.journey-card-title{ font-size:clamp(25px, 7vw, 34px); line-height:.98; font-weight:600; margin:14px 0 0; }
.journey-card-sub{ margin-top:5px; color:var(--cream); font-size:14px; }
.journey-card-body p{ margin:10px 0 0; color:var(--muted); font-size:14px; line-height:1.48; }
.journey-card-foot{
  display:flex; justify-content:space-between; align-items:center; gap:10px; margin-top:auto; padding-top:14px;
  color:var(--accent); font-weight:700; font-size:13px;
}
.journey-detail-stage{ --journey-stage-h:clamp(470px, 62dvh, 680px); margin-top:0; }
.journey-detail-body{ justify-content:space-between; }
.journey-detail-copy{ margin-top:auto; }
.journey-detail-panel{ align-self:stretch; }
.journey-status-strip{
  margin-top:18px; display:flex; gap:14px; align-items:center; padding:16px;
  border:1px solid var(--line-2); border-radius:20px; background:var(--surface);
}
@keyframes journeyCardIn{
  from{ opacity:0; transform:translateY(18px); }
  to{ opacity:1; transform:none; }
}
@media (min-width: 760px){
  .journeys-stage-body,
  .journey-detail-body{
    flex-direction:row; align-items:flex-end; justify-content:space-between; padding-left:clamp(28px, 5vw, 64px); padding-right:clamp(28px, 5vw, 64px);
  }
  .journeys-stage-panel,
  .journey-detail-panel{ flex:0 0 360px; }
  .journey-cine-list{ grid-template-columns:repeat(auto-fit, minmax(320px, 1fr)); }
  .journey-card-cine{ grid-template-columns:1fr; min-height:0; }
  .journey-card-media{ min-height:230px; }
}
@media (prefers-reduced-motion: reduce){
  .journey-card-cine{ animation:none; }
}

.push-test {
  padding: 0 16px 16px;
}
.push-test .btn[disabled] {
  opacity: .68;
  cursor: wait;
}

/* Orar cinematográfico */
.orar-view { max-width: 860px; }
.orar-hero {
  position: relative; min-height: 430px; margin: 0 -18px; overflow: hidden; isolation: isolate;
  display: flex; border-radius: 0 0 24px 24px; background: var(--bg-2);
}
.orar-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; z-index: 0;
  transform: scale(1.02);
}
.orar-hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0, transparent 44%, var(--bg) 62%, var(--bg) 100%),
    linear-gradient(180deg, rgba(8,7,5,.28), rgba(8,7,5,.62) 38%, var(--bg) 82%, var(--bg) 100%),
    linear-gradient(90deg, rgba(8,7,5,.76), rgba(8,7,5,.18) 54%, rgba(8,7,5,.72));
}
.orar-hero-body {
  position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; padding: 18px; color: var(--text);
}
.orar-hero-copy { margin-top: auto; max-width: 560px; text-shadow: 0 1px 22px rgba(0,0,0,.62); }
.orar-hero-copy h1 {
  font-size: 38px; line-height: .98; font-weight: 600; margin: 8px 0 0; letter-spacing: 0;
}
.orar-hero-copy p {
  color: var(--cream); font-size: calc(15px * var(--tsize)); line-height: 1.5; margin: 12px 0 0; max-width: 520px;
}
.orar-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.orar-switch {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 16px; padding: 4px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--surface);
}
.orar-switch button {
  min-width: 0; min-height: 44px; border: 0; border-radius: 999px; background: transparent; color: var(--muted);
  display: inline-flex; align-items: center; justify-content: center; gap: 7px; font: inherit; font-weight: 700; cursor: pointer;
}
.orar-switch button.on { background: var(--accent); color: var(--on-accent); }
.orar-filters { margin-top: 18px; }
.orar-section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin: 26px 0 14px;
}
.orar-section-head h2,
.roteiro-section-title h2 {
  margin: 4px 0 0; font-size: 27px; line-height: 1.05; font-weight: 600; letter-spacing: 0;
}
.oracao-grid { display: grid; gap: 12px; }
.oracao-card {
  position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 14px; width: 100%; min-height: 178px;
  padding: 16px; border: 1px solid var(--line-2); border-radius: 22px; background:
    radial-gradient(circle at 16px 10px, color-mix(in srgb, var(--accent) 18%, transparent), transparent 35%),
    var(--surface);
  color: var(--text); text-align: left; font: inherit; overflow: hidden;
  animation: journeyCardIn .48s cubic-bezier(.22,1,.36,1) both;
  animation-delay: calc(min(var(--i, 0), 5) * 46ms);
}
.oracao-card:hover { border-color: var(--accent-line); transform: translateY(-1px); }
.oracao-card-mark {
  width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; color: var(--accent);
  background: var(--accent-soft); border: 1px solid var(--accent-line);
}
.oracao-card-body { min-width: 0; display: flex; flex-direction: column; }
.oracao-card h3 {
  margin: 11px 0 0; font-size: 24px; line-height: 1.05; font-weight: 600; letter-spacing: 0;
}
.oracao-card p {
  margin: 9px 0 0; color: var(--muted); font-size: calc(14px * var(--tsize)); line-height: 1.48;
}
.oracao-card-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: auto; padding-top: 14px;
  color: var(--accent); font-size: 13px; font-weight: 700;
}
.oracao-empty {
  padding: 28px 18px; border: 1px solid var(--line); border-radius: 18px; color: var(--muted); text-align: center;
  background: var(--surface);
}
.roteiros-intro { margin-top: 18px; }
.roteiro-flow {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px;
}
.roteiro-flow div {
  min-width: 0; padding: 12px 10px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface);
}
.roteiro-flow span {
  display: block; color: var(--accent); font-family: var(--mono); font-size: 11px; letter-spacing: .08em; margin-bottom: 5px;
}
.roteiro-flow strong {
  display: block; color: var(--text); font-size: 12px; line-height: 1.18;
}
.roteiro-flow.compact { margin-top: 18px; }
.roteiro-list { display: grid; gap: 12px; margin-top: 16px; }
.roteiro-card {
  display: grid; grid-template-columns: 42px 1fr 18px; gap: 13px; align-items: center; width: 100%; min-height: 150px;
  padding: 16px; border: 1px solid var(--line-2); border-radius: 22px; background: linear-gradient(150deg, var(--surface), rgba(24,18,12,.72));
  color: var(--text); text-align: left; font: inherit;
  animation: journeyCardIn .48s cubic-bezier(.22,1,.36,1) both;
  animation-delay: calc(min(var(--i, 0), 5) * 46ms);
}
.roteiro-card:hover { border-color: var(--accent-line); transform: translateY(-1px); }
.roteiro-card-index {
  align-self: stretch; display: grid; place-items: center; border-radius: 15px; color: var(--accent);
  background: var(--accent-soft); border: 1px solid var(--accent-line); font-size: 13px;
}
.roteiro-card-body { min-width: 0; }
.roteiro-card h3 {
  margin: 11px 0 0; font-size: 24px; line-height: 1.05; font-weight: 600; letter-spacing: 0;
}
.roteiro-card p {
  margin: 8px 0 0; color: var(--muted); font-size: calc(14px * var(--tsize)); line-height: 1.45;
}
.prayer-sheet { padding: 8px 22px 34px; }
.prayer-sheet-mark {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; color: var(--accent);
  margin: 20px 0 14px; background: var(--accent-soft); border: 1px solid var(--accent-line);
}
.prayer-sheet-title {
  font-size: 31px; font-weight: 600; line-height: 1.04; letter-spacing: 0; margin: 0 0 18px;
}
.roteiro-page { max-width: 760px; }
.roteiro-detail-hero {
  position: relative; overflow: hidden; padding: 18px; border: 1px solid var(--line-2); border-radius: 24px;
  background:
    linear-gradient(140deg, rgba(201,169,110,.16), transparent 36%),
    linear-gradient(180deg, var(--surface), rgba(18,14,9,.72));
}
.roteiro-detail-hero .btn { margin-bottom: 18px; }
.roteiro-detail-hero h1 {
  font-size: 36px; line-height: 1; font-weight: 600; letter-spacing: 0; margin: 14px 0 0;
}
.roteiro-detail-hero p {
  margin: 12px 0 0; color: var(--muted-2); font-size: calc(15px * var(--tsize)); line-height: 1.5;
}
.roteiro-section-title { margin: 28px 0 14px; }
.roteiro-questions { display: grid; gap: 12px; }
.roteiro-question {
  display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 16px; border: 1px solid var(--line);
  border-radius: 20px; background: var(--surface);
}
.roteiro-question span {
  width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; color: var(--accent);
  background: var(--accent-soft); border: 1px solid var(--accent-line); font-size: 13px;
}
.roteiro-question p {
  margin: 0; color: var(--text); font-size: calc(16px * var(--tsize)); line-height: 1.5;
}
.roteiro-tips { display: grid; gap: 11px; }
.roteiro-tips div {
  display: flex; gap: 11px; align-items: flex-start; color: var(--muted-2); font-size: calc(15px * var(--tsize)); line-height: 1.5;
}
@media (min-width: 760px) {
  .orar-hero { min-height: 520px; margin-left: 0; margin-right: 0; border-radius: 26px; }
  .orar-hero-body { padding: 26px; }
  .orar-hero-copy h1 { font-size: 48px; }
  .oracao-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .roteiro-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (prefers-reduced-motion: reduce) {
  .oracao-card,
  .roteiro-card { animation: none; }
}
