/* =========================================================
   Legends Branson — Mitologia Comparada
   Sistema visual: superfícies escuras, camadas atmosféricas,
   ouro para a tradição grega e azul-gelo para a nórdica.
   ========================================================= */

:root {
    --bg:            #0a0c13;
    --bg-deep:       #070810;
    --surface:       #11141f;
    --surface-2:     #161a28;
    --surface-3:     #1c2131;
    --line:          rgba(255, 255, 255, .09);
    --line-strong:   rgba(255, 255, 255, .16);

    --text:          #e8eaf2;
    --text-soft:     #c2c7d6;
    --muted:         #929aaf;

    --gold:          #d8a44f;
    --gold-bright:   #f3d9a4;
    --gold-deep:     #8a5a1e;
    --ice:           #7fc2eb;
    --ice-bright:    #cfeeff;
    --ice-deep:      #2f6d9e;

    --danger:        #e07a5f;
    --success:       #7fbf8a;

    --serif:  'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    --sans:   'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

    --shell:  1180px;
    --radius: 16px;
    --radius-sm: 10px;

    --shadow-soft: 0 24px 60px -30px rgba(0, 0, 0, .9);
    --shadow-lift: 0 30px 70px -32px rgba(0, 0, 0, .95);

    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.7;
    font-feature-settings: 'kern' 1, 'liga' 1;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { max-width: 100%; }
svg { display: block; }

a {
    color: var(--gold-bright);
    text-decoration-color: rgba(216, 164, 79, .4);
    text-underline-offset: .18em;
    transition: color .2s var(--ease), text-decoration-color .2s var(--ease);
}
a:hover { color: #fff; text-decoration-color: var(--gold); }

:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
    border-radius: 4px;
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0 0 .6em;
    color: #fff;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.18rem, 1.8vw, 1.45rem); }
h4 { font-size: 1.02rem; font-family: var(--sans); font-weight: 600; letter-spacing: .01em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.muted { color: var(--muted); font-size: .92rem; }

cite { font-style: normal; font-weight: 600; color: var(--text); }

code {
    font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    font-size: .86em;
    background: rgba(255, 255, 255, .06);
    padding: .16em .45em;
    border-radius: 5px;
    color: var(--gold-bright);
    word-break: break-all;
}

.shell {
    width: min(100% - 2.5rem, var(--shell));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    background: var(--gold);
    color: #14100a;
    padding: .8rem 1.3rem;
    font-weight: 600;
    border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #14100a; }

/* ---------- Camada atmosférica ---------- */

.atmosphere {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(1100px 620px at 8% -8%, rgba(138, 90, 30, .20), transparent 62%),
        radial-gradient(980px 620px at 100% 4%, rgba(47, 109, 158, .20), transparent 60%),
        linear-gradient(180deg, #0a0c13 0%, #070810 55%, #0a0c13 100%);
}

.atmosphere__glow {
    position: absolute;
    width: 42vw;
    height: 42vw;
    max-width: 640px;
    max-height: 640px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .32;
}
.atmosphere__glow--gold { top: 12%; left: -8%; background: radial-gradient(circle, rgba(216, 164, 79, .5), transparent 68%); }
.atmosphere__glow--ice  { top: 52%; right: -10%; background: radial-gradient(circle, rgba(127, 194, 235, .42), transparent 68%); }

.atmosphere__grain {
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: radial-gradient(rgba(255, 255, 255, .8) .5px, transparent .5px);
    background-size: 3px 3px;
}

/* ---------- Emblemas ---------- */

.emblem { display: block; overflow: visible; }
.emblem--grega  { filter: drop-shadow(0 0 22px rgba(216, 164, 79, .28)); }
.emblem--nordica { filter: drop-shadow(0 0 22px rgba(127, 194, 235, .26)); }

/* ---------- Cabeçalho ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(14px);
    background: rgba(10, 12, 19, .82);
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-height: 70px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
    color: inherit;
    flex: none;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__text strong {
    font-family: var(--serif);
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: .01em;
    background: linear-gradient(100deg, var(--gold-bright), var(--gold) 55%, var(--ice));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.brand__text small {
    font-size: .66rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
}
.brand-mark { flex: none; }

.site-nav { margin-left: auto; }
.site-nav ul {
    display: flex;
    gap: .25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-nav a {
    display: block;
    padding: .55rem .8rem;
    border-radius: 9px;
    font-size: .89rem;
    font-weight: 500;
    color: var(--text-soft);
    text-decoration: none;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.site-nav a:hover { background: rgba(255, 255, 255, .06); color: #fff; }
.site-nav a[aria-current='page'] {
    color: var(--gold-bright);
    background: rgba(216, 164, 79, .1);
    box-shadow: inset 0 0 0 1px rgba(216, 164, 79, .22);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    align-items: center;
    gap: .55rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 10px;
    padding: .5rem .8rem;
    font: inherit;
    font-size: .85rem;
    cursor: pointer;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
    display: block;
    width: 17px;
    height: 1.5px;
    background: currentColor;
    content: '';
    transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before { position: absolute; top: -5px; }
.nav-toggle__bars::after  { position: absolute; top: 5px; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars::after  { transform: translateY(-5px) rotate(-45deg); }

/* ---------- Trilha ---------- */

.breadcrumbs {
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .012);
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    list-style: none;
    margin: 0;
    padding: .7rem 0;
    font-size: .8rem;
    color: var(--muted);
}
.breadcrumbs li + li::before { content: '›'; margin-right: .4rem; opacity: .5; }
.breadcrumbs a { color: var(--text-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-bright); }
.breadcrumbs [aria-current='page'] span { color: var(--text); }

/* ---------- Botões ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .82rem 1.5rem;
    border: 0;
    border-radius: 11px;
    font: inherit;
    font-size: .93rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold) 58%, #b57f33);
    color: #16110a;
    box-shadow: 0 14px 34px -16px rgba(216, 164, 79, .85), inset 0 1px 0 rgba(255, 255, 255, .45);
}
.btn--primary:hover {
    color: #16110a;
    transform: translateY(-2px);
    box-shadow: 0 20px 46px -18px rgba(216, 164, 79, .95), inset 0 1px 0 rgba(255, 255, 255, .6);
}

.btn--ghost {
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    box-shadow: inset 0 0 0 1px var(--line-strong);
}
.btn--ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    transform: translateY(-2px);
}

/* ---------- Hero da home ---------- */

.hero {
    position: relative;
    padding: clamp(4rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
    overflow: hidden;
}

.hero__stage {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero__orb {
    position: absolute;
    opacity: .5;
    animation: float 14s ease-in-out infinite;
}
.hero__orb--greek { top: 4%; right: 8%; }
.hero__orb--norse { bottom: -6%; right: 30%; opacity: .32; animation-delay: -7s; }
.hero__rule {
    position: absolute;
    top: 0;
    right: 26%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(216, 164, 79, .3) 30%, rgba(127, 194, 235, .3) 70%, transparent);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-18px) rotate(2deg); }
}

.hero__inner { position: relative; max-width: 780px; }

.hero__eyebrow {
    font-size: .74rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.4rem;
}

.hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: .96;
    margin-bottom: 1.4rem;
}
.hero__title span {
    background: linear-gradient(100deg, var(--gold-bright) 5%, var(--gold) 40%, var(--ice) 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.hero__lead {
    font-size: clamp(1.02rem, 1.5vw, 1.16rem);
    color: var(--text-soft);
    max-width: 58ch;
    margin-bottom: 2.4rem;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    list-style: none;
    margin: 2.4rem 0 0;
    padding: 0;
    font-size: .86rem;
    color: var(--muted);
}
.hero__stats strong {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--gold-bright);
    line-height: 1;
    margin-bottom: .2rem;
}

/* ---------- Seletor ---------- */

.selector {
    position: relative;
    padding: 1.5rem;
    border-radius: var(--radius);
    background: linear-gradient(150deg, rgba(28, 33, 49, .92), rgba(17, 20, 31, .92));
    box-shadow: var(--shadow-soft), inset 0 0 0 1px var(--line-strong);
}

.selector__fields {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    align-items: end;
    gap: 1rem;
}

.selector__field label {
    display: block;
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .45rem;
}

.selector__control { position: relative; }
.selector__control::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.6px solid var(--muted);
    border-bottom: 1.6px solid var(--muted);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

select, input[type='search'] {
    width: 100%;
    appearance: none;
    background: rgba(8, 10, 16, .85);
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    color: var(--text);
    font: inherit;
    font-size: .98rem;
    padding: .82rem 2.4rem .82rem 1rem;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
input[type='search'] { padding-right: 1rem; }
select:hover, input[type='search']:hover { border-color: rgba(255, 255, 255, .28); }
select:focus, input[type='search']:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(216, 164, 79, .18);
}
select option { background: #11141f; color: var(--text); }

.selector__field--greek select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216, 164, 79, .2); }
.selector__field--norse select:focus { border-color: var(--ice);  box-shadow: 0 0 0 3px rgba(127, 194, 235, .2); }

.selector__join {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--muted);
    padding-bottom: .85rem;
}

.selector__submit { padding-inline: 1.9rem; }

.selector__hint {
    margin: 1rem 0 0;
    font-size: .8rem;
    color: var(--muted);
}

.selector__error {
    margin: 0 0 1rem;
    padding: .7rem 1rem;
    border-radius: 10px;
    background: rgba(224, 122, 95, .12);
    box-shadow: inset 0 0 0 1px rgba(224, 122, 95, .4);
    color: #f2b8a6;
    font-size: .9rem;
}

/* ---------- Seções genéricas ---------- */

.section { padding: clamp(3.2rem, 7vw, 6rem) 0; }
.section--principle { padding-top: 0; }

.section__head { max-width: 62ch; margin-bottom: 2.6rem; }
.section__head p { color: var(--text-soft); }

.section__head--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    max-width: none;
}
.section__head--split > div { max-width: 58ch; }

