@font-face {
  font-family: 'Playfair Display';
  src: url('/assets/fonts/playfair-display-var.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
  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: 'Work Sans';
  src: url('/assets/fonts/work-sans-var.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
  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: 'Playfair stand-in';
  src: local('Georgia');
  size-adjust: 104%;
  ascent-override: 102%;
  descent-override: 24%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Work stand-in';
  src: local('Arial');
  size-adjust: 108%;
  ascent-override: 86%;
  descent-override: 23%;
  line-gap-override: 0%;
}

:root {
  --pg-bg: #ffffff;
  --pg-mist: #eef4fb;
  --pg-ink: #0b1b2b;
  --pg-soft: #3c4f63;
  --pg-blue: #1560bd;
  --pg-blue-dark: #0e4a94;
  --pg-deep: #0e3e7a;
  --pg-pale: #cfe3f7;
  --pg-rule: #d5e1ee;
  --pg-serif: 'Playfair Display', 'Playfair stand-in', Georgia, serif;
  --pg-sans: 'Work Sans', 'Work stand-in', Arial, sans-serif;
  --pg-gap: clamp(16px, 4vw, 40px);
  --pg-ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--pg-bg);
  color: var(--pg-ink);
  font: 400 1.0625rem/1.65 var(--pg-sans);
  overflow-wrap: break-word;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: var(--pg-blue); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--pg-blue-dark); text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--pg-blue); outline-offset: 3px; }
h1, h2, h3 { font-variant-numeric: lining-nums; font-family: var(--pg-serif); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; }
code { font-size: .92em; background: var(--pg-mist); padding: .08em .35em; border-radius: 4px; }

.pg-wrap { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 16px; }
@media (min-width: 720px) { .pg-wrap { padding-inline: 32px; } }
.pg-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.pg-skip { position: absolute; left: 12px; top: -60px; z-index: 50; background: var(--pg-ink); color: #fff; padding: 10px 16px; border-radius: 8px; }
.pg-skip:focus { top: 12px; color: #fff; }

/* Botões: paralelogramo inclinado, o texto é endireitado por dentro. */
.pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .7em 1.6em;
  border: 2px solid var(--pg-blue);
  transform: skewX(-12deg);
  font: 600 1rem/1.2 var(--pg-sans);
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--pg-ease), box-shadow .2s var(--pg-ease), background-color .2s, color .2s;
}
.pg-btn__in { display: inline-block; transform: skewX(12deg); }
.pg-btn--solid { background: var(--pg-blue); color: #fff; }
.pg-btn--line { background: transparent; color: var(--pg-blue); }
.pg-btn:hover { transform: skewX(-12deg) translate(-2px, -2px); box-shadow: 5px 5px 0 var(--pg-ink); text-decoration: none; }
.pg-btn--solid:hover { color: #fff; background: var(--pg-blue-dark); border-color: var(--pg-blue-dark); }
.pg-btn--line:hover { background: var(--pg-mist); color: var(--pg-blue-dark); }
.pg-btn:active { transform: skewX(-12deg) translate(1px, 1px); box-shadow: 1px 1px 0 var(--pg-ink); }

/* Cabeçalho */
.pg-top { position: sticky; top: 0; z-index: 30; background: rgba(255, 255, 255, .96); transition: box-shadow .25s; }
.pg-top--lifted { box-shadow: 0 6px 24px rgba(11, 27, 43, .08); }
.pg-top__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }
.pg-mark { display: inline-flex; align-items: center; gap: 10px; color: var(--pg-ink); text-decoration: none; font: 700 1.4rem/1 var(--pg-serif); min-height: 48px; }
.pg-mark:hover { color: var(--pg-ink); }
.pg-mark b, .pg-foot__brand b { color: var(--pg-blue); font-weight: 800; font-style: italic; }
.pg-wing { color: var(--pg-blue); }
.pg-nav { display: flex; align-items: center; gap: 28px; }
.pg-nav ul { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.pg-nav li a { display: inline-flex; align-items: center; min-height: 48px; padding: 0 12px; color: var(--pg-ink); text-decoration: none; font-weight: 500; }
.pg-nav li a:hover, .pg-nav li a[aria-current='page'] { color: var(--pg-blue); text-decoration: underline; text-underline-offset: .4em; }
.pg-burger { display: none; width: 48px; height: 48px; border: 2px solid var(--pg-blue); background: #fff; color: var(--pg-blue); transform: skewX(-12deg); cursor: pointer; }
.pg-burger__lines { display: grid; gap: 5px; justify-items: center; transform: skewX(12deg); }
.pg-burger__lines i { display: block; width: 20px; height: 2px; background: currentColor; transition: transform .2s, opacity .2s; }
.pg-burger[aria-expanded='true'] i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pg-burger[aria-expanded='true'] i:nth-child(2) { opacity: 0; }
.pg-burger[aria-expanded='true'] i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .pg-burger { display: inline-grid; place-items: center; }
  .pg-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 16px;
    padding: 8px 16px 24px; background: #fff; box-shadow: 0 16px 30px rgba(11, 27, 43, .12);
    display: none;
  }
  .pg-nav--open { display: flex; }
  .pg-nav ul { flex-direction: column; }
  .pg-nav .pg-btn { align-self: flex-start; margin-left: 8px; }
}

.pg-crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 20px 0 0; font-size: .95rem; color: var(--pg-soft); }
.pg-crumbs li + li::before { content: '—'; margin-right: 6px; color: var(--pg-soft); }
.pg-crumbs a { display: inline-block; padding: 12px 0; }

