/* ==========================================================================
   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 > a > 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; }

/* ---------- Moldura de telemóvel para as capturas reais ------------------ */
/* O mockup desenhado em HTML/CSS que aqui viveu foi removido a 30/08, quando
   as cinco capturas reais entraram: nenhuma secção o usava e eram 5 KB de CSS
   morto em cada uma das 24 páginas. A moldura em si está mais abaixo, em
   `.phone--real`. */
.shot { margin: 0; width: 100%; position: relative; aspect-ratio: 837 / 1750; }
.shot > img { width: 100%; height: 100%; object-fit: contain; }
.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; 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; }
/* Também `> a`: era a âncora do logótipo, e estava a impor inline-block a
   qualquer link dentro do bloco — o do Instagram deixava de ser flex e o
   `gap` entre ícone e rótulo desaparecia. */
.site-footer .footer__brand > a { display: inline-block; }
/* `> a > svg` e não `svg`: a regra era do logótipo, mas apanhava qualquer
   ícone que entrasse no bloco — o do Instagram saía com 30px e uma margem
   inferior de .9rem, desalinhado do rótulo. */
.site-footer .footer__brand > a > 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;
}

/* ==========================================================================
   OURO E VIDRO — v2.3
   --------------------------------------------------------------------------
   Regra dura, herdada da app e aqui aplicada à letra:
     ouro = DECORAÇÃO e CELEBRAÇÃO.
     O ouro nunca comunica estado, nunca aparece sozinho como texto,
     e nunca entra numa pílula de estado.
     O âmbar --warn (#A35F00) continua exclusivo dos avisos de validade.
   Por isso, abaixo, o ouro só toca: atmosferas (radiais), remates
   (linha do rodapé, topo do plano em destaque, ponta do sublinhado dos
   títulos), ícones decorativos de módulos festivos, a estrela de favorito
   e o brilho do CTA. Onde há palavra, a palavra é navy.
   O vidro é translucidez com desfoque, sempre dentro de @supports, para
   que quem não o tenha continue a ver superfícies opacas e legíveis.
   ========================================================================== */

:root {
  /* Ouro — os três tons vindos da paleta da app. Não inventar mais nenhum. */
  --gold:       #E9A23B;
  --gold-deep:  #B97A1E;
  --gold-soft:  #FCF0DC;

  /* Derivados por transparência do próprio --gold (nenhuma cor nova) */
  --gold-line:  rgba(233, 162, 59, .42);
  --gold-glow:  rgba(233, 162, 59, .16);
  --grad-gold:  linear-gradient(90deg, var(--gold-deep) 0%, var(--gold) 100%);

  /* Sublinhado dos títulos: o fio navy → teal ganha uma ponta de ouro */
  --grad-underline: linear-gradient(90deg, var(--navy) 0%, var(--teal) 62%, var(--gold) 100%);
}

/* ---------- Seleção de texto -------------------------------------------- */
::selection { background: var(--gold-soft); color: var(--text); }

/* ---------- Ponta de ouro no sublinhado das secções ---------------------- */
.sec-head h2::after,
.split > div > h2::after { background: var(--grad-underline); }
/* No bloco escuro o fio mantém-se teal: ali o ouro competiria com o texto. */
.privacy-block .sec-head h2::after,
.privacy-block .split > div > h2::after,
.privacy-block h2::after {
  background: linear-gradient(90deg, #8FE0DC 0%, rgba(143, 224, 220, 0) 100%);
}

/* ---------- Atmosfera do hero: um sopro quente no canto frio ------------- */
/* O radial fica por cima do telemóvel, longe do H1 — nenhum texto perde
   contraste por causa dele. */
.hero {
  background:
    radial-gradient(44% 40% at 84% 24%, rgba(233,162,59,.20) 0%, rgba(233,162,59,0) 64%),
    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%);
}

