:root {
    --bg-0: #0a0d0f;
    --bg-1: #0f1317;
    --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(10, 13, 15, 0.85), rgba(10, 13, 15, 0.78));
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.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
}

/* 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(38, 123, 226, 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(38, 123, 226, 0.6), 0 0 40px rgba(38, 123, 226, 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
}

.hidden {
    display: none
}

/* 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(4, 0, 250, .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(4, 0, 250, .6), 0 0 40px rgba(4, 0, 250, .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%
    }
}

/* ===== SEÇÃO ===== */
.section {
    position: relative;
    isolation: isolate;
    padding: 100px 20px 200px
}

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

/* plano de fundo quadriculado sutil como no exemplo */
.grid-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .18;
    background:
        linear-gradient(var(--stroke) 1px, transparent 1px) 0 0/120px 120px,
        linear-gradient(90deg, var(--stroke) 1px, transparent 1px) 0 0/120px 120px;
}

/* Headline estilo do mock */
.eyebrow {
    text-align: center;
    color: var(--accent);
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 8px;
}

.headline {
    margin: 0 0 26px;
    text-align: center;
    font-size: clamp(28px, 4.6vw, 48px);
    font-weight: 900;
    letter-spacing: .02em;
}

.divider {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 80px
}

.divider span {
    width: 56px;
    height: 0px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Grade das “cards” */
.cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
}

@media (max-width:1200px) {
    .cards {
        grid-template-columns: repeat(3, 1fr)
    }
}

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

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

/* Card glass + anel */
.card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border: 1px solid var(--stroke);
    border-radius: 18px;
    padding: 86px 18px 20px;
    /* espaço pro avatar flutuar */
    text-align: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .25);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(38, 123, 226, 0.35);
    box-shadow: 0 14px 36px rgba(38, 123, 226, 0.18), 0 10px 24px rgba(0, 0, 0, 0.35);
}

.avatar-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -56px;
    width: 140px;
    height: 140px;
    display: grid;
    place-items: center;
}

.ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        conic-gradient(from 0deg,
                     rgba(4, 0, 250, 1) 0 35%,
                     rgba(4, 0, 250, .35) 50% 75%,
                     rgba(4, 0, 250, .35) 75% 100%);
    filter: blur(.2px);
    padding: 6px;
    -webkit-mask: radial-gradient(farthest-side, transparent 62%, #000 63%);
    mask: radial-gradient(farthest-side, transparent 62%, #000 63%);
    animation: ringspin 1s linear infinite;
}

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

.avatar {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: radial-gradient(120px 120px at 40% 30%, #182027, #0c1116);
    border: 2px solid rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
}

.avatar-media {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: radial-gradient(120px 120px at 40% 30%, #182027, #0c1116);
    border: 2px solid rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
}

.avatar img {
    width: 70px;
    height: 70px;
    opacity: .9
}

.avatar-media img {
    width: 70px;
    height: 45px;
    opacity: .9
}

.title {
    margin: 6px 0 2px;
    font-weight: 900;
    letter-spacing: .02em
}

.subtitle {
    margin: 0 0 16px;
    color: #cfd6dc;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .12em
}

/* Botão com notch */
.btn {
    --bg: var(--accent);
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 900;
    letter-spacing: .0em;
    padding: 8px 20px;
    border-radius: 10px;
    position: relative;
    background: var(--bg);
    clip-path: polygon(0 0, calc(100% - 0px) 0, 100% 100%, calc(100% - 18px) 100%, 0 100%, 0 0);
    box-shadow: 0 8px 18px rgba(226, 38, 38, .35);
    transition: transform .18s ease, filter .18s ease, box-shadow .2s ease;
}

.btn:hover {
    filter: brightness(.96);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(38, 123, 226, 0.42);
}

.btn:active {
    transform: none
}

/* utilidades */
.muted {
    opacity: .85
}

/* ===== 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(75, 130, 242, 0.15), 0 10px 24px rgba(75, 130, 242, 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(38, 123, 226, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.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(75, 130, 242, 0.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(75, 130, 242, 0.45);
    animation: pulseColor 1.5s infinite alternate
}

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

    100% {
        background: #0400fa;
    }
}

:root {
    --bg-0: #0a0d0f;
    --bg-1: #0f1317;
    --text: #ffffff;
    --accent: #0400fa;
    --stroke: rgba(255, 255, 255, .08);
}

/* seção apenas para espaçar da vizinhança */
.signup-cta {
    padding: clamp(28px, 4vw, 56px) 20px;
    overflow: visible;
    /* garante que nada seja cortado aqui */
}

/* A CAIXA (não vai crescer) */
.signup-card {
    --char-w: clamp(420px, 44vw, 760px);
    /* TAMANHO do personagem */
    --char-right: -80px;
    /* quanto “sai” pela direita */
    --char-bottom: -50px;
    /* quanto “sai” por baixo */

    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    background: #121619;
    border: 2px solid var(--accent);
    border-radius: 16px;
    min-height: 280px;
    /* altura mínima da caixa */
    overflow: visible;
    /* ESSENCIAL: deixa sair da caixa */
    box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
}

/* conteúdo de texto */
.signup-text {
    position: relative;
    z-index: 2;
    /* texto por cima do personagem */
    padding: clamp(28px, 4vw, 56px);
    max-width: 560px;
    color: var(--text);
}

.signup-text h2 {
    margin: 0 0 10px;
    font-weight: 900;
    font-size: clamp(28px, 3.6vw, 44px);
    letter-spacing: .0em;
}

.signup-text p {
    margin: 0 0 30px;
    color: #d1d7dc;
}

/* botão */
.btn-signup {
    display: inline-block;
    background: linear-gradient(90deg, #0400fa, #4e7bff);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    padding: 14px 46px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, .12);
    box-shadow: 0 8px 18px rgba(75, 130, 242, 0.35);
    transition: transform .18s ease, filter .18s ease, box-shadow .2s ease;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%, 0 0);
}

.btn-signup:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* PERSONAGEM — cresce e sai para fora */
.signup-hero {
    position: absolute;
    right: 80px;
    bottom: -30px;
    width: 550px;
    height: 550px;
    z-index: 1;
    /* atrás do texto, à frente do fundo */
    pointer-events: none;
    /* clique passa pelo personagem */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .45));
}

/* responsivo: traz a arte para dentro quando a tela é estreita */
@media (max-width: 900px) {
    .signup-card {
        --char-w: --char-w: clamp(150px, 32vw, 480px);
        --char-right: -60px;
        /* não sai para fora em telas pequenas */
        --char-bottom: -30px;
    }

    .signup-hero {
        right: 10px;
    }
}

/* === BOTÃO REGISTRAR – upgrade de animação === */
.btn-signup {
    --shine-speed: .9s;
    --glow-color: rgba(38, 123, 226, 0.65);

    position: relative;
    display: inline-block;
    padding: 16px 52px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, .12);
    font-weight: 900;
    letter-spacing: .06em;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg, #0400fa, #1a8cff);
    box-shadow:
        0 10px 24px rgba(0, 68, 255, .45),
        inset 0 0 0 1px rgba(255, 255, 255, .08);
    transition:
        transform .18s cubic-bezier(.2, .8, .2, 1),
        filter .18s,
        box-shadow .18s,
        background .25s;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%, 0 0);
    overflow: hidden;
    isolation: isolate;
    /* garante que os pseudos fiquem atrás do texto */
}

/* brilho diagonal correndo */
.btn-signup::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .55) 45%, transparent 60%);
    transform: translateX(-130%) skewX(-18deg);
    transition: transform var(--shine-speed) ease;
    pointer-events: none;
    z-index: -1;
}

/* aura externa (glow) que pulsa no hover */
.btn-signup::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 18px;
    background: radial-gradient(60% 60% at 50% 50%, var(--glow-color), transparent 70%);
    opacity: 0;
    transform: scale(.95);
    filter: blur(18px);
    transition: opacity .25s ease, transform .25s ease;
    z-index: -2;
}