.section-note {
    color: var(--muted);
    font-size: .92rem;
    margin-bottom: 1.6rem;
}

/* ---------- Bloco de princípio ---------- */

.principle {
    position: relative;
    max-width: 780px;
    padding: clamp(1.8rem, 4vw, 3rem);
    border-radius: 22px;
    background:
        radial-gradient(600px 240px at 0% 0%, rgba(216, 164, 79, .12), transparent 70%),
        radial-gradient(600px 240px at 100% 100%, rgba(127, 194, 235, .12), transparent 70%),
        rgba(17, 20, 31, .7);
    box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
}
.principle h2 { font-style: italic; }
.principle p { color: var(--text-soft); }
.principle .btn { margin-top: .8rem; }

/* ---------- Grade dos eixos (home) ---------- */

.axis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px var(--line);
}
.axis-grid__item {
    background: rgba(12, 15, 23, .9);
    padding: 1.5rem 1.4rem;
    transition: background .25s var(--ease);
}
.axis-grid__item:hover { background: rgba(28, 33, 49, .9); }
.axis-grid__num {
    font-family: var(--serif);
    font-size: .9rem;
    color: var(--gold);
    letter-spacing: .1em;
}
.axis-grid__item h3 { margin: .35rem 0 .5rem; font-size: 1.15rem; }
.axis-grid__item p { font-size: .84rem; color: var(--muted); margin: 0; }

