@charset "UTF-8";
/* ==========================================================================
   UniRenascer — folha de estilo principal
   Paleta: #0F0F0E (tinta) · #F4F4EF (papel) · #2353CC (destaque)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fontes
   Coloque os arquivos licenciados da Stack Sans Headline em /assets/fonts/.
   Sem eles, o navegador usa a Helvetica — que é a fonte secundária da marca.
   -------------------------------------------------------------------------- */
@font-face {
    font-family: "Stack Sans Headline";
    src: url("../fonts/StackSansHeadline-Bold.woff2") format("woff2"),
         url("../fonts/StackSansHeadline-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Stack Sans Headline";
    src: url("../fonts/StackSansHeadline-Medium.woff2") format("woff2"),
         url("../fonts/StackSansHeadline-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */
:root {
    --ink:        #0f0f0e;
    --ink-soft:   #16161a;
    --ink-raise:  #1c1c20;
    --paper:      #f4f4ef;
    --blue:       #2353cc;
    --blue-lift:  #3567e0;
    --blue-deep:  #16307a;

    --on-dark:        #f4f4ef;
    --on-dark-muted:  rgba(244, 244, 239, .58);
    --on-dark-faint:  rgba(244, 244, 239, .34);
    --rule-dark:      rgba(244, 244, 239, .14);
    --rule-dark-soft: rgba(244, 244, 239, .08);

    --on-light:        #0f0f0e;
    --on-light-muted:  rgba(15, 15, 14, .62);
    --rule-light:      rgba(15, 15, 14, .14);
    --rule-light-soft: rgba(15, 15, 14, .07);

    --font-display: "Stack Sans Headline", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-body:    "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
    --font-mono:    ui-monospace, "SF Mono", Menlo, Consolas, monospace;

    --shell:  1600px;
    --gutter: clamp(1.25rem, 4.2vw, 4.5rem);
    --rhythm: clamp(4.5rem, 9vw, 9.5rem);

    --ease:      cubic-bezier(.22, 1, .36, 1);
    --ease-soft: cubic-bezier(.4, 0, .2, 1);
    --dur:       .55s;

    --header-h: 82px;
}

@media (max-width: 900px) {
    :root { --header-h: 68px; }
}

/* --------------------------------------------------------------------------
   3. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--on-dark);
    font-family: var(--font-body);
    font-size: clamp(1rem, .95rem + .2vw, 1.075rem);
    line-height: 1.62;
    letter-spacing: -.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    margin: 0;
}

button { cursor: pointer; }

::selection { background: var(--blue); color: #fff; }

:focus-visible {
    outline: 2px solid var(--blue-lift);
    outline-offset: 3px;
    border-radius: 2px;
}

/* --------------------------------------------------------------------------
   4. Textura de grão — dá o acabamento impresso ao fundo
   -------------------------------------------------------------------------- */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   5. Tipografia
   -------------------------------------------------------------------------- */
.display,
.h1, .h2, .h3, .h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: .94;
    letter-spacing: -.035em;
    text-transform: uppercase;
    text-wrap: balance;
}

.display { font-size: clamp(2.6rem, 9.4vw, 10.5rem); }
.h1      { font-size: clamp(2.5rem, 6.6vw, 6rem); }
.h2      { font-size: clamp(2rem, 4.6vw, 4.25rem); }
.h3      { font-size: clamp(1.5rem, 2.5vw, 2.5rem); letter-spacing: -.028em; }
.h4      { font-size: clamp(1.15rem, 1.5vw, 1.5rem); letter-spacing: -.02em; line-height: 1.1; }

.eyebrow {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--on-dark-faint);
    display: inline-flex;
    align-items: center;
    gap: .7rem;
}

.eyebrow::before {
    content: "";
    width: 2rem;
    height: 1px;
    background: currentColor;
    opacity: .5;
}

.eyebrow--plain::before { display: none; }

.lead {
    font-size: clamp(1.1rem, .95rem + .6vw, 1.5rem);
    line-height: 1.45;
    letter-spacing: -.018em;
    color: var(--on-dark-muted);
    text-wrap: pretty;
}

.muted { color: var(--on-dark-muted); }
.accent { color: var(--blue-lift); }

.num {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .12em;
    color: var(--on-dark-faint);
    font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   6. Layout
   -------------------------------------------------------------------------- */
.shell {
    width: 100%;
    max-width: var(--shell);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.shell--narrow { max-width: 1180px; }
.shell--text   { max-width: 820px; }

.section { padding-block: var(--rhythm); position: relative; }
.section--tight { padding-block: calc(var(--rhythm) * .6); }
.section--flush-top { padding-top: 0; }

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

@media (min-width: 900px) {
    .section-head {
        grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
        align-items: end;
        gap: 3rem;
    }
}

.section-head__aside {
    color: var(--on-dark-muted);
    font-size: 1rem;
    max-width: 42ch;
}

/* Faixa clara sobre o fundo escuro */
.band-light {
    background: var(--paper);
    color: var(--on-light);
}

.band-light .eyebrow  { color: rgba(15, 15, 14, .42); }
.band-light .lead,
.band-light .muted,
.band-light .section-head__aside { color: var(--on-light-muted); }
.band-light .num { color: rgba(15, 15, 14, .38); }
.band-light .accent { color: var(--blue); }

.band-blue {
    background: var(--blue);
    color: #fff;
}

.band-blue .eyebrow { color: rgba(255, 255, 255, .6); }
.band-blue .lead { color: rgba(255, 255, 255, .8); }

.rule {
    height: 1px;
    background: var(--rule-dark);
    border: 0;
    margin: 0;
}

.band-light .rule { background: var(--rule-light); }

/* --------------------------------------------------------------------------
   7. Botões e links
   -------------------------------------------------------------------------- */
.btn {
    --btn-bg: var(--paper);
    --btn-fg: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    padding: 1.05rem 1.8rem;
    background: var(--btn-bg);
    color: var(--btn-fg);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: color .4s var(--ease), background-color .4s var(--ease), border-color .4s var(--ease);
    white-space: nowrap;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--blue);
    transform: translateY(101%);
    transition: transform .5s var(--ease);
}

.btn:hover::before,
.btn:focus-visible::before { transform: translateY(0); }
.btn:hover, .btn:focus-visible { color: #fff; }

.btn__arrow {
    width: .95em;
    height: .95em;
    flex: none;
    transition: transform .45s var(--ease);
}

.btn:hover .btn__arrow { transform: translate(3px, -3px); }

.btn--ghost {
    --btn-bg: transparent;
    --btn-fg: var(--on-dark);
    border: 1px solid var(--rule-dark);
}

.band-light .btn--ghost { --btn-fg: var(--on-light); border-color: var(--rule-light); }

.btn--blue { --btn-bg: var(--blue); --btn-fg: #fff; }
.btn--blue::before { background: var(--paper); }
.btn--blue:hover, .btn--blue:focus-visible { color: var(--ink); }

.btn--ink { --btn-bg: var(--ink); --btn-fg: var(--paper); }

.btn--sm { padding: .8rem 1.35rem; font-size: .72rem; }

/* Link com sublinhado que se desenha */
.link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-mono);
    font-size: .74rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding-bottom: .28rem;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 1px;
    transition: color .35s var(--ease), background-size .5s var(--ease);
}

.link:hover {
    color: var(--blue-lift);
    background-size: 0 1px;
    background-position: 100% 100%;
}

/*
 * Os SVGs de views/partials/icons.php só têm viewBox: sem width/height o
 * navegador aplica o padrão de 300x150 e o ícone estoura o layout. Este é o
 * tamanho base de qualquer ícone inline; componentes específicos ajustam.
 */
.link svg,
.polo__contact svg,
.prose svg,
p svg,
li svg {
    width: 1em;
    height: 1em;
    flex: none;
}

.band-light .link:hover { color: var(--blue); }

/* --------------------------------------------------------------------------
   8. Cabeçalho
   -------------------------------------------------------------------------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1000;
    background: var(--blue);
    color: #fff;
    padding: .9rem 1.4rem;
    font-size: .85rem;
}

.skip-link:focus { left: 0; }

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: background-color .45s var(--ease), border-color .45s var(--ease);
    border-bottom: 1px solid transparent;
}

.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 15, 14, .82), rgba(15, 15, 14, 0));
    opacity: 1;
    transition: opacity .4s var(--ease);
    pointer-events: none;
}

.header.is-stuck {
    background: rgba(15, 15, 14, .92);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    backdrop-filter: saturate(160%) blur(14px);
    border-bottom-color: var(--rule-dark);
}

.header.is-stuck::before { opacity: 0; }

.header__inner {
    width: 100%;
    max-width: var(--shell);
    margin-inline: auto;
    padding-inline: var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    flex: none;
    position: relative;
    z-index: 2;
}

.brand img {
    height: clamp(19px, 2.1vw, 25px);
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity .3s var(--ease);
}

.brand:hover img { opacity: .72; }

.nav {
    display: none;
    align-items: center;
    gap: clamp(1.4rem, 2.4vw, 2.6rem);
}

@media (min-width: 1080px) { .nav { display: flex; } }

.nav__link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: .82rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    position: relative;
    padding-block: .4rem;
    color: var(--on-dark);
    opacity: .78;
    transition: opacity .3s var(--ease);
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease);
}

.nav__link:hover { opacity: 1; }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__link.is-active { opacity: 1; }
.nav__link.is-active::after { transform: scaleX(1); background: var(--blue-lift); }

.nav__group { position: relative; }

.nav__panel {
    position: absolute;
    top: calc(100% + 1.1rem);
    left: 50%;
    transform: translate(-50%, 10px);
    min-width: 240px;
    background: var(--ink-soft);
    border: 1px solid var(--rule-dark);
    padding: .6rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), transform .35s var(--ease), visibility .3s;
}

.nav__group:hover .nav__panel,
.nav__group:focus-within .nav__panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav__panel a {
    display: block;
    padding: .65rem .9rem;
    font-size: .85rem;
    color: var(--on-dark-muted);
    transition: color .25s var(--ease), background-color .25s var(--ease);
}

.nav__panel a:hover { color: var(--on-dark); background: rgba(244, 244, 239, .06); }

.header__actions {
    display: flex;
    align-items: center;
    gap: clamp(.6rem, 1.4vw, 1.1rem);
    flex: none;
}

/* Seletor de idioma */
.locale {
    position: relative;
    display: none;
}

@media (min-width: 720px) { .locale { display: block; } }

.locale__toggle {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .55rem .85rem;
    border: 1px solid var(--rule-dark);
    border-radius: 999px;
    transition: border-color .3s var(--ease), color .3s var(--ease);
}

.locale__toggle:hover { border-color: var(--on-dark-faint); }

.locale__toggle svg { width: .6rem; transition: transform .3s var(--ease); }
.locale[data-open="true"] .locale__toggle svg { transform: rotate(180deg); }

.locale__list {
    position: absolute;
    top: calc(100% + .6rem);
    right: 0;
    min-width: 170px;
    background: var(--ink-soft);
    border: 1px solid var(--rule-dark);
    padding: .4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .28s var(--ease), transform .3s var(--ease), visibility .28s;
    z-index: 10;
}

.locale[data-open="true"] .locale__list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.locale__list a {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .6rem .8rem;
    font-size: .85rem;
    color: var(--on-dark-muted);
    transition: color .25s var(--ease), background-color .25s var(--ease);
}

.locale__list a:hover,
.locale__list a[aria-current="true"] { color: var(--on-dark); background: rgba(244, 244, 239, .06); }

.locale__list span {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .12em;
    opacity: .45;
}

/* Botão do menu */
.burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    align-items: center;
    border: 1px solid var(--rule-dark);
    border-radius: 999px;
    position: relative;
    z-index: 2;
    transition: border-color .3s var(--ease);
}

@media (min-width: 1080px) { .burger { display: none; } }

.burger span {
    display: block;
    width: 17px;
    height: 1.5px;
    background: var(--on-dark);
    transition: transform .4s var(--ease), opacity .3s var(--ease);
}

.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   9. Menu móvel
   -------------------------------------------------------------------------- */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: var(--ink);
    padding: calc(var(--header-h) + 2.5rem) var(--gutter) 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    clip-path: inset(0 0 100% 0);
    transition: clip-path .7s var(--ease);
    visibility: hidden;
}