/* ---------- Brilho do CTA: passa a ser quente ---------------------------- */
.btn:not(.btn--ghost):not(.btn--soon)::after {
  background: linear-gradient(105deg,
    transparent 36%,
    rgba(255,255,255,.22) 48%,
    rgba(233,162,59,.30) 54%,
    transparent 64%);
}

/* ---------- Módulos de celebração --------------------------------------- */
/* Só os dois módulos que falam de datas felizes — presentes e contadores.
   Dois em treze: é a raridade que faz o ouro parecer ouro. */
.module__ic--gold { background: var(--gold-soft); color: var(--gold-deep); }
.module--gold:hover { border-color: var(--gold-line); }

/* ---------- Plano em destaque -------------------------------------------- */
.plan--accent {
  position: relative; overflow: hidden;
  border-color: var(--gold-line);
  box-shadow: 0 14px 38px rgba(18,48,74,.13), 0 0 0 3px var(--gold-glow);
}
.plan--accent::before {           /* remate superior */
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--grad-gold); pointer-events: none;
}
.plan--accent::after {            /* luz que entra pelo canto */
  content: ""; position: absolute; right: -22%; top: -26%; width: 58%; height: 46%;
  background: radial-gradient(circle, rgba(233,162,59,.20) 0%, rgba(233,162,59,0) 70%);
  pointer-events: none;
}
.plan--accent > * { position: relative; z-index: 1; }

/* Etiqueta do plano mais completo.
   A palavra é navy (12.04:1 sobre o creme); o ouro é a placa e a estrela. */
.plan__flag {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: .4rem;
  margin: -.25rem 0 .75rem; padding: .32rem .7rem .32rem .55rem;
  background: var(--gold-soft); border: 1px solid var(--gold-line);
  border-radius: var(--r-pill);
  color: var(--navy); font-size: .75rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; line-height: 1;
}
.plan__flag .ic { width: 14px; height: 14px; color: var(--gold-deep); }

/* ---------- CTA final: a celebração ------------------------------------- */
.final-cta::after {
  content: ""; position: absolute; left: 50%; top: -26rem; transform: translateX(-50%);
  width: 48rem; height: 48rem; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(233,162,59,.22) 0%, rgba(233,162,59,0) 56%);
  animation: goldBreath 11s var(--ease-soft) infinite;
}
.final-cta__icon {
  box-shadow:
    0 14px 34px rgba(18,48,74,.22),
    0 0 0 1px rgba(233,162,59,.32),
    0 0 46px 4px var(--gold-glow);
}
@keyframes goldBreath {
  0%, 100% { opacity: .72; }
  50%      { opacity: 1; }
}

/* ---------- Fio de ouro no topo do rodapé -------------------------------- */
.site-footer { position: relative; }
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(233,162,59,0) 0%,
    rgba(233,162,59,.85) 26%,
    rgba(233,162,59,.85) 74%,
    rgba(233,162,59,0) 100%);
}

/* ---------- Ouro dentro dos mockups ------------------------------------- */
/* A estrela de favorito e o ícone de aniversário: exatamente os dois sítios
   onde a app usa ouro. Nunca nas pílulas de estado (.pill--*). */
/* Ícone dourado com miolo preenchido: assim a estrela lê-se como estrela
   dourada e não depende só do traço. */

/* A placa da data de aniversário fica creme; os números continuam navy.
   O ouro é o fundo, nunca a palavra. */
.datechip--gold { background: var(--gold-soft); }

/* Item por juntar num dossiê: é uma coisa por fazer, não um erro.
   Nem âmbar (é dos avisos de validade) nem vermelho (é dos vencidos) —
   contorno tracejado neutro, como um espaço à espera de ser preenchido. */
.avatar--todo {
  background: transparent; border: 1px dashed var(--border);
  color: var(--text-muted);
}

