:root {
    --bg-0: #0f1317;
    --bg-1: #404040;
    --text: #ffffff;
    --muted: #0400fa;
    --accent: #0400fa;
    --accent-2: #0400fa;
    --accent-2-hover: #0400fa;
    --link: #ffffff;
    --live-green: #0400fa;
    --card: #0400fa;
    --stroke: rgba(255, 255, 255, .08);
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    /* <- garante rolagem vertical */
}

body {
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background:
        radial-gradient(1200px 600px at 50% -200px, #182027 0%, var(--bg-0) 55%) no-repeat,
        linear-gradient(180deg, var(--bg-1), var(--bg-0));
    color: var(--text);
    padding-top: 0;
    /* <- sem espaço extra no topo */
}

/* ====== NAVBAR (ROLANDO JUNTO) ====== */
header.navbar {
    position: static !important;
    /* <- NUNCA gruda */
    top: auto !important;
    z-index: 1;
    backdrop-filter: saturate(140%) blur(6px);
    background: linear-gradient(180deg, rgba(144, 144, 145, 0.85), rgba(111, 111, 112, 0.85));
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-wrap {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 14px 20px
}

.brand img {
    display: block;
    height: 90px;
    width: auto
}

/* <- pode ajustar */
nav {
    flex: 1
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px
}

.menu a {
    text-decoration: none;
    color: var(--link);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .06em;
    transition: opacity .2s, transform .2s;
    white-space: nowrap
}

.menu a:hover {
    opacity: .85;
    transform: translateY(-1px)
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    background: var(--accent-2);
    color: #fff;
    font-weight: 700;
    letter-spacing: .02em;
    border: 1px solid rgba(0, 0, 0, .25);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(75, 130, 242, 0.25);
    transition: transform .15s, filter .15s, background .15s
}

.cta:hover {
    background: var(--accent-2-hover);
    transform: translateY(-1px)
}

.cta:active {
    transform: translateY(0)
}

.burger {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: transparent;
    color: #fff;
    cursor: pointer
}

.burger:focus-visible {
    outline: 2px solid var(--accent)
}

@media (max-width:960px) {

    nav,
    .cta {
        display: none
    }

    .burger {
        display: inline-grid;
        place-items: center
    }

    .menu {
        flex-direction: column;
        gap: 20px;
        padding: 18px 0
    }

    .nav-mobile {
        display: grid;
        gap: 14px;
        padding: 10px 20px 20px;
        border-top: 1px solid rgba(255, 255, 255, .06);
        background: linear-gradient(180deg, rgba(10, 13, 15, .96), rgba(10, 13, 15, .92))
    }

    .nav-mobile .cta {
        display: inline-flex;
        width: max-content
    }

}

.hidden {
    display: none
}

/* ====== HERO ====== */
.hero {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 0;
    padding: 0;
    overflow: hidden;

    /* agr.png = 2560x1115. Mantém a arte inteira, sem cortar as laterais. */
    aspect-ratio: 2560 / 1115;
    background-image:
        radial-gradient(900px 500px at 15% 0%, rgba(30, 144, 255, 0.15), transparent 60%),
        radial-gradient(1200px 700px at 100% 0%, rgba(30, 144, 255, 0.05), transparent 60%),
        url('../image/agr.png');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: 15% 0%, 100% 0%, center center;
    background-size: 900px 500px, 1200px 700px, 100% 100%;
}


.hero__inner {
    max-width: 1240px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 24px
}

.hero__content {
    position: relative;
    padding: clamp(5px, 1vw, 12px) 0;
    z-index: 2
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c9d0d6;
    font-weight: 700;
    letter-spacing: .08em;
    font-size: 14px;
    margin-bottom: 16px
}

.eyebrow .dash {
    width: 56px;
    height: 8px;
    border-radius: 16px;
    background: linear-gradient(90deg, var(--accent), #0c4aa8);
    display: inline-block
}

.hero__title {
    line-height: .90;
    margin: 0 0 10px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.hero__title--accent {
    color: var(--accent);
    font-weight: 900;
    font-size: clamp(40px, 7.6vw, 96px);
    letter-spacing: .02em
}

.hero__title--main {
    color: #fff;
    font-weight: 900;
    font-size: clamp(40px, 6.2vw, 72px);
    letter-spacing: .02em
}

.hero__subtitle {
    margin: 18px 0 28px;
    color: #e5e9ee;
    font-weight: 700;
    letter-spacing: .06em
}

.hero .accent {
    color: var(--accent)
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 22px
}

.btn-primary {
    --bg: #0400fa;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    background: var(--bg);
    box-shadow: 0 10px 24px rgba(38, 108, 226, 0.45);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%, 0 0);
    transition: transform .15s, filter .15s
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(.98)
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #cfd7de;
    text-decoration: none;
    font-weight: 700;
    transition: opacity .2s, transform .2s
}

.btn-ghost:hover {
    opacity: .9;
    transform: translateY(-1px)
}

.btn-ghost .play {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #5865f2;
    color: #0e161b;
    box-shadow: 0 8px 20px rgba(38, 82, 226, .25)
}

.hero__visual {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    z-index: 2
}

.hero__character {
    width: min(600px, 100vw);
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .55))
}

.hero__bg {
    position: absolute;
    inset: -10% -2% -10% -2%;
    z-index: 0;
    opacity: .5;
    background: radial-gradient(1400px 800px at 110% 50%, rgba(0, 0, 0, .45), transparent 45%), radial-gradient(900px 500px at -5% 60%, rgba(0, 0, 0, .35), transparent 55%)
}

.hero__animated-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden
}

