:root {
    --bg: #090d1d;
    --bg-2: #111735;
    --panel: rgba(18, 24, 52, 0.82);
    --panel-strong: rgba(21, 29, 63, 0.96);
    --panel-soft: rgba(255, 255, 255, 0.055);
    --line: rgba(217, 184, 95, 0.24);
    --line-soft: rgba(255, 255, 255, 0.09);
    --text: #f4f6ff;
    --muted: #b9c0db;
    --soft: #d7ddf7;
    --gold: #d9b85f;
    --gold-2: #f2d88a;
    --blue: #6aa8ff;
    --green: #7dffba;
    --danger: #ffb3b3;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --radius: 22px;
    --radius-sm: 14px;
    --max: 1120px;
}

/* BASE */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% -10%, rgba(104, 91, 255, 0.32), transparent 34rem),
        radial-gradient(circle at 85% 8%, rgba(45, 156, 255, 0.18), transparent 30rem),
        linear-gradient(180deg, #10163a 0%, #090d1d 52%, #070914 100%);
    letter-spacing: 0.01em;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.62), transparent 72%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

p {
    line-height: 1.75;
}

#como-participar,
#how-to-join,
#contact-form,
#closed-test,
#support,
#feedback,
#collaborate,
#community {
    scroll-margin-top: 96px;
}

/* TOPO */

.site-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 11px max(16px, calc((100vw - var(--max)) / 2));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    background: rgba(7, 9, 20, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
}

.topbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 850;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    color: #111735;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 24px rgba(217, 184, 95, 0.18);
    font-size: 13px;
    font-weight: 950;
    flex-shrink: 0;
}

.brand-mark svg {
    display: block;
}

.topbar-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-links a {
    padding: 8px 13px;
    color: var(--soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.085);
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.topbar-links a:hover {
    transform: translateY(-1px);
    color: #ffffff;
    background: rgba(217, 184, 95, 0.12);
    border-color: rgba(217, 184, 95, 0.34);
}

/* ESTRUTURA */

.container {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
}

.container.narrow {
    max-width: 860px;
}

.section {
    position: relative;
    padding: 86px 0;
    text-align: center;
}

.section-dark {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
        rgba(4, 8, 21, 0.22);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading.align-left {
    margin: 0;
    text-align: left;
}

.section-heading h2,
.info-card h2,
.cta-panel h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-heading p,
.section-copy p,
.info-card p,
.cta-panel p,
.reason-card p,
.feature-card p,
.status-card p {
    color: var(--muted);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-2);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    line-height: 1.35;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: center;
    text-align: left;
}

.section-copy {
    font-size: 1.05rem;
}

.card-column {
    padding: 34px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(20, 28, 64, 0.82), rgba(12, 17, 39, 0.86));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    padding: 44px 0 58px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 184, 95, 0.35), transparent);
}

.hero-shell {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 42px;
    align-items: start;
}

.hero-copy {
    text-align: left;
}

.hero h1,
.page-header h1,
.inner-page .section h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5.35rem);
    line-height: 0.94;
    letter-spacing: -0.075em;
    text-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.hero-subtitle {
    max-width: 560px;
    margin: 0;
    color: var(--soft);
    font-size: clamp(1rem, 1.7vw, 1.16rem);
    line-height: 1.65;
}

.hero-actions {
    margin-top: 26px;
}

.hero-note,
.callout {
    margin-top: 18px;
    padding: 14px 16px;
    color: var(--soft);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    line-height: 1.65;
}

.hero-note strong,
.callout strong {
    color: #ffffff;
}

.hero-media {
    position: relative;
    align-self: start;
    isolation: isolate;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: -22px;
    z-index: -1;
    filter: blur(6px);
    background:
        radial-gradient(circle at 70% 22%, rgba(217, 184, 95, 0.22), transparent 24rem),
        radial-gradient(circle at 28% 76%, rgba(106, 168, 255, 0.22), transparent 22rem);
}

.hero-media img {
    width: 100%;
    min-height: 300px;
    max-height: 420px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
    border: 1px solid rgba(217, 184, 95, 0.32);
    box-shadow: var(--shadow), 0 0 0 8px rgba(255, 255, 255, 0.03);
}

.hero-media-card {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 13px 15px;
    background: rgba(6, 9, 23, 0.78);
    border: 1px solid rgba(217, 184, 95, 0.36);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.38);
}

.hero-media-card strong {
    display: block;
    margin-bottom: 2px;
    color: #ffffff;
}

.hero-media-card span:not(.status-dot) {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.35;
}