/* ---------- Secção do dossiê -------------------------------------------- */
.kicker-row { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.kicker-row .kicker { margin-bottom: 0; }

/* Marcador do que ainda está a ser construído.
   Sem dourado de propósito: o ouro é decoração, e isto é estado. */
.badge-soon {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .4rem .8rem; border-radius: var(--r-pill);
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-2); font-size: .8125rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; line-height: 1;
}
.badge-soon--sm { margin-top: .875rem; padding: .3rem .6rem; font-size: .6875rem; }
.badge-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;
}

/* Quatro passos numerados. A numeração diz alguma coisa — a ordem é real:
   fazer a lista, ligar o que já existe, criar o que falta, enviar. */
.flow { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: 1.125rem; }
.flow__item { display: flex; gap: .875rem; align-items: flex-start; }
.flow__n {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy-soft); color: var(--navy);
  display: grid; place-items: center; margin-top: .12rem;
  font-size: .8125rem; font-weight: 800; font-variant-numeric: tabular-nums;
}
.flow__item h3 { font-size: 1.0625rem; margin: 0 0 .2em; }
.flow__item p  { margin: 0; color: var(--text-2); font-size: .9375rem; }

@media (prefers-reduced-motion: reduce) {
  .badge-soon .dot { animation: none; }
}

/* ==========================================================================
   Vidro
   Tudo dentro de @supports: sem backdrop-filter, as superfícies ficam
   opacas como estavam e nada perde legibilidade.
   ========================================================================== */

/* A barra de navegação do mockup passa a flutuar sobre o conteúdo — é o
   mesmo gesto da app. O :has() dá folga ao conteúdo; onde não existir,
   a última linha fica por baixo do vidro, que é o efeito pretendido. */

@supports ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {

  .site-header.is-stuck {
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 1px 20px rgba(18,48,74,.06), inset 0 1px 0 rgba(255,255,255,.65);
  }

  .lang__menu {
    background: rgba(255,255,255,.82);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-color: rgba(255,255,255,.55);
    box-shadow: 0 18px 46px rgba(18,48,74,.16), inset 0 1px 0 rgba(255,255,255,.75);
  }

  @media (max-width: 960px) {
    .nav {
      background: rgba(255,255,255,.84);
      backdrop-filter: saturate(180%) blur(22px);
      -webkit-backdrop-filter: saturate(180%) blur(22px);
    }
  }
}

/* ---------- Respeitar quem pede menos movimento ------------------------- */
@media (prefers-reduced-motion: reduce) {
  .final-cta::after { animation: none; opacity: .86; }
}


/* ==========================================================================
   ESTRUTURA POR DOR — v3
   A página deixou de estar organizada por funcionalidade e passou a estar
   organizada pelos momentos em que a pessoa se reconhece. Três blocos novos:
   o reconhecimento, os cenários, e o catálogo comprimido.
   ========================================================================== */

/* ---------- «Um destes é seu» ------------------------------------------- */
/* Compacta de propósito: é uma pausa curta entre o hero e os cenários,
   não uma secção com peso próprio. */
