/* ==========================================================================
   Papira — sistema visual v2 do site
   Tokens exatos do handoff. Não inventar cores fora desta lista.
   ========================================================================== */

/* ---------- Manrope, alojada localmente (sem ligação a fonts.google.com) --- */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
                 U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ------------------------------------------------------- */
:root {
  /* Marca */
  --navy:        #12304A;
  --navy-press:  #0C263B;
  --navy-soft:   #E8F0F5;
  --teal:        #168F8C;
  --teal-dark:   #087572;
  --teal-soft:   #DCF3F1;

  /* Superfícies */
  --bg:          #F7F9FB;
  --surface:     #FFFFFF;
  --surface-2:   #F1F5F8;
  --border:      #D7E1E8;

  /* Texto */
  --text:        #14212B;
  --text-2:      #4C5B66;
  --text-muted:  #66727A;

  /* Estados */
  --ok:          #237A57;  --ok-soft:      #E5F4EC;
  --warn:        #A35F00;  --warn-soft:    #FFF2D8;
  --err:         #B42318;  --err-soft:     #FDE8E7;
  --archived:    #636F79;  --archived-soft:#EEF1F3;

  /* Gradiente v2 */
  --grad-top:    #D8E6F3;
  --grad-mid:    #E7F0F8;
  --grad-bot:    #F7F9FB;

  /* Sombras */
  --sh-card:     0 2px 10px rgba(18,48,74,.06);
  --sh-card-h:   0 10px 28px rgba(18,48,74,.10);
  --sh-cta:      0 6px 18px rgba(18,48,74,.25);
  --sh-phone:    0 30px 70px rgba(18,48,74,.18), 0 6px 18px rgba(18,48,74,.10);

  /* Métrica */
  --r-card:      20px;
  --r-card-sm:   18px;
  --r-pill:      999px;
  --wrap:        1160px;
  --wrap-narrow: 760px;
  --gap:         clamp(1rem, 2.5vw, 1.75rem);
  --sec-y:       clamp(3.5rem, 8vw, 7rem);

  --ease:        cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, picture { max-width: 100%; display: block; }
/* tamanho por defeito de qualquer ícone; os contextos específicos sobrepõem-se */
.ic { width: 20px; height: 20px; flex: 0 0 auto; display: inline-block; vertical-align: -.3em; }
button, input, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; font-weight: 800; letter-spacing: -.02em; color: var(--navy); }
p  { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
a { color: var(--teal-dark); text-underline-offset: .18em; text-decoration-thickness: .07em; }
a:hover { color: var(--navy); }
hr { border: 0; border-top: 1px solid var(--border); margin: 2.5rem 0; }

:focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 999;
  background: var(--navy); color: #fff; padding: .75rem 1.25rem;
  border-radius: var(--r-pill); font-weight: 700; text-decoration: none;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 1rem; color: #fff; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ------------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }
@media (max-width: 640px) { .wrap, .wrap-narrow { width: calc(100% - 2rem); } }

.section { padding-block: var(--sec-y); position: relative; }
.section--tint { background: var(--surface-2); }
.section--white { background: var(--surface); }

.sec-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
.sec-head p  { font-size: clamp(1.0625rem, 1.4vw, 1.1875rem); color: var(--text-2); margin: 0; }

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--teal-soft); color: var(--teal-dark);
  font-size: .8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem .85rem; border-radius: var(--r-pill); margin-bottom: 1rem;
}

/* ---------- Botões (pílulas) --------------------------------------------- */
.btn {
  --btn-bg: var(--navy); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .8rem 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd); border-radius: var(--r-pill);
  font-weight: 700; font-size: 1rem; line-height: 1.2; text-decoration: none;
  cursor: pointer; box-shadow: var(--sh-cta);
  transition: background-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { --btn-bg: var(--navy-press); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(18,48,74,.28); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  --btn-bg: var(--surface); --btn-fg: var(--navy); --btn-bd: var(--navy);
  box-shadow: none;
}
.btn--ghost:hover { --btn-bg: var(--navy-soft); --btn-fg: var(--navy); color: var(--navy); box-shadow: none; }
.btn--sm { min-height: 42px; padding: .55rem 1.15rem; font-size: .9375rem; }
.btn--wide { width: 100%; }
.btn[aria-disabled="true"], .btn--soon {
  --btn-bg: var(--navy-soft); --btn-fg: var(--navy); --btn-bd: var(--border);
  box-shadow: none; cursor: default; font-weight: 600;
}
.btn[aria-disabled="true"]:hover, .btn--soon:hover { --btn-bg: var(--navy-soft); transform: none; box-shadow: none; color: var(--navy); }
.btn .ic { width: 20px; height: 20px; flex: 0 0 auto; }