.hero__animated-bg::before,
.hero__animated-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(75, 130, 242, 0.35), transparent 70%);
    animation: float 18s linear infinite
}

.hero__animated-bg::before {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    animation-direction: alternate
}

.hero__animated-bg::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
    animation-duration: 25s;
    animation-direction: alternate-reverse
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(40px, -30px) scale(1.05)
    }

    100% {
        transform: translate(-20px, 30px) scale(1)
    }
}

@media (max-width:1040px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .hero__visual {
        order: 2
    }

    .hero__content {
        order: 1
    }

    .hero__character {
        width: 78vw
    }
}

/* ===== Seção PARCEIROS + INFO SERVIDOR ===== */
.section-pro {
    position: relative;
    isolation: isolate;
    padding: clamp(48px, 6vw, 84px) 20px;
    overflow: hidden
}

.pro__inner {
    max-width: 1240px;
    margin: 0 auto
}

.pro__headline {
    text-align: center;
    font-size: clamp(30px, 2.4vw, 20px);
    letter-spacing: .14em;
    font-weight: 1000;
    margin: 0 0 40px;
    color: #dbe2e7
}

.pro__headline .accent {
    color: var(--accent)
}

.pro__headline .spark {
    display: inline-block;
    width: 16px;
    height: 20px;
    margin-left: 10px;
    background:
        radial-gradient(circle at 50% 50%, var(--accent) 35%, transparent 36%),
        conic-gradient(from 0deg, var(--accent) 0 10%, transparent 10% 25%, var(--accent) 25% 35%, transparent 35% 50%, var(--accent) 50% 60%, transparent 60% 75%, var(--accent) 75% 85%, transparent 85% 100%);
    mask: radial-gradient(circle, #000 6px, transparent 7px);
    border-radius: 2px
}

.partners {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 34px
}

.partner-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 92px;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02);
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 18px, 100% 100%, 0 100%, 0 18px);
    transition: transform .15s, box-shadow .15s, border-color .15s, color .15s;
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .12)
}

.partner-icon {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: var(--accent);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25));
    flex: 0 0 auto
}

.partner-label {
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    opacity: .95
}

/* ====== TABS + SLIDER (seção do servidor) ====== */
.pro-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px
}