/* ---------- Cartões de par ---------- */

.pair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.2rem;
}

.pair-card { position: relative; }
.pair-card__link {
    display: block;
    height: 100%;
    padding: 1.6rem;
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    background: linear-gradient(160deg, rgba(28, 33, 49, .8), rgba(14, 17, 26, .85));
    box-shadow: inset 0 0 0 1px var(--line);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pair-card__link:hover {
    transform: translateY(-4px);
    color: inherit;
    box-shadow: inset 0 0 0 1px var(--line-strong), var(--shadow-lift);
}
.pair-card__emblems {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.pair-card__emblems .emblem:last-child { margin-left: -22px; }
.pair-card__meta {
    display: block;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .5rem;
}
.pair-card__meta em { font-style: italic; text-transform: none; letter-spacing: 0; }
.pair-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.pair-card p { font-size: .9rem; color: var(--text-soft); margin-bottom: 1rem; }
.pair-card__cta {
    font-size: .82rem;
    font-weight: 600;
    color: var(--gold-bright);
}
.pair-card__cta::after { content: ' →'; transition: margin .2s var(--ease); }
.pair-card__link:hover .pair-card__cta::after { margin-left: .25rem; }

/* ---------- Divisão dos panteãs ---------- */

.pantheon-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.pantheon-split__side {
    position: relative;
    padding: clamp(1.7rem, 3.4vw, 2.6rem);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(13, 16, 24, .8);
    box-shadow: inset 0 0 0 1px var(--line);
}
.pantheon-split__side--greek { background-image: radial-gradient(520px 300px at 100% 0%, rgba(216, 164, 79, .16), transparent 70%); }
.pantheon-split__side--norse { background-image: radial-gradient(520px 300px at 100% 0%, rgba(127, 194, 235, .16), transparent 70%); }
.pantheon-split__mark {
    position: absolute;
    top: -26px;
    right: -26px;
    opacity: .3;
}
.pantheon-split__count {
    font-size: .74rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .6rem;
}
.pantheon-split h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.pantheon-split p { color: var(--text-soft); font-size: .95rem; }

.name-row {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    list-style: none;
    margin: 1.3rem 0;
    padding: 0;
}
.name-row a {
    display: block;
    padding: .34rem .75rem;
    border-radius: 99px;
    font-size: .82rem;
    text-decoration: none;
    color: var(--text-soft);
    background: rgba(255, 255, 255, .05);
    box-shadow: inset 0 0 0 1px var(--line);
    transition: background .2s var(--ease), color .2s var(--ease);
}
.name-row a:hover { background: rgba(255, 255, 255, .11); color: #fff; }

/* ---------- Nota de fontes ---------- */

.sources-note {
    max-width: 760px;
    padding: clamp(1.7rem, 3.4vw, 2.6rem);
    border-radius: 20px;
    background: rgba(17, 20, 31, .7);
    box-shadow: inset 0 0 0 1px var(--line);
}
.sources-note p { color: var(--text-soft); }
.sources-note__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.3rem; }

/* ---------- Hero de páginas internas ---------- */

.page-hero {
    position: relative;
    padding: clamp(2.8rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.4rem);
    overflow: hidden;
}
.page-hero h1 { max-width: 18ch; }
.page-hero__eyebrow {
    font-size: .74rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}
.page-hero__lead {
    max-width: 62ch;
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    color: var(--text-soft);
}
.page-hero__mark {
    position: absolute;
    top: -30px;
    right: 2%;
    opacity: .26;
    pointer-events: none;
}
.page-hero__mark--alt { right: 16%; top: 40%; opacity: .18; }
.page-hero--greek { background: radial-gradient(760px 320px at 85% 0%, rgba(216, 164, 79, .16), transparent 70%); }
.page-hero--norse { background: radial-gradient(760px 320px at 85% 0%, rgba(127, 194, 235, .16), transparent 70%); }
.page-hero--editorial { background: radial-gradient(900px 340px at 75% 0%, rgba(216, 164, 79, .12), transparent 70%); }
.page-hero--tool { background: radial-gradient(900px 340px at 20% 0%, rgba(216, 164, 79, .12), transparent 70%); }
.page-hero--error { background: radial-gradient(760px 320px at 80% 0%, rgba(224, 122, 95, .12), transparent 70%); }

/* ---------- Painel do comparador ---------- */

.tool-panel {
    padding: clamp(1.4rem, 3vw, 2.2rem);
    border-radius: 20px;
    background:
        radial-gradient(700px 260px at 0% 0%, rgba(216, 164, 79, .1), transparent 70%),
        radial-gradient(700px 260px at 100% 100%, rgba(127, 194, 235, .1), transparent 70%),
        rgba(14, 17, 26, .85);
    box-shadow: inset 0 0 0 1px var(--line-strong), var(--shadow-soft);
}
.tool-panel .selector { background: none; box-shadow: none; padding: 0; }
.tool-panel__combos {
    margin: 1.4rem 0 0;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
    font-size: .88rem;
    color: var(--muted);
}
.tool-panel__combos strong { color: var(--gold-bright); font-size: 1.05rem; }

.level-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
}
.level-card {
    padding: 1.7rem;
    border-radius: var(--radius);
    background: rgba(14, 17, 26, .8);
    box-shadow: inset 0 0 0 1px var(--line);
}
.level-card--editorial { box-shadow: inset 0 0 0 1px rgba(216, 164, 79, .3); }
.level-card__tag {
    display: inline-block;
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .7rem;
}
.level-card p { font-size: .93rem; color: var(--text-soft); }
.level-card .btn { margin-top: .6rem; }

/* ---------- Destaque / callout ---------- */

.callout {
    padding: clamp(1.6rem, 3.4vw, 2.5rem);
    border-radius: 20px;
    background: rgba(17, 20, 31, .72);
    box-shadow: inset 0 0 0 1px var(--line);
}
.callout--center { text-align: center; max-width: 720px; margin-inline: auto; }
.callout p { color: var(--text-soft); }
.callout__list {
    margin: 0 0 1.4rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .6rem;
}
.callout__list li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--text-soft);
    font-size: .95rem;
}
.callout__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(216, 164, 79, .8);
}

