/* Big Valley / RDR-style landing — partilhado entre index.html e historias.php */
:root {
    --rdr-red: #8b0000;
    --rdr-red-deep: #4a0000;
    --rdr-black: #0d0b0a;
    --rdr-panel: #141110;
    --rdr-gold: #d4af37;
    --rdr-gold-dim: #9a7b2c;
    --rdr-cream: #f2e6d4;
    --rdr-muted: #9a918a;
    --rdr-hero-banner: url("https://biggamesbrasil.com/uploads/images/ChatGPT_Image_6_de_mai._de_2026_10_57_32.png");
}

*, *::before, *::after { box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body.page-landing-rdr {
    margin: 0;
    min-height: 100vh;
    font-family: "Source Sans 3", system-ui, sans-serif;
    background: var(--rdr-black);
    color: var(--rdr-cream);
    line-height: 1.55;
}

body.page-historias-rdr,
body.page-sobrenatural-rdr {
    margin: 0;
    min-height: 100vh;
    font-family: "Source Sans 3", system-ui, sans-serif;
    color: var(--rdr-cream);
    line-height: 1.55;
    background:
        radial-gradient(ellipse 90% 55% at 50% 0%, rgba(120, 0, 0, 0.5), transparent 52%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(0, 0, 0, 0.03) 3px,
            rgba(0, 0, 0, 0.03) 6px
        ),
        linear-gradient(180deg, #1f0a0a 0%, #0d0b0a 35%, #0a0606 100%);
}

a { color: var(--rdr-gold); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.rdr-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    isolation: isolate;
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.88) 70%, rgba(0, 0, 0, 0.82) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.rdr-nav-logo {
    display: flex;
    align-items: center;
    line-height: 0;
}

.rdr-nav-logo img {
    height: clamp(1.85rem, 4vw, 2.4rem);
    width: auto;
    max-width: min(240px, 48vw);
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.rdr-nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem 0.65rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.rdr-nav-links a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    padding: 0.45rem 0.65rem;
    border: 1px solid transparent;
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.rdr-nav-links a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

.rdr-nav-links a.is-active {
    color: var(--rdr-gold);
    border-color: rgba(212, 175, 55, 0.35);
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.rdr-nav-links .rdr-nav-cta {
    border-color: rgba(212, 175, 55, 0.55);
    color: var(--rdr-gold);
    margin-left: 0.25rem;
}

.rdr-nav-links .rdr-nav-cta:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--rdr-gold);
}

/* Nav em duas filas — Sobrenatural (tabs Deuses / Eventos / …) */
.rdr-nav.rdr-nav--with-sub {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    flex-wrap: nowrap;
}

.rdr-nav.rdr-nav--with-sub .rdr-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

.rdr-nav-sub {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.55rem;
    margin-top: 0.5rem;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding: 0.55rem 1.25rem 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: calc(100% + 2.5rem);
    max-width: none;
    background: rgba(10, 8, 8, 0.98);
    border-radius: 0 0 8px 8px;
}

.rdr-nav-sub a {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    padding: 0.4rem 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.rdr-nav-sub a:hover {
    color: #fff;
    border-color: rgba(212, 175, 55, 0.45);
    text-decoration: none;
}

.rdr-nav-sub a.is-active {
    color: #1a1208;
    background: linear-gradient(180deg, #e8c85c 0%, var(--rdr-gold) 50%, var(--rdr-gold-dim) 100%);
    border-color: rgba(255, 255, 255, 0.25);
}

.rdr-nav-sub .rdr-nav-sub-cta {
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--rdr-gold);
}

.rdr-nav-sub .rdr-nav-sub-cta:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
}

.rdr-hero {
    position: relative;
    z-index: 0;
    min-height: min(92vh, 900px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5.5rem 1.5rem 3rem;
}

.rdr-hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--rdr-hero-banner);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

.rdr-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 11, 10, 0.15) 0%,
        rgba(13, 11, 10, 0.25) 35%,
        rgba(13, 11, 10, 0.75) 72%,
        var(--rdr-black) 100%
    );
    pointer-events: none;
}

.rdr-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.rdr-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rdr-gold);
    margin: 0 0 0.75rem;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.rdr-hero h1 {
    font-family: "Rye", serif;
    font-weight: 400;
    font-size: clamp(2.1rem, 6vw, 3.6rem);
    line-height: 1.08;
    margin: 0 0 0.65rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-shadow:
        0 0 40px rgba(0, 0, 0, 0.95),
        0 4px 0 rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(139, 0, 0, 0.45);
}