.pro-tab {
    appearance: none;
    border: 0;
    cursor: pointer;
    padding: 8px 18px;
    line-height: 1.4;
    border-radius: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    color: #e4e9ee;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .06);
    transition: filter .15s, transform .15s, background .15s
}

.pro-tab:hover {
    filter: brightness(1.05);
    transform: translateY(-1px)
}

.pro-tab.is-active {
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06)
}

.pro-grid {
    overflow: hidden;
    position: relative
}

.pro-panels {
    display: flex;
    width: 100%;
    transition: transform .35s ease;
    will-change: transform
}

.pro-panel {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: stretch;
    padding: 6px 0;
    opacity: .6;
    transform: translateY(6px);
    transition: opacity .28s, filter .28s, transform .28s
}

.pro-panel.is-active {
    opacity: 1;
    transform: translateY(0)
}

.pro-photo {
    position: relative;
    margin: 0;
    background: #0e1317;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center
}

.pro-photo::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 8px;
    outline: 2px solid var(--accent);
    outline-offset: -10px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 18px, 100% 100%, 0 100%)
}

.pro-photo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block
}

.pro-text {
    position: relative;
    padding: 22px 6px 6px
}

.pro-name {
    font-size: clamp(26px, 4.4vw, 44px);
    margin: 6px 0 4px;
    line-height: 2;
    font-weight: 900
}

.pro-sub {
    color: var(--accent);
    font-weight: 900;
    letter-spacing: .02em;
    margin-bottom: 14px
}

.pro-desc {
    color: #cfd6dc;
    line-height: 1.64;
    margin: 0 0 18px
}

.pro-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .22;
    background:
        radial-gradient(1200px 800px at 120% 40%, rgba(0, 0, 0, .45), transparent 45%),
        radial-gradient(900px 600px at -10% 60%, rgba(0, 0, 0, .35), transparent 55%),
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: auto, auto, 50px 120px, 120px 120px;
    background-position: 0 0, 0 0, 0 0, 0 0
}

@media (max-width:1024px) {
    .partners {
        grid-template-columns: repeat(2, 1fr)
    }

    .pro-panel {
        grid-template-columns: 1fr
    }
}

/* === DESATIVAR ANIMAÇÃO DAS ABAS (TROCA INSTANTÂNEA) === */
.pro-panels {
    transition: none;
}

.pro-panel {
    opacity: 1;
    transform: none;
    transition: none;
}

.pro-panel.is-active {
    opacity: 1;
    transform: none;
}

/* ===== VÍDEO FULL-BLEED + OVERLAY ===== */
.fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw)
}

.live-yt {
    position: relative;
    aspect-ratio: 16/6;
    background: #000;
    overflow: hidden
}

@media (min-width:900px) {
    .live-yt {
        min-height: 520px
    }
}

@media (min-width:1400px) {
    .live-yt {
        min-height: 640px
    }
}

#videoplayer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    text-align: center;
    z-index: 2;
    pointer-events: none;
    transition: opacity .4s ease
}

.video-play {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--live-green);
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, .18);
    pointer-events: auto;
    isolation: isolate
}

.video-play .icon {
    transform: translateX(2px)
}

.video-play::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    background: repeating-conic-gradient(#ffffff 0 6deg, transparent 6deg 12deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 0);
    mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 0);
    animation: spin 6s linear infinite;
    z-index: -1
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.video-title {
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.video-btn {
    display: inline-block;
    background: var(--live-green);
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    clip-path: polygon(0 0, calc(100% - 0px) 0, 100% 50%, calc(100% - 0px) 100%, 0 100%, 0 0);
    pointer-events: auto;
    transition: filter .15s, transform .15s
}

.video-btn:hover {
    filter: brightness(.92);
    transform: translateY(-1px)
}

.video-btn {
    display: inline-block;
    background: linear-gradient(90deg, #0400fa, #0603b4);
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 12px;
    letter-spacing: .05em;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, .15);
    box-shadow: 0 8px 20px rgba(4, 0, 250, 0.45), inset 0 0 10px rgba(255, 255, 255, 0.15);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    position: relative;
    overflow: hidden
}

.video-btn:hover {
    transform: scale(1.07) translateY(-3px);
    box-shadow: 0 0 25px rgba(4, 0, 250, 0.7), 0 0 50px rgba(4, 0, 250, 0.4);
    filter: brightness(1.1)
}

.video-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg)
}