.drawer[data-open="true"] {
    clip-path: inset(0 0 0 0);
    visibility: visible;
}

.drawer__nav { display: flex; flex-direction: column; }

.drawer__link {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 9vw, 3.4rem);
    text-transform: uppercase;
    letter-spacing: -.03em;
    line-height: 1;
    padding-block: clamp(.55rem, 2vw, .85rem);
    border-bottom: 1px solid var(--rule-dark-soft);
    display: flex;
    align-items: baseline;
    gap: 1rem;
    opacity: 0;
    transform: translateY(24px);
    transition: color .3s var(--ease);
}

.drawer[data-open="true"] .drawer__link {
    animation: drawer-in .65s var(--ease) forwards;
    animation-delay: calc(var(--i, 0) * 55ms + 120ms);
}

.drawer__link:hover { color: var(--blue-lift); }
.drawer__link .num { font-size: .68rem; }

@keyframes drawer-in {
    to { opacity: 1; transform: translateY(0); }
}

.drawer__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    align-items: center;
    justify-content: space-between;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid var(--rule-dark);
}

.drawer__locales { display: flex; gap: .5rem; }

.drawer__locales a {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .5rem .85rem;
    border: 1px solid var(--rule-dark);
    border-radius: 999px;
    color: var(--on-dark-muted);
    transition: color .3s var(--ease), border-color .3s var(--ease);
}