/* ---------- Filtro ---------- */

.filter-bar {
    max-width: 480px;
    margin-bottom: 2.4rem;
}
.filter-bar label {
    display: block;
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .45rem;
}
.filter-bar__status { margin: .6rem 0 0; font-size: .82rem; color: var(--muted); }
.filter-empty {
    padding: 2rem;
    text-align: center;
    color: var(--muted);
    border-radius: var(--radius);
    box-shadow: inset 0 0 0 1px var(--line);
}

/* ---------- Cartões de perfil ---------- */

.god-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.1rem;
}

.god-card {
    position: relative;
    height: 100%;
    padding: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(13, 16, 24, .84);
    box-shadow: inset 0 0 0 1px var(--line);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.god-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .3s var(--ease);
    pointer-events: none;
}
.god-card--grega::after  { background: radial-gradient(360px 200px at 85% 0%, rgba(216, 164, 79, .17), transparent 70%); }
.god-card--nordica::after { background: radial-gradient(360px 200px at 85% 0%, rgba(127, 194, 235, .17), transparent 70%); }
.god-card:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--line-strong), var(--shadow-lift); }
.god-card:hover::after { opacity: 1; }

.god-card__emblem {
    position: absolute;
    top: -14px;
    right: -14px;
    opacity: .35;
    transition: opacity .3s var(--ease), transform .4s var(--ease);
}
.god-card:hover .god-card__emblem { opacity: .62; transform: scale(1.06) rotate(-3deg); }

.god-card__body { position: relative; z-index: 1; }
.god-card__origin {
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .5rem;
}
.god-card h3 { font-size: 1.55rem; margin-bottom: .1rem; }
.god-card h3 a { text-decoration: none; color: #fff; }
.god-card h3 a::after { content: ''; position: absolute; inset: 0; }
.god-card--grega h3 a:hover  { color: var(--gold-bright); }
.god-card--nordica h3 a:hover { color: var(--ice-bright); }
.god-card__native {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: .6rem;
}
.god-card__title { font-size: .88rem; color: var(--text-soft); margin-bottom: .9rem; }

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.chip-row li {
    font-size: .72rem;
    padding: .24rem .6rem;
    border-radius: 99px;
    color: var(--muted);
    background: rgba(255, 255, 255, .05);
    box-shadow: inset 0 0 0 1px var(--line);
}
.chip-row--themes li { color: var(--text-soft); font-size: .78rem; }
.chip-row--shared li {
    color: var(--gold-bright);
    background: rgba(216, 164, 79, .1);
    box-shadow: inset 0 0 0 1px rgba(216, 164, 79, .3);
}

/* ---------- Perfil ---------- */

.profile-hero {
    position: relative;
    padding: clamp(2.6rem, 6vw, 4.4rem) 0 clamp(2rem, 4vw, 3rem);
    overflow: hidden;
}
.profile-hero--greek { background: radial-gradient(900px 400px at 82% 10%, rgba(216, 164, 79, .18), transparent 70%); }
.profile-hero--norse { background: radial-gradient(900px 400px at 82% 10%, rgba(127, 194, 235, .18), transparent 70%); }

.profile-hero__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3.5rem);
}
.profile-hero__emblem { filter: drop-shadow(0 22px 50px rgba(0, 0, 0, .7)); }
.profile-hero__eyebrow {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .7rem;
}
.profile-hero h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); margin-bottom: .2rem; }
.profile-hero__native { font-family: var(--serif); font-size: 1.5rem; color: var(--text-soft); margin-bottom: .8rem; }
.profile-hero__title { font-size: 1.1rem; color: var(--gold-bright); margin-bottom: .9rem; }
.profile-hero--norse .profile-hero__title { color: var(--ice-bright); }
.profile-hero__resumo { max-width: 60ch; color: var(--text-soft); }
.profile-hero .chip-row { margin-top: 1.2rem; }