.video-btn:hover::after {
    animation: shine .9s forwards
}

@keyframes shine {
    100% {
        left: 125%
    }
}

/* ===== NOVA SEÇÃO: SISTEMAS EM DESTAQUE ===== */
.section-feat {
    position: relative;
    isolation: isolate;
    padding: clamp(48px, 6vw, 84px) 20px
}

.feat__inner {
    max-width: 1240px;
    margin: 0 auto
}

.feat__headline {
    text-align: center;
    font-size: clamp(28px, 2.4vw, 44px);
    letter-spacing: .06em;
    font-weight: 1000;
    margin: 0 0 28px;
    color: #dbe2e7
}

.feat__headline .accent {
    color: var(--accent)
}

.feat-main-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px
}

.feat-tab {
    appearance: none;
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    color: #e8edf2;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 800;
    letter-spacing: .06em;
    cursor: pointer;
    transition: filter .15s, transform .15s
}

.feat-tab:hover {
    filter: brightness(1.05);
    transform: translateY(-1px)
}

.feat-tab.is-active {
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06)
}

.feat-grid {
    overflow: hidden;
    position: relative
}

.feat-track {
    display: flex;
    transition: transform .35s ease;
    will-change: transform
}

.feat-panel {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: stretch
}

.feat-visual {
    position: relative;
    background: #0e1317;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    overflow: hidden;
    min-height: 420px;
    display: grid;
    place-items: center
}

.feat-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.feat-side {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.feat-subtabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
}

.sub-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid var(--stroke);
    color: #e7edf2;
    font-weight: 800;
    letter-spacing: .04em;
    cursor: pointer;
    transition: transform .15s, filter .15s
}

.sub-tab:hover {
    transform: translateY(-1px);
    filter: brightness(1.05)
}

.sub-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid var(--stroke);
    color: #e7edf2;
    font-weight: 800;
    letter-spacing: .04em;
    cursor: pointer;
    transition: transform .15s, filter .15s
}

.sub-tab .sub-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain
}

.feat-text h3 {
    margin: 0 0 6px;
    font-size: clamp(20px, 2vw, 28px)
}

.feat-text p {
    margin: 0;
    color: #cfd6dc;
    line-height: 1.6
}

@media (max-width:1024px) {
    .feat-panel {
        grid-template-columns: 1fr
    }
}

.sub-icon img {
    width: 30px;
    height: 20px;
    object-fit: contain
}

/* ===== SEÇÃO COMUNIDADE ===== */
.section-comm {
    position: relative;
    isolation: isolate;
    padding: clamp(48px, 6vw, 84px) 20px
}

.comm__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 15px;
    align-items: stretch
}

.comm-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: .12em;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase
}

.comm-eyebrow .dash {
    width: 56px;
    height: 8px;
    border-radius: 16px;
    background: linear-gradient(90deg, #ffffff, #ffffff)
}

.comm-title {
    margin: 0 0 12px;
    font-size: clamp(28px, 3.8vw, 54px);
    color: #0400fa;
    font-weight: 900;
    letter-spacing: .02em
}

.comm-lead {
    margin: 0 0 40px;
    color: #d1d7dc;
    line-height: 1.7
}

.comm-list {
    display: grid;
    gap: 20px;
    margin: 40px 0 22px
}

.comm-item {
    display: flex;
    align-items: center;
    gap: 16px
}

.comm-bullet {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid var(--stroke)
}

.comm-item strong {
    display: block;
    font-size: 18px
}

.comm-links {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #cfd6dc
}

.comm-rule {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 18px 0
}

.comm-embed {
    background: #171c22;
    border: 1px solid var(--stroke);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
    padding: 16px;
    display: flex;
    flex-direction: column
}

.comm-embed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px
}