.drawer__locales a[aria-current="true"],
.drawer__locales a:hover { color: var(--on-dark); border-color: var(--on-dark-faint); }

/* --------------------------------------------------------------------------
   10. Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: calc(var(--header-h) + clamp(3rem, 10vh, 7rem));
    padding-bottom: clamp(1.5rem, 4vh, 3rem);
    overflow: hidden;
    isolation: isolate;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    filter: contrast(1.04) saturate(.85) brightness(.72);
    transform: scale(1.06);
}

/*
 * O véu escurece de baixo para cima: embaixo fica o texto do hero e precisa de
 * contraste; em cima a foto aparece. Mexer nas paradas muda o quanto o banner
 * é visível.
 */
.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 22% 12%, rgba(35, 83, 204, .22), transparent 62%),
        linear-gradient(to top,
            var(--ink) 3%,
            rgba(15, 15, 14, .93) 34%,
            rgba(15, 15, 14, .78) 58%,
            rgba(15, 15, 14, .55) 80%,
            rgba(15, 15, 14, .38) 100%);
}

/* Sem imagem: composição puramente tipográfica */
.hero--typographic .hero__media::after {
    background:
        radial-gradient(90% 70% at 78% 18%, rgba(35, 83, 204, .3), transparent 60%),
        radial-gradient(70% 60% at 12% 85%, rgba(35, 83, 204, .14), transparent 60%);
}

.hero__grid {
    display: grid;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: end;
    flex: 1;
    align-content: end;
}

@media (min-width: 1000px) {
    .hero__grid { grid-template-columns: minmax(0, 1fr) auto; }
}

/* Os textos de cada banner ficam empilhados na mesma célula e trocam junto com
   a imagem; sem JS só o primeiro aparece. */
.hero__copy { display: grid; }

.hero__copy-item {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .8s var(--ease-soft), visibility .8s var(--ease-soft);
}

.hero__copy-item.is-current {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/*
 * O título vem do banner cadastrado no painel, então costuma ser uma frase
 * inteira: corpo um pouco menor e medida mais larga que o `.display` puro,
 * senão vira quatro linhas e o hero estoura a altura da tela.
 */
.hero__title {
    margin: 0;
    max-width: 20ch;
    font-size: clamp(2.4rem, 6.4vw, 7rem);
}

/*
 * A máscara da animação corta acentos de caixa alta (o Ó de APOSTÓLICO).
 * O respiro no topo é devolvido com margem negativa, sem mexer no layout.
 */
.hero__line {
    display: block;
    overflow: hidden;
    padding-block: .16em .12em;
    margin-block: -.16em -.12em;
}

/* 130% e não 105%: com o respiro dos acentos, 105% deixaria o topo do texto
   aparecendo por baixo da máscara antes da animação. */
.hero__line > span {
    display: block;
    transform: translateY(130%);
}

.is-ready .hero__line > span { transform: translateY(0); }

.hero__line--indent { padding-left: clamp(0px, 5vw, 5.5rem); }

.hero__title em {
    font-style: normal;
    color: var(--blue-lift);
}

.hero__lead {
    margin-top: clamp(1.6rem, 3vw, 2.4rem);
    max-width: 46ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.hero__meta {
    display: none;
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: .5rem;
    min-width: 190px;
}

@media (min-width: 1000px) { .hero__meta { display: flex; } }

.hero__meta dt {
    font-family: var(--font-mono);
    font-size: .66rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--on-dark-faint);
    margin-bottom: .5rem;
}

.hero__meta dd {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 2.2vw, 2.4rem);
    letter-spacing: -.03em;
    line-height: 1;
}

.hero__scroll {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: clamp(2.5rem, 6vh, 4.5rem);
    font-family: var(--font-mono);
    font-size: .66rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--on-dark-faint);
}

.hero__scroll i {
    display: block;
    width: 46px;
    height: 1px;
    background: currentColor;
    position: relative;
    overflow: hidden;
}

.hero__scroll i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--blue-lift);
    transform: translateX(-100%);
    animation: scroll-hint 2.6s var(--ease-soft) infinite;
}

@keyframes scroll-hint {
    0%   { transform: translateX(-100%); }
    55%  { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

/* Carrossel de banners */
.hero__slides { position: absolute; inset: 0; z-index: -2; }

/* O véu é o último filho de .hero__slides; sem isto ele ficaria atrás das
   fotos (z-index negativo pinta abaixo dos irmãos com z-index auto). */
.hero__slides > .hero__media { z-index: 1; }

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s var(--ease-soft);
}

.hero__slide.is-current { opacity: 1; }

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
    filter: contrast(1.04) saturate(.85) brightness(.72);
}

.hero__dots {
    display: flex;
    gap: .5rem;
    margin-top: 1.8rem;
}

.hero__dot {
    width: 34px;
    height: 2px;
    background: var(--rule-dark);
    position: relative;
    overflow: hidden;
}

.hero__dot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--paper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

.hero__dot[aria-current="true"]::after { transform: scaleX(1); }

/* --------------------------------------------------------------------------
   11. Marquee
   -------------------------------------------------------------------------- */
.marquee {
    overflow: hidden;
    border-block: 1px solid var(--rule-dark);
    padding-block: clamp(.9rem, 1.6vw, 1.35rem);
    -webkit-user-select: none;
    user-select: none;
}

.band-light .marquee { border-color: var(--rule-light); }

.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 44s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__group {
    display: flex;
    align-items: center;
    flex: none;
}

.marquee__item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.1rem, 2.1vw, 2rem);
    letter-spacing: -.02em;
    text-transform: uppercase;
    padding-inline: clamp(1.2rem, 2.4vw, 2.2rem);
    display: flex;
    align-items: center;
    gap: clamp(1.2rem, 2.4vw, 2.2rem);
    white-space: nowrap;
}

.marquee__item::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-lift);
    flex: none;
}

/* Variante sólida em Helvetica (fonte secundária da marca): sem contorno
   vazado, para a faixa logo abaixo do banner da home ficar legível. */
.marquee--solid .marquee__item {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(1rem, 1.7vw, 1.55rem);
    letter-spacing: .01em;
    color: var(--on-dark-muted);
}