.profile-body, .editorial-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: clamp(1.8rem, 4vw, 3.4rem);
    padding-bottom: clamp(3rem, 7vw, 5.5rem);
    align-items: start;
}

.profile-section {
    padding: clamp(1.4rem, 3vw, 2.2rem) 0;
    border-top: 1px solid var(--line);
}
.profile-section:first-child { border-top: 0; padding-top: 0; }
.profile-section h2 {
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    margin-bottom: 1.1rem;
}
.profile-section h3 {
    font-family: var(--sans);
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 1.6rem 0 .7rem;
}
.profile-section p { color: var(--text-soft); }
.profile-section--caution {
    padding: clamp(1.4rem, 3vw, 2rem);
    margin-top: 1.6rem;
    border: 0;
    border-radius: var(--radius);
    background: rgba(224, 122, 95, .07);
    box-shadow: inset 0 0 0 1px rgba(224, 122, 95, .26);
}
.profile-section--caution h2 { color: #f0b4a2; }

/* ---------- Listas de dados ---------- */

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    list-style: none;
    margin: 0 0 1.2rem;
    padding: 0;
}
.tag-list li {
    font-size: .85rem;
    padding: .38rem .85rem;
    border-radius: 9px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, .045);
    box-shadow: inset 0 0 0 1px var(--line);
}
.tag-list--domains li { font-size: .88rem; }
.tag-list--shared li {
    color: var(--gold-bright);
    background: rgba(216, 164, 79, .1);
    box-shadow: inset 0 0 0 1px rgba(216, 164, 79, .28);
}

.def-list {
    list-style: none;
    margin: 0 0 1.2rem;
    padding: 0;
    display: grid;
    gap: .55rem;
}
.def-list li {
    position: relative;
    padding-left: 1.3rem;
    font-size: .93rem;
    color: var(--text-soft);
}
.def-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .68em;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: var(--gold);
    opacity: .7;
    transform: rotate(45deg);
}
.def-list strong { color: var(--text); }

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1px;
    margin: 0 0 1.4rem;
    background: var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px var(--line);
}
.data-grid > div { background: rgba(12, 15, 23, .9); padding: 1rem 1.1rem; }
.data-grid dt {
    font-size: .7rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .35rem;
}
.data-grid dd { margin: 0; font-size: .92rem; color: var(--text-soft); }

.mini-dl { margin: 0 0 .8rem; }
.mini-dl dt {
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .7rem;
}
.mini-dl dt:first-child { margin-top: 0; }
.mini-dl dd { margin: .15rem 0 0; font-size: .9rem; color: var(--text-soft); }

.story-list {
    list-style: none;
    counter-reset: story;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}
.story-list li {
    counter-increment: story;
    position: relative;
    padding: 1.1rem 1.2rem 1.1rem 3rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .025);
    box-shadow: inset 0 0 0 1px var(--line);
}
.story-list li::before {
    content: counter(story, decimal-leading-zero);
    position: absolute;
    left: 1.1rem;
    top: 1.2rem;
    font-family: var(--serif);
    font-size: .95rem;
    color: var(--gold);
    opacity: .85;
}
.story-list h3, .story-list h4 {
    font-family: var(--serif);
    font-size: 1.12rem;
    text-transform: none;
    letter-spacing: 0;
    color: #fff;
    margin: 0 0 .4rem;
}
.story-list p { font-size: .92rem; margin-bottom: .5rem; color: var(--text-soft); }
.story-list--large li { padding-block: 1.3rem; }

.source-ref, .source-meta {
    display: block;
    font-size: .8rem;
    color: var(--muted);
    font-style: italic;
}

.source-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: .8rem;
}
.source-list li {
    padding-left: 1.1rem;
    border-left: 2px solid rgba(216, 164, 79, .35);
    font-size: .92rem;
    color: var(--text-soft);
}
.source-list--large li { padding-block: .2rem; }
.source-meta { margin-top: .2rem; }

.split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
    margin-bottom: 1.4rem;
}
.split-grid h4 { color: var(--text); margin-bottom: .7rem; }

/* ---------- Painel lateral ---------- */

.profile-aside, .editorial-aside {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 1rem;
}