.comm-embed-title {
    font-weight: 800;
    letter-spacing: .06em;
    color: #e7edf2;
    font-size: 14px;
    opacity: .92
}

.discord-frame {
    flex: 1;
    min-height: 420px;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .25))
}

@media (max-width:1024px) {
    .comm__inner {
        grid-template-columns: 1fr
    }

    .discord-frame {
        min-height: 520px
    }
}

.comm-item div {
    display: flex;
    flex-direction: column;
    gap: 0
}

.comm-item strong {
    margin: 0;
    line-height: 1.2
}

.comm-links {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cfd6dc;
    font-weight: 700
}

.comm-links .comm-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform .2s, filter .2s
}

.comm-links .comm-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.2)
}

/* ===== RODAPÉ ===== */
.footer {
    background: #0f1317;
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 40px 20px 20px;
    text-align: center
}

.footer-top {
    max-width: 1240px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px
}

.footer-logo img {
    max-height: 150px;
    width: auto
}

.rodape-logo img {
    max-height: 300px;
    width: auto
}

.footer-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0
}

.footer-menu a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s
}

.footer-menu a:hover {
    color: var(--accent)
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #cfd6dc;
    font-size: 14px
}

.footer-bottom .accent {
    color: var(--accent);
    font-weight: 800
}

.footer-socials {
    display: flex;
    gap: 16px
}

.footer-socials img {
    width: 30px;
    height: 23px;
    filter: brightness(0) invert(1);
    transition: filter .2s, transform .2s
}

.footer-socials img:hover {
    filter: none;
    transform: translateY(-2px)
}


/* ===== BOTÃO VOLTAR AO TOPO ===== */
.back-to-top {
    display: inline-block;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: bold;
    color: var(--accent);
    text-decoration: none;
    transition: transform .2s, color .2s
}

.back-to-top:hover {
    transform: translateY(-3px);
    color: #fff
}

html {
    scroll-behavior: smooth
}

/* Ícone da lista comunidade como link */
.comm-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid var(--stroke);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease, filter .25s ease;
    cursor: pointer;
    text-decoration: none
}

.comm-bullet img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1) saturate(0);
    transition: filter .25s ease, transform .25s ease
}

.comm-bullet:hover {
    background: var(--accent);
    border-color: rgba(0, 0, 0, .25);
    box-shadow: 0 0 0 6px rgba(0, 100, 255, 0.15), 0 10px 24px rgba(0, 100, 255, 0.35);
    transform: translateY(-2px)
}

.comm-bullet:hover img {
    filter: brightness(1) invert(0);
    transform: scale(1.04)
}

.partner-card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease
}

.partner-icon {
    transition: transform .25s ease, filter .25s ease, color .25s ease
}

.partner-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: 0 12px 30px rgba(226, 38, 38, .18), inset 0 0 0 1px rgba(255, 255, 255, .04);
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03))
}

.partner-card:hover .partner-icon {
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(226, 38, 38, .45));
    transform: scale(1.08)
}

.partner-card:hover .partner-label {
    color: #fff;
    opacity: 1
}

.feat-tab,
.sub-tab {
    position: relative;
    overflow: hidden;
    transition: background .3s, color .3s, box-shadow .3s
}

.feat-tab.is-active,
.sub-tab.is-active {
    background: var(--accent);
    color: #fff !important;
    box-shadow: 0 0 12px rgba(0, 100, 255, 0.45);
    animation: pulseColor 1.5s infinite alternate
}

@keyframes pulseColor {
    0% {
        background: var(--accent);
    }

    100% {
        background: #1E90FF;
    }
}