/* Abertura */
.pg-dawn { position: relative; overflow: hidden; background: #bfe6ff; padding: clamp(56px, 9vw, 112px) 0 clamp(150px, 20vw, 250px); text-align: center; }
.pg-dawn__art { position: absolute; inset: 0; pointer-events: none; }
.pg-dawn__layer { position: absolute; left: 0; bottom: 0; width: 100%; height: 72%; }
.pg-dawn__horse { position: absolute; width: clamp(120px, 16vw, 200px); right: clamp(12px, 9vw, 150px); top: clamp(24px, 7vw, 80px); animation: pg-glide 5.5s ease-in-out infinite; }
.pg-dawn__wing { transform-origin: 104px 64px; animation: pg-beat 1.1s ease-in-out infinite; }
.pg-dawn__wing--back { animation-delay: -.12s; }
@keyframes pg-glide { 50% { transform: translate(-14px, 12px) rotate(-2deg); } }
@keyframes pg-beat { 50% { transform: rotate(26deg) scaleY(.8); } }
.pg-dawn__copy { position: relative; max-width: 880px; }
.pg-dawn__eyebrow { font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .85rem; color: var(--pg-blue-dark); }
.pg-dawn__title { font-size: clamp(2.9rem, 8.5vw, 6.2rem); font-weight: 800; letter-spacing: -.025em; margin-bottom: .25em; }
.pg-dawn__sub { display: block; font-size: .32em; font-weight: 500; letter-spacing: 0; color: var(--pg-soft); margin-top: .35em; font-family: var(--pg-sans); }
.pg-dawn__lead { font-size: clamp(1.08rem, 1.8vw, 1.28rem); max-width: 40em; margin-inline: auto; color: #22364a; }
.pg-dawn__acts { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 28px; }
.pg-dawn__facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; list-style: none; padding: 0; margin: 26px 0 0; font-weight: 600; font-size: .95rem; }
.pg-dawn__facts li::before { content: ''; display: inline-block; width: 10px; height: 10px; margin-right: 8px; background: var(--pg-blue); transform: skewX(-12deg); }

.pg-rise { animation: pg-rise .9s var(--pg-ease) both; animation-delay: calc(var(--pg-i, 0) * 140ms + 80ms); }
.pg-dawn__title.pg-rise { animation-name: pg-rise-still; }
@keyframes pg-rise { from { opacity: 0; transform: translateY(26px); } }
@keyframes pg-rise-still { from { transform: translateY(22px) scale(.97); } }

/* Faixas */
.pg-band { padding: clamp(64px, 9vw, 120px) 0; overflow-x: clip; }
.pg-doc, .pg-lost { overflow-x: clip; }
.pg-band--mist { background: var(--pg-mist); }
.pg-band--deep { background: var(--pg-deep); color: #eef4fb; }
.pg-band--deep a { color: var(--pg-pale); }
.pg-band--deep a:hover { color: #fff; }
#marca { padding-block: clamp(56px, 7vw, 92px); }
#tabela { padding-block: clamp(48px, 6vw, 80px); }
#ajudas { padding-block: clamp(72px, 10vw, 140px); }
.pg-band__title { max-width: 18em; }
.pg-band__intro { max-width: 38em; color: var(--pg-soft); font-size: 1.1rem; margin-bottom: clamp(28px, 4vw, 48px); }
.pg-band--deep .pg-band__intro { color: var(--pg-pale); }
.pg-split { display: grid; gap: clamp(28px, 5vw, 72px); align-items: start; }
@media (min-width: 900px) {
  .pg-split { grid-template-columns: 1.05fr 1fr; }
  .pg-split--wide { grid-template-columns: .8fr 1.6fr; }
}
.pg-prose p { font-size: 1.08rem; }
.pg-fine { font-size: .95rem; color: var(--pg-soft); margin-top: 14px; }

/* Linhas de cartões: um por linha, arte e texto alternam de lado. */
.pg-rows { display: grid; gap: clamp(40px, 7vw, 88px); }
.pg-row { display: grid; gap: clamp(20px, 4vw, 56px); align-items: center; }
@media (min-width: 760px) {
  .pg-row { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
  .pg-row--flip .pg-row__art { order: 2; }
  .pg-row:nth-child(3n) { grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); }
  .pg-row--flip:nth-child(3n) { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); }
}
.pg-row__art { margin: 0; border-radius: 22px 22px 22px 4px; overflow: hidden; background: #dcebf9; box-shadow: 0 18px 40px -22px rgba(14, 62, 122, .45); }
.pg-row--flip .pg-row__art { border-radius: 22px 22px 4px 22px; }
.pg-row__frame { transform: scale(1.16); }
.pg-row__frame svg { width: 100%; height: auto; }
.pg-row__tag { display: inline-block; font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--pg-blue-dark); margin-bottom: .6em; }
.pg-row__text h3 { font-size: clamp(1.45rem, 2.6vw, 2rem); }
.pg-row__detail { color: var(--pg-soft); font-size: .98rem; }
.pg-row__best strong { font-family: var(--pg-serif); font-size: 1.2rem; color: var(--pg-blue-dark); }

/* Regras da marca */
.pg-rules { display: grid; gap: 22px; margin: 0; }
.pg-rule { display: grid; grid-template-columns: auto 1fr; column-gap: 18px; }
.pg-rule dt { font: 700 1.2rem/1.3 var(--pg-serif); display: contents; }
.pg-rule__n { grid-row: span 2; font: 800 2.8rem/1 var(--pg-serif); color: var(--pg-blue); min-width: 1.2em; }
.pg-rule dd { margin: 4px 0 0; grid-column: 2; color: var(--pg-soft); }

/* Tabelas */
.pg-scroll { overflow-x: auto; max-width: 100%; }
.pg-scroll:focus-visible { outline-offset: 0; }
.pg-sheet { width: 100%; border-collapse: collapse; font-size: .98rem; min-width: 460px; }
.pg-sheet--wide { min-width: 720px; }
.pg-sheet caption { text-align: left; font-weight: 600; margin-bottom: 12px; color: var(--pg-soft); caption-side: top; }
.pg-sheet th, .pg-sheet td { text-align: left; padding: 12px 14px; vertical-align: top; }
.pg-sheet thead th { font-weight: 700; border-bottom: 2px solid var(--pg-blue); font-size: .9rem; letter-spacing: .02em; }
.pg-sheet tbody tr:nth-child(odd) { background: rgba(21, 96, 189, .06); }
.pg-band--mist .pg-sheet tbody tr:nth-child(odd) { background: #fff; }
.pg-sheet tbody th { font-weight: 600; }

/* Perguntas */
.pg-asks { display: grid; gap: 12px; width: 100%; }
.pg-ask { background: #fff; border-radius: 14px; padding: 4px 22px; }
.pg-ask summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 60px; cursor: pointer; font: 600 1.12rem/1.35 var(--pg-serif); list-style: none; }
.pg-ask summary::-webkit-details-marker { display: none; }
.pg-ask__sign { position: relative; flex: none; width: 30px; height: 30px; border: 2px solid var(--pg-blue); transform: skewX(-12deg); }
.pg-ask__sign::before, .pg-ask__sign::after { content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--pg-blue); transform: translate(-50%, -50%) skewX(12deg); transition: transform .25s var(--pg-ease); }
.pg-ask__sign::after { transform: translate(-50%, -50%) rotate(90deg); }
.pg-ask[open] .pg-ask__sign::after { transform: translate(-50%, -50%) rotate(0deg); }
.pg-ask p { color: var(--pg-soft); padding-bottom: 12px; }

/* Contacto */
.pg-reach { text-align: center; max-width: 820px; }
.pg-reach .pg-band__title { margin-inline: auto; }
.pg-reach__mail { font: 700 clamp(1.4rem, 3.6vw, 2.2rem)/1.2 var(--pg-serif); }
.pg-reach__mail a { text-decoration: none; border-bottom: 2px solid currentColor; display: inline-block; padding: 8px 0; }

/* Páginas de texto */
.pg-doc { padding-block: clamp(32px, 6vw, 72px) clamp(64px, 9vw, 110px); }
.pg-doc__head { max-width: 46em; margin-bottom: clamp(28px, 4vw, 48px); }
.pg-doc__head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.pg-doc__lead { font-size: 1.14rem; color: #22364a; }
.pg-doc__date { font-size: .92rem; color: var(--pg-soft); }
.pg-doc__part { max-width: 50em; margin-bottom: clamp(26px, 3vw, 38px); }
.pg-doc__part h2 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
.pg-doc__part ul { padding-left: 1.2em; }
.pg-doc__part li { margin-bottom: .5em; }
.pg-doc__part .pg-scroll { max-width: none; }
.pg-id { background: var(--pg-mist); border-radius: 4px 18px 18px 18px; padding: 16px 20px; line-height: 1.7; }
.pg-doc__cta { margin-top: 24px; }
.pg-map { list-style: none; padding: 0; display: grid; gap: 4px; }
.pg-map a { display: inline-block; padding: 10px 0; font-weight: 500; }

.pg-lost { text-align: center; padding-block: clamp(64px, 10vw, 140px); }
.pg-lost__code { font: 800 clamp(5rem, 16vw, 9rem)/1 var(--pg-serif); color: var(--pg-pale); margin: 0; }
.pg-lost p:last-child { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 28px; }

/* Rodapé */
.pg-foot { background: var(--pg-mist); padding: clamp(48px, 7vw, 80px) 0 28px; font-size: .98rem; }
.pg-foot__grid { display: grid; gap: 28px; }
@media (min-width: 820px) { .pg-foot__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.pg-foot__brand { font: 700 1.5rem/1 var(--pg-serif); margin-bottom: 14px; }
.pg-foot__label { font-weight: 700; margin-bottom: 8px; }
.pg-foot ul { list-style: none; margin: 0; padding: 0; }
.pg-foot li a { display: inline-block; padding: 10px 0; color: var(--pg-ink); }
.pg-foot li a:hover { color: var(--pg-blue); }
.pg-foot__base { margin-top: 36px; font-size: .9rem; color: var(--pg-soft); }

/* Aviso e botão de subir */
.pg-note {
  position: fixed; left: 16px; bottom: 16px; z-index: 40;
  width: min(29em, calc(100% - 32px));
  display: grid; gap: 12px; padding: 18px 20px;
  background: #fff; border-radius: 16px 16px 16px 4px; box-shadow: 0 18px 50px rgba(11, 27, 43, .2);
  font-size: .96rem;
}
.pg-note p { margin: 0; }
.pg-note__ok { justify-self: start; }
.pg-up {
  position: fixed; right: 18px; bottom: 18px; z-index: 35;
  width: 50px; height: 50px; display: grid; place-items: center;
  background: #fff; color: var(--pg-blue); border: 2px solid var(--pg-blue); transform: skewX(-12deg);
  cursor: pointer; transition: transform .2s var(--pg-ease), box-shadow .2s;
}
.pg-up svg { transform: skewX(12deg); }
.pg-up:hover { transform: skewX(-12deg) translateY(-3px); box-shadow: 4px 4px 0 var(--pg-ink); }
.pg-flying .pg-note, .pg-flying .pg-up { display: none; }

/* Aparecimento ao percorrer a página */
.pg-js [data-pg-in] { opacity: 0; transition: opacity .8s var(--pg-ease), transform .9s var(--pg-ease); transition-delay: calc(var(--pg-i, 0) * 90ms); }
.pg-js [data-pg-in='left'] { transform: translateX(-54px); }
.pg-js [data-pg-in='right'] { transform: translateX(54px); }
.pg-js [data-pg-in='up'] { transform: translateY(40px); }
.pg-js [data-pg-in='far'] { transform: scale(.88); }
.pg-js [data-pg-in='near'] { transform: scale(1.08); }
.pg-js [data-pg-in].pg-seen { opacity: 1; transform: none; }
[data-pg-depth] { will-change: translate; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .pg-js [data-pg-in] { opacity: 1; transform: none; }
  [data-pg-depth] { translate: none !important; }
  .pg-row__frame { transform: none; }
}
.pg-split > *, .pg-arena__below > *, .pg-row > * { min-width: 0; }