.moments-sec { padding-block: clamp(2.5rem, 5vw, 4rem); }
.moments__h {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  text-align: center; margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.moments__h::after {
  content: ""; display: block; width: 46px; height: 3px; border-radius: 3px;
  margin: .7rem auto 0; background: var(--grad-underline);
}
.moments {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .875rem;
}
@media (max-width: 760px) { .moments { grid-template-columns: 1fr; } }
.moment {
  position: relative;
  background: var(--surface-2); border-radius: var(--r-card-sm);
  padding: 1.125rem 1.25rem 1.125rem 2rem;
  color: var(--text); font-size: 1.0125rem; line-height: 1.55;
}
.moment::before {
  content: ""; position: absolute; left: 1rem; top: 1.45rem;
  width: 10px; height: 2px; border-radius: 2px; background: var(--teal);
}

/* ---------- Cenários ----------------------------------------------------- */
.scene__lead { color: var(--text-2); font-size: 1.0625rem; margin: 0; }
.scene__lead + .ticks { margin-top: 1.5rem; }

/* O único momento de celebração da página. O ouro entra na atmosfera e nos
   ícones — nunca na palavra, nunca a dizer estado. */
.scene--gold {
  background:
    radial-gradient(46% 52% at 12% 24%, rgba(233,162,59,.13) 0%, rgba(233,162,59,0) 66%),
    var(--surface);
}
.kicker--gold { background: var(--gold-soft); color: var(--navy); }
.ticks--gold .ic { color: var(--gold-deep); }

/* ---------- Catálogo comprimido ----------------------------------------- */
/* Sem cartões: treze cartões eram meia página de molduras. Só ícone,
   título e uma linha — quem chega aqui já está convencido e vem conferir. */
.cat {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 1.5rem 2rem;
}
.cat__item { display: flex; gap: .875rem; align-items: flex-start; }
.cat__ic {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 11px;
  background: var(--teal-soft); color: var(--teal-dark);
  display: grid; place-items: center; margin-top: .1rem;
}
.cat__ic .ic { width: 18px; height: 18px; }
.cat__ic--gold { background: var(--gold-soft); color: var(--gold-deep); }
.cat__item h3 { font-size: 1rem; margin: 0 0 .2em; letter-spacing: -.01em; }
/* Etiqueta de plano no catálogo. Fica DENTRO do <h3> de propósito: assim um
   leitor de ecrã anuncia «Cartões… a partir do Individual Plus» como um título
   só, em vez de deixar a restrição solta a seguir ao nome da funcionalidade —
   que é onde ela deixa de ser lida por quem mais precisa dela. */
.cat__tag {
  display: inline-block; margin-left: .5rem; vertical-align: .08em;
  padding: .18rem .5rem;
  background: var(--gold-soft); border: 1px solid var(--gold-line);
  border-radius: var(--r-pill);
  color: var(--navy); font-size: .6875rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase; line-height: 1.35;
  white-space: nowrap;
}
@media (max-width: 420px) { .cat__tag { white-space: normal; } }
.cat__item p  { margin: 0; color: var(--text-2); font-size: .9125rem; line-height: 1.5; }


/* ==========================================================================
   v4 — a página explica antes de convencer
   Fora os CTA desativados (um botão que não se pode carregar só comunica
   «ainda não»), fora o tom defensivo, e a privacidade passa a três cartões
   com o detalhe a viver na Política.
   ========================================================================== */

/* ---------- A nota honesta que substitui os botões mortos ---------------- */
.store-note {
  margin: 1rem 0 0; color: var(--text-2); font-size: .9375rem; font-weight: 500;
}
.store-note--center { text-align: center; margin-top: 1.75rem; }
.final-cta .store-note { margin-bottom: 1.25rem; }

/* ---------- Aviso jurídico: presente, mas sem competir ------------------- */
/* Deixou de ser uma caixa destacada. Continua legível (5.5:1) e continua a
   dizer exatamente o mesmo — só não disputa a atenção com o argumento. */
.fineprint {
  margin: 1.5rem 0 0; color: var(--text-muted);
  font-size: .8375rem; line-height: 1.55; max-width: 34rem;
}

/* ---------- Dossiês: uma nota, não uma secção --------------------------- */
/* Enquanto estiver em desenvolvimento não ocupa meia página. */
.soon-note {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: 1.5rem 1.75rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); box-shadow: var(--sh-card);
}
.soon-note__head {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem;
  margin-bottom: .6rem;
}
.soon-note__head h3 { font-size: 1.125rem; margin: 0; }
.soon-note p { margin: 0; color: var(--text-2); font-size: .9875rem; max-width: 52rem; }