.cta-row { display: flex; flex-wrap: wrap; gap: .875rem; align-items: center; }
.cta-note {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9375rem; color: var(--text-2); font-weight: 500;
}
.cta-note .ic { width: 18px; height: 18px; color: var(--teal-dark); }

/* ---------- Cabeçalho ---------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,249,251,0);
  transition: background-color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 16px rgba(18,48,74,.05);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 72px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand svg { height: 30px; width: auto; }
.brand:focus-visible { outline-offset: 6px; }

.nav { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav a.nav__link {
  padding: .55rem .8rem; border-radius: var(--r-pill);
  color: var(--text-2); font-weight: 600; font-size: .9375rem; text-decoration: none;
  transition: background-color .16s var(--ease), color .16s var(--ease);
}
.nav a.nav__link:hover { background: var(--navy-soft); color: var(--navy); }
.nav__sep { width: 1px; height: 22px; background: var(--border); margin-inline: .5rem; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 46px; height: 46px; align-items: center; justify-content: center;
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 14px;
  color: var(--navy); cursor: pointer;
}
.nav-toggle .ic { width: 22px; height: 22px; }
.nav-toggle[aria-expanded="true"] .ic-menu { display: none; }
.nav-toggle .ic-close { display: none; }
.nav-toggle[aria-expanded="true"] .ic-close { display: block; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .25rem;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.5rem; margin: 0;
    box-shadow: 0 20px 40px rgba(18,48,74,.12);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
    max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav a.nav__link { padding: .8rem 1rem; font-size: 1.0625rem; }
  .nav__sep { display: none; }
  .nav .btn { width: 100%; margin-top: .5rem; }
  .lang { width: 100%; }
  .lang__btn { width: 100%; justify-content: space-between; }
  .lang__menu { position: static; width: 100%; box-shadow: none; border-color: var(--border); margin-top: .375rem; }
}

/* ---------- Seletor de idioma ------------------------------------------- */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem .8rem; border-radius: var(--r-pill);
  background: transparent; border: 1.5px solid var(--border);
  color: var(--text-2); font-weight: 600; font-size: .9375rem; cursor: pointer;
}
.lang__btn:hover { background: var(--navy-soft); color: var(--navy); border-color: var(--navy-soft); }
.lang__btn .ic { width: 17px; height: 17px; }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + .5rem); z-index: 20;
  min-width: 11rem; padding: .375rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: 0 16px 40px rgba(18,48,74,.14);
  list-style: none; margin: 0;
}
.lang__menu[hidden] { display: none; }
.lang__menu a {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .6rem .75rem; border-radius: 11px;
  color: var(--text); text-decoration: none; font-weight: 600; font-size: .9375rem;
}
.lang__menu a:hover { background: var(--surface-2); }
.lang__menu a[aria-current="true"] { color: var(--teal-dark); }
.lang__menu a[aria-current="true"]::after { content: "✓"; font-weight: 800; }

/* ---------- Hero --------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--grad-top) 0%, var(--grad-mid) 42%, var(--grad-bot) 100%);
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5.5rem);
  margin-top: -72px; padding-top: calc(72px + clamp(2.5rem, 6vw, 4.5rem));
}
.hero::before, .hero::after { content: ""; position: absolute; pointer-events: none; border-radius: 50%; }
.hero::before {
  width: 46rem; height: 46rem; left: -14rem; top: -18rem;
  background: radial-gradient(circle, rgba(22,143,140,.09) 0%, rgba(22,143,140,0) 68%);
}
.hero::after {
  width: 52rem; height: 52rem; right: -18rem; top: -8rem;
  background: radial-gradient(circle, rgba(18,48,74,.08) 0%, rgba(18,48,74,0) 66%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero h1 {
  font-size: clamp(2.25rem, 5.4vw, 3.75rem);
  letter-spacing: -.035em; line-height: 1.05; margin-bottom: .55em;
  text-wrap: balance;
}
.hero__sub {
  font-size: clamp(1.0625rem, 1.65vw, 1.3125rem);
  color: var(--text-2); max-width: 34rem; margin-bottom: 2rem;
  text-wrap: pretty;
}
.hero__proof {
  display: flex; flex-wrap: wrap; gap: .5rem .75rem; margin: 1.75rem 0 0;
  padding: 0; list-style: none;
}
.hero__proof li {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.9);
  padding: .45rem .9rem; border-radius: var(--r-pill);
  font-size: .875rem; font-weight: 600; color: var(--navy);
  box-shadow: 0 1px 4px rgba(18,48,74,.05);
}
.hero__proof .ic { width: 16px; height: 16px; color: var(--teal-dark); }
.hero__visual { display: flex; justify-content: center; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; text-align: left; }
  .hero__visual { margin-top: 1rem; }
  .hero__sub { max-width: none; }
}

/* ---------- Faixa de confiança ------------------------------------------- */
.trustline { background: var(--surface); border-bottom: 1px solid var(--border); }
.trustline__inner {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-block: 1.5rem;
}
.trustline .ic-badge {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 13px;
  background: var(--teal-soft); color: var(--teal-dark);
  display: grid; place-items: center;
}
.trustline .ic-badge .ic { width: 22px; height: 22px; }
.trustline p { margin: 0; color: var(--text-2); font-size: 1.0625rem; }
.trustline strong { color: var(--text); font-weight: 700; }