.rdr-sub {
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    color: var(--rdr-muted);
    max-width: 36rem;
    margin: 0 auto 1.75rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.rdr-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.rdr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0 1.65rem;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.rdr-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.rdr-btn--gold {
    background: linear-gradient(180deg, #e8c85c 0%, var(--rdr-gold) 45%, var(--rdr-gold-dim) 100%);
    color: #1a1208;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.rdr-btn--gold:hover {
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.35);
}

.rdr-btn--outline {
    background: rgba(0, 0, 0, 0.45);
    color: var(--rdr-cream);
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
}

.rdr-btn--outline:hover {
    border-color: var(--rdr-gold);
    color: #fff;
}

/* Hero compacto — pagina Historias */
.rdr-hero--historias {
    position: relative;
    z-index: 0;
    min-height: 0;
    padding: 6.5rem 1.5rem 2.25rem;
    display: block;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    background:
        radial-gradient(ellipse 80% 100% at 50% 0%, rgba(160, 20, 20, 0.4), transparent 55%),
        linear-gradient(180deg, #2a0c0c 0%, #140808 50%, #0d0b0a 100%);
}

.rdr-hero--historias .rdr-hero-content {
    text-align: center;
}

.rdr-hero--historias h1 {
    font-family: "Rye", serif;
    font-weight: 400;
    font-size: clamp(1.85rem, 5vw, 2.75rem);
    line-height: 1.1;
    margin: 0 0 0.65rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-shadow:
        0 0 32px rgba(0, 0, 0, 0.9),
        0 3px 0 rgba(0, 0, 0, 0.45),
        0 2px 8px rgba(139, 0, 0, 0.4);
}

.rdr-hero--historias .rdr-sub {
    margin-bottom: 0;
}

/* Hero Sobrenatural — nav mais alta; titulo alinhado a Historias */
.rdr-hero--sobrenatural {
    padding-top: clamp(6.75rem, 14vw, 8.75rem);
}

.rdr-band {
    background: linear-gradient(180deg, var(--rdr-black) 0%, var(--rdr-red-deep) 55%, var(--rdr-black) 100%);
    padding: 3.5rem 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.rdr-band-inner {
    max-width: 1040px;
    margin: 0 auto;
}

.rdr-band h2 {
    font-family: "Rye", serif;
    font-weight: 400;
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    text-align: center;
    margin: 0 0 0.35rem;
    color: var(--rdr-cream);
    letter-spacing: 0.06em;
}

.rdr-band-lead {
    text-align: center;
    color: var(--rdr-muted);
    font-size: 1rem;
    max-width: 38rem;
    margin: 0 auto 2.5rem;
}

.rdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.15rem;
}

.rdr-card {
    background: rgba(20, 17, 16, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 1.5rem 1.35rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rdr-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.rdr-card h3 {
    margin: 0 0 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rdr-gold);
    font-weight: 700;
}

.rdr-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--rdr-muted);
    line-height: 1.5;
}

.rdr-card--faction {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.rdr-card-faction__img-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0d0808;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.rdr-card-faction__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.rdr-card--faction h3 {
    margin: 1rem 1.35rem 0.5rem;
}

.rdr-card--faction p {
    margin: 0;
    padding: 0 1.35rem 1.5rem;
}

.rdr-legal {
    text-align: center;
    padding: 2.25rem 1.25rem 2.75rem;
    font-size: 0.75rem;
    color: #5c5650;
    letter-spacing: 0.04em;
}

.rdr-legal a {
    color: #7a726a;
    text-decoration: underline;
}

.rdr-legal a:hover {
    color: var(--rdr-gold);
}

/* Lista de historias — cartoes */
.historias-rdr-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2rem 1.25rem 4rem;
}

.historias-rdr-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.historias-rdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 0.65rem;
}

.historias-rdr-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--rdr-muted);
    font-size: 1.05rem;
    border: 1px dashed rgba(212, 175, 55, 0.25);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.25);
}

/* Cartao jogador estilo Red Dead Online: fundo preto, sem vermelho; escudo = joinhas */
.story-card-rdr {
    display: block;
    text-decoration: none;
    color: inherit;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.story-card-rdr:hover {
    text-decoration: none;
    color: inherit;
}

.story-card-rdr:hover .story-card-rdr__inner {
    background: #0d0d0d;
}

.story-card-rdr__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.55rem 1rem 0.55rem 0.65rem;
    background: #000;
    border: none;
    margin: 0;
    min-height: 4.25rem;
}

.story-card-rdr__avatar-wrap {
    flex-shrink: 0;
}

.story-card-rdr__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    display: block;
    box-shadow: none;
}

.story-card-rdr__avatar--placeholder {
    box-sizing: border-box;
    background: radial-gradient(circle at 35% 30%, #3d3835 0%, #1a1816 55%);
    border: 2px solid #fff;
}

.story-card-rdr__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    align-items: flex-start;
    text-align: left;
}

.story-card-rdr__name {
    font-family: "Rye", "Times New Roman", serif;
    font-size: clamp(0.62rem, 1.8vw, 0.72rem);
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
    text-shadow: none;
}

.story-card-rdr__role {
    font-family: "Source Sans 3", system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.02em;
}

