:root {
    --color-bg: #080714;
    --color-bg-secondary: #100d20;
    --color-surface: #171329;
    --color-surface-hover: #201a38;
    --color-pink: #ff4fa3;
    --color-magenta: #d936d0;
    --color-purple: #8155ff;
    --color-orange: #ff8a3d;
    --color-coral: #ff626e;
    --color-yellow: #ffd166;
    --color-text: #f8f7ff;
    --color-text-muted: #b8b4c9;
    --color-border: #332c4d;
    --gradient-primary: linear-gradient(120deg, var(--color-pink), var(--color-purple));
    --gradient-sunset: linear-gradient(120deg, var(--color-purple), var(--color-pink), var(--color-orange));
    --shadow-small: 0 4px 14px #0004;
    --shadow-medium: 0 14px 36px #0006;
    --radius-small: .5rem;
    --radius-medium: .85rem;
    --radius-large: 1.25rem;
    --container-width: 1180px;
    --banner-position: center;
}


/* ==================================================
   BASE
================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font: 400 1rem/1.65 Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    color: inherit;
}

.container {
    width: min(100% - 2rem, var(--container-width));
    margin-inline: auto;
}

.section {
    padding: 2.75rem 0;
}

.section-alt {
    background: var(--color-bg-secondary);
}

h1,
h2,
h3 {
    line-height: 1.15;
    margin: 0 0 .75rem;
}

h1 {
    font-size: clamp(2rem, 7vw, 3.7rem);
}

h2 {
    font-size: clamp(1.55rem, 4vw, 2.35rem);
}

h3 {
    font-size: 1.15rem;
}

p {
    margin: .4rem 0 1rem;
}

.muted,
.meta {
    color: var(--color-text-muted);
}

.eyebrow {
    color: var(--color-pink);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* ==================================================
   ACESSIBILIDADE
================================================== */

.skip-link {
    position: fixed;
    top: -5rem;
    left: 1rem;
    background: var(--color-yellow);
    color: #111;
    padding: .65rem;
    z-index: 200;
}

.skip-link:focus {
    top: 1rem;
}

:focus-visible {
    outline: 3px solid var(--color-yellow);
    outline-offset: 3px;
}


/* ==================================================
   BANNER GTA6ZOONE
================================================== */

.global-banner {
    width: 100%;
    height: 150px;
    position: relative;
    overflow: hidden;
    background: #080714;
}

.banner-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


/* ==================================================
   HEADER
================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #080714eb;
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(14px);
}

.header-inner {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 150px;
    font-weight: 950;
    letter-spacing: .05em;
}

.brand-text {
    display: inline-block;
    background: var(--gradient-sunset);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 950;
    letter-spacing: .05em;
}

.desktop-nav {
    display: none;
}

.menu-button {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    background: var(--color-surface);
    width: 46px;
    height: 46px;
    font-size: 1.35rem;
}


/* ==================================================
   MENU MOBILE
================================================== */

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: #000a;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
    z-index: 110;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: min(88vw, 360px);
    height: 100dvh;
    background: var(--color-bg-secondary);
    padding: 1rem 1.25rem;
    transform: translateX(105%);
    transition: .25s;
    z-index: 120;
    overflow-y: auto;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu.open {
    transform: none;
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.close-menu {
    background: none;
    border: 0;
    font-size: 1.8rem;
}

.mobile-links {
    display: grid;
    gap: .25rem;
}

.mobile-links > a,
.submenu-toggle {
    padding: .75rem;
    border-radius: .5rem;
    background: none;
    border: 0;
    text-align: left;
    width: 100%;
}

.mobile-links a:hover,
.submenu-toggle:hover {
    background: var(--color-surface);
}

.mobile-submenu {
    display: none;
    padding-left: 1rem;
}

.mobile-submenu.open {
    display: grid;
}

.social-placeholders {
    border-top: 1px solid var(--color-border);
    margin-top: 1rem;
    padding-top: 1rem;
    color: var(--color-text-muted);
}


/* ==================================================
   PÁGINAS
================================================== */

.breadcrumb {
    font-size: .86rem;
    color: var(--color-text-muted);
    margin-bottom: 1.2rem;
}

.breadcrumb a {
    color: var(--color-pink);
}

.page-intro {
    padding: 2.5rem 0 1.4rem;
}

.lede {
    max-width: 760px;
    color: var(--color-text-muted);
    font-size: 1.08rem;
}


/* ==================================================
   GRIDS
================================================== */

.grid {
    display: grid;
    gap: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
    grid-template-columns: 1fr;
}


/* ==================================================
   CARDS
================================================== */

.card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition:
        transform .2s,
        border-color .2s;
}