.marquee--outline .marquee__item {
    color: transparent;
    -webkit-text-stroke: 1px var(--on-dark-faint);
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   12. Índice editorial (lista numerada de cursos)
   -------------------------------------------------------------------------- */
.index-list { border-top: 1px solid var(--rule-light); }

.band-dark .index-list,
.section:not(.band-light) .index-list { border-top-color: var(--rule-dark); }

.index-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    padding-block: clamp(1.1rem, 2.4vw, 1.9rem);
    border-bottom: 1px solid var(--rule-light);
    position: relative;
    /* Sem contexto de empilhamento próprio, o ::before (z-index: -1) ficava
       atrás do fundo da seção: o preenchimento sumia e o texto virava branco
       no branco ao passar o mouse. */
    isolation: isolate;
    transition: color .4s var(--ease);
}

.section:not(.band-light) .index-row { border-bottom-color: var(--rule-dark); }

.index-row::before {
    content: "";
    position: absolute;
    left: calc(var(--gutter) * -.5);
    right: calc(var(--gutter) * -.5);
    top: 0;
    bottom: 0;
    background: var(--ink);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .5s var(--ease);
    z-index: -1;
}

.index-row:hover::before { transform: scaleY(1); transform-origin: top; }
.index-row:hover { color: var(--paper); }
.section:not(.band-light) .index-row::before { background: var(--paper); }
.section:not(.band-light) .index-row:hover { color: var(--ink); }

.index-row__num {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    opacity: .45;
    font-variant-numeric: tabular-nums;
    min-width: 2.6ch;
}

.index-row__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.15rem, 2.6vw, 2.15rem);
    text-transform: uppercase;
    letter-spacing: -.03em;
    line-height: 1.04;
    transition: transform .5s var(--ease);
}

.index-row:hover .index-row__title { transform: translateX(clamp(6px, 1vw, 16px)); }

.index-row__meta {
    display: none;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .5;
    text-align: right;
}

@media (min-width: 760px) { .index-row__meta { display: block; } }

.index-row__go {
    width: 1.15rem;
    height: 1.15rem;
    flex: none;
    opacity: .35;
    transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.index-row:hover .index-row__go { opacity: 1; transform: translate(3px, -3px); }


/* --------------------------------------------------------------------------
   13. Cartões
   -------------------------------------------------------------------------- */
.cards {
    display: grid;
    gap: 1px;
    background: var(--rule-light);
    border-block: 1px solid var(--rule-light);
}

.section:not(.band-light) .cards {
    background: var(--rule-dark);
    border-block-color: var(--rule-dark);
}

@media (min-width: 700px)  { .cards--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px)  { .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px)  { .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
    background: var(--paper);
    padding: clamp(1.8rem, 3vw, 2.8rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    isolation: isolate;
    /* O ::before entra por baixo com translateY(100%); sem recorte ele vaza
       para fora do card e aparece como um bloco azul na seção seguinte. */
    overflow: hidden;
    min-height: 100%;
    transition: color .45s var(--ease);
}

.section:not(.band-light) .card { background: var(--ink); }

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--blue);
    /* 101% e não 100%: em telas fracionadas sobrava 1px azul na emenda. */
    transform: translateY(101%);
    transition: transform .6s var(--ease);
}

a.card:hover::before, a.card:focus-visible::before { transform: translateY(0); }
a.card:hover, a.card:focus-visible { color: #fff; }
a.card:hover .card__num, a.card:hover .card__text { color: rgba(255, 255, 255, .82); }

.card__num {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .16em;
    color: var(--on-light-muted);
    transition: color .4s var(--ease);
}

.section:not(.band-light) .card__num { color: var(--on-dark-faint); }

.card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.25rem, 1.7vw, 1.7rem);
    text-transform: uppercase;
    letter-spacing: -.028em;
    line-height: 1.02;
}

.card__text {
    color: var(--on-light-muted);
    font-size: .96rem;
    line-height: 1.6;
    transition: color .4s var(--ease);
    flex: 1;
}

.section:not(.band-light) .card__text { color: var(--on-dark-muted); }

.card__foot {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-top: .4rem;
}

.card__foot svg { width: .9rem; transition: transform .4s var(--ease); }
a.card:hover .card__foot svg { transform: translate(3px, -3px); }

/* Cartão com imagem (notícias, cursos em destaque) */
.tile {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    position: relative;
}

.tile__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--ink-soft);
}

.tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.04);
    transform: scale(1.02);
    transition: transform 1s var(--ease), filter .6s var(--ease);
}

.tile:hover .tile__media img { transform: scale(1.08); filter: grayscale(0) contrast(1); }

.tile__badge {
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: var(--blue);
    color: #fff;
    font-family: var(--font-mono);
    font-size: .64rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .45rem .8rem;
}

.tile__date {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--on-dark-faint);
}

.band-light .tile__date { color: rgba(15, 15, 14, .45); }

.tile__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.2rem, 1.6vw, 1.6rem);
    text-transform: uppercase;
    letter-spacing: -.028em;
    line-height: 1.06;
    transition: color .35s var(--ease);
}

.tile:hover .tile__title { color: var(--blue-lift); }
.band-light .tile:hover .tile__title { color: var(--blue); }

.tile__text { color: var(--on-dark-muted); font-size: .95rem; }
.band-light .tile__text { color: var(--on-light-muted); }

/* --------------------------------------------------------------------------
   14. Faixa horizontal (modalidades)
   -------------------------------------------------------------------------- */
.rail {
    display: flex;
    gap: 1px;
    background: var(--rule-dark);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
}

.rail.is-grabbing { cursor: grabbing; scroll-snap-type: none; }
.rail.is-grabbing a { pointer-events: none; }

.rail::-webkit-scrollbar { display: none; }

.band-light .rail { background: var(--rule-light); }

.rail__item {
    flex: none;
    width: min(82vw, 380px);
    scroll-snap-align: start;
    background: var(--ink);
    padding: clamp(1.8rem, 3vw, 2.6rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: clamp(260px, 34vw, 360px);
    position: relative;
    isolation: isolate;
    transition: color .45s var(--ease);
}

.band-light .rail__item { background: var(--paper); }

.rail__item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--blue);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .55s var(--ease);
}

a.rail__item:hover::before { transform: scaleY(1); transform-origin: top; }
a.rail__item:hover { color: #fff; }

.rail__index {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .16em;
    opacity: .45;
}

.rail__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.3rem, 1.9vw, 1.85rem);
    text-transform: uppercase;
    letter-spacing: -.03em;
    line-height: 1.02;
}

.rail__text {
    font-size: .93rem;
    line-height: 1.58;
    color: var(--on-dark-muted);
    flex: 1;
    transition: color .4s var(--ease);
}

.band-light .rail__text { color: var(--on-light-muted); }
a.rail__item:hover .rail__text { color: rgba(255, 255, 255, .82); }

.rail__cta {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.rail-hint {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-top: 1.6rem;
    font-family: var(--font-mono);
    font-size: .66rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--on-dark-faint);
}