/* ---------- Privacidade em três cartões sobre o navy -------------------- */
.priv-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-card); padding: 1.5rem;
}
.priv-card__ic {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 14px; margin-bottom: 1rem;
  background: rgba(220,243,241,.14); color: #8FE0DC;
}
.priv-card__ic .ic { width: 22px; height: 22px; }
.priv-card h3 { font-size: 1.0625rem; margin: 0 0 .4em; color: #F2F7FA; }
.priv-card p  { margin: 0; color: #B9CCDA; font-size: .9375rem; line-height: 1.6; }

@supports ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .priv-card {
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  }
}

/* A nota do plano passa para depois do botão: é transparência, não argumento. */
.plan__note { margin: 1rem 0 0; }


/* ---------- Comprimir sem apertar --------------------------------------- */
/* 112px de respiro em cima e em baixo de onze secções eram 2.400px só de ar.
   88px continua generoso e devolve uma página que se percorre. */
:root { --sec-y: clamp(3rem, 6vw, 5.5rem); }

/* Três passos lado a lado: o ecrã ao lado custava 500px e a prova visual já
   está no hero e nos dois cenários. */
.steps.grid--3 { gap: var(--gap); }
.steps.grid--3 .step { text-align: left; }

/* As datas passam a nota larga em vez de cenário com telemóvel. */
.dates-sec .sec-head { max-width: 44rem; }
.ticks--row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .75rem 2rem; margin-top: 0;
}
.ticks--row li { align-items: center; }


/* Doze perguntas em coluna única eram 1.300px. Em duas colunas são metade,
   e continuam todas na página — o schema FAQPage não perde nada. */