.status-dot {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 18px rgba(125, 255, 186, 0.72);
}

/* BOTÕES */

.buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.section-buttons {
    justify-content: center;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font: inherit;
    font-weight: 850;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    color: #121735;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    box-shadow: 0 16px 42px rgba(217, 184, 95, 0.26);
}

.btn-primary:hover {
    box-shadow: 0 20px 54px rgba(217, 184, 95, 0.36);
}

.btn-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(217, 184, 95, 0.28);
}

.btn-secondary:hover {
    background: rgba(217, 184, 95, 0.1);
    border-color: rgba(217, 184, 95, 0.48);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

/* SOBRE O JOGO */

.about-intro-card {
    position: relative;
    width: 100%;
    align-items: center;
    gap: 42px;
    padding: 34px;
    margin: 0 auto 42px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 18% 20%, rgba(217, 184, 95, 0.10), transparent 22rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.028));
    border: 1px solid rgba(217, 184, 95, 0.22);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.about-intro-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 184, 95, 0.58), transparent);
}

.about-intro-card .section-heading {
    max-width: 520px;
}

.about-intro-card .section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.4rem, 4.4vw, 4rem);
    line-height: 1.05;
}

.about-intro-card .section-copy {
    position: relative;
    max-width: 560px;
    padding-left: 32px;
    font-size: 1.05rem;
}

.about-intro-card .section-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold-2), rgba(217, 184, 95, 0.12));
}

.about-intro-card .section-copy p {
    margin: 0;
}

/* IMAGENS DO JOGO */

.game-images {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 44px;
}

.game-images figure {
    margin: 0;
    position: relative;
    padding: 8px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(217, 184, 95, 0.22);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.game-images figure:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 184, 95, 0.44);
}

.game-images img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top;
    border-radius: 18px;
}

/* CARDS */

.feature-grid,
.status-grid,
.reasons-grid {
    display: grid;
    gap: 20px;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 28px;
}

.contact-feature-grid {
    margin-bottom: 28px;
}

.status-grid,
.reasons-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.status-card,
.reason-card,
.info-card,
.cta-panel {
    position: relative;
    overflow: hidden;
    text-align: left;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.032));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.feature-card::before,
.status-card::before,
.reason-card::before,
.info-card::before,
.cta-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 184, 95, 0.58), transparent);
}

.feature-card,
.status-card,
.reason-card,
.info-card {
    padding: 26px;
}

.feature-card h3,
.reason-card h3,
.status-card strong,
.timeline-list h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.14rem;
    line-height: 1.25;
}

.feature-card p,
.reason-card p,
.status-card p {
    margin: 0;
    font-size: 0.96rem;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 14px;
    color: var(--gold-2);
    background: rgba(217, 184, 95, 0.1);
    border: 1px solid rgba(217, 184, 95, 0.22);
    font-weight: 900;
    font-size: 0.84rem;
}

.feature-icon svg {
    display: block;
    color: var(--gold-2);
}

.status-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-2);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.status-card strong {
    display: block;
    font-size: 1.45rem;
}

/* LISTA DE PASSOS */

.timeline-list {
    display: grid;
    gap: 16px;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.timeline-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px;
    text-align: left;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.085);
}

.timeline-list li > span {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    color: #111735;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    font-weight: 950;
}

.timeline-list h3 {
    margin-top: 0;
}

.timeline-list p {
    margin: 0;
    color: var(--muted);
}

.compact-timeline {
    margin-bottom: 28px;
}

.warning-callout {
    color: #ffe3c3;
    border-left-color: #ffb464;
}

/* CTA */

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    background:
        radial-gradient(circle at 80% 20%, rgba(217, 184, 95, 0.14), transparent 24rem),
        linear-gradient(135deg, rgba(24, 34, 79, 0.94), rgba(12, 17, 39, 0.94));
    border-color: var(--line);
}

.cta-panel h2 {
    margin-bottom: 12px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 240px;
}

/* PÁGINA DE CONTATO */

.page-header {
    padding: 72px 0 56px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-header h1 {
    font-size: clamp(2.8rem, 7vw, 5.4rem);
}

.page-header p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--soft);
}

.page-header .buttons {
    justify-content: center;
    margin-top: 28px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 24px;
    align-items: start;
}