.band-light .rail-hint { color: rgba(15, 15, 14, .42); }

/* --------------------------------------------------------------------------
   15. Números
   -------------------------------------------------------------------------- */
.stats {
    display: grid;
    gap: 1px;
    background: var(--rule-dark);
    border-block: 1px solid var(--rule-dark);
}

.band-light .stats { background: var(--rule-light); border-block-color: var(--rule-light); }

@media (min-width: 640px)  { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat {
    background: var(--ink);
    padding: clamp(1.8rem, 3vw, 2.6rem) clamp(1.5rem, 2.4vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.band-light .stat { background: var(--paper); }

.stat__value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
    letter-spacing: -.045em;
    line-height: .9;
    font-variant-numeric: tabular-nums;
}

.stat__value sup {
    font-size: .38em;
    vertical-align: super;
    color: var(--blue-lift);
    letter-spacing: 0;
}

.band-light .stat__value sup { color: var(--blue); }

.stat__label {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--on-dark-faint);
}

.band-light .stat__label { color: rgba(15, 15, 14, .45); }

.stat__note { font-size: .9rem; color: var(--on-dark-muted); }
.band-light .stat__note { color: var(--on-light-muted); }

/* --------------------------------------------------------------------------
   16. Depoimentos
   -------------------------------------------------------------------------- */
.quotes { position: relative; }

/* A altura é ajustada pelo site.js conforme o depoimento visível. */
.quotes__viewport {
    overflow: hidden;
    transition: height .55s var(--ease);
}

.quotes__item { align-self: flex-start; }

.quotes__track {
    display: flex;
    transition: transform .8s var(--ease);
}

.quotes__item {
    flex: 0 0 100%;
    padding-right: clamp(1rem, 4vw, 4rem);
}

.quotes__mark {
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: .6;
    color: var(--blue);
    display: block;
    margin-bottom: 1.5rem;
}

.quotes__text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.4rem, 3.4vw, 3.3rem);
    line-height: 1.1;
    letter-spacing: -.03em;
    text-transform: none;
    max-width: 26ch;
    text-wrap: balance;
}

.quotes__author {
    margin-top: clamp(1.8rem, 3vw, 2.6rem);
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.quotes__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.quotes__role {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--on-dark-faint);
}

.band-light .quotes__role { color: rgba(15, 15, 14, .45); }

.quotes__nav {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.quotes__btn {
    width: 54px;
    height: 54px;
    border: 1px solid var(--rule-dark);
    border-radius: 999px;
    display: grid;
    place-items: center;
    transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}

.band-light .quotes__btn { border-color: var(--rule-light); }

.quotes__btn:hover:not(:disabled) { background: var(--blue); border-color: var(--blue); color: #fff; }
.quotes__btn:disabled { opacity: .3; cursor: default; }
.quotes__btn svg { width: 1rem; }

.quotes__count {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    margin-left: .8rem;
    color: var(--on-dark-faint);
    font-variant-numeric: tabular-nums;
}

.band-light .quotes__count { color: rgba(15, 15, 14, .45); }

/* Em telas largas o depoimento ocupava só a coluna da esquerda e sobrava um
   vão enorme à direita: a citação ganha medida maior e a assinatura vai para
   uma coluna lateral, equilibrando a faixa inteira. */
@media (min-width: 1000px) {
    .quotes__item {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
        column-gap: clamp(2.5rem, 5vw, 5.5rem);
        align-items: start;
        padding-right: 0;
    }

    .quotes__mark,
    .quotes__text { grid-column: 1; }

    /* A medida de 26ch — e o `balance`, que encolhe o bloco — deixavam a
       citação parando no meio da coluna. */
    .quotes__text {
        max-width: none;
        text-wrap: pretty;
    }

    .quotes__author {
        grid-column: 2;
        grid-row: 2;
        margin-top: .5rem;
        padding-top: 1.2rem;
        border-top: 1px solid var(--rule-dark);
    }

    .band-light .quotes__author { border-top-color: var(--rule-light); }
}

/* --------------------------------------------------------------------------
   17. Sanfona (FAQ / grade curricular)
   -------------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--rule-light); }
.section:not(.band-light) .accordion { border-top-color: var(--rule-dark); }

.accordion__item { border-bottom: 1px solid var(--rule-light); }
.section:not(.band-light) .accordion__item { border-bottom-color: var(--rule-dark); }

.accordion__trigger {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: clamp(1.15rem, 2.2vw, 1.7rem);
    text-align: left;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.02rem, 1.5vw, 1.35rem);
    letter-spacing: -.018em;
    line-height: 1.25;
    transition: color .35s var(--ease);
}

.accordion__trigger:hover { color: var(--blue); }
.section:not(.band-light) .accordion__trigger:hover { color: var(--blue-lift); }

.accordion__icon {
    flex: none;
    width: 1.35rem;
    height: 1.35rem;
    position: relative;
    margin-top: .25rem;
}

.accordion__icon::before,
.accordion__icon::after {
    content: "";
    position: absolute;
    background: currentColor;
    transition: transform .45s var(--ease), opacity .3s var(--ease);
}

.accordion__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.accordion__icon::after  { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }

.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: translateX(-50%) scaleY(0); }

.accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .5s var(--ease);
}

.accordion__panel[data-open="true"] { grid-template-rows: 1fr; }

.accordion__inner {
    overflow: hidden;
    color: var(--on-light-muted);
}

.section:not(.band-light) .accordion__inner { color: var(--on-dark-muted); }

.accordion__inner > div {
    padding-bottom: clamp(1.3rem, 2.2vw, 2rem);
    max-width: 72ch;
}

.accordion__inner p + p { margin-top: .9rem; }
.accordion__inner ul { display: grid; gap: .5rem; margin-top: .8rem; }

.accordion__inner ul li {
    padding-left: 1.3rem;
    position: relative;
}

.accordion__inner ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 6px;
    height: 1px;
    background: var(--blue);
}

/* --------------------------------------------------------------------------
   18. Conteúdo rico (páginas e notícias)
   -------------------------------------------------------------------------- */
.prose {
    max-width: 68ch;
    font-size: clamp(1.02rem, .98rem + .2vw, 1.14rem);
    line-height: 1.72;
    color: var(--on-dark-muted);
}

.band-light .prose { color: var(--on-light-muted); }

.prose > * + * { margin-top: 1.35em; }

.prose h2, .prose h3, .prose h4 {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -.028em;
    line-height: 1.06;
    color: var(--on-dark);
    margin-top: 2.4em;
}

.band-light .prose h2,
.band-light .prose h3,
.band-light .prose h4 { color: var(--on-light); }

.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
.prose h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); }
.prose h4 { font-size: 1.1rem; }