/* ---------- Cartões ------------------------------------------------------ */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: clamp(1.25rem, 2.2vw, 1.75rem);
  box-shadow: var(--sh-card);
}
.grid { display: grid; gap: var(--gap); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

/* Sinais de confiança */
.signal { text-align: left; }
.signal__ic {
  width: 52px; height: 52px; border-radius: 16px; margin-bottom: 1rem;
  background: var(--navy-soft); color: var(--navy);
  display: grid; place-items: center;
}
.signal__ic .ic { width: 26px; height: 26px; }
.signal h3 { font-size: 1.1875rem; margin-bottom: .35em; }
.signal p { margin: 0; color: var(--text-2); font-size: .9875rem; }

/* ---------- Como funciona ------------------------------------------------ */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step__n {
  width: 46px; height: 46px; border-radius: var(--r-pill);
  background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.125rem;
  margin-bottom: 1rem; box-shadow: var(--sh-cta);
}
.step h3 { font-size: 1.25rem; margin-bottom: .35em; }
.step p { margin: 0; color: var(--text-2); }
.how__layout {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 900px) { .how__layout { grid-template-columns: 1fr; } }

/* ---------- Módulos ------------------------------------------------------ */
.modules { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: var(--gap); }
.module {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card-sm); padding: 1.5rem;
  box-shadow: var(--sh-card);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.module:hover { transform: translateY(-3px); box-shadow: var(--sh-card-h); border-color: #C6D6E1; }
.module__ic {
  width: 44px; height: 44px; border-radius: 14px; margin-bottom: 1rem;
  background: var(--teal-soft); color: var(--teal-dark);
  display: grid; place-items: center;
}
.module__ic .ic { width: 22px; height: 22px; }
.module h3 { font-size: 1.0625rem; margin-bottom: .4em; letter-spacing: -.015em; }
.module p { margin: 0 0 .75rem; color: var(--text); font-weight: 600; font-size: .9875rem; }
.module .module__detail { color: var(--text-2); font-weight: 400; font-size: .9125rem; margin: 0; }

/* ---------- Bloco de privacidade ---------------------------------------- */
.privacy-block {
  background: linear-gradient(180deg, #10293F 0%, var(--navy) 100%);
  color: #E9F1F6; position: relative; overflow: hidden;
}
.privacy-block::after {
  content: ""; position: absolute; width: 40rem; height: 40rem; right: -12rem; bottom: -18rem;
  background: radial-gradient(circle, rgba(22,143,140,.22) 0%, rgba(22,143,140,0) 68%);
  border-radius: 50%; pointer-events: none;
}
.privacy-block .wrap { position: relative; z-index: 1; }
.privacy-block h2 { color: #fff; }
.privacy-block .kicker { background: rgba(220,243,241,.14); color: #8FE0DC; }
.privacy-block .sec-head p { color: #B9CCDA; }
.privacy-block .p-item {
  display: flex; gap: .875rem; align-items: flex-start;
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-card-sm); padding: 1.25rem;
}
.privacy-block .p-item .ic-check {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(143,224,220,.16); color: #8FE0DC;
  display: grid; place-items: center;
}
.privacy-block .p-item .ic-check .ic { width: 15px; height: 15px; }
.privacy-block .p-item h3 { color: #fff; font-size: 1.0125rem; margin-bottom: .3em; letter-spacing: -.01em; }
.privacy-block .p-item p { margin: 0; color: #B9CCDA; font-size: .9125rem; }
.privacy-block .btn--ghost { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.45); }
.privacy-block .btn--ghost:hover { --btn-bg: rgba(255,255,255,.10); --btn-fg: #fff; color: #fff; }

/* ---------- Split (família / países) ------------------------------------ */
.split {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.split--rev .split__media { order: -1; }
.split__media { display: flex; justify-content: center; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
}
.ticks { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .625rem; }
.ticks li { display: flex; gap: .625rem; align-items: flex-start; color: var(--text-2); }
.ticks .ic { width: 20px; height: 20px; flex: 0 0 auto; color: var(--teal-dark); margin-top: .18rem; }
.note-box {
  display: flex; gap: .75rem; align-items: flex-start;
  margin-top: 1.75rem; padding: 1rem 1.125rem;
  background: var(--surface-2); border: 1px solid var(--border);
  border-left: 3px solid var(--teal); border-radius: 0 14px 14px 0;
  color: var(--text-2); font-size: .9375rem;
}
.note-box p { margin: 0; }
.note-box .ic { color: var(--teal-dark); margin-top: .1rem; }

/* ---------- Planos ------------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: var(--gap); align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 1.625rem;
  box-shadow: var(--sh-card);
}
.plan--accent { border-color: var(--navy); box-shadow: 0 12px 34px rgba(18,48,74,.13); }
.plan h3 { font-size: 1.1875rem; margin-bottom: .25em; }
.plan__price { display: flex; align-items: baseline; gap: .4rem; margin: .75rem 0 .15rem; }
.plan__price b { font-size: 2rem; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.plan__price span { color: var(--text-2); font-size: .9375rem; font-weight: 600; }
.plan__annual {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--teal-dark); background: var(--teal-soft);
  padding: .25rem .6rem; border-radius: var(--r-pill); margin-bottom: 1rem;
}
.plan__summary { color: var(--text-2); font-size: .9375rem; margin-bottom: 1.125rem; }
.plan__list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .5rem; }
.plan__list li { display: flex; gap: .5rem; align-items: flex-start; font-size: .9125rem; color: var(--text-2); }
.plan__list .ic { width: 17px; height: 17px; flex: 0 0 auto; color: var(--teal-dark); margin-top: .22rem; }
.plan__note { font-size: .8375rem; color: var(--text-muted); margin: -.75rem 0 1.25rem; }
.plan .btn { margin-top: auto; }
.plans-meta { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 1rem 1.75rem; align-items: center; font-size: .9375rem; color: var(--text-2); }

/* ---------- Tabela de comparação ---------------------------------------- */
.table-scroll { overflow-x: auto; scrollbar-gutter: stable; border-radius: var(--r-card); border: 1px solid var(--border); background: var(--surface); box-shadow: var(--sh-card); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 44rem; }
table.cmp caption { text-align: left; padding: 1rem 1.25rem; color: var(--text-2); font-size: .9375rem; }
table.cmp th, table.cmp td { padding: .875rem 1rem; text-align: left; border-bottom: 1px solid var(--border); font-size: .9375rem; vertical-align: top; }
table.cmp thead th { background: var(--surface-2); color: var(--navy); font-weight: 800; position: sticky; top: 0; }
table.cmp tbody th { font-weight: 600; color: var(--text); }
table.cmp td { color: var(--text-2); }
table.cmp tbody tr:last-child th, table.cmp tbody tr:last-child td { border-bottom: 0; }
.cell-yes { color: var(--ok); font-weight: 700; display: inline-flex; align-items: center; gap: .35rem; }
.cell-no  { color: var(--text-muted); display: inline-flex; align-items: center; gap: .35rem; }
.cell-yes .ic, .cell-no .ic { width: 16px; height: 16px; }

/* ---------- FAQ ---------------------------------------------------------- */
.faq { display: grid; gap: .75rem; }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card-sm); box-shadow: var(--sh-card);
  overflow: hidden;
}
.faq details[open] { border-color: #C6D6E1; }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.125rem 1.375rem; cursor: pointer;
  font-weight: 700; color: var(--navy); font-size: 1.0125rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--surface-2); }
.faq summary .chev {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy-soft); color: var(--navy);
  display: grid; place-items: center;
  transition: transform .2s var(--ease), background-color .2s var(--ease);
}
.faq summary .chev .ic { width: 15px; height: 15px; }
.faq details[open] summary .chev { transform: rotate(180deg); background: var(--teal-soft); color: var(--teal-dark); }
.faq .faq__a { padding: 0 1.375rem 1.375rem; color: var(--text-2); }
.faq .faq__a p:last-child { margin: 0; }

/* ---------- CTA final ---------------------------------------------------- */
.final-cta {
  background: linear-gradient(180deg, var(--grad-bot) 0%, var(--grad-mid) 55%, var(--grad-top) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; width: 44rem; height: 44rem; left: 50%; bottom: -26rem; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(22,143,140,.10) 0%, rgba(22,143,140,0) 66%);
  border-radius: 50%; pointer-events: none;
}
.final-cta .wrap { position: relative; z-index: 1; }
.final-cta__icon {
  width: 84px; height: 84px; border-radius: 22px; margin: 0 auto 1.5rem;
  box-shadow: 0 14px 34px rgba(18,48,74,.22); overflow: hidden;
}
.final-cta__icon svg { width: 100%; height: 100%; }
.final-cta h2 { font-size: clamp(1.75rem, 3.6vw, 2.5rem); }
.final-cta p { color: var(--text-2); font-size: 1.0625rem; max-width: 38rem; margin-inline: auto; }
.final-cta .cta-row { justify-content: center; margin-top: 1.75rem; }

/* ---------- Rodapé ------------------------------------------------------- */
.site-footer { background: var(--navy); color: #B9CCDA; padding-block: clamp(2.5rem, 5vw, 4rem) 2rem; }
.site-footer a { color: #D5E3EC; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer__top { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 2rem; }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand svg { height: 30px; width: auto; margin-bottom: 1rem; }
.footer__brand p { color: #94ADC0; font-size: .9375rem; max-width: 22rem; }
.site-footer h3 { color: #fff; font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .9rem; font-weight: 800; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; font-size: .9375rem; }
.footer__bottom {
  margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.13);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: .875rem; color: #94ADC0;
}
.footer__lang { display: flex; flex-wrap: wrap; gap: .375rem; list-style: none; padding: 0; margin: 0; }
.footer__lang a {
  display: inline-block; padding: .3rem .75rem; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.18); font-size: .8125rem; font-weight: 600;
}
.footer__lang a:hover { background: rgba(255,255,255,.10); text-decoration: none; }
.footer__lang a[aria-current="true"] { background: rgba(255,255,255,.14); color: #fff; border-color: transparent; }

/* ---------- Páginas de texto -------------------------------------------- */
.page-head {
  background: linear-gradient(180deg, var(--grad-top) 0%, var(--grad-bot) 100%);
  padding-block: clamp(3rem, 7vw, 5rem) clamp(2rem, 4vw, 3rem);
  margin-top: -72px; padding-top: calc(72px + clamp(3rem, 7vw, 5rem));
}
.page-head h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: .3em; }
.page-head .page-meta { color: var(--text-2); font-size: .9375rem; margin: 0; }
.prose { padding-block: clamp(2.5rem, 5vw, 4rem); }
.prose h2 { font-size: clamp(1.375rem, 2.4vw, 1.75rem); margin-top: 2.5rem; }
.prose h2:first-of-type { margin-top: 0; }
.prose p, .prose li { color: var(--text-2); font-size: 1.0125rem; }
.prose li { margin-bottom: .45em; }
.prose strong { color: var(--text); }
.prose .lead { font-size: 1.125rem; color: var(--text); }
.draft-banner {
  display: flex; gap: .875rem; align-items: flex-start;
  background: var(--warn-soft); border: 1px solid #EBCB94; border-radius: var(--r-card-sm);
  padding: 1rem 1.125rem; margin-bottom: 2rem; color: #6E4300;
}
.draft-banner .ic { width: 22px; height: 22px; flex: 0 0 auto; color: var(--warn); margin-top: .1rem; }
.draft-banner b { display: block; color: var(--warn); text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; margin-bottom: .2rem; }
.draft-banner p { margin: 0; font-size: .9375rem; color: #6E4300; }
.callout {
  display: flex; gap: .875rem; align-items: flex-start;
  background: var(--err-soft); border: 1px solid #F3C3BF; border-radius: var(--r-card-sm);
  padding: 1rem 1.125rem; margin: 2rem 0; color: #7A1B12;
}
.callout .ic { width: 22px; height: 22px; flex: 0 0 auto; color: var(--err); margin-top: .1rem; }
.callout p { margin: 0; font-size: .9375rem; color: #7A1B12; }

/* ---------- Mockup de telemóvel (placeholder até haver capturas reais) --- */
.shot {
  margin: 0; width: 100%;
  /* dimensões reservadas: a troca por <img> não muda o layout */
  aspect-ratio: 320 / 660;
  position: relative;
}
.shot--lg { aspect-ratio: 348 / 718; }
.shot > img { width: 100%; height: 100%; object-fit: contain; }

.phone {
  position: absolute; inset: 0;
  background: #0B1B28;
  border-radius: 40px; padding: 9px;
  box-shadow: var(--sh-phone);
}
.phone::after { /* brilho de vidro */
  content: ""; position: absolute; inset: 0; border-radius: 40px; pointer-events: none;
  background: linear-gradient(145deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 34%);
}
.phone__screen {
  position: relative; height: 100%; width: 100%;
  background: var(--bg); border-radius: 32px; overflow: hidden;
  display: flex; flex-direction: column;
  font-size: 11px; line-height: 1.35;
}
.phone__island {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 20px; background: #0B1B28; border-radius: 999px; z-index: 5;
}
.scr { flex: 1; overflow: hidden; padding: 34px 13px 0; display: flex; flex-direction: column; }
.scr__title { font-size: 19px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; margin: 4px 0 12px; }
.scr__label { font-size: 12px; font-weight: 800; color: var(--navy); margin: 4px 0 7px; }
.scr__sub { font-size: 10px; color: var(--text-muted); margin: 0 0 6px; }
.scr__card {
  background: #fff; border-radius: 14px; padding: 10px 11px; margin-bottom: 8px;
  box-shadow: 0 1px 4px rgba(18,48,74,.07);
}
.scr__row { display: flex; align-items: center; gap: 9px; }
.scr__name { font-size: 12px; font-weight: 700; color: var(--text); }
.scr__meta { font-size: 10px; color: var(--text-muted); }
.pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 700; margin-top: 6px;
}
.pill .ic { width: 11px; height: 11px; }
.pill--err  { background: var(--err-soft);  color: var(--err); }
.pill--warn { background: var(--warn-soft); color: var(--warn); }
.pill--ok   { background: var(--ok-soft);   color: var(--ok); }
.pill--info { background: var(--teal-soft); color: var(--teal-dark); }
.pill--soft { background: var(--navy-soft); color: var(--navy); }
.datechip {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 11px; background: var(--navy-soft);
  display: grid; place-content: center; text-align: center; line-height: 1;
}
.datechip b { font-size: 14px; font-weight: 800; color: var(--navy); }
.datechip span { font-size: 8.5px; color: var(--text-2); font-weight: 600; }
.avatar {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: var(--navy-soft);
  display: grid; place-items: center; color: var(--navy);
}
.avatar .ic { width: 17px; height: 17px; }
.scr__field { margin-bottom: 9px; }
.scr__field .k { font-size: 9.5px; color: var(--text-muted); font-weight: 600; }
.scr__field .v { font-size: 12px; color: var(--text); font-weight: 600; }
.scr__chips { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px; }
.chip {
  padding: 5px 10px; border-radius: 999px; font-size: 10px; font-weight: 700;
  border: 1px solid var(--border); background: #fff; color: var(--text-2);
}
.chip--on { background: var(--navy-soft); border-color: var(--navy-soft); color: var(--navy); }
.scr__cta {
  margin-top: auto; margin-bottom: 10px;
  background: var(--navy); color: #fff; border-radius: 999px;
  padding: 9px; text-align: center; font-size: 11.5px; font-weight: 700;
}
.scr__cta--ghost { background: #fff; color: var(--navy); border: 1px solid var(--border); }
.scr__divider { height: 1px; background: var(--border); margin: 9px 0; }
.thumbs { display: flex; gap: 7px; }
.thumb {
  flex: 1; aspect-ratio: 3/2; border-radius: 9px; border: 1px dashed var(--border);
  background: repeating-linear-gradient(135deg, #F1F5F8 0 7px, #E8EFF4 7px 14px);
  display: grid; place-items: center; color: var(--text-muted); font-size: 9px; font-weight: 700;
}
.nav-bar {
  display: flex; justify-content: space-around; align-items: center;
  padding: 7px 4px 12px; background: #fff; border-top: 1px solid var(--border);
}
.nav-bar div { display: grid; justify-items: center; gap: 3px; color: var(--text-muted); font-size: 9px; font-weight: 600; }
.nav-bar div .ic { width: 17px; height: 17px; }
.nav-bar div.on { color: var(--navy); font-weight: 800; }
.nav-bar div.on .ic-wrap { background: var(--navy-soft); }
.nav-bar .ic-wrap { padding: 3px 11px; border-radius: 999px; display: grid; place-items: center; }
.fab {
  position: absolute; right: 13px; bottom: 62px;
  width: 38px; height: 38px; border-radius: 13px; background: var(--navy); color: #fff;
  display: grid; place-items: center; box-shadow: var(--sh-cta);
}
.fab .ic { width: 19px; height: 19px; }
.shot__caption {
  position: absolute; left: 50%; bottom: -2.1rem; transform: translateX(-50%);
  white-space: nowrap; font-size: .75rem; color: var(--text-muted); font-weight: 600;
}
.shot-wrap { position: relative; padding-bottom: 2.5rem; width: min(100%, 320px); }
.shot-wrap--lg { width: min(100%, 348px); }

/* ---------- Reveal ------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal[style*="--d"] { transition-delay: var(--d); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .shot, .btn { display: none !important; }
  body { background: #fff; }
}

/* ==========================================================================
   MOVIMENTO E ATMOSFERA  —  v2.1
   Vocabulário emprestado do vasmsolutions.com e traduzido para a marca Papira:
   revelações lentas (0.8s) com escada de 0.12s, entrada encenada do hero,
   gradientes radiais posicionados, e secções que se derretem umas nas outras
   em vez de encostarem a direito.
   Tudo desligado por prefers-reduced-motion (ver fim do ficheiro).
   ========================================================================== */

:root {
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --grad-accent: linear-gradient(90deg, var(--navy) 0%, var(--teal) 100%);
}

/* ---------- Barra de progresso de leitura ------------------------------- */
.progress {
  position: absolute; left: 0; bottom: -1px; height: 2px; width: 0;
  background: var(--grad-accent);
  transition: width .1s linear;
  pointer-events: none; z-index: 1;
}

/* ---------- Entrada encenada do hero ------------------------------------ */
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes riseSoft {
  from { opacity: 0; transform: translateY(34px) scale(.985); }
  to   { opacity: 1; transform: none; }
}
.hero [data-enter] {
  opacity: 0;
  animation: rise .9s var(--ease-soft) forwards;
  animation-delay: var(--enter-delay, 0ms);
}
.hero .hero__visual[data-enter] { animation-name: riseSoft; animation-duration: 1.15s; }

/* ---------- Flutuação lenta do telemóvel -------------------------------- */
@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
.hero .shot .phone { animation: drift 7s ease-in-out 1.4s infinite; }

/* ---------- Ponto que pulsa no aviso "Em breve" ------------------------- */
@keyframes pulseDot {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: .45; transform: scale(.82); }
}
.btn--soon .dot {
  width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto;
  background: var(--teal-dark);
  animation: pulseDot 2.4s ease-in-out infinite;
}

/* ---------- Revelações mais lentas, com escada -------------------------- */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
  transition-delay: var(--d, 0ms);
}

/* ---------- Atmosfera: radiais posicionados em vez de círculos ---------- */
.hero::before, .hero::after { display: none; }
.hero {
  background:
    radial-gradient(78% 58% at 72% 34%, rgba(22,143,140,.13) 0%, rgba(22,143,140,0) 62%),
    radial-gradient(62% 52% at 12% 72%, rgba(18,48,74,.10) 0%, rgba(18,48,74,0) 60%),
    linear-gradient(180deg, var(--grad-top) 0%, var(--grad-mid) 42%, var(--grad-bot) 100%);
}

/* Textura de grelha, quase invisível, só sobre o navy */
.privacy-block::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(72% 62% at 50% 42%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(72% 62% at 50% 42%, #000 0%, transparent 78%);
}
.privacy-block::after {
  background: radial-gradient(64% 56% at 78% 76%, rgba(22,143,140,.26) 0%, rgba(22,143,140,0) 62%);
  width: 100%; height: 100%; right: 0; bottom: 0; border-radius: 0;
}

/* ---------- Secções que se derretem umas nas outras --------------------- */
.privacy-block {
  background:
    linear-gradient(180deg, #10293F 0%, var(--navy) 55%, #0E2639 100%);
}
.privacy-block::before { z-index: 0; }
/* transição suave a entrar e a sair do bloco escuro */
.melt-into-dark { height: 90px; background: linear-gradient(180deg, var(--bg) 0%, #10293F 100%); }
.melt-from-dark { height: 90px; background: linear-gradient(180deg, #0E2639 0%, var(--surface) 100%); }

/* ---------- Linha de acento por baixo dos títulos de secção ------------- */
.sec-head h2::after {
  content: ""; display: block; width: 46px; height: 3px; border-radius: 3px;
  margin-top: .7rem; background: var(--grad-accent);
}
.sec-head--center h2::after { margin-inline: auto; }
.privacy-block .sec-head h2::after,
.privacy-block h2::after {
  background: linear-gradient(90deg, #8FE0DC 0%, rgba(143,224,220,0) 100%);
}
.split > div > h2::after {
  content: ""; display: block; width: 46px; height: 3px; border-radius: 3px;
  margin-top: .7rem; background: var(--grad-accent);
}

/* ---------- Brilho que atravessa o CTA principal ------------------------ */
.btn:not(.btn--ghost):not(.btn--soon) { position: relative; overflow: hidden; }
.btn:not(.btn--ghost):not(.btn--soon)::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.20) 50%, transparent 62%);
  transform: translateX(-130%);
  transition: transform .7s var(--ease-soft);
}
.btn:not(.btn--ghost):not(.btn--soon):hover::after { transform: translateX(130%); }

/* ---------- Micro-interações mais vivas --------------------------------- */
.module, .card, .plan {
  transition: transform .28s var(--ease-soft), box-shadow .28s var(--ease-soft),
              border-color .28s var(--ease-soft);
}
.module:hover { transform: translateY(-5px); }
.plan:hover   { transform: translateY(-3px); box-shadow: var(--sh-card-h); }
.signal:hover { transform: translateY(-3px); box-shadow: var(--sh-card-h); }
.faq details  { transition: border-color .2s var(--ease-soft), box-shadow .2s var(--ease-soft); }
.faq details[open] { box-shadow: 0 6px 20px rgba(18,48,74,.08); }
.nav a.nav__link, .lang__btn, .footer__lang a { transition: background-color .15s var(--ease-soft), color .15s var(--ease-soft), border-color .15s var(--ease-soft); }

/* ---------- Respeitar quem pede menos movimento ------------------------- */
@media (prefers-reduced-motion: reduce) {
  .hero [data-enter] { opacity: 1; animation: none; }
  .hero .shot .phone { animation: none; }
  .btn--soon .dot    { animation: none; }
  .progress          { transition: none; }
  .btn::after        { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Rodapé legal e páginas de texto legal
   ========================================================================== */

.site-footer .footer__brand { margin-bottom: 1.75rem; }
.site-footer .footer__brand a { display: inline-block; }
.site-footer .footer__brand svg { height: 30px; width: auto; margin-bottom: .9rem; }
.site-footer .footer__brand p { color: #94ADC0; font-size: .9375rem; max-width: 26rem; margin: 0; }

.footer__legal {
  display: flex; flex-wrap: wrap; gap: .35rem .6rem; align-items: baseline;
  margin: 0 0 1.25rem; padding: 1.125rem 0;
  border-top: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
  font-size: .875rem; color: #B9CCDA; line-height: 1.6;
}
.footer__legal span[aria-hidden] { color: #5E7B94; }

.site-footer .footer__links ul {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; font-size: .9375rem;
}

.footer__bottom {
  margin-top: 0; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.13);
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  justify-content: space-between; align-items: center;
  font-size: .875rem; color: #94ADC0;
}
.footer__copy { margin: 0; flex: 1 1 14rem; min-width: 0; }
/* a lista de idiomas não pode ser espremida a ponto de empilhar.
   A especificidade tem de bater a `.site-footer ul { display: grid }`. */
.site-footer ul.footer__lang {
  display: flex; flex-wrap: wrap; gap: .375rem; flex: 0 0 auto;
}
.site-footer ul.footer__lang a { white-space: nowrap; }

/* Selo oficial do Livro de Reclamações Eletrónico (Direção-Geral do Consumidor).
   Regras aplicadas: cor que contraste com o fundo da página — o rodapé é navy,
   por isso o azul e o preto ficam de fora; visível e legível; e com apontador
   para a plataforma. O ficheiro não é alterado nem recolorido. */
.footer__book {
  display: inline-flex; align-items: center;
  border-radius: 8px; text-decoration: none; line-height: 0;
  transition: transform .15s var(--ease-soft), box-shadow .15s var(--ease-soft);
}
.footer__book img { width: 132px; height: auto; display: block; }
.footer__book:hover { transform: translateY(-1px); text-decoration: none; }
.footer__book:focus-visible { outline-offset: 5px; }

/* Sobre o navy, o azul precisa de uma placa branca para contrastar.
   O vermelho contrasta sozinho e dispensa a placa. */
.footer__book--azul {
  background: #fff; padding: .5rem .75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.footer__book--azul:hover { box-shadow: 0 6px 18px rgba(0,0,0,.24); }
.footer__book--vermelho { padding: 0; overflow: hidden; }

@media (max-width: 640px) {
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .footer__copy { flex: 0 0 auto; }            /* senão estica e abre um buraco */
  .site-footer .footer__lang { width: 100%; }  /* senão as pílulas empilham */
}

/* ---------- Cabeçalho das páginas legais ------------------------------- */
.legal-meta {
  display: flex; flex-wrap: wrap; gap: .5rem 2rem; margin: 1.25rem 0 0;
  font-size: .9375rem;
}
.legal-meta__item { display: flex; gap: .4rem; align-items: baseline; }
.legal-meta dt { color: var(--text-muted); margin: 0; }
.legal-meta dd { color: var(--text); font-weight: 600; margin: 0; }

/* ---------- Corpo dos documentos legais -------------------------------- */
.prose--legal h2 {
  font-size: clamp(1.25rem, 2.1vw, 1.5rem);
  margin-top: 2.75rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.prose--legal h2:first-of-type { margin-top: 1.5rem; }
.prose--legal h3 {
  font-size: 1.0625rem; color: var(--navy); margin: 1.75rem 0 .5rem;
}
.prose--legal p, .prose--legal li { font-size: 1rem; }
.prose--legal code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .875em; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 5px; padding: .1em .4em; color: var(--navy);
}
.prose--legal .table-scroll { margin: 1.25rem 0 1.75rem; }
table.cmp--legal { min-width: 30rem; }
table.cmp--legal th[scope="row"] { width: 30%; color: var(--navy); font-weight: 700; }
table.cmp--legal thead th { position: static; }

.legal-quote {
  display: flex; gap: .875rem; align-items: flex-start;
  margin: 1.5rem 0; padding: 1.125rem 1.25rem;
  background: var(--warn-soft); border: 1px solid #EBCB94;
  border-left: 3px solid var(--warn); border-radius: 0 14px 14px 0;
}
.legal-quote .ic { color: var(--warn); margin-top: .15rem; }
.legal-quote p { margin: 0 0 .5rem; color: #6E4300; font-size: .9375rem; }
.legal-quote p:last-child { margin: 0; }
.legal-quote strong { color: #5A3700; }

.legal-note {
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
  font-size: .875rem; color: var(--text-muted); font-style: italic;
}