.info-card h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.info-card p:first-child.eyebrow {
    margin-bottom: 12px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.highlight-card {
    border-color: rgba(217, 184, 95, 0.36);
    background:
        radial-gradient(circle at 90% 10%, rgba(217, 184, 95, 0.16), transparent 16rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
}

.single-card {
    width: min(100%, 860px);
    margin: 0 auto;
}

.contact-email {
    margin: 20px 0;
    font-size: clamp(1.1rem, 2.4vw, 1.35rem);
    font-weight: 850;
    word-break: break-word;
}

.contact-email a,
.info-card a:not(.btn) {
    color: var(--gold-2);
    text-decoration: none;
}

.contact-email a:hover,
.info-card a:not(.btn):hover {
    text-decoration: underline;
}

.contact-list {
    margin: 14px 0 24px;
    padding-left: 22px;
    color: var(--muted);
}

.contact-list li {
    margin: 10px 0;
    line-height: 1.65;
}

.info-card .btn,
.single-card .btn {
    margin-top: 8px;
}

/* FORMULÁRIO */

.contact-form-card {
    scroll-margin-top: 96px;
}

.contact-form {
    margin-top: 22px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    color: #ffffff;
    font: inherit;
    outline: none;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(3, 7, 18, 0.38);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(217, 184, 95, 0.72);
    box-shadow: 0 0 0 4px rgba(217, 184, 95, 0.12);
    background: rgba(3, 7, 18, 0.55);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold-2) 50%), linear-gradient(135deg, var(--gold-2) 50%, transparent 50%);
    background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.form-group select option {
    color: #111735;
    background: #ffffff;
}

.contact-form .btn {
    margin-top: 4px;
    border: 0;
}

.form-note {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.form-status {
    margin-top: 16px;
    padding: 13px 15px;
    border-radius: 14px;
    font-weight: 800;
    line-height: 1.5;
}

.form-status[hidden],
.form-status:empty {
    display: none;
}

.form-status.success {
    color: #d8ffe9;
    background: rgba(92, 255, 170, 0.12);
    border: 1px solid rgba(92, 255, 170, 0.35);
}

.form-status.error {
    color: #ffe1e1;
    background: rgba(255, 107, 107, 0.12);
    border: 1px solid rgba(255, 107, 107, 0.35);
}

.honeypot {
    display: none;
}

/* REDES SOCIAIS */

.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.social-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-width: 152px;
    padding: 12px 18px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 850;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
    background: rgba(217, 184, 95, 0.1);
    border-color: rgba(217, 184, 95, 0.34);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.social-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}


.compact-social {
    margin-bottom: 0;
}

/* RODAPÉ */

footer {
    color: var(--muted);
    background: rgba(3, 5, 13, 0.54);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
    padding: 34px 0;
    text-align: center;
}

.footer-brand {
    justify-content: center;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 18px;
}

.footer-links a,
footer a {
    color: var(--soft);
    text-decoration: none;
}

.footer-links a:hover,
footer a:hover {
    color: var(--gold-2);
    text-decoration: underline;
}

footer p {
    margin: 8px 0;
    font-size: 0.92rem;
}

/* PÁGINAS SIMPLES / REDIRECIONAMENTO */

.inner-page .section h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.inner-page > .section:first-child:not(main .section) {
    min-height: 70vh;
    display: grid;
    place-items: center;
}

/* PÁGINAS LEGAIS */

body.legal-page {
    margin: 0;
    color: #222222;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

body.legal-page::before {
    display: none;
}

.legal-container {
    width: min(100% - 32px, 900px);
    margin: 0 auto;
    padding: 28px 0 56px;
}

.legal-back-link {
    display: inline-block;
    margin-bottom: 22px;
    color: #4f3bd8;
    text-decoration: none;
    font-weight: 700;
}

.legal-back-link:hover {
    text-decoration: underline;
}

.legal-card {
    color: #222222;
    background: #ffffff;
    text-align: left;
    line-height: 1.7;
}

.legal-card h1 {
    margin: 0 0 16px;
    color: #111111;
    font-size: 40px;
    line-height: 1.15;
}

.legal-card h2 {
    margin: 32px 0 10px;
    color: #111111;
    font-size: 24px;
    line-height: 1.3;
    text-align: left;
}

.legal-card p {
    margin: 12px 0;
    color: #222222;
}

.legal-card ul {
    margin: 10px 0 18px 24px;
    padding: 0;
}

.legal-card li {
    margin: 8px 0;
    color: #222222;
}

.legal-card a {
    color: #4f3bd8;
}

/* TELAS MÉDIAS */

@media (max-width: 1200px) {
    .hero {
        padding: 38px 0 54px;
    }

    .hero-shell {
        grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
        gap: 34px;
    }

    .hero h1 {
        font-size: clamp(3rem, 5.8vw, 4.85rem);
    }

    .hero-subtitle {
        max-width: 520px;
        font-size: 1.05rem;
    }

    .hero-media img {
        min-height: 280px;
        max-height: 390px;
    }

    .hero-note,
    .callout {
        max-width: 520px;
    }

    .about-intro-card {
        gap: 34px;
    }

    .about-intro-card .section-heading h2 {
        font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    }
}

/* TABLET */

@media (max-width: 980px) {
    .hero-shell,
    .two-column,
    .cta-panel,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .section-heading.align-left,
    .section-copy {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .buttons {
        justify-content: center;
    }

    .hero-media-card {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-actions {
        min-width: 0;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .status-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-card {
        gap: 22px;
        padding: 28px;
    }

    .about-intro-card .section-heading,
    .about-intro-card .section-copy {
        max-width: none;
    }

    .about-intro-card .section-copy {
        padding-left: 0;
        padding-top: 20px;
        text-align: left;
        border-top: 1px solid rgba(217, 184, 95, 0.22);
    }

    .about-intro-card .section-copy::before {
        display: none;
    }
}

/* CELULAR */

@media (max-width: 768px) {
    body {
        background:
            radial-gradient(circle at 20% 0%, rgba(104, 91, 255, 0.28), transparent 24rem),
            linear-gradient(180deg, #10163a 0%, #090d1d 58%, #070914 100%);
    }

    .site-topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }

    .topbar-links {
        justify-content: flex-start;
        gap: 7px;
    }

    .topbar-links a {
        padding: 8px 10px;
        font-size: 13px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }

    .hero {
        padding: 42px 0 58px;
    }

    .hero-shell,
    .container,
    .footer-inner {
        width: min(100% - 24px, var(--max));
    }

    .hero-shell {
        gap: 34px;
    }

    .hero h1,
    .page-header h1 {
        font-size: clamp(3rem, 18vw, 4.4rem);
    }

    .hero-media img {
        min-height: 260px;
        max-height: 360px;
        border-radius: 20px;
    }

    .hero-media-card {
        width: 100%;
        margin-top: 12px;
    }

    .section {
        padding: 58px 0;
    }

    .section-heading h2,
    .info-card h2,
    .cta-panel h2 {
        font-size: clamp(1.8rem, 9vw, 2.45rem);
    }

    .page-header {
        padding: 52px 0 42px;
    }

    .buttons,
    .hero-actions,
    .cta-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
        min-height: 52px;
        padding: 13px 18px;
    }

    .about-intro-card {
        padding: 22px;
        border-radius: 18px;
        margin-bottom: 34px;
    }

    .about-intro-card .section-heading h2 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .about-intro-card .section-copy {
        font-size: 1rem;
    }

    .game-images {
        grid-template-columns: 1fr;
        width: min(100%, 300px);
        margin-left: auto;
        margin-right: auto;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .status-card,
    .reason-card,
    .info-card,
    .cta-panel,
    .card-column,
    .timeline-list li {
        padding: 22px;
        border-radius: 18px;
    }

    .timeline-list li {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .timeline-list li > span {
        width: 34px;
        height: 34px;
    }

    .section-heading.align-left,
    .hero-copy,
    .section-copy {
        text-align: left;
    }

    .hero-actions,
    .buttons {
        justify-content: flex-start;
    }

    .page-header .buttons,
    .section-buttons {
        justify-content: center;
    }

    .page-header .buttons .btn,
    .hero-actions .btn,
    .cta-actions .btn {
        max-width: 420px;
    }

    .social-btn {
        width: 100%;
        max-width: 320px;
    }

    .legal-container {
        width: min(100% - 24px, 900px);
        padding: 22px 0 42px;
    }

    .legal-card h1 {
        font-size: 32px;
    }

    .legal-card h2 {
        font-size: 21px;
    }
}

/* CELULARES PEQUENOS */

@media (max-width: 480px) {
    .topbar-brand {
        font-size: 0.95rem;
    }

    .topbar-links {
        width: 100%;
    }

    .topbar-links a {
        flex: 1;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 17vw, 3.8rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-note,
    .callout {
        font-size: 0.95rem;
    }

    .hero-media img {
        min-height: 220px;
    }

    .about-intro-card .section-heading h2 {
        font-size: clamp(1.9rem, 11vw, 2.6rem);
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* AJUSTE DE ESPAÇAMENTO - SEÇÃO COLABORE / CONTATO */

#collaborate .callout {
    margin-bottom: 28px;
}

#collaborate .btn {
    margin-top: 0;
}

#collaborate {
    padding-bottom: 96px;
}