.prose strong { color: var(--on-dark); font-weight: 700; }
.band-light .prose strong { color: var(--on-light); }

.prose a {
    color: var(--blue-lift);
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0 92%;
    background-size: 100% 1px;
    transition: background-size .4s var(--ease);
}

.band-light .prose a { color: var(--blue); }
.prose a:hover { background-size: 0 1px; }

.prose ul, .prose ol { display: grid; gap: .6em; padding-left: 0; }

.prose ul li, .prose ol li { position: relative; padding-left: 1.5rem; }

.prose ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 8px;
    height: 1px;
    background: var(--blue);
}

.prose ol { counter-reset: item; }

.prose ol li::before {
    counter-increment: item;
    content: counter(item, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--blue-lift);
}

.band-light .prose ol li::before { color: var(--blue); }

.prose blockquote {
    border-left: 2px solid var(--blue);
    padding-left: clamp(1.2rem, 2.4vw, 2rem);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    line-height: 1.24;
    letter-spacing: -.022em;
    color: var(--on-dark);
}

.band-light .prose blockquote { color: var(--on-light); }

.prose img { width: 100%; margin-block: 2.4em; }

.prose hr { border: 0; height: 1px; background: var(--rule-dark); margin-block: 2.8em; }
.band-light .prose hr { background: var(--rule-light); }

.prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
}

.prose th, .prose td {
    text-align: left;
    padding: .85rem 1rem;
    border-bottom: 1px solid var(--rule-dark);
}

.band-light .prose th, .band-light .prose td { border-bottom-color: var(--rule-light); }

.prose th {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.prose iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; }

/* Lista com marcadores em duas colunas */
.checklist { display: grid; gap: .85rem; }

@media (min-width: 760px) { .checklist--2 { grid-template-columns: repeat(2, 1fr); gap: .85rem 2.5rem; } }

.checklist li {
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
    color: var(--on-dark-muted);
}

.band-light .checklist li { color: var(--on-light-muted); }

.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .58em;
    width: 12px;
    height: 12px;
    border: 1px solid var(--blue);
    border-radius: 50%;
}

.checklist li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: calc(.58em + 4px);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blue);
}

/* --------------------------------------------------------------------------
   19. Cabeçalho de página interna
   -------------------------------------------------------------------------- */
.pagehead {
    padding-top: calc(var(--header-h) + clamp(4rem, 12vh, 9rem));
    padding-bottom: clamp(2.5rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}

.pagehead::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(75% 90% at 82% 0%, rgba(35, 83, 204, .22), transparent 62%);
}

.pagehead--media { min-height: min(72vh, 640px); display: flex; align-items: flex-end; }

.pagehead__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.pagehead__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(.5) contrast(1.08);
}

.pagehead__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--ink) 4%, rgba(15, 15, 14, .72) 52%, rgba(15, 15, 14, .48) 100%);
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--on-dark-faint);
    margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.crumbs a { transition: color .3s var(--ease); }
.crumbs a:hover { color: var(--on-dark); }
.crumbs span[aria-hidden] { opacity: .4; }

.pagehead__title { max-width: 18ch; }
.pagehead__lead { margin-top: clamp(1.2rem, 2.4vw, 1.8rem); max-width: 52ch; }

.pagehead__meta {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: clamp(1.5rem, 3vw, 2.2rem);
    border-top: 1px solid var(--rule-dark);
}

.pagehead__meta div { min-width: 120px; }

.pagehead__meta dt {
    font-family: var(--font-mono);
    font-size: .64rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--on-dark-faint);
    margin-bottom: .35rem;
}

.pagehead__meta dd {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: -.01em;
}

/* --------------------------------------------------------------------------
   20. Layout de duas colunas com barra lateral fixa
   -------------------------------------------------------------------------- */
.split {
    display: grid;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

@media (min-width: 1000px) {
    .split { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); }
    .split--reverse { grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); }
    .split--even { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.sticky-side { position: sticky; top: calc(var(--header-h) + 2rem); }

.side-card {
    border: 1px solid var(--rule-dark);
    padding: clamp(1.6rem, 2.6vw, 2.2rem);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.band-light .side-card { border-color: var(--rule-light); }

.side-card__price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    letter-spacing: -.04em;
    line-height: 1;
}

.side-card__list { display: grid; gap: .85rem; }

.side-card__list div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: .85rem;
    border-bottom: 1px solid var(--rule-dark-soft);
    font-size: .92rem;
}

.band-light .side-card__list div { border-bottom-color: var(--rule-light-soft); }

.side-card__list dt {
    font-family: var(--font-mono);
    font-size: .66rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--on-dark-faint);
}

.band-light .side-card__list dt { color: rgba(15, 15, 14, .45); }

.side-card__list dd { text-align: right; font-weight: 600; }

/* Tabela de preços das graduações */
.pricing {
    display: grid;
    gap: 1px;
    background: var(--rule-dark);
    border: 1px solid var(--rule-dark);
}

.band-light .pricing { background: var(--rule-light); border-color: var(--rule-light); }