/* Botão principal */
.btn-primary {
    --bg: #0400fa;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    background: var(--bg);
    box-shadow: 0 10px 24px rgba(30, 144, 255, 0.45);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%, 0 0);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    overflow: hidden
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.6), 0 0 40px rgba(30, 144, 255, 0.4);
    filter: brightness(1.05)
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg)
}

.btn-primary:hover::after {
    animation: shine 1s forwards
}

@keyframes shine {
    100% {
        left: 125%
    }
}

/* Botão Painel do Jogador */
.cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    background: var(--accent-2);
    color: #fff;
    font-weight: 700;
    letter-spacing: .02em;
    border: 1px solid rgba(0, 0, 0, .25);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(75, 130, 242, 0.25);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    overflow: hidden
}

.cta:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 20px rgba(75, 130, 242, 0.6), 0 0 40px rgba(75, 130, 242, 0.4);
    filter: brightness(1.05)
}

.cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg)
}

.cta:hover::after {
    animation: shine 1s forwards
}

/* Botão play */
.video-play {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #0400fa;
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, .18);
    isolation: isolate;
    transition: transform .3s ease, box-shadow .3s ease
}

.video-play:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.8), 0 0 40px rgba(30, 144, 255, 0.5);
}

.video-play::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    animation: pulse 1.5s infinite;
    z-index: -1
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1
    }

    70% {
        transform: scale(1.4);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 0
    }
}

/* ===== REVEAL ON SCROLL (base) ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translate3d(0, 20px, 0) scale(.98);
        filter: blur(4px);
        transition:
            opacity .6s cubic-bezier(.22, .61, .36, 1),
            transform .6s cubic-bezier(.22, .61, .36, 1),
            filter .6s cubic-bezier(.22, .61, .36, 1);
        will-change: opacity, transform, filter;
    }

    .reveal.is-inview {
        opacity: 1;
        transform: none;
        filter: none;
    }

    /* Direções */
    .reveal-up {
        transform: translate3d(0, 24px, 0);
    }

    .reveal-down {
        transform: translate3d(0, -24px, 0);
    }

    .reveal-left {
        transform: translate3d(24px, 0, 0);
    }

    .reveal-right {
        transform: translate3d(-24px, 0, 0);
    }

    /* Zoom */
    .reveal-zoom {
        transform: scale(.92);
    }

    /* Durações e delays utilitários */
    .dur-400 {
        transition-duration: .4s
    }

    .dur-800 {
        transition-duration: .8s
    }

    .delay-100 {
        transition-delay: .10s
    }

    .delay-200 {
        transition-delay: .20s
    }

    .delay-300 {
        transition-delay: .30s
    }

    .delay-400 {
        transition-delay: .40s
    }

    .delay-600 {
        transition-delay: .60s
    }

    /* Stagger: itens filhos animam em cascata */
    .stagger>* {
        opacity: 0;
        transform: translate3d(0, 14px, 0);
        transition:
            opacity .55s cubic-bezier(.22, .61, .36, 1),
            transform .55s cubic-bezier(.22, .61, .36, 1);
    }

    .stagger.is-inview>* {
        opacity: 1;
        transform: none;
    }

    /* espaça os delays automaticamente nos primeiros 12 itens */
    .stagger.is-inview>*:nth-child(1) {
        transition-delay: .05s
    }

    .stagger.is-inview>*:nth-child(2) {
        transition-delay: .10s
    }

    .stagger.is-inview>*:nth-child(3) {
        transition-delay: .15s
    }

    .stagger.is-inview>*:nth-child(4) {
        transition-delay: .20s
    }

    .stagger.is-inview>*:nth-child(5) {
        transition-delay: .25s
    }

    .stagger.is-inview>*:nth-child(6) {
        transition-delay: .30s
    }

    .stagger.is-inview>*:nth-child(7) {
        transition-delay: .35s
    }

    .stagger.is-inview>*:nth-child(8) {
        transition-delay: .40s
    }

    .stagger.is-inview>*:nth-child(9) {
        transition-delay: .45s
    }

    .stagger.is-inview>*:nth-child(10) {
        transition-delay: .50s
    }

    .stagger.is-inview>*:nth-child(11) {
        transition-delay: .55s
    }

    .stagger.is-inview>*:nth-child(12) {
        transition-delay: .60s
    }

    /* Extra: “pulse leve” quando entra */
    .reveal-pop {
        transform: scale(.94);
    }

    .reveal-pop.is-inview {
        animation: pop .5s cubic-bezier(.2, .8, .2, 1) both
    }

    @keyframes pop {
        0% {
            transform: scale(.94)
        }

        60% {
            transform: scale(1.02)
        }

        100% {
            transform: scale(1)
        }
    }
}