.aside-card {
    padding: 1.4rem;
    border-radius: var(--radius);
    background: rgba(14, 17, 26, .85);
    box-shadow: inset 0 0 0 1px var(--line);
}
.aside-card h2 {
    font-family: var(--sans);
    font-size: .76rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .9rem;
}
.aside-card p { font-size: .88rem; color: var(--text-soft); }
.aside-card--compare { box-shadow: inset 0 0 0 1px rgba(216, 164, 79, .28); }
.aside-card .btn { width: 100%; margin-top: .5rem; }

.aside-form { display: grid; gap: .6rem; }
.aside-form label {
    font-size: .72rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
}

.aside-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.aside-links a {
    display: block;
    padding: .7rem .85rem;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(255, 255, 255, .035);
    box-shadow: inset 0 0 0 1px var(--line);
    transition: background .2s var(--ease), transform .2s var(--ease);
}
.aside-links a:hover { background: rgba(255, 255, 255, .08); transform: translateX(3px); }
.aside-links strong { display: block; font-size: .93rem; color: #fff; }
.aside-links span { display: block; font-size: .79rem; color: var(--muted); line-height: 1.45; }

.aside-toc { list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; }
.aside-toc a {
    display: block;
    padding: .34rem 0;
    font-size: .86rem;
    color: var(--text-soft);
    text-decoration: none;
    border-left: 2px solid transparent;
    padding-left: .8rem;
    transition: border-color .2s var(--ease), color .2s var(--ease);
}
.aside-toc a:hover { color: #fff; border-left-color: var(--gold); }

/* ---------- Avisos ---------- */

.notice {
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-sm);
    background: rgba(127, 194, 235, .07);
    box-shadow: inset 0 0 0 1px rgba(127, 194, 235, .24);
    margin-bottom: 2rem;
}
.notice p { font-size: .91rem; color: var(--text-soft); }
.notice--method {
    background: rgba(216, 164, 79, .07);
    box-shadow: inset 0 0 0 1px rgba(216, 164, 79, .26);
}

/* ---------- Comparação ---------- */

.comparison-hero, .editorial-hero {
    position: relative;
    padding: clamp(2.6rem, 6vw, 4.6rem) 0 clamp(1.8rem, 4vw, 3rem);
    overflow: hidden;
}
.comparison-hero__stage, .editorial-hero__stage { position: absolute; inset: 0; pointer-events: none; }
.comparison-hero__orb, .editorial-hero__orb { position: absolute; opacity: .3; }
.comparison-hero__orb--greek, .editorial-hero__orb--greek { top: -8%; right: 26%; }
.comparison-hero__orb--norse, .editorial-hero__orb--norse { bottom: -18%; right: 4%; }

.comparison-hero__inner, .editorial-hero__inner { position: relative; }
.comparison-hero__eyebrow, .editorial-hero__eyebrow {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}
.comparison-hero h1 {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .6rem;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    max-width: none;
}
.comparison-hero__name--greek { color: var(--gold-bright); }
.comparison-hero__name--norse { color: var(--ice-bright); }
.comparison-hero__and { font-style: italic; color: var(--muted); font-size: .6em; }
.comparison-hero__lead { color: var(--text-soft); max-width: 66ch; }
.comparison-hero__share { font-size: .82rem; color: var(--muted); margin-top: 1rem; }

.editorial-hero h1 { max-width: 22ch; }
.editorial-hero__lead { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--text-soft); max-width: 62ch; }
.editorial-hero__meta { font-size: .8rem; color: var(--muted); margin-top: 1rem; }

.comparison-body { padding-bottom: clamp(3rem, 7vw, 5.5rem); }

.summary-strip {
    padding: 1.3rem 1.5rem;
    border-radius: var(--radius);
    background: rgba(17, 20, 31, .7);
    box-shadow: inset 0 0 0 1px var(--line);
    margin-bottom: 2.4rem;
}
.summary-strip h2 {
    font-family: var(--sans);
    font-size: .74rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .8rem;
}

/* ---------- Eixos ---------- */

.axes { display: grid; gap: 1.1rem; }

.axes__legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    position: sticky;
    top: 70px;
    z-index: 20;
    padding: .6rem 0;
    background: linear-gradient(180deg, var(--bg) 60%, transparent);
}
.axes__legend-item {
    padding: .45rem 1rem;
    border-radius: 9px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: center;
}
.axes__legend-item--greek { color: var(--gold-bright); background: rgba(216, 164, 79, .12); box-shadow: inset 0 0 0 1px rgba(216, 164, 79, .3); }
.axes__legend-item--norse { color: var(--ice-bright);  background: rgba(127, 194, 235, .12); box-shadow: inset 0 0 0 1px rgba(127, 194, 235, .3); }

.axis {
    border-radius: var(--radius);
    background: rgba(12, 15, 23, .82);
    box-shadow: inset 0 0 0 1px var(--line);
    overflow: hidden;
}