@media (min-width: 640px)  { .pricing { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pricing { grid-template-columns: repeat(4, 1fr); } }

.pricing__item {
    background: var(--ink);
    padding: clamp(1.4rem, 2.4vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.band-light .pricing__item { background: var(--paper); }

.pricing__item--highlight { background: var(--blue); color: #fff; }

.pricing__label {
    font-family: var(--font-mono);
    font-size: .66rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .6;
}

.pricing__value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    letter-spacing: -.035em;
}

.pricing__unit { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; opacity: .55; }

/* --------------------------------------------------------------------------
   21. Polos
   -------------------------------------------------------------------------- */
.polo-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.chip {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .6rem 1.05rem;
    border: 1px solid var(--rule-dark);
    border-radius: 999px;
    color: var(--on-dark-muted);
    transition: color .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}

.band-light .chip { border-color: var(--rule-light); color: var(--on-light-muted); }

.chip:hover { color: var(--on-dark); border-color: var(--on-dark-faint); }
.band-light .chip:hover { color: var(--on-light); border-color: rgba(15, 15, 14, .3); }

.chip[aria-pressed="true"] { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Os filetes são desenhados nas próprias células. O truque antigo (gap de 1px
   sobre um fundo cinza) preenchia as células vazias da última linha, deixando
   um retângulo cinza no fim da lista. */
.polos-grid {
    --polo-rule: var(--rule-dark);
    display: grid;
    border-block: 1px solid var(--polo-rule);
}

.band-light .polos-grid { --polo-rule: var(--rule-light); }

/* O filete de baixo é do container; as células da última linha não desenham o
   seu, senão a linha ficaria dobrada embaixo delas. */
.polo:last-child { border-bottom: 0; }

@media (min-width: 700px)  {
    .polos-grid { grid-template-columns: repeat(2, 1fr); }
    .polo:not(:nth-child(2n + 1)) { border-left: 1px solid var(--polo-rule); }

    .polo { border-bottom: 1px solid var(--polo-rule); }
    .polo:nth-last-child(-n + 2):nth-child(2n + 1),
    .polo:nth-last-child(-n + 2):nth-child(2n + 1) ~ .polo { border-bottom: 0; }
}

@media (min-width: 1180px) {
    .polos-grid { grid-template-columns: repeat(3, 1fr); }
    .polo:not(:nth-child(2n + 1)) { border-left: 0; }
    .polo:not(:nth-child(3n + 1)) { border-left: 1px solid var(--polo-rule); }

    .polo { border-bottom: 1px solid var(--polo-rule); }
    .polo:nth-last-child(-n + 3):nth-child(3n + 1),
    .polo:nth-last-child(-n + 3):nth-child(3n + 1) ~ .polo { border-bottom: 0; }
}

.polo {
    padding: clamp(1.7rem, 2.8vw, 2.4rem);
    border-bottom: 1px solid var(--polo-rule);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.polo[hidden] { display: none; }

.polo__state {
    font-family: var(--font-mono);
    font-size: .66rem;
    letter-spacing: .18em;
    color: var(--blue-lift);
}

.band-light .polo__state { color: var(--blue); }

.polo__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.3rem, 1.9vw, 1.7rem);
    text-transform: uppercase;
    letter-spacing: -.028em;
    line-height: 1.02;
}

.polo__address { font-size: .93rem; color: var(--on-dark-muted); line-height: 1.55; }
.band-light .polo__address { color: var(--on-light-muted); }

.polo__contact {
    display: grid;
    gap: .9rem;
    padding-top: 1.1rem;
    margin-top: auto;
    border-top: 1px solid var(--rule-dark-soft);
    font-size: .9rem;
}

.band-light .polo__contact { border-top-color: var(--rule-light-soft); }

.polo__role {
    display: block;
    font-family: var(--font-mono);
    font-size: .64rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--on-dark-faint);
    margin-bottom: .3rem;
}

.band-light .polo__role { color: rgba(15, 15, 14, .45); }

.polo__person {
    font-size: 1.02rem;
    line-height: 1.35;
}

/* O telefone abre o WhatsApp: vira botão, para o clique ficar evidente. */
.polo__phones { display: flex; flex-wrap: wrap; gap: .5rem; }

.polo__phone {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .95rem;
    border: 1px solid var(--polo-rule, var(--rule-dark));
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: .78rem;
    letter-spacing: .02em;
    white-space: nowrap;
    transition: background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}

.polo__phone:hover,
.polo__phone:focus-visible {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.polo__phone svg { width: 1.05em; height: 1.05em; }

.polo__mail {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .88rem;
    color: var(--on-dark-muted);
    transition: color .3s var(--ease);
}

.band-light .polo__mail { color: var(--on-light-muted); }
.polo__mail:hover { color: var(--blue-lift); }
.band-light .polo__mail:hover { color: var(--blue); }

/* --------------------------------------------------------------------------
   22. Formulários
   -------------------------------------------------------------------------- */
.form { display: grid; gap: clamp(1.4rem, 2.4vw, 1.9rem); }

.form__row { display: grid; gap: clamp(1.4rem, 2.4vw, 1.9rem); }

@media (min-width: 700px) { .form__row--2 { grid-template-columns: repeat(2, 1fr); } }

.field { position: relative; display: flex; flex-direction: column; }

.field__label {
    font-family: var(--font-mono);
    font-size: .66rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--on-dark-faint);
    margin-bottom: .7rem;
}

.band-light .field__label { color: rgba(15, 15, 14, .48); }

.field__label span { color: var(--blue-lift); }
.band-light .field__label span { color: var(--blue); }

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: .95rem 0;
    border-bottom: 1px solid var(--rule-dark);
    font-size: 1.05rem;
    color: var(--on-dark);
    transition: border-color .35s var(--ease);
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.band-light .field input,
.band-light .field select,
.band-light .field textarea { border-bottom-color: var(--rule-light); color: var(--on-light); }

.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-bottom-color: var(--blue-lift);
}

.band-light .field input:focus,
.band-light .field select:focus,
.band-light .field textarea:focus { border-bottom-color: var(--blue); }

.field input::placeholder,
.field textarea::placeholder { color: var(--on-dark-faint); }

.band-light .field input::placeholder,
.band-light .field textarea::placeholder { color: rgba(15, 15, 14, .32); }

.field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23888' stroke-width='1.4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .2rem center;
    background-size: .7rem;
    padding-right: 1.8rem;
}

.field select option { background: var(--ink); color: var(--on-dark); }
.band-light .field select option { background: var(--paper); color: var(--on-light); }

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-bottom-color: #e04b4b; }

.field__error {
    margin-top: .55rem;
    font-size: .82rem;
    color: #ff8a8a;
}

.band-light .field__error { color: #c62828; }

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    cursor: pointer;
    font-size: .92rem;
    color: var(--on-dark-muted);
    line-height: 1.5;
}

.band-light .checkbox { color: var(--on-light-muted); }

.checkbox input {
    -webkit-appearance: none;
    appearance: none;
    flex: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--rule-dark);
    margin-top: .15rem;
    position: relative;
    transition: background-color .3s var(--ease), border-color .3s var(--ease);
    border-radius: 2px;
}

.band-light .checkbox input { border-color: rgba(15, 15, 14, .3); }

.checkbox input:checked { background: var(--blue); border-color: var(--blue); }

.checkbox input:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 1.6px 1.6px 0;
    transform: rotate(45deg);
}

.checkbox a { text-decoration: underline; text-underline-offset: 3px; }

.honeypot {
    position: absolute !important;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Avisos */
.notice {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.3rem;
    border-left: 2px solid var(--blue);
    background: rgba(35, 83, 204, .08);
    font-size: .95rem;
}

.notice--ok    { border-left-color: #2e9e6b; background: rgba(46, 158, 107, .1); }
.notice--error { border-left-color: #e04b4b; background: rgba(224, 75, 75, .1); }

/* --------------------------------------------------------------------------
   23. Bloco de destaque / chamada final
   -------------------------------------------------------------------------- */
.cta {
    position: relative;
    overflow: hidden;
    padding-block: clamp(4rem, 9vw, 8rem);
    isolation: isolate;
}

.cta__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(.34);
}

.cta__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(35, 83, 204, .58), rgba(15, 15, 14, .78));
}

.cta__inner {
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: end;
}

@media (min-width: 1000px) {
    .cta__inner { grid-template-columns: minmax(0, 1fr) auto; }
}