.card:hover {
    transform: translateY(-3px);
    border-color: var(--color-purple);
}

.card-body {
    padding: 1.15rem;
}

.card-image,
.article-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #292044, #151126);
    display: grid;
    place-items: center;
    color: var(--color-text-muted);
    font-size: .8rem;
    text-align: center;
    padding: 1rem;
}

.card-image img,
.article-image img,
.media-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.media-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.article-image {
    border-radius: var(--radius-medium);
    margin: 1.5rem 0;
}


/* ==================================================
   BADGES
================================================== */

.badge {
    display: inline-flex;
    padding: .24rem .55rem;
    border-radius: 99px;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .07em;
}

.badge-confirmado {
    background: #1e6945;
    color: #d6ffeb;
}

.badge-rumor {
    background: #7a4913;
    color: #fff0cc;
}

.badge-teoria {
    background: #502f7f;
    color: #f1e4ff;
}

.badge-demo {
    background: #522543;
    color: #ffdcef;
}


/* ==================================================
   BOTÕES
================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: .65rem 1rem;
    border: 1px solid transparent;
    border-radius: var(--radius-small);
    background: var(--gradient-primary);
    font-weight: 750;
    cursor: pointer;
}

.btn-secondary {
    background: var(--color-surface);
    border-color: var(--color-border);
}

.btn:hover {
    filter: brightness(1.12);
}


/* ==================================================
   CABEÇALHO DAS SEÇÕES
================================================== */

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}


/* ==================================================
   DESTAQUES DA HOME
================================================== */

.editorial {
    display: grid;
    gap: 1rem;
}


/* ==================================================
   DESTAQUE PRINCIPAL DA HOME
================================================== */

.feature-main {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: end;
    overflow: hidden;
    background: var(--color-surface);
}

.feature-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.feature-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(8, 7, 20, .96) 0%,
            rgba(8, 7, 20, .88) 32%,
            rgba(8, 7, 20, .58) 60%,
            rgba(8, 7, 20, .20) 100%
        ),
        linear-gradient(
            0deg,
            rgba(8, 7, 20, .96) 0%,
            rgba(8, 7, 20, .38) 55%,
            transparent 100%
        );
}

.feature-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.feature-main .card-body {
    max-width: 720px;
}

.feature-main h1 {
    text-shadow: 0 3px 18px #000;
}

.feature-main p {
    text-shadow: 0 2px 10px #000;
}


/* ==================================================
   DESTAQUES LATERAIS DA HOME
================================================== */

.feature-side {
    display: grid;
    gap: 1rem;
}

.feature-side-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.feature-side-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    background: var(--color-surface);
}

.feature-side-card .card-body {
    flex: 1;
}

.feature-side-card h2 {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}


/* ==================================================
   CARDS DE EXPLORAÇÃO
================================================== */

.explore-card {
    padding: 1.1rem;
    min-height: 145px;
}

.explore-icon {
    font-size: 1.7rem;
}


/* ==================================================
   PESQUISA
================================================== */

.search-bar {
    display: flex;
    gap: .5rem;
    max-width: 800px;
}

.search-bar input,
.control {
    width: 100%;
    min-width: 0;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    padding: .78rem;
}


/* ==================================================
   FILTROS
================================================== */

.filter-row {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    padding: .3rem 0 1rem;
}

.filter {
    white-space: nowrap;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 99px;
    padding: .5rem .85rem;
    cursor: pointer;
}

.filter.active {
    background: var(--gradient-primary);
    border-color: transparent;
}

.hidden {
    display: none !important;
}