/* estado normal com uma “respirada” sutil (opcional) */
@media (prefers-reduced-motion: no-preference) {
    .btn-signup {
        animation: breathe 2.6s ease-in-out infinite;
    }

    @keyframes breathe {

        0%,
        100% {
            transform: translateY(0) scale(1)
        }

        50% {
            transform: translateY(-1px) scale(1.01)
        }
    }
}

/* Hover: escala + brilho correndo + glow pulsando */
.btn-signup:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 0 20px rgba(4, 0, 250, .7),
        0 0 44px rgba(4, 0, 250, .35),
        inset 0 0 10px rgba(255, 255, 255, .15);
    filter: brightness(1.06);
}

.btn-signup:hover::after {
    transform: translateX(135%) skewX(-18deg);
}

.btn-signup:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Pressionado: sensação de clique */
.btn-signup:active {
    transform: translateY(0) scale(.99);
    box-shadow: 0 6px 16px rgba(0, 68, 255, .35), inset 0 0 6px rgba(0, 0, 0, .25);
    filter: brightness(.98);
}

/* Acessibilidade: foco visível */
.btn-signup:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .85);
    outline-offset: 3px;
}

.signup-cta {
    padding: clamp(28px, 4vw, 56px) 20px;
    overflow: visible;
    margin-bottom: 80px;
    /* <<< adiciona espaço abaixo */
}

.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: -6px;
    /* 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(0, 68, 255, .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: 8px;
            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 */
            }

            /* === Ajuste dos cards de download no mobile === */
            @media (max-width:1100px) {
                .download-card {
                    display: flex;
                    /* coloca conteúdo em linha */
                    flex-direction: row;
                    /* ícone ao lado do texto */
                    align-items: center;
                    justify-content: space-between;
                    gap: 12px;
                    padding: 14px 16px;
                    /* menos respiro */
                    height: auto;
                    margin-bottom: 100px;
                    /* evita altura fixa */
                }

                .download-card .icon {
                    flex: 0 0 60px;
                    /* ícone menor */
                    width: 60px;
                    height: 60px;
                    margin-bottom: 0;
                }

                .download-card .info {
                    flex: 1;
                    /* texto ocupa o espaço central */
                    text-align: left;
                }

                .download-card .info h3 {
                    font-size: 15px;
                    margin: 0;
                }

                .download-card .info p {
                    font-size: 12px;
                    margin: 0;
                    opacity: .8;
                }

                .download-card .btn {
                    padding: 8px 14px;
                    font-size: 13px;
                    border-radius: 8px;
                    white-space: nowrap;
                }

                /* ==== DOWNLOAD – espaçamento no mobile ==== */
                @media (max-width: 600px) {

                    /* garante que o avatar/anel possa sair do card sem cortar */
                    .card,
                    .download-card {
                        overflow: visible !important;
                    }

                    /* respiro consistente entre os cards */
                    .card,
                    .download-card {
                        margin-bottom: 0px !important;
                    }

                    .card:last-child,
                    .download-card:last-child {
                        margin-bottom: 0 !important;
                    }

                    /* caso os cards estejam um após o outro */
                    .card+.card,
                    .download-card+.download-card {
                        margin-top: 48px !important;
                    }

                    /* se estiverem dentro de uma grid/lista, aumenta o gap */
                    .cards,
                    .download-list {
                        gap: 30px !important;
                    }

                    /* Esconde o personagem no mobile */
                    @media (max-width: 600px) {
                        .signup-hero {
                            display: none !important;
                        }

                        /* Reduz espaçamento em telas pequenas */
                        @media (max-width:600px) {
                            .section {
                                padding: 40px 16px 0px !important;
                                /* topo, laterais, baixo */
                            }

                            .signup-cta {
                                margin: 20px 0 !important;
                                /* menos espaço acima e abaixo */
                                padding: 30px 16px !important;
                            }

                            .icon-download img {
                                width: 20px !important;
                                /* Define a largura da imagem em 60 pixels */
                                height: 20px !important;
                                /* Define a altura da imagem em 60 pixels */
                                object-fit: cover;
                                /* Faz a imagem “preencher” o espaço sem deformar,
                         cortando o excesso quando necessário */
                            }
                        }
                    }
                }
            }
        }
    }
}

/* ===== 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; }
}