.cta__title { max-width: 16ch; }

/* --------------------------------------------------------------------------
   24. Rodapé
   -------------------------------------------------------------------------- */
.footer {
    background: var(--ink);
    color: var(--on-dark);
    padding-top: clamp(3.5rem, 7vw, 6rem);
    position: relative;
    overflow: hidden;
}

.footer__top {
    display: grid;
    gap: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

@media (min-width: 900px) {
    .footer__top { grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2fr)); }
}

.footer__intro { max-width: 34ch; }

.footer__logo {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer__col h3 {
    font-family: var(--font-mono);
    font-size: .66rem;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--on-dark-faint);
    margin-bottom: 1.4rem;
}

.footer__col ul { display: grid; gap: .75rem; }

.footer__col a {
    font-size: .95rem;
    color: var(--on-dark-muted);
    transition: color .3s var(--ease), transform .3s var(--ease);
    display: inline-block;
}

.footer__col a:hover { color: var(--on-dark); transform: translateX(4px); }

.footer__social { display: flex; gap: .55rem; margin-top: 1.8rem; flex-wrap: wrap; }

.footer__social a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--rule-dark);
    border-radius: 999px;
    transition: background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}

.footer__social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: none; }
.footer__social svg { width: 1.05rem; height: 1.05rem; }

/* Assinatura grande do rodapé: o logo da marca recortado como máscara, para
   pintar o desenho (PNG preto sobre transparência) na cor de destaque em vez
   do contorno vazado. */
.footer__wordmark {
    display: block;
    width: 100%;
    aspect-ratio: 1896 / 300;
    margin-bottom: clamp(1.5rem, 3vw, 2.6rem);
    background-color: var(--blue-lift);
    -webkit-mask-image: url("../img/logo-unirenascer.png");
    mask-image: url("../img/logo-unirenascer.png");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-user-select: none;
    user-select: none;
}

/* Sem suporte a máscara o bloco viraria uma barra azul cheia: melhor sumir. */
@supports not ((-webkit-mask-image: url("#m")) or (mask-image: url("#m"))) {
    .footer__wordmark { display: none; }
}

.footer__bottom {
    border-top: 1px solid var(--rule-dark);
    padding-block: 1.6rem 2.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
    justify-content: space-between;
    font-size: .82rem;
    color: var(--on-dark-faint);
}

.footer__bottom a { transition: color .3s var(--ease); }
.footer__bottom a:hover { color: var(--on-dark); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.4rem; }

/* --------------------------------------------------------------------------
   25. Paginação
   -------------------------------------------------------------------------- */
.pagination {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-top: clamp(3rem, 6vw, 5rem);
    font-family: var(--font-mono);
    font-size: .78rem;
    letter-spacing: .1em;
}

.pagination a,
.pagination span {
    min-width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--rule-dark);
    border-radius: 999px;
    padding-inline: .6rem;
    transition: background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}

.band-light .pagination a,
.band-light .pagination span { border-color: var(--rule-light); }

.pagination a:hover { border-color: var(--on-dark-faint); }
.pagination [aria-current="page"] { background: var(--blue); border-color: var(--blue); color: #fff; }
.pagination .is-disabled { opacity: .3; pointer-events: none; }

/* --------------------------------------------------------------------------
   26. Animações de entrada
   -------------------------------------------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
}

.no-js [data-reveal],
[data-reveal].is-in {
    opacity: 1;
    transform: none;
}

[data-reveal]:not(.is-in) { transition: none; }

[data-reveal].is-in {
    transition: opacity .85s var(--ease), transform .85s var(--ease);
    transition-delay: var(--delay, 0s);
}

[data-split] .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    /* Mesma correção de acento da máscara do hero: espaço em cima para o til e
       o agudo, embaixo para a cedilha. */
    padding-block: .16em .12em;
    margin-block: -.16em -.12em;
}
[data-split] .word > span { display: inline-block; transform: translateY(130%); }
[data-split].is-in .word > span { transition: transform .95s var(--ease); transition-delay: var(--d, 0s); transform: translateY(0); }

/* --------------------------------------------------------------------------
   26.1 Aviso em modal (configurado no painel)
   -------------------------------------------------------------------------- */
.notice {
    position: fixed;
    inset: 0;
    /* Acima do cabeçalho fixo (200) e do menu lateral (190). */
    z-index: 210;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 3rem);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s var(--ease);
}

.notice[data-open="true"] { opacity: 1; visibility: visible; }

.notice__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 9, 8, .72);
    backdrop-filter: blur(3px);
}

.notice__panel {
    position: relative;
    width: min(100%, 34rem);
    max-height: min(86vh, 46rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--paper);
    color: var(--on-light);
    transform: translateY(18px) scale(.98);
    transition: transform .5s var(--ease);
}

.notice[data-open="true"] .notice__panel { transform: none; }

.notice__close {
    position: absolute;
    top: .9rem;
    right: .9rem;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--rule-light);
    transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.notice__close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.notice__close svg { width: .95rem; height: .95rem; }

.notice__media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.notice__body { padding: clamp(1.6rem, 3.2vw, 2.6rem); }
.notice__title { margin-top: .9rem; }
.notice__text { margin-top: 1rem; }
.notice__cta { margin-top: clamp(1.4rem, 2.6vw, 2rem); }

@media (prefers-reduced-motion: reduce) {
    .notice, .notice__panel { transition: none; }
    .notice__panel { transform: none; }
}

/* --------------------------------------------------------------------------
   27. Utilitários
   -------------------------------------------------------------------------- */
.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;
}

.stack   { display: grid; gap: 1rem; }
.stack-2 { display: grid; gap: 2rem; }
.flex    { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.mt-lg   { margin-top: clamp(2.5rem, 5vw, 4rem); }
.mt-md   { margin-top: clamp(1.5rem, 3vw, 2.4rem); }
.text-right { text-align: right; }

.empty {
    padding: clamp(3rem, 6vw, 5rem) 0;
    text-align: center;
    color: var(--on-dark-faint);
    font-family: var(--font-mono);
    font-size: .8rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.band-light .empty { color: rgba(15, 15, 14, .42); }

/* --------------------------------------------------------------------------
   28. Preferências do usuário e impressão
   -------------------------------------------------------------------------- */
@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;
    }

    [data-reveal], [data-split] .word > span, .hero__line > span {
        opacity: 1 !important;
        transform: none !important;
    }

    .marquee__track { animation: none; }
}

@media print {
    .header, .drawer, .footer__wordmark, .hero__media, .btn { display: none !important; }
    body { background: #fff; color: #000; }
    .prose, .lead, .muted { color: #000; }
    a::after { content: " (" attr(href) ")"; font-size: .8em; }
}