/* Se o usuário preferir menos movimento, mostra tudo estático */
@media (prefers-reduced-motion: reduce) {

    .reveal,
    .stagger>* {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* ícone do card – tamanho fixo e centralizado */
.partner-icon {
    display: inline-grid;
    place-items: center;
    width: 28px;
    /* <<< TAMANHO do ícone */
    height: 28px;
    /* <<< TAMANHO do ícone */
    color: var(--accent);
    flex: 0 0 auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25));
}

/* se usar <img>, ele herda o slot acima e não deforma */
.partner-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    /* mantém proporção */
    display: block;
}

/* (opcional) se os ícones forem brancos e você quiser tingir:
   use máscara para pintar com currentColor */
.partner-icon.mask {
    background: currentColor;
}

.partner-icon.mask img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-mask: center / contain no-repeat;
    mask: center / contain no-repeat;
    background: currentColor;
}

.menu a.active {
    color: #0400fa;
    /* vermelho */
    font-weight: 900;
    /* bem forte */
    font-size: 16px;
    /* aumenta só o ativo */
    position: relative;
}

.menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    /* distância do texto */
    width: 100%;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* ==== MENU MOBILE (compacto e com CTA colado) ==== */
@media (max-width:960px) {

    /* header compacto */
    .nav-wrap {
        padding: 10px 14px;
        gap: 14px;
    }

    .brand img {
        height: 52px;
    }

    nav {
        display: none;
    }

    .nav-wrap>.cta {
        display: none !important;
    }

    /* esconde CTA do topo */
    .burger {
        display: inline-grid;
        place-items: center;
    }

    /* painel mobile: abre/fecha via classe .hidden */
    .nav-mobile {
        position: fixed;
        inset: 64px 0 0;
        /* logo abaixo do header */
        background: #0b0f12;
        z-index: 1500;
        max-height: calc(100dvh - 64px);
        overflow: auto;
        padding: 8px 12px 10px;
        display: block;
    }

    .nav-mobile.hidden {
        display: none !important;
    }

    /* links empilhados sem espaço extra */
    .nav-mobile .menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        margin: 0;
        padding: 0;
        gap: 0;
    }

    .nav-mobile .menu li {
        margin: 0;
        list-style: none
    }

    .nav-mobile .menu a {
        display: block;
        padding: 10px 12px;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: .02em;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    /* CTA logo abaixo dos links */
    .nav-mobile .cta {
        display: inline-flex !important;
        align-self: flex-start;
        margin: 8px 0 0;
        /* cola no último link */
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(30, 144, 255, 0.25);
        width: auto;
        max-width: 220px;
    }

    /* === Ajuste do vídeo no mobile (play menor e sem sobrepor o título) === */
    @media (max-width:600px) {
        .video-overlay {
            gap: 40px;
            padding: 8px 12px;
            /* um pouco de respiro */
        }

        .video-play {
            width: 56px;
            height: 56px;
            font-size: 22px;
            box-shadow: 0 0 0 6px rgba(255, 255, 255, .18);
        }

        .video-play::before {
            inset: -10px;
        }

        /* anel externo proporcional */
        .video-play::after {
            border-width: 2px;
        }

        /* pulso mais fino */

        .video-title {
            font-size: clamp(20px, 6.4vw, 28px);
            line-height: 1.15;
            margin: 6px 0 6px;
        }

        .video-btn {
            padding: 10px 16px;
            font-size: 13px;
            border-radius: 10px;
        }
    }

    /* === Ajuste: vídeo maior no mobile === */
    @media (max-width:600px) {
        .live-yt {
            aspect-ratio: 16 / 10;
            /* fica mais alto (antes era 16/6) */
            min-height: 280px;
            /* altura mínima maior */
        }

        #videoplayer {
            object-fit: cover;
            /* cobre o espaço todo sem distorcer */
        }

        /* === Ajuste imagens .pro-photo no mobile === */
        @media (max-width:600px) {
            .pro-photo {
                height: auto;
                /* libera a altura */
                min-height: 220px;
                /* define mínimo para não colapsar */
            }

            .pro-photo img {
                width: 100%;
                /* ocupa toda a largura */
                height: auto;
                /* mantém proporção */
                object-fit: cover;
                /* corta um pouco mas preenche o espaço */
            }
        }
    }
}