.story-card-rdr__shield {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.75rem;
    background: #fff;
    clip-path: polygon(50% 0%, 100% 11%, 100% 70%, 50% 100%, 0% 70%, 0% 11%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-card-rdr__shield-num {
    color: #000;
    font-family: "Source Sans 3", system-ui, sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1;
    margin-top: 0.1rem;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .rdr-btn:hover,
    .story-card-rdr:hover { transform: none; }
}

/* --- Sobrenatural (lista + artigo) --- */
.sobrenatural-rdr-wrap {
    position: relative;
    z-index: 0;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.15rem 1.35rem 4rem;
}

.sn-rdr-crumb {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rdr-muted);
    margin: 0 0 1.35rem;
    padding-top: 0.35rem;
}

.sn-rdr-crumb a {
    color: var(--rdr-gold-dim);
}

.sn-rdr-crumb a:hover {
    color: var(--rdr-gold);
}

.sn-rdr-hint {
    text-align: center;
    padding: 2.5rem 1.25rem;
    color: var(--rdr-muted);
    font-size: 1.02rem;
    border: 1px dashed rgba(212, 175, 55, 0.28);
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.35);
    margin: 0 0 1.5rem;
}

.sn-detail-meta {
    font-size: 0.95rem;
    color: var(--rdr-muted);
    margin: -0.25rem 0 1.25rem;
    line-height: 1.45;
}

.sn-detail-meta strong,
.sn-detail-meta .sn-detail-meta__event {
    color: var(--rdr-gold);
    font-weight: 700;
}

.sn-post-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sn-post-card {
    display: flex;
    align-items: center;
    text-align: left;
    width: 100%;
    text-decoration: none;
    color: inherit;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem 1.15rem 0.75rem 0.9rem;
    min-height: 4.5rem;
    box-sizing: border-box;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.sn-post-card:hover {
    text-decoration: none;
    color: inherit;
    background: #0d0d0d;
    border-color: rgba(212, 175, 55, 0.25);
}

.sn-post-card.sobrenatural-post-link--split {
    justify-content: space-between;
    gap: 0.85rem 1.15rem;
}

/* Sobrenatural publico usa so rdr-landing.css — flex da lista vem daqui (antes estava em style.css) */
.sobrenatural-rdr-wrap .sn-post-card.sobrenatural-post-link {
    display: flex;
    align-items: flex-start;
}

.sobrenatural-rdr-wrap .sobrenatural-post-link-start {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    flex: 1;
    min-width: 0;
}

.sobrenatural-rdr-wrap .sobrenatural-post-link-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.28rem;
}

.sobrenatural-rdr-wrap .sobrenatural-post-views {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: "Source Sans 3", system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--rdr-muted);
    text-transform: none;
}

.sobrenatural-rdr-wrap .sobrenatural-post-views__icon {
    font-size: 0.85rem;
    line-height: 1;
    opacity: 0.88;
    filter: grayscale(0.2);
}

.sobrenatural-rdr-wrap .sobrenatural-post-views__num {
    color: var(--rdr-gold-dim);
    font-variant-numeric: tabular-nums;
}

.sn-hero-views {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    margin: 0.35rem 0 0;
    font-family: "Source Sans 3", system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--rdr-muted);
}

.sn-hero-views__icon {
    font-size: 0.95rem;
    line-height: 1;
    opacity: 0.9;
}

.sn-hero-views__num {
    color: var(--rdr-gold);
    font-variant-numeric: tabular-nums;
}

.sn-hero-views__txt {
    text-transform: lowercase;
    letter-spacing: 0.04em;
}

.sobrenatural-rdr-wrap .sobrenatural-post-link-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
    flex-shrink: 0;
    max-width: min(50%, 19rem);
    text-align: right;
    align-self: center;
    margin-top: 0.15rem;
}

.sobrenatural-rdr-wrap .sobrenatural-deus-icon,
.sobrenatural-rdr-wrap .sobrenatural-eventos-icon,
.sobrenatural-rdr-wrap .sobrenatural-historiografia-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    margin-top: 0.12rem;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.8));
}

.sobrenatural-rdr-wrap .sobrenatural-post-link-text {
    flex: none;
    min-width: 0;
    display: block;
    font-family: "Rye", "Times New Roman", serif;
    font-size: clamp(0.62rem, 1.8vw, 0.72rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}

.sobrenatural-rdr-wrap .sobrenatural-post-obs {
    color: var(--rdr-gold-dim);
    font-weight: 600;
}

.sobrenatural-rdr-wrap .sobrenatural-post-event-at {
    color: var(--rdr-gold);
}

.sobrenatural-rdr-wrap .sobrenatural-content {
    background: rgba(8, 6, 6, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 2px;
    padding: 1.5rem 1.35rem;
    line-height: 1.65;
    color: var(--rdr-cream);
}

.sobrenatural-rdr-wrap .sobrenatural-content a {
    color: var(--rdr-gold);
}

.sobrenatural-rdr-wrap .sobrenatural-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sobrenatural-rdr-wrap .sobrenatural-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.sobrenatural-rdr-wrap .sobrenatural-content th,
.sobrenatural-rdr-wrap .sobrenatural-content td {
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.45rem 0.55rem;
}

.sn-rdr-actions {
    margin-top: 1.75rem;
}

@media (max-width: 520px) {
    .rdr-hero { min-height: 78vh; padding-top: 4.75rem; }
    .rdr-nav-links a { letter-spacing: 0.1em; font-size: 0.65rem; padding: 0.4rem 0.45rem; }
    .rdr-hero--historias { padding-top: 5.5rem; }
    .rdr-hero--sobrenatural { padding-top: 6.25rem; }
}