.empty-state {
    text-align: center;
    padding: 2rem;
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-medium);
    color: var(--color-text-muted);
}


/* ==================================================
   INFORMAÇÕES RÁPIDAS
================================================== */

.quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: .75rem;
    margin: 1.5rem 0;
}

.quick-info div {
    background: var(--color-surface);
    padding: 1rem;
    border-radius: var(--radius-small);
    border: 1px solid var(--color-border);
}


/* ==================================================
   GALERIA
================================================== */

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}

.gallery-image {
    aspect-ratio: 4 / 3;
    background: var(--color-surface);
    border-radius: var(--radius-small);
    display: grid;
    place-items: center;
    color: var(--color-text-muted);
    overflow: hidden;
}


/* ==================================================
   VÍDEOS
================================================== */

.video-shell {
    aspect-ratio: 16 / 9;
    max-width: 100%;
    background: var(--color-surface);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-medium);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem;
    overflow: hidden;
}

.video-shell iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* ==================================================
   ARTIGOS
================================================== */

.article {
    max-width: 820px;
}

.article h2 {
    margin-top: 2rem;
}


/* ==================================================
   CHECKLIST
================================================== */

.checklist {
    display: grid;
    gap: .7rem;
}

.check-item {
    display: flex;
    gap: .7rem;
    align-items: center;
    padding: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
}

.check-item input {
    width: 22px;
    height: 22px;
    accent-color: var(--color-pink);
}

.progress {
    height: 12px;
    background: var(--color-surface);
    border-radius: 99px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
    border-top: 1px solid var(--color-border);
    background: #06050e;
    padding: 3rem 0 1.3rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-links {
    display: grid;
    gap: .35rem;
    color: var(--color-text-muted);
}

.legal {
    border-top: 1px solid var(--color-border);
    margin-top: 2rem;
    padding-top: 1.3rem;
    color: var(--color-text-muted);
    font-size: .83rem;
}


/* ==================================================
   TABLET
================================================== */

@media (min-width: 700px) {

    .global-banner {
        height: 200px;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-main {
        min-height: 380px;
    }
}


/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 960px) {

    .global-banner {
        height: 250px;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        gap: .15rem;
    }

    .desktop-nav > a,
    .dropdown > button {
        border: 0;
        background: none;
        color: var(--color-text);
        padding: .65rem .72rem;
        font-weight: 700;
    }

    .menu-button {
        display: none;
    }

    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 210px;
        background: var(--color-surface);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-small);
        padding: .45rem;
        box-shadow: var(--shadow-medium);
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: grid;
    }

    .dropdown-menu a {
        padding: .5rem;
        border-radius: .35rem;
    }

    .dropdown-menu a:hover {
        background: var(--color-surface-hover);
    }

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

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .editorial {
        grid-template-columns: 2fr 1fr;
        align-items: stretch;
    }

    .feature-main {
        min-height: 460px;
    }

    .feature-side {
        grid-template-rows: repeat(2, 1fr);
    }

    .feature-side-card {
        display: grid;
        grid-template-columns: 42% 58%;
        min-height: 0;
    }

    .feature-side-image {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
    }

    .feature-side-card .card-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}


/* ==================================================
   TELAS GRANDES
================================================== */

@media (min-width: 1200px) {

    .feature-main {
        min-height: 480px;
    }
}


/* ==================================================
   MOBILE PEQUENO
================================================== */

@media (max-width: 520px) {

    .section {
        padding: 2rem 0;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .search-bar {
        flex-direction: column;
    }

    .search-bar .btn {
        width: 100%;
    }

    .feature-main {
        min-height: 430px;
    }

    .feature-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(8, 7, 20, .98) 0%,
                rgba(8, 7, 20, .85) 42%,
                rgba(8, 7, 20, .28) 78%,
                rgba(8, 7, 20, .10) 100%
            );
    }

    .feature-main h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }
}


/* ==================================================
   REDUÇÃO DE MOVIMENTO
================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *:before,
    *:after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}










.card-full-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.card-full-link:hover {
  color: inherit;
}

.card-full-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -2px;
}

.card-action {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
}