/* ===== PLAYER DE MUSICA COMPACTO ===== */
#btnPlay.music-player-btn {
    position: relative;
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(112, 108, 255, .55);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(22, 22, 34, .98), rgba(48, 44, 111, .96));
    color: #fff;
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    flex: 0 0 44px;
    box-shadow: 0 6px 18px rgba(0,0,0,.30), 0 0 0 0 rgba(92,86,255,.25);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    overflow: visible;
}

#btnPlay.music-player-btn:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(141,137,255,.95);
    box-shadow: 0 9px 24px rgba(0,0,0,.34), 0 0 18px rgba(92,86,255,.28);
}

#btnPlay.music-player-btn:active {
    transform: scale(.95);
}

#btnPlay .music-player-icon {
    position: relative;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    padding-left: 2px;
    font-size: 12px;
    line-height: 1;
    background: linear-gradient(135deg, #7470ff, #3933dc);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 0 13px rgba(78,72,255,.35);
}

#btnPlay.is-playing .music-player-icon {
    padding-left: 0;
    font-size: 10px;
    background: linear-gradient(135deg, #928fff, #514be7);
}

#btnPlay .music-player-wave {
    position: absolute;
    right: -7px;
    bottom: -2px;
    z-index: 3;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: #11131a;
    border: 1px solid rgba(120,116,255,.55);
    box-shadow: 0 3px 8px rgba(0,0,0,.35);
}

#btnPlay .music-player-wave i {
    display: block;
    width: 2px;
    height: 4px;
    border-radius: 2px;
    background: #8d89ff;
}

#btnPlay.is-playing {
    animation: musicPlayerPulse 1.6s ease-out infinite;
}

#btnPlay.is-playing .music-player-wave i {
    animation: musicPlayerBars .55s ease-in-out infinite alternate;
}
#btnPlay.is-playing .music-player-wave i:nth-child(2) { animation-delay: .13s; }
#btnPlay.is-playing .music-player-wave i:nth-child(3) { animation-delay: .26s; }

@keyframes musicPlayerBars {
    from { height: 4px; }
    to { height: 12px; }
}

@keyframes musicPlayerPulse {
    0% { box-shadow: 0 6px 18px rgba(0,0,0,.30), 0 0 0 0 rgba(92,86,255,.28); }
    70% { box-shadow: 0 6px 18px rgba(0,0,0,.30), 0 0 0 8px rgba(92,86,255,0); }
    100% { box-shadow: 0 6px 18px rgba(0,0,0,.30), 0 0 0 0 rgba(92,86,255,0); }
}

@media (min-width: 961px) and (max-width: 1180px) {
    .menu { gap: 26px; }
    .nav-wrap { gap: 18px; }
}