.axis__head {
    padding: 1.2rem 1.4rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .022);
}
.axis__index {
    font-family: var(--serif);
    font-size: .82rem;
    letter-spacing: .12em;
    color: var(--gold);
}
.axis__head h3 { margin: .2rem 0 .3rem; font-size: 1.32rem; }
.axis__note { margin: 0; font-size: .82rem; color: var(--muted); font-style: italic; }

.axis__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.axis__side { padding: 1.4rem; }
.axis__side--greek { border-right: 1px solid var(--line); background: linear-gradient(180deg, rgba(216, 164, 79, .045), transparent 40%); }
.axis__side--norse { background: linear-gradient(180deg, rgba(127, 194, 235, .045), transparent 40%); }
.axis__side h4 { margin-bottom: .9rem; }
.axis__who {
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}
.axis__side p { font-size: .92rem; color: var(--text-soft); }
.axis__side .tag-list li { font-size: .8rem; }

.axis__joint { padding: 1.4rem; }
.axis__joint p { font-size: .94rem; color: var(--text-soft); }
.axis__joint h4 { margin-top: 1.2rem; }

/* ---------- Editorial ---------- */

.editorial-section {
    padding: clamp(1.4rem, 3vw, 2.2rem) 0;
    border-top: 1px solid var(--line);
}
.editorial-section:first-of-type { border-top: 0; }
.editorial-section h2 { font-size: clamp(1.55rem, 2.6vw, 2.05rem); }
.editorial-section p {
    font-size: 1.02rem;
    color: var(--text-soft);
    max-width: 68ch;
}
.editorial-section--conclusion {
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border: 0;
    border-radius: var(--radius);
    background:
        radial-gradient(500px 220px at 0% 0%, rgba(216, 164, 79, .1), transparent 70%),
        rgba(17, 20, 31, .72);
    box-shadow: inset 0 0 0 1px var(--line);
    margin-top: 1.4rem;
}

.finding-list {
    list-style: none;
    counter-reset: finding;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .9rem;
}
.finding-list li {
    counter-increment: finding;
    position: relative;
    padding: 1.1rem 1.3rem 1.1rem 3.2rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .025);
    box-shadow: inset 0 0 0 1px var(--line);
}
.finding-list li::before {
    content: counter(finding);
    position: absolute;
    left: 1.2rem;
    top: 1.15rem;
    width: 1.35rem;
    height: 1.35rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: .74rem;
    font-weight: 600;
}
.finding-list--similar li::before { background: rgba(216, 164, 79, .18); color: var(--gold-bright); }
.finding-list--different li::before { background: rgba(127, 194, 235, .18); color: var(--ice-bright); }
.finding-list h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.finding-list p { font-size: .93rem; margin: 0; max-width: none; }

.editorial-list { display: grid; gap: 1rem; }
.editorial-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    padding: clamp(1.2rem, 2.6vw, 1.8rem);
    border-radius: var(--radius);
    background: rgba(13, 16, 24, .8);
    box-shadow: inset 0 0 0 1px var(--line);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.editorial-row:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--line-strong), var(--shadow-lift); }
.editorial-row__emblems { display: flex; align-items: center; gap: .3rem; }
.editorial-row__amp { font-family: var(--serif); font-style: italic; color: var(--muted); }
.editorial-row__pair {
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .4rem;
}
.editorial-row h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: .4rem; }
.editorial-row h2 a { text-decoration: none; color: #fff; }
.editorial-row h2 a:hover { color: var(--gold-bright); }
.editorial-row__lead { color: var(--text-soft); font-size: .95rem; margin-bottom: .5rem; }
.editorial-row__meta { font-size: .78rem; color: var(--muted); margin: 0; }

.comparison-next { margin-top: 2.6rem; }
.comparison-next__grid, .error-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1rem;
}

/* ---------- Documentos ---------- */

.doc-layout { padding-bottom: clamp(3rem, 7vw, 5.5rem); }

.doc {
    max-width: 74ch;
    font-size: 1.02rem;
    color: var(--text-soft);
}
.doc h2 {
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    margin-top: 2.6rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line);
}
.doc > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.doc h3 {
    font-family: var(--sans);
    font-size: 1.02rem;
    font-weight: 600;
    color: #fff;
    margin-top: 1.8rem;
}

.doc-list {
    margin: 0 0 1.3rem;
    padding-left: 1.3rem;
    display: grid;
    gap: .6rem;
}
.doc-list li { padding-left: .3rem; }
.doc-list li::marker { color: var(--gold); }
.doc-list--negative { list-style: none; padding-left: 0; }
.doc-list--negative li { position: relative; padding-left: 1.7rem; }
.doc-list--negative li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .58em;
    width: 11px;
    height: 2px;
    background: var(--danger);
    border-radius: 2px;
}

.doc-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 2.6rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line);
}

.biblio-group { margin-top: 2.6rem; }
.biblio-group:first-of-type { margin-top: 0; }
.biblio-group h2 {
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    padding-top: 1.6rem;
    border-top: 1px solid var(--line);
}
.biblio-group:first-of-type h2 { padding-top: 0; border-top: 0; }
.biblio-group__intro { color: var(--muted); font-size: .94rem; }