.faq--two { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
@media (max-width: 860px) { .faq--two { grid-template-columns: 1fr; } }

/* Os ecrãs encolhem o suficiente para devolver espaço sem perder impacto. */
.split__media .shot-wrap { width: min(100%, 288px); }


/* ==========================================================================
   v4.1 — correções
   ========================================================================== */

/* ---------- Menu de idioma no telemóvel --------------------------------- */
/* A regra base `.lang__menu { position: absolute }` estava DEPOIS do media
   query no ficheiro, com a mesma especificidade — ganhava sempre, também no
   telemóvel. O menu abria fora do painel de navegação e, sem fundo, ficava
   invisível. Reafirmado aqui, no fim, onde a ordem da cascata o protege. */
@media (max-width: 960px) {
  .lang__menu {
    position: static; width: 100%; margin-top: .375rem;
    background: var(--surface);
    border: 1px solid var(--border); border-radius: 14px;
    box-shadow: none;
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .lang__menu a { padding: .75rem .875rem; font-size: 1rem; }
}

/* ---------- Marcas dos contadores em ecrã estreito ---------------------- */
/* Em linha, uma frase que quebrava em duas linhas centrava o ícone a meio.
   Abaixo de 760px passam a coluna, com o ícone alinhado à primeira linha. */
@media (max-width: 760px) {
  .ticks--row {
    flex-direction: column; align-items: flex-start;
    gap: .625rem; text-align: left;
  }
  .ticks--row li { align-items: flex-start; }
  .ticks--row .ic { margin-top: .18rem; }
}

/* ---------- Dossiês: convite, não aviso --------------------------------- */
.soon-note {
  display: flex; gap: 1.125rem; align-items: flex-start;
  background: linear-gradient(135deg, var(--teal-soft) 0%, var(--surface) 62%);
  border-color: #C9E7E4;
}
.soon-note__ic {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 14px;
  background: #fff; color: var(--teal-dark);
  display: grid; place-items: center;
  box-shadow: 0 2px 8px rgba(18,48,74,.08);
}
.soon-note__ic .ic { width: 22px; height: 22px; }
.soon-note h3 { font-size: 1.125rem; margin: 0 0 .4em; }
@media (max-width: 560px) { .soon-note { flex-direction: column; gap: .875rem; } }


/* ==========================================================================
   v5 — badges das lojas
   Regra da Apple: o badge nunca é redesenhado e a App Store vem primeiro
   quando aparece ao lado de outras lojas. O PNG da Google traz cerca de 15%
   de margem transparente embutida — por isso é renderizado mais alto que o
   SVG da Apple, para os dois ficarem do MESMO tamanho aparente.
   ========================================================================== */

.store-lead {
  margin: 0 0 .875rem; color: var(--text-2);
  font-size: 1rem; font-weight: 600;
}
.store-lead--center { text-align: center; }

.store-badges {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .625rem .75rem; margin: 0;
}
.store-badges--center { justify-content: center; }

.store-badge {
  display: inline-flex; align-items: center;
  border-radius: 10px; text-decoration: none; line-height: 0;
  /* alvo de toque confortável sem inchar o badge */
  min-height: 44px;
  transition: transform .15s var(--ease-soft), opacity .15s var(--ease-soft);
}
.store-badge:hover { transform: translateY(-1px); opacity: .88; text-decoration: none; }
.store-badge:focus-visible { outline-offset: 4px; }
.store-badge img { display: block; width: auto; }

/* alturas escolhidas para IGUALAR o tamanho aparente dos dois */
.store-badge--apple  img { height: 44px; }
.store-badge--google img { height: 64px; margin: -10px; }

.store-badges--sm .store-badge--apple  img { height: 38px; }
.store-badges--sm .store-badge--google img { height: 55px; margin: -8px; }

@media (max-width: 420px) {
  .store-badges { gap: .5rem; }
  .store-badge--apple  img { height: 40px; }
  .store-badge--google img { height: 58px; margin: -9px; }
}

.cta-row--center { justify-content: center; }

/* ---------- Descarregar, abaixo dos planos ------------------------------ */
.plans-download {
  margin-top: 2rem; padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.plans-download p {
  margin: 0 0 1rem; color: var(--text-2);
  font-size: .9875rem; font-weight: 600;
}

/* ---------- Dossiês: três pontos dentro do bloco ------------------------ */
.soon-note__points {
  list-style: none; padding: 0; margin: .875rem 0 0;
  display: flex; flex-wrap: wrap; gap: .5rem 1.75rem;
}
.soon-note__points li {
  display: flex; align-items: center; gap: .5rem;
  color: var(--text-2); font-size: .9125rem;
}
.soon-note__points .ic { width: 17px; height: 17px; flex: 0 0 auto; color: var(--teal-dark); }


/* ---------- Botões em pré-visualização ---------------------------------- */
/* Aspeto idêntico ao final, mas sem destino: servem para ver a página montada
   antes de as lojas existirem. Não são focáveis nem anunciados — o cursor
   normal é o único sinal de que ainda não levam a lado nenhum.
   Desaparecem sozinhos quando os URLs entrarem no config. */
.btn--preview { cursor: default; user-select: none; }
.btn--preview:hover { transform: none; }
.store-badge[aria-hidden] { cursor: default; }
.store-badge[aria-hidden]:hover { transform: none; opacity: 1; }


/* ---------- Selo do Livro de Reclamações: variante negativa -------------- */
/* O logótipo positivo precisava de uma placa branca para se ver sobre o navy,
   e a placa lia-se como um retângulo vazio. A DGC fornece variantes negativas
   feitas para fundo escuro: o ficheiro entra byte a byte, sem placa, sem
   recolorir. Contraste do selo contra o rodapé: 4,20:1. */
.footer__book--azul-negativo { padding: 0; overflow: hidden; border-radius: 6px; }
.footer__book--azul-negativo:hover { box-shadow: 0 6px 18px rgba(0,0,0,.28); }


/* ---------- Cinco planos ------------------------------------------------- */
/* Com quatro cartões a grelha automática resolvia-se sozinha. Com cinco, o
   `auto-fit` faz 4+1 e o último fica órfão — e a escada de planos só se
   entende vista de uma vez. Em ecrã largo a secção alarga e força cinco
   colunas; abaixo disso volta ao comportamento automático. */
@media (min-width: 1200px) {
  #plans > .wrap,
  .prose .plans { max-width: 1320px; margin-inline: auto; }
  .plans { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .plan { padding: 1.375rem 1.25rem; }
  .plan__price b { font-size: 1.75rem; }
  .plan h3 { font-size: 1.0625rem; }
  .plan__summary, .plan__list li { font-size: .875rem; }
}
@media (min-width: 900px) and (max-width: 1199px) {
  /* três em cima, dois em baixo — mais equilibrado do que 4+1 */
  .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ============================================ v7 — imposto nos preços ===== */
/* A linha pequena vive entre o número e a pílula do plano anual. Cinzenta e
   pequena de propósito: informa, não compete com o preço. */
.plan__tax {
  display: block;
  margin: -.25rem 0 .5rem;
  font-size: .8125rem;
  color: var(--muted);
  letter-spacing: .01em;
}
/* Sem variante dourada aqui: é texto pequeno, precisa de 4,5:1, e o
   gold-deep sobre a placa creme do cartão em destaque não lá chega. O ouro é
   decoração — isto é informação de preço. */

/* A nota fica ao nível do texto corrido, não como aviso: não é um alerta, é
   informação de preço. Nada de âmbar, nada de dourado. */
.tax-note {
  margin-top: 1.5rem;
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 58ch;
}
.tax-note--center { margin: 1.75rem auto 0; text-align: center; }

/* =============================================== v8 — Instagram no rodapé == */
/* Discreto de propósito: vive por baixo da assinatura da marca, não compete
   com os links legais nem com o selo do Livro de Reclamações. */
.footer__social { margin: .875rem 0 0; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4375rem .8125rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: .875rem;
  /* O rodapé tem altura de linha de leitura; aqui é um rótulo de uma linha e
     herdá-la deixava o emblema com quase o dobro da altura e o ícone a boiar. */
  line-height: 1.2;
  color: inherit;
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease;
}
.footer__social a:hover,
.footer__social a:focus-visible {
  border-color: var(--gold-line);
  background: rgba(255,255,255,.06);
}
.footer__social .ic { width: 1.125rem; height: 1.125rem; flex: none; }
@media (prefers-reduced-motion: reduce) { .footer__social a { transition: none; } }

/* ============================================ v9 — capturas reais da app == */
/* O recorte é 837×1750 (0,4783). O mockup desenhado ficava a 320/660 (0,485) —
   quase o mesmo, por isso a troca não mexe no resto da página. */

.phone--real {
  position: absolute; inset: 0;
  background: #0B1B28;
  border-radius: 40px; padding: 9px;
  box-shadow: var(--sh-phone);
  overflow: hidden;
}
.phone--real::after {           /* o mesmo brilho de vidro do mockup */
  content: ""; position: absolute; inset: 0; border-radius: 40px;
  pointer-events: none; z-index: 2;
  background: linear-gradient(145deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 34%);
}
.phone--real picture { display: block; height: 100%; }
.phone--real img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  border-radius: 32px;
}

/* Datas: os pontos de um lado, os contadores a funcionar do outro. */
.dates-split {
  display: grid; gap: 2.5rem clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
.dates-split .ticks { margin: 1.5rem 0 0; }
.dates-split__media { display: flex; justify-content: center; }

/* Privacidade: o ecrã das Definições diz, dentro da própria app, o que os
   cartões afirmam — «as contas são feitas neste telemóvel, nada sai daqui».
   Por isso deixou de ser uma grelha de três e passou a prova ao lado. */
.priv-split {
  display: grid; gap: 2.5rem clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1fr; align-items: center;
  /* Sem o limite, os cartões esticavam-se por 800px e ficavam duas linhas de
     texto perdidas num retângulo enorme. */
  max-width: 1060px; margin-inline: auto;
}
.priv-split__media { display: flex; justify-content: center; }
.priv-cards { display: grid; gap: 1rem; }

@media (min-width: 900px) {
  .dates-split { grid-template-columns: 1fr minmax(0, 320px); }
  .dates-split .ticks { font-size: 1.0625rem; }
  .priv-split  { grid-template-columns: minmax(0, 320px) 1fr; }
}