.biblio-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 1rem; }
.biblio-list li {
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .025);
    box-shadow: inset 0 0 0 1px var(--line);
}
.biblio-list__head { margin: 0 0 .3rem; display: flex; flex-wrap: wrap; gap: .5rem; align-items: baseline; }
.biblio-list__head cite { font-size: 1.02rem; color: #fff; }
.biblio-list__author { font-size: .88rem; color: var(--text-soft); }
.biblio-list__period { font-size: .76rem; color: var(--muted); }
.biblio-list__note { margin: 0; font-size: .9rem; color: var(--text-soft); }

.correction-log { list-style: none; margin: 1.6rem 0; padding: 0; display: grid; gap: 1rem; }
.correction-log li {
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .025);
    box-shadow: inset 0 0 0 1px var(--line);
}
.correction-log__date { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.correction-log h3 { margin-top: 0; }
.correction-log__reason { font-size: .88rem; color: var(--muted); margin: 0; }

.contact-card {
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border-radius: var(--radius);
    background:
        radial-gradient(500px 200px at 0% 0%, rgba(216, 164, 79, .12), transparent 70%),
        rgba(17, 20, 31, .75);
    box-shadow: inset 0 0 0 1px rgba(216, 164, 79, .26);
    margin-bottom: 2rem;
}
.contact-card h2 {
    font-family: var(--sans);
    font-size: .76rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 .6rem;
    padding: 0;
    border: 0;
}
.contact-card__email {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 3.4vw, 2.1rem);
    margin-bottom: .6rem;
    word-break: break-word;
}
.contact-card__email a { text-decoration: none; }

/* ---------- Rodapé ---------- */

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(7, 8, 16, .75);
    padding: clamp(2.6rem, 6vw, 4rem) 0 2rem;
}
.site-footer__top {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 2.2rem;
    border-bottom: 1px solid var(--line);
}
.site-footer__brand p { font-size: .87rem; color: var(--muted); max-width: 42ch; margin-top: .9rem; }
.site-footer__nav h2 {
    font-family: var(--sans);
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .9rem;
}
.site-footer__nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.site-footer__nav a { font-size: .89rem; color: var(--text-soft); text-decoration: none; }
.site-footer__nav a:hover { color: var(--gold-bright); }
.site-footer__legal { margin: 1.6rem 0 0; font-size: .8rem; color: var(--muted); }

/* ---------- Responsivo ---------- */

@media (max-width: 1040px) {
    .profile-body, .editorial-body { grid-template-columns: 1fr; }
    .profile-aside, .editorial-aside { position: static; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
    .aside-card--nav { display: none; }
    .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .nav-toggle { display: inline-flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: .8rem 1.25rem 1.2rem;
        background: rgba(10, 12, 19, .98);
        border-bottom: 1px solid var(--line);
        backdrop-filter: blur(14px);
    }
    .site-nav.is-open { display: block; }
    .site-nav ul { flex-direction: column; gap: .15rem; }
    .site-nav a { padding: .7rem .8rem; font-size: .95rem; }
    .site-header__inner { position: relative; flex-wrap: wrap; }

    .selector__fields { grid-template-columns: 1fr; }
    .selector__join { display: none; }
    .selector__submit { width: 100%; }

    .pantheon-split { grid-template-columns: 1fr; }
    .section__head--split { flex-direction: column; align-items: flex-start; }

    .profile-hero__inner { grid-template-columns: 1fr; text-align: left; }
    .profile-hero__emblem { width: 140px; }
    .profile-hero__emblem .emblem { width: 140px; height: 140px; }

    .axis__grid { grid-template-columns: 1fr; }
    .axis__side--greek { border-right: 0; border-bottom: 1px solid var(--line); }
    .axes__legend { display: none; }

    .editorial-row { grid-template-columns: 1fr; }
    .editorial-row__emblems { justify-content: flex-start; }

    .hero__orb--greek { right: -14%; top: 0; opacity: .3; }
    .hero__orb--norse { display: none; }
    .hero__rule { display: none; }
    .page-hero__mark { opacity: .14; right: -12%; }

    /* Em telas estreitas as decorações passariam por trás do texto. */
    .comparison-hero__orb--greek, .editorial-hero__orb--greek { right: -18%; top: -4%; opacity: .12; }
    .comparison-hero__orb--norse, .editorial-hero__orb--norse { display: none; }
}

@media (max-width: 560px) {
    .hero__stats { gap: 1.4rem; }
    .hero__stats strong { font-size: 1.6rem; }
    .site-footer__top { grid-template-columns: 1fr; gap: 1.6rem; }
    .god-grid { grid-template-columns: 1fr; }
    .comparison-hero h1 { font-size: 2.2rem; }
    .pair-card__emblems .emblem { width: 60px; height: 60px; }
}

/* ---------- Preferências do sistema ---------- */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

@media print {
    .atmosphere, .site-header, .site-footer, .breadcrumbs,
    .profile-aside, .editorial-aside, .selector, .btn { display: none !important; }
    body { background: #fff; color: #111; }
    h1, h2, h3, h4, cite, strong { color: #000; }
    .axis, .aside-card, .notice, .god-card { box-shadow: none; border: 1px solid #ccc; }
    a { color: #000; }
}
