@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --brand: #d32f2f;
    --brand-dark: #b71c1c;
    --brand-darker: #7f0000;
    --brand-light: #ef5350;
}

html {
    position:relative;
    min-height:100%;
}

.btn-primary {
    background-color: var(--brand) !important;
    border-color: var(--brand-dark) !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--brand-dark) !important;
    border-color: var(--brand-darker) !important;
}
.btn-info {
    background-color: var(--brand-light) !important;
    border-color: var(--brand) !important;
    color: #fff !important;
}
.btn-info:hover, .btn-info:focus, .btn-info:active {
    background-color: var(--brand) !important;
    border-color: var(--brand-dark) !important;
}
.page-link {
    color: var(--brand) !important;
}
.page-link:hover, .page-link:focus {
    color: var(--brand-dark) !important;
    background-color: #f8f9fa;
}
.page-item.active .page-link {
    background-color: var(--brand) !important;
    border-color: var(--brand-dark) !important;
    color: #fff !important;
}
.page-item.disabled .page-link {
    color: #adb5bd !important;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: var(--brand) !important;
    color: #fff !important;
}
.nav-pills .nav-link { color: #616161; }

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    background: #f4f4f4;
    margin: 0;
    /* rodape colado no fim mesmo em pagina curta, sem depender de altura fixa */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body > * { flex-shrink: 0; }

button { cursor: pointer }
button:focus { outline: none; }

header .front {
    background-image: url(../images/bg.png);
    background-position: center;
    background-size: cover;
    position: relative;
    height: 300px;
}
header .front .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 998;
    /* escurecida de cima pra baixo, mais o degradê nas laterais - assim a
       arte do fundo some nas bordas e a logo/IP/online ficam no claro */
    background:
        linear-gradient(90deg, rgba(10,0,0,.92) 0%, rgba(10,0,0,.35) 22%, rgba(10,0,0,0) 42%,
                              rgba(10,0,0,0) 58%, rgba(10,0,0,.35) 78%, rgba(10,0,0,.92) 100%),
        linear-gradient(rgba(20,0,0,.55), rgba(20,0,0,.75));
}
header .front img.hero-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 999;
    transform: translate(-50%, -50%);
    /* teto em % pra logo nao estourar a largura do banner em tela estreita:
       o que valer menos manda */
    width: min(270px, 62vw);
    animation: float-logo 4s ease-in-out infinite;
}
/* mesma flutuada da logo, sem o translate de centralizacao - usada quando
   ela entra no fluxo, no layout de celular */
@keyframes float-logo-mobile {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
@keyframes float-logo {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}
header .hero {
    position: relative;
    z-index: 1000;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*
 * Acoes do banner: "conecte-se" (copia o IP) e "entrar no Discord".
 *
 * Sem cartao nenhum, nem em repouso nem no hover - o degrade do overlay ja
 * escurece as laterais do banner, entao o texto se sustenta sozinho e a arte
 * continua aparecendo inteira.
 *
 * O que aparece no hover e a DICA: uma linha dizendo o que o clique faz
 * (copiar o IP / abrir o Discord). Ela nasce escondida no lugar dela, sem
 * empurrar nada - por isso ocupa espaco fixo (height) em vez de aparecer do
 * nada e sacudir o texto de cima.
 */
.hero-acao {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 320px;
    padding: 4px 2px;
    color: #fff;
    text-decoration: none;
    background: none;
    border: none;
    transition: transform .18s ease;
}
.hero-acao:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}
.hero-acao-icone {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .18s ease;
}
.hero-acao:hover .hero-acao-icone { transform: scale(1.12); }
.hero-acao-icone svg { width: 100%; height: 100%; filter: drop-shadow(0 2px 4px rgba(0,0,0,.5)); }
.hero-acao-texto { position: relative; display: flex; flex-direction: column; }
.hero-acao-titulo {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: .3px;
    white-space: nowrap;
    text-shadow: 0 2px 6px rgba(0,0,0,.65);
}
.hero-acao-sub {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255,255,255,.68);
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.hero-acao-dica {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-3px);
    transition: opacity .18s ease, transform .18s ease;
}
.hero-acao:hover .hero-acao-dica { opacity: 1; transform: none; }
.hero-acao-dica i { font-size: 13px; }

/* verde no "conecte-se", azul no Discord: a cor diz pra onde o clique leva */
/* os dois icones no vermelho da marca, como o resto do site */
.hero-acao-icone { color: var(--brand-light); }
.hero-acao-jogar .hero-acao-sub b { color: var(--brand-light); }
.hero-acao-dica { color: var(--brand-light); }
.hero-acao-discord { flex-direction: row-reverse; text-align: right; }
.hero-acao-discord .hero-acao-texto { align-items: flex-end; }
.hero-acao-discord .hero-acao-dica { left: auto; right: 0; justify-content: flex-end; }

@media (max-width: 991px) {
    .hero-acao-titulo { font-size: 16px; }
    .hero-acao-sub { font-size: 11.5px; }
}
@media (max-width: 767px) {
    /* ==========================================================
       POR QUE OS BOTOES DEIXARAM DE SUMIR NO CELULAR
       ==========================================================
       Eles estavam com display:none abaixo de 768px - lado a lado
       com a logo nao cabiam mesmo. So que copiar o IP e entrar no
       Discord sao justamente as duas coisas que alguem faz num
       celular; escondendo, sobrava so a logo e um menu.

       Em vez de esconder, a hero vira coluna: logo em cima, os dois
       botoes embaixo em largura cheia, com fundo escuro pra terem
       contorno sobre a imagem. */
    /* o banner tinha altura fixa de 300px, suficiente pra logo sozinha.
       Com os botoes empilhados embaixo dela, a altura passa a depender do
       conteudo */
    header .front { height: auto; }

    /* a logo e absoluta e centralizada no desktop (fica no meio, com um
       botao de cada lado). Numa coluna isso a faz flutuar POR CIMA dos
       botoes - ela precisa entrar no fluxo */
    header .front img.hero-logo {
        position: static;
        transform: none;
        order: -1;
        width: min(200px, 52vw);
        margin: 0 0 4px;
        /* a animacao original anima translate(-50%,-50%); sem o
           posicionamento absoluto ela jogaria a logo pro canto */
        animation: float-logo-mobile 4s ease-in-out infinite;
    }

    header .hero {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: 18px 16px 22px;
    }
    .hero-acao {
        display: flex;
        width: 100%;
        max-width: 330px;
        justify-content: flex-start;
        padding: 10px 14px;
        background: rgba(0,0,0,.42);
        border-radius: 12px;
        backdrop-filter: blur(2px);
    }
    /* no desktop o botao do Discord e espelhado (icone a direita) pra
       fechar a simetria com o outro lado da logo. Empilhados, esse
       espelho deixa os dois desalinhados entre si */
    .hero-acao-discord { flex-direction: row; text-align: left; }
    .hero-acao-discord .hero-acao-texto { align-items: flex-start; }
    .hero-acao-discord .hero-acao-dica { left: 0; right: auto; justify-content: flex-start; }

    /* a dica ("Clique para copiar o IP") so aparecia no hover, e hover
       nao existe em tela de toque: ficaria invisivel pra sempre */
    .hero-acao-texto { width: 100%; }
    .hero-acao-dica {
        position: static;
        opacity: 1;
        transform: none;
        margin-top: 2px;
    }
    .hero-acao-titulo { white-space: normal; }
    .hero-acao-sub { white-space: normal; }

    /* ==========================================================
       BOTAO DO MENU
       ==========================================================
       O toggler existia mas usava o icone padrao do Bootstrap, que e
       um SVG escuro - invisivel em cima da barra vermelha. A barra
       parecia simplesmente vazia, sem jeito de abrir o menu. */
    .navbar-toggler {
        border: 1px solid rgba(255,255,255,.55);
        border-radius: 8px;
        padding: 6px 10px;
        margin: 4px 12px;
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,0.95)' stroke-width='2.4' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
    .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.25); outline: none; }

    /* o menu aberto precisa de respiro: sem isto os itens ficam
       colados na borda esquerda da tela */
    nav.menu .navbar-collapse { padding: 6px 16px 12px; }
    nav.menu .nav-link { padding: 10px 0; }
}

/* ==========================================================================
   JANELA DE CUPOM ATIVO
   ========================================================================== */

/* Cartao claro com o vermelho da marca, como o resto do site. O verde da
   primeira versao era de outro lugar - aqui a cor de destaque e a nossa. */
.cupom-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(20,10,10,.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    animation: cupom-fundo-in .2s ease;
}
.cupom-modal[hidden] { display: none; }
@keyframes cupom-fundo-in { from { opacity: 0; } to { opacity: 1; } }

.cupom-modal-caixa {
    width: 100%;
    max-width: 470px;
    border-radius: 14px;
    background: #fff;
    border-top: solid 4px var(--brand);
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
    overflow: hidden;
    animation: cupom-caixa-in .25s ease;
}
@keyframes cupom-caixa-in {
    from { opacity: 0; transform: translateY(14px) scale(.98); }
    to   { opacity: 1; transform: none; }
}

.cupom-modal-topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: #fafafa;
    border-bottom: dashed 2px #e0e0e0;
}
.cupom-modal-selo {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--brand);
    border-radius: 10px;
    background: rgba(211,47,47,.08);
    border: solid 1px rgba(211,47,47,.2);
}
.cupom-modal-off {
    margin-left: auto;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    background: var(--brand);
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(211,47,47,.28);
}
.cupom-modal-fechar {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    font-size: 19px;
    line-height: 1;
    color: #90a4ae;
    background: #fff;
    border: solid 1px #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}
.cupom-modal-fechar:hover { background: #f5f5f5; color: #546e7a; }

.cupom-modal-corpo { padding: 24px 24px 22px; text-align: center; }
.cupom-modal-corpo h4 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 800;
    color: #37474f;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.cupom-modal-corpo > p { margin: 0 0 18px; font-size: 13px; color: #90a4ae; }

/* o "bilhete": dois lados separados por uma linha picotada com furos */
.cupom-modal-ticket {
    position: relative;
    display: flex;
    align-items: stretch;
    margin-bottom: 16px;
    border-radius: 10px;
    background: #fafafa;
    border: solid 1px #eceff1;
}
.cupom-modal-ticket-lado {
    flex: 1;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}
.cupom-modal-ticket-lado b { font-size: 26px; font-weight: 800; color: var(--brand); line-height: 1; }
.cupom-modal-ticket-lado span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #b0bec5;
}
/* o codigo e o que o comprador vai digitar: maiusculo e forte, sempre */
.cupom-modal-ticket-codigo b {
    font-size: 24px;
    font-weight: 800;
    color: #263238;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Courier New", monospace;
}
.cupom-modal-ticket-linha {
    position: relative;
    width: 0;
    border-left: dashed 2px #cfd8dc;
    margin: 14px 0;
}
/* os dois furos que fazem a linha parecer o picote de um bilhete */
.cupom-modal-ticket-linha::before,
.cupom-modal-ticket-linha::after {
    content: "";
    position: absolute;
    left: -8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: solid 1px #eceff1;
}
.cupom-modal-ticket-linha::before { top: -21px; }
.cupom-modal-ticket-linha::after { bottom: -21px; }

.cupom-modal-prazo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #b28900;
    background: #fff8e1;
    border: solid 1px #ffe082;
    border-radius: 999px;
}
.cupom-modal-timer { font-variant-numeric: tabular-nums; }
.cupom-modal-expirado .cupom-modal-prazo {
    color: #90a4ae;
    background: #f5f5f5;
    border-color: #e0e0e0;
}
.cupom-modal-expirado .cupom-modal-copiar { display: none; }

/* mesmo desenho chapado dos botoes do perfil - nada de relevo nem gradiente */
.cupom-modal-copiar,
.cupom-modal-entrar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 48px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: background .15s ease, color .15s ease;
}
.cupom-modal-copiar {
    margin-bottom: 10px;
    color: #fff;
    background: var(--brand);
}
.cupom-modal-copiar:hover { background: var(--brand-dark); }
.cupom-modal-entrar {
    color: #78909c;
    background: #fff;
    border: solid 1px #e0e0e0;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}
.cupom-modal-entrar:hover { background: #f5f5f5; color: #546e7a; }

@media (max-width: 480px) {
    .cupom-modal-corpo h4 { font-size: 18px; }
    .cupom-modal-ticket-lado b { font-size: 22px; }
    .cupom-modal-ticket-codigo b { font-size: 20px; }
}

header .menu {
    background: var(--brand);
    padding: 0;
    border-bottom: solid 3px rgba(0,0,0,.2);
}
header .menu li {
    padding: 7px 10px;
    transition: all ease .3s;
}
header .menu li:hover {
    background: rgba(0,0,0,.2);
}
header .menu .active {
    background: rgba(0,0,0,.2);
}
header .menu li a {
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}
/* Estrela dos VIP's e pilha de moedas do Gold, no menu do topo. */
.nav-icone {
    width: 17px;
    height: 17px;
    margin-right: 7px;
    flex-shrink: 0;
}

.nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    margin-left: 6px;
    border-radius: 9px;
    background: #fff;
    color: var(--brand-dark);
    font-size: 11px;
    font-weight: 700;
}
.nav-avatar {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    margin-right: 6px;
}

.content { padding: 20px; }

.news-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.news-content p {
    color: #333 !important;
    background-color: transparent !important;
}

.feed {
    position: relative;
    background-color: #eeeeee;
    background-position: center;
    background-size: cover;
    /* mesma borda dos cards de lista (punições/ranking) - só a borda, o
       resto do card de notícia continua como era */
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
    overflow: hidden;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 20px;
}
.feed::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(238,238,238,.96) 15%, rgba(238,238,238,.7) 55%, rgba(238,238,238,.15) 100%);
}
.feed > * {
    position: relative;
    z-index: 1;
}

.feed .eyebrow {
    color: var(--brand);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 24px 24px 0;
}

.feed .header {
    color: #212121;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    padding: 8px 24px 0;
    border: none;
}

.feed .body {
    color: rgba(0,0,0,.65);
    font-size: 13px;
    text-align: left;
    padding: 10px 24px 24px;
}

.feed .foo {
    background: rgba(255,255,255,.6);
    border-top: solid 1px rgba(0,0,0,.08);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feed .author {
    display: flex;
    align-items: center;
    color: #212121;
    font-size: 13px;
    font-weight: 700;
}
.feed .author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    border: solid 2px var(--brand);
}
.feed .author small {
    display: block;
    color: rgba(0,0,0,.5);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.feed .btn-ler-mais {
    background: var(--brand);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 9px 18px;
    border-radius: 4px;
    border: none;
    white-space: nowrap;
}
.feed .btn-ler-mais:hover {
    background: var(--brand-dark);
}


.member {
    width: 100%;
    border: solid 2px rgba(255, 143, 0, 1);
    cursor: default;
    transition: all linear .2s;
    margin-bottom: 15px;
}
.member:hover .informations {
    display: block
}
.member img {
    width: 100%;
}
.member .name {
    position: absolute;
    bottom: 2px;
    padding: 0px 10px;
    left: 50%;
    color: white;
    transform: translateX(-50%);
    background: rgba(0,0,0,.4);
}
.member .informations {
    position: absolute;
    z-index: 10;
    height: 100%;
    width: 85%;
    display: none;
    background: rgba(255, 143, 0, 0.75);
    top: 0;
    transition: all linear .2s;
}
.member .informations .title {
    color: white;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 1px 1px 1px #000;
}
.member .informations button {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    border: none;
    background: var(--brand-light);
    font-size: 18px;
    padding: 5px 10px;
    color:white;
    cursor: pointer
}

.profile-dash {
    background: #263238;
    padding: 20px;
    color: #fff;
}

.profile-dash .logo img {
    width: 100px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: rgba(238, 238, 238, 0.65) solid 4px;
    box-shadow: 0px 0px 20px rgba(238, 238, 238, 0.4);
}

.cart-itens {
    margin: 0;
    list-style-type: none;
    background: #f4f4f4;
    padding: 15px;
    width: 100%;
}
.cart-itens li {
    padding: 5px 0px;
    border-bottom: solid 1px rgba(0,0,0,.2);
}
.cart-itens li:last-child { border: none; }
.cart-itens span { float: right; }

.punish {
    background: #fff;
    padding: 10px;
    margin-top: 10px;
}
.punish .title {
    font-size: 35px;
    text-align: right;
}
.punish .subtitle {
    font-size: 12px;
    text-align: right;
    color: #757575;
}
.punish .card {
    margin: 0;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
}
.punish .card-header {
    padding: 10px 8px;
    background: #fff;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.punish .card-header h5 {
    font-size: .77em;
}
.punish .card-block {
    background: #ef5350;
    color: #fff;
    padding: 15px;
}
.punish .card-block p { margin: 0; font-size: 14px; }
.punish .card-block a { color: #fff; text-decoration: none; }
.punish .card-header h5 a { color: #000; }
.punish .red {
    background: #8bc34a;
}
.btn-load {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border:none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #e8e8e8;
    color: #616161;
    padding: 5px 10px;
    margin-top: 15px;
    cursor: pointer;
    border-bottom: solid 2px #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 600;
}

.package {
    width: 100%;
    padding: 15px;
    background: white;
    margin-bottom: 10px;
    transition: all ease .2s;
}
.package:hover {
    -webkit-box-shadow: .5px .5px .3px #e0e0e0;
    -moz-box-shadow: .5px .5px .3px #e0e0e0;
    box-shadow: .5px .5px .3px #e0e0e0;
}
.package img {
    margin-bottom: 5px;
}
.package .title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}
.package .price {
    font-size: 12px;
    font-weight: 500;
    color: #8bc34a;
}
/* Os dois botoes dividem a linha: comprar ocupa o dobro e "Detalhes" e um
   botao de contorno, discreto. Visual chapado (verde solido, canto pouco
   arredondado, borda um tom mais escura) em vez da sombra 3d do resto do
   site. */
.package .buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.package .btn {
    margin-top: 0;
    flex: 1.6;
    min-width: 0;
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-color .12s ease, border-color .12s ease;
}
.package .btn:hover, .package .btn:focus, .package .btn:active {
    box-shadow: none;
    transform: none;
    filter: none;
}
.package .btn i { font-size: 15px; }

/* Detalhes: secundario, so contorno.
   Classe propria (e nao .btn-primary) porque o .btn-primary do site usa
   !important pra vencer o bootstrap - e o !important tambem venceria isso
   aqui, deixando o botao vermelho solido de novo. */
.package .btn-detalhes {
    flex: 1;
    min-width: 0;
    font-size: 11px;
    padding: 0 8px;
    letter-spacing: 0;
    background: transparent;
    color: var(--brand);
    border: 1px solid rgba(211,47,47,.4);
    font-weight: 600;
}
.package .btn-detalhes:hover {
    background: rgba(211,47,47,.07);
    border-color: var(--brand);
    color: var(--brand);
}

/* Comprar: o botao principal do cartao */
.package .btn-success {
    background: #4caf50;
    border: 1px solid #429946;
    color: #fff;
}
.package .btn-success:hover { background: #47a54b; border-color: #3d8b41; color: #fff; }
.package .btn-success:active { background: #3f9243; }

/* pacote sem "Detalhes" (cash): o botao de comprar toma a linha toda */
.package .buttons .btn:only-child { flex: 1; }

/* mesmo botao na pagina de detalhes do pacote */
.btn-success.full-width {
    background: #4caf50;
    border: 1px solid #429946;
    color: #fff;
    border-radius: 4px;
    box-shadow: none;
    text-transform: uppercase;
    font-weight: 700;
}
.btn-success.full-width:hover { background: #47a54b; border-color: #3d8b41; color: #fff; filter: none; }
.btn-success.full-width:active { background: #3f9243; box-shadow: none; transform: none; }

.carrinho {
    margin-top: 35px
}
.carrinho .table {
    background: white;
    margin: 0;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
}
.carrinho .table th {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
.carrinho .btn-del {
    border: none;
    font-size: 12px;
    color: white;
    background: #f44336;
    padding: 2px 8px;
    cursor: pointer;
}
.carrinho .footer {
    padding: 10px 10px;
    background: #eee;
    margin-bottom: 15px;
}
.carrinho .footer button {
    border: none;
    background: #616161;
    color: white;
    padding: 7px 14px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s linear;
}
.carrinho .footer button:hover {
    background: #ffa000;
}
.carrinho .body h3 {
    font-size: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}
.carrinho .body hr {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}
.carrinho .body .btn-checkout {
    border: none;
    width: 100%;
    padding: 15px 20px;
    background: #66bb6a;
    color: white;
    font-weight: 900;
    letter-spacing: 2px;
    border-bottom: solid 3px #338a3e;
    cursor: pointer;
    transition: all .2s linear;
}
.carrinho .body .btn-checkout:hover {
    background: #4caf50;
    border-bottom-color: #087f23;
}
.gateways {
    padding: 15px 0;
}
.gateway-option {
    display: block;
    margin: 0;
    cursor: pointer;
}
.gateway-option input {
    visibility: hidden;
    position: absolute;
}
.gateway-option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 18px 10px;
    transition: all 200ms ease;
}
.gateway-option-card img {
    max-height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}
.gateway-option-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    color: #333;
}
.gateway-option-tag {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}
.gateway-option:hover .gateway-option-card {
    border-color: var(--brand-light);
    transform: translateY(-2px);
}
.gateway-option input:checked + .gateway-option-card {
    border-color: var(--brand);
    background: #fdf0f0;
    box-shadow: 0 2px 8px rgba(211, 47, 47, .15);
}
.gateway-option input:checked + .gateway-option-card .gateway-option-label {
    color: var(--brand);
}
.gateway-option input:disabled + .gateway-option-card {
    opacity: .4;
    cursor: not-allowed;
}

/* Cartão de checkout (blocos "Detalhes de compra" / "Pagar") */
.checkout-panel {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
    padding: 25px;
    height: 100%;
}
.checkout-summary p {
    margin-bottom: 10px;
    color: #555;
}
.checkout-summary .summary-total {
    font-size: 1.1em;
    font-weight: 700;
    color: #222;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/* Aviso explicativo do PIX (some/aparece junto do método escolhido) */
.payment-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fdf0f0;
    border: 1px solid #f5c6c6;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 20px;
}
.payment-info-box i {
    font-size: 24px;
    color: var(--brand);
    margin-top: 2px;
}
.payment-info-box strong {
    display: block;
    color: #222;
    margin-bottom: 4px;
}
.payment-info-box p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* Campos seguros de cartão (Mercado Pago Secure Fields) */
.mp-field {
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.mp-field.mp-field-focused {
    border-color: var(--brand-light);
    box-shadow: 0 0 0 .2rem rgba(211, 47, 47, .15);
}

/* Modal do PIX */
#pix-modal .modal-content {
    border-bottom-color: var(--brand);
}
#pix-modal .modal-header {
    background: var(--brand);
}
#pix-modal .modal-header .modal-title,
#pix-modal .modal-header .close {
    color: #fff;
    opacity: 1;
}
.pix-qr-frame {
    display: inline-block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}
.pix-qr-frame img {
    max-width: 220px;
    display: block;
}
.pix-status-waiting {
    color: #888;
    font-weight: 600;
}
.pix-status-waiting .ion-checkmark-circled {
    color: #43a047;
}

.full-width {
    width: 100%;
}
.toCenter {
    position: relative;
    left:50%;
    transform: translateX(-50%);
}

.mid {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.modal-content {
    border: none;
    border-bottom: solid 3px #ffa000;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    overflow: hidden;
}
.alert {
    border: none;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    border-bottom: solid 2px rgba(0,0,0,.2);
}

.alert-info {
    background: #81d4fa;
    color: #000;
}

.alert-warning {
    background: #fdd835;
    color: #000;
}

.alert-danger {
    background: #bf360c;
    color: white;
}

.servers-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.servers-list li {
    padding: 5px 10px;
    border-bottom: solid 1px rgba(0,0,0,.1);
}
.servers-list li:last-child { border: none; }
.servers-list a {
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
}

.btn {
    --btn-shadow: rgba(0,0,0,.18);
    --btn-shadow-soft: rgba(0,0,0,.12);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 0 var(--btn-shadow), 0 6px 14px var(--btn-shadow-soft);
    transform: translateY(0);
    transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.btn:hover {
    filter: brightness(1.06);
}
.btn:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 var(--btn-shadow), 0 2px 6px var(--btn-shadow-soft);
}
.btn:focus {
    box-shadow: 0 4px 0 var(--btn-shadow), 0 6px 14px var(--btn-shadow-soft);
}
.btn:disabled, .btn.disabled {
    box-shadow: 0 3px 0 var(--btn-shadow);
    filter: grayscale(.15);
    cursor: default;
}
/* Sombra na própria cor (mais clara) de cada botão, em vez de preto genérico */
.btn-primary, .btn-danger, .hot-buy { --btn-shadow: rgba(211,47,47,.4); --btn-shadow-soft: rgba(211,47,47,.2); }
.btn-info { --btn-shadow: rgba(239,83,80,.4); --btn-shadow-soft: rgba(239,83,80,.2); }
.btn-success { --btn-shadow: rgba(76,175,80,.4); --btn-shadow-soft: rgba(76,175,80,.2); }
.btn-secondary, .btn-light { --btn-shadow: rgba(158,158,158,.35); --btn-shadow-soft: rgba(158,158,158,.18); }

.custom-checkbox .custom-control-indicator {
    border-radius: 0;
}

.custom-control-input:checked~.custom-control-indicator {
    color: #000;
    background-color: #fdd835;
}

.custom-control-input:focus~.custom-control-indicator {
    box-shadow: none;
    border: solid 1px rgba(0, 0, 0, .3);
}

.form-control {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border-width: 2px;
}

/* Rodape: deixou de ser a faixa de 50px colada no fim da pagina (position
   absolute + margin no body) e virou um bloco alto com ajuda, formas de
   pagamento e redes. O "gruda no fim" agora e feito com flex no body. */
footer {
    width: 100%;
    background: #2a2a2a;
    margin-top: auto;
}
footer .footer-top {
    padding: 30px 0 26px;
}
footer .footer-help {
    display: inline-block;
    /* vermelho da marca, e nao o amarelo de antes: o rodape era o unico canto
       do site com uma cor de destaque diferente do resto */
    color: var(--brand-light);

    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}
footer .footer-help i {
    margin-right: 4px;
    vertical-align: -1px;
}
footer .footer-pay-text {
    color: rgba(255,255,255,.75);
    font-size: 13px;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 14px;
}
footer .footer-pay {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
footer .footer-pay-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 36px;
    padding: 3px;
    background: #fff;
    border-radius: 5px;
}
footer .footer-pay-icon svg {
    width: 100%;
    height: 100%;
}
footer .footer-social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
footer .footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 6px;
    color: #fff;
    transition: transform .12s ease, filter .12s ease;
}
footer .footer-social-btn:hover {
    color: #fff;
    filter: brightness(1.1);
    transform: translateY(-2px);
}
footer .footer-social-btn svg { width: 24px; height: 24px; }
footer .footer-social-btn i { font-size: 24px; }
footer .footer-social-btn.discord { background: #5865f2; }
/* preto do X: o azul era do passarinho do Twitter, marca que nao existe mais */
footer .footer-social-btn.twitter { background: #000; }
footer .footer-social-btn.twitter:hover { background: #1a1a1a; filter: none; }
footer .title {
  color: #f9a825;
  font-size: 18px;
}
footer .body {
  color: white;
  font-size: 12px;
}
footer .body a { color: #f9a825; }
footer .body ul { padding:0; }
footer .body ul li {
  list-style-type: none;
  padding: 3px 2px;
}
footer .body ul li a { color: white; }
footer .body ul li a i { color: #f9a825; }
footer .bottom {
  background: #232323;
  padding: 14px 0px;
  color: white;
  font-size: 13px
}
footer .footer-brand {
    color: var(--brand-light);
    font-weight: 600;
}
footer .footer-legal {
    color: rgba(255,255,255,.4);
    font-size: 11px;
    margin-top: 4px;
}
footer a { color: var(--brand-light); }
footer a:hover { color: var(--brand); }
footer .right { float: right; }

@media (max-width: 991px) {
    footer .footer-social { justify-content: flex-start; margin-top: 20px; }
    footer .right { float: none; margin-top: 8px; }
}

.hot-card {
    background: #1b1b1b;
    border: solid 1px rgba(255,255,255,.08);
    border-top: solid 3px var(--brand);
    margin-bottom: 20px;
    overflow: hidden;
}
.hot-badge {
    background: var(--brand-dark);
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 8px 14px;
}
.hot-card-body {
    padding: 18px;
    text-align: center;
}
.hot-card-body img {
    max-height: 110px;
    margin-bottom: 10px;
}
.hot-name {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}
.hot-price {
    color: #ffca28;
    font-size: 22px;
    font-weight: 800;
    margin: 6px 0 14px;
}
.hot-buy {
    width: 100%;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
}
.hot-buy:hover { background: var(--brand-dark); }

/* Usa o card branco das listas (.lista-card), então não tem mais fundo
   escuro nem texto branco. */
.discord-bar {
    border-left: solid 4px var(--brand);
    margin: 0 0 20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    color: #37474f;
}
.discord-left { display: flex; align-items: center; max-width: 480px; }
.discord-icon { width: 42px; height: 42px; color: var(--brand); flex-shrink: 0; margin-right: 16px; }
.discord-title { font-weight: 700; font-size: 16px; }
.discord-subtitle { font-size: 12px; color: #757575; margin-top: 4px; }
.discord-middle { text-align: center; }
.discord-members-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #9e9e9e;
}
.discord-members-count { font-size: 22px; font-weight: 800; color: var(--brand); }
.discord-avatars { display: flex; margin-top: 6px; }
.discord-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: solid 2px #fff;
    margin-left: -8px;
    background: #444 center/cover no-repeat;
    object-fit: cover;
}
.discord-avatar:first-child { margin-left: 0; }
.discord-avatar-more {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    background: var(--brand-dark);
    color: #fff;
}
.discord-cta {
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 22px;
    border-bottom: solid 3px var(--brand-darker);
    transition: background .2s ease;
    white-space: nowrap;
}
.discord-cta:hover { background: var(--brand-dark); color: #fff; }

.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    margin-bottom: 20px;
}
.card-header:first-child {
    border-radius: 12px 12px 0 0;
}
.card-header {
    background: var(--brand);
    border-radius: 0;
    color: white;
    border-bottom: solid 1.5px rgba(0,0,0,.2);
}

@media (max-width: 576px) {
  .hide-mobile { display: none;}
}

@media (min-width: 576px) {
  .hide-mobile { display: none;}
}

@media (min-width: 768px) {
  .hide-mobile { display: none;}
}

@media (min-width: 992px) {
  .hide-mobile { display: block; }
}

.info-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    padding: 24px 15px;
    text-align: center;
    margin-bottom: 15px;
}
.info-card i {
    font-size: 56px;
}
.info-card.info-card-blue i { color: var(--brand); }
.info-card.info-card-red i { color: var(--brand); }
.info-card h6 {
    text-transform: uppercase;
    margin: 12px 0 4px;
    font-weight: 700;
    letter-spacing: .5px;
}
.info-card p { color: #757575; }

.profile-area { padding: 30px 0; }

/* ==========================================================================
   COLUNA DO PERFIL (avatar + menu)
   ========================================================================== */

/*
 * Duas pecas com o mesmo desenho: cartao branco, canto de 12px, borda fina e
 * sombra baixa. Antes cada item do menu era uma pilula solta com sombra
 * propria - seis sombras empilhadas numa coluna de 250px, o que deixava a
 * lateral mais pesada que o conteudo da pagina ao lado.
 */
.profile-card {
    background: #fff;
    border: solid 1px #eceff1;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    padding: 24px 16px 20px;
    text-align: center;
    margin-bottom: 14px;
}
.profile-card img {
    width: 92px;
    height: 92px;
    border-radius: 12px;
    /* a skin e pixel art: reduzida por interpolacao ela borra */
    image-rendering: pixelated;
    background: #f5f7f9;
    box-shadow: 0 0 0 4px #f5f7f9;
}
.profile-card h5 {
    margin: 14px 0 0;
    font-size: 17px;
    font-weight: 800;
    color: #37474f;
}
.profile-card .profile-card-tag {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b0bec5;
}

/* o menu inteiro num cartao so, com as linhas por dentro */
.profile-nav {
    background: #fff;
    border: solid 1px #eceff1;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    padding: 6px;
    overflow: hidden;
}
.profile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.profile-nav ul.profile-nav-bottom {
    margin-top: 6px;
    padding-top: 6px;
    border-top: solid 1px #f0f2f4;
}
.profile-nav li a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: #546e7a;
    text-decoration: none;
    background: transparent;
    border: none;
    border-radius: 8px;
    box-shadow: none;
    transition: background .15s ease, color .15s ease;
}
/* o icone mora num quadradinho: alinha todos na mesma coluna, independente
   da largura do glifo */
.profile-nav li a i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #90a4ae;
    background: #f5f7f9;
    border-radius: 7px;
    transition: background .15s ease, color .15s ease;
}
.profile-nav li a:hover {
    background: #f7f8fa;
    color: var(--brand);
    transform: none;
}
.profile-nav li a:hover i { color: var(--brand); background: rgba(211,47,47,.09); }

/* a pagina atual: vermelho chapado, sem relevo nem degrade */
.profile-nav li.active a {
    color: #fff;
    background: var(--brand);
    text-shadow: none;
    box-shadow: none;
}
.profile-nav li.active a i,
.profile-nav li.active a:hover,
.profile-nav li.active a:hover i { color: #fff; }
.profile-nav li.active a i { background: rgba(255,255,255,.18); }
.profile-nav li.active a:hover { background: var(--brand-dark); }

/* Sair fica na mesma linha visual dos outros, so que vermelho - sem virar
   um botao com contorno, que competia com o item ativo */
.profile-nav-bottom li a {
    color: var(--brand);
    background: transparent;
    border: none;
    box-shadow: none;
}
.profile-nav-bottom li a i { color: var(--brand); background: rgba(211,47,47,.09); }
.profile-nav-bottom li a:hover { background: rgba(211,47,47,.07); color: var(--brand-dark); }
.profile-nav-bottom li a:hover i { color: var(--brand-dark); }
.profile-nav-bottom li a:active { transform: none; box-shadow: none; }

@media (max-width: 767px) {
    .profile-card { padding: 18px 14px 16px; }
    .profile-card img { width: 76px; height: 76px; }
}

.profile-content {
    background: #fff;
    border-radius: 4px;
    box-shadow: .5px .5px .3px #e0e0e0;
    padding: 25px 30px;
}
.profile-content h3 {
    margin: 0;
}
.profile-content h3 i {
    color: var(--brand);
    margin-right: 6px;
}

@media (min-width: 1200px) {
  .hide-mobile { display: block; }
}

/* ==================== Loja: card lateral + títulos de seção ==================== */
/* ---------------------------------------------------------------------
   Listagem em cards (punições, ranking, equipe): card branco com o
   cabeçalho à esquerda e a lista à direita, mais a coluna lateral de
   info-cards.
   --------------------------------------------------------------------- */
.lista-page { padding: 25px 0 40px; }

.lista-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
    padding: 18px 15px;
    margin-bottom: 20px;
}
.lista-card-head { padding-right: 15px; }
.lista-card-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--brand);
}
.lista-card-sub {
    font-size: 12px;
    color: #9e9e9e;
    margin-top: 4px;
}

.lista-linhas {
    list-style: none;
    margin: 0;
    padding: 0;
}
.lista-linhas li {
    display: flex;
    /* center, e nao baseline: com baseline a cabeca (24px) era alinhada pelo
       pe do texto, entao ela subia e o nick parecia colado no rodape dela */
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: #37474f;
}
.lista-tempo {
    flex: 0 0 82px;
    color: #78909c;
    white-space: nowrap;
}
/* histórico de um jogador mostra data + hora, aí a coluna precisa caber */
.lista-linhas li .lista-tempo:first-child { flex-basis: auto; min-width: 42px; }
.lista-texto { flex: 1; }
.lista-texto a {
    color: var(--brand);
    text-decoration: none;
}
.lista-texto a:hover { text-decoration: underline; }
.lista-texto a:hover { color: var(--brand-dark); }

.lista-vazio {
    color: #9e9e9e;
    font-size: 14px;
    margin: 10px 0;
}

.lista-mais-wrap {
    text-align: center;
    margin-top: 12px;
}
.lista-mais {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    font-size: 13px;
    padding: 6px 18px;
    border-radius: 3px;
    text-decoration: none;
}
.lista-mais:hover {
    background: var(--brand-dark);
    color: #fff;
    text-decoration: none;
}

.lista-busca {
    position: relative;
    margin-bottom: 15px;
}
.lista-busca input {
    width: 100%;
    border: none;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
    padding: 12px 42px 12px 15px;
    font-size: 14px;
    color: #37474f;
}
.lista-busca input:focus {
    outline: none;
    box-shadow: 0 1px 6px rgba(211,47,47,.30);
}
.lista-busca button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 42px;
    border: none;
    background: none;
    color: var(--brand);
    font-size: 18px;
    cursor: pointer;
}

.lista-stats {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    text-align: left;
}
.lista-stats li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #616161;
    padding: 3px 0;
}
.lista-stats b { color: #37474f; }

.info-card.info-card-amber i { color: #f9a825; }

.lista-btn {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    border-radius: 3px;
    padding: 7px 22px;
    font-size: 14px;
    margin-top: 8px;
    text-decoration: none;
}
.lista-btn:hover {
    background: var(--brand-dark);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767px) {
    .lista-card-head { margin-bottom: 10px; }
    .lista-card-title { font-size: 22px; }
}

/* Complementos usados pelas listas de ranking e equipe. */
/* #9e9e9e sobre branco tem contraste 2.8:1 - abaixo do minimo legivel, e era
   por isso que o nome do lider da mafia parecia apagado. Este tom chega a
   4.6:1 sem competir com o nome da mafia, que continua sendo o destaque. */
.lista-secundario {
    color: #546e7a;
    font-size: 12px;
    margin-left: 6px;
}
/* o nick dentro do secundario (ex: "lider: Fulano") fica um passo mais forte */
.lista-secundario b, .lista-secundario strong {
    color: #37474f;
    font-weight: 600;
}
a.lista-secundario:hover { color: var(--brand); text-decoration: none; }
.lista-avatar {
    width: 24px;
    height: 24px;
    border-radius: 3px;
    vertical-align: middle;
}


/* Card com a arte de fundo atrás do texto (ranking e barra do Discord):
   a imagem cobre o card inteiro e o degradê a dissolve em branco até o fim
   do texto, com o conteúdo por cima de tudo. */
.lista-card-arte {
    position: relative;
    overflow: hidden;
}
.lista-card-arte-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Degradê na horizontal: o lado do texto fica branco e a arte só aparece
   na ponta direita do card. */
.lista-card-arte-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        #fff 0%,
        rgba(255,255,255,.94) 50%,
        rgba(255,255,255,.45) 78%,
        rgba(255,255,255,0) 100%);
}
.lista-card-conteudo {
    position: relative;
    z-index: 1;
}

/* O texto continua escuro: o degradê clareia a arte o bastante pra ele
   ficar legível do topo até o fim do card. */
.lista-card-arte .lista-texto a { font-weight: 600; }



/* Head do jogador / brasão da mafia antes do nome nas linhas do ranking. */
.lista-linhas li .lista-avatar {
    margin-right: 8px;
    flex-shrink: 0;
    image-rendering: pixelated;
}
.lista-icone-mafia {
    color: var(--brand);
    font-size: 18px;
    width: 24px;
    text-align: center;
    margin-right: 8px;
    flex-shrink: 0;
}

/* ------------------------------------------------------------------------
   Tabela comparativa dos ranks (menu VIP's).
   Segue a cara clara do resto do site: cartão branco, texto escuro e a cor
   do rank só nos detalhes (borda do topo, nome e faixa do rodapé). Cada
   coluna carrega a própria cor em --rank-cor, vinda do cadastro no painel.
   ------------------------------------------------------------------------ */
.ranks-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    background: #fff;
}
.ranks-tabela {
    width: 100%;
    border-collapse: collapse;
    min-width: 820px;
}
.ranks-tabela th,
.ranks-tabela td {
    text-align: center;
    vertical-align: middle;
}
.ranks-canto {
    background: #fff;
    border: none;
    width: 24%;
    min-width: 190px;
}

/* topo de cada coluna */
.ranks-coluna {
    background: #fff;
    color: #37474f;
    padding: 26px 16px 22px;
    border-left: 1px solid rgba(0,0,0,.06);
    border-top: 4px solid var(--rank-cor, #d32f2f);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.ranks-coluna-base {
    background: #f5f6f8;
    border-top-color: #cfd8dc;
}
.ranks-arte {
    width: 128px;
    height: 128px;
    object-fit: contain;
    margin-bottom: 12px;
}
.ranks-nome {
    font-size: 24px;
    font-weight: 700;
    color: var(--rank-cor, #37474f);
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1.1;
}
.ranks-coluna-base .ranks-nome { color: #90a4ae; font-size: 19px; }
/* o "+" do VIP+ tem cor própria, definida no cadastro do rank */
.ranks-sufixo { font-weight: 700; }
.ranks-desc {
    font-size: 13px;
    font-weight: 400;
    color: #78909c;
    line-height: 1.55;
    margin: 8px auto 0;
    max-width: 240px;
}

/* preço e botão: só no rodapé da tabela */
.ranks-pacotes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ranks-pacote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 9px 8px;
    background: #fafafa;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 5px;
}
.ranks-pacote-nome {
    font-size: 11px;
    font-weight: 600;
    color: #90a4ae;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.ranks-pacote-preco {
    font-size: 18px;
    font-weight: 700;
    color: #2e7d32;
}
.ranks-pacote .btn-success {
    width: 100%;
    min-height: 34px;
    margin-top: 6px;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background: #4caf50;
    border: 1px solid #429946;
    border-radius: 4px;
    box-shadow: none;
    color: #fff;
}
.ranks-pacote .btn-success:hover { background: #47a54b; border-color: #3d8b41; color: #fff; filter: none; }
.ranks-pacote .btn-success:active { background: #3f9243; box-shadow: none; transform: none; }
.ranks-sem-pacote {
    font-size: 12px;
    color: #b0bec5;
    padding: 10px 0;
}

/* faixa de grupo ("Vantagens gerais", "Comandos exclusivos"...) */
.ranks-grupo td {
    background: #eceff1;
    color: #455a64;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 9px 16px;
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

/* linhas de privilégio */
.ranks-linha-titulo {
    text-align: left;
    font-size: 12.5px;
    font-weight: 600;
    color: #37474f;
    padding: 11px 14px;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.05);
    line-height: 1.4;
}
.ranks-linha-titulo span { vertical-align: middle; }
.ranks-info {
    color: #b0bec5;
    font-size: 14px;
    margin-right: 5px;
    cursor: help;
    vertical-align: middle;
}
.ranks-celula {
    background: #fff;
    color: #37474f;
    border-left: 1px solid rgba(0,0,0,.05);
    border-bottom: 1px solid rgba(0,0,0,.05);
    padding: 11px 10px;
    font-size: 13px;
    font-weight: 700;
}
.ranks-celula-base { background: #f5f6f8; color: #78909c; }
/* zebra discreta pra não perder a linha em tabela longa */
.ranks-tabela tbody tr:nth-child(even) .ranks-celula { background: #fafafa; }
.ranks-tabela tbody tr:nth-child(even) .ranks-celula-base { background: #f0f1f4; }
.ranks-tabela tbody tr:nth-child(even) .ranks-linha-titulo { background: #fafafa; }

.ranks-sim { color: #4caf50; font-size: 17px; }
.ranks-nao { color: #cfd8dc; font-size: 15px; }
.ranks-texto { color: #37474f; }
.ranks-celula-base .ranks-texto { color: #90a4ae; }
.ranks-vazio {
    padding: 24px;
    color: #9e9e9e;
    font-size: 13px;
    background: #fff;
}
.ranks-rodape .ranks-coluna {
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 4px solid var(--rank-cor, #d32f2f);
    padding: 14px 12px 16px;
}
.ranks-rodape .ranks-coluna-base { border-bottom-color: #cfd8dc; }

/* ------------------------------------------------------------------------
   Cartões da aba Gold - mesmo cartão branco dos pacotes, com o preço em tom
   de ouro pra manter a identidade da moeda.
   ------------------------------------------------------------------------ */
.gold-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}
.gold-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 18px 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-top: 3px solid #f0b429;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    transition: transform .15s ease, box-shadow .15s ease;
}
.gold-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
/* uma das artes é deitada (1536x1024) e as outras quadradas: caixa mais
   larga que alta com object-fit deixa as três no mesmo tamanho aparente */
.gold-card-arte {
    width: 100%;
    max-width: 150px;
    height: 112px;
    object-fit: contain;
    margin-bottom: 14px;
}
.gold-card-nome {
    font-size: 17px;
    font-weight: 700;
    color: #37474f;
    margin-bottom: 8px;
}
.gold-card-desc {
    font-size: 12.5px;
    line-height: 1.55;
    color: #78909c;
    margin-bottom: 14px;
    flex: 1;
}
.gold-card-preco {
    font-size: 20px;
    font-weight: 700;
    color: #c9901a;
    margin-bottom: 14px;
}
.gold-card-btn {
    width: 100%;
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    background: #4caf50;
    border: 1px solid #429946;
    border-radius: 4px;
    box-shadow: none;
    color: #fff;
}
.gold-card-btn:hover { background: #47a54b; border-color: #3d8b41; color: #fff; filter: none; }
.gold-card-btn:active { background: #3f9243; box-shadow: none; transform: none; }

@media (max-width: 767px) {
    .ranks-canto { min-width: 150px; width: 32%; }
    .ranks-arte { width: 84px; height: 84px; }
    .ranks-nome { font-size: 19px; }
    .ranks-coluna { padding: 18px 10px 16px; }
}



/* ==========================================================================
   CHECKOUT / CARRINHO
   Mesmo esqueleto do design de referencia (identificacao -> produtos ->
   forma de pagamento), so que na paleta clara do site: fundo branco e
   destaque no vermelho da marca no lugar do laranja.
   ========================================================================== */

.checkout-bloco { padding: 0; overflow: hidden; }

.checkout-bloco-titulo {
    padding: 16px 22px;
    font-size: 20px;
    font-weight: 700;
    color: #212121;
    border-bottom: 1px solid #eee;
}
.checkout-bloco-titulo span {
    font-size: 12px;
    font-weight: 400;
    color: #9e9e9e;
    text-transform: none;
}

/* ---------- Identificacao ---------- */
.checkout-ident {
    display: flex;
    align-items: flex-start;
    padding: 22px;
}
.checkout-avatar {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 4px;
}
/* quadrado fixo + contain: a cabeça nunca deforma, mesmo se o serviço de
   avatar mudar o tamanho do desenho que devolve (foi o que aconteceu com o
   /cube, que entrega um cubo achatado de 100x87 dentro de uma imagem
   quadrada - a cabeça saía esticada pros lados) */
.checkout-avatar img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    image-rendering: pixelated;
}
.checkout-ident-campos { flex: 1; min-width: 0; }
.checkout-ident-linha { display: flex; }
.checkout-ident-linha .checkout-campo { flex: 1; min-width: 0; }
.checkout-ident-linha .checkout-campo + .checkout-campo { margin-left: 16px; }

.checkout-campo { margin-bottom: 14px; }
.checkout-campo label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9e9e9e;
    margin-bottom: 5px;
}
.checkout-campo label i { font-style: italic; text-transform: none; letter-spacing: 0; }

.checkout-input {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    color: #212121;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: border-color .15s, box-shadow .15s;
}
.checkout-input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(211,47,47,.12);
}
.checkout-input:disabled { background: #f7f7f7; color: #616161; }
.checkout-input::placeholder { color: #bdbdbd; }

/* Aviso do nick: verde quando o servidor confirma, vermelho quando nao acha.
   Quem compra de presente digita o nick de outra pessoa, e o erro so
   apareceria depois do pagamento - por isso a resposta e imediata. */
.checkout-nick-status {
    display: block;
    min-height: 18px;
    margin-top: 6px;
    font-size: 12px;
    color: #9e9e9e;
}
.checkout-nick-status.nick-ok { color: #2e7d32; }
.checkout-nick-status.nick-erro { color: #c62828; }
.checkout-nick-status.nick-checando { color: #9e9e9e; font-style: italic; }

.checkout-presente {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 13px;
    color: #616161;
    cursor: pointer;
    user-select: none;
}
.checkout-presente input { width: 16px; height: 16px; cursor: pointer; }
.checkout-presente-aviso {
    margin: 6px 0 0;
    padding: 8px 10px;
    font-size: 12px;
    color: #616161;
    background: #f7f7f7;
    border-left: 3px solid var(--brand);
    border-radius: 3px;
}


/* O nick e o campo que mais importa aqui: fica maior e com a borda da marca,
   como o destaque laranja da referencia. */
.checkout-input-grande {
    padding: 14px 16px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid var(--brand);
}
.checkout-input-grande:focus { box-shadow: 0 0 0 4px rgba(211,47,47,.15); }

/* ---------- Tabela de produtos ---------- */
.checkout-tabela-head,
.checkout-linha {
    display: flex;
    align-items: center;
    padding: 0 22px;
}
.checkout-tabela-head {
    height: 44px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9e9e9e;
}
.checkout-tabela-head .col-produto { flex: 1; padding-left: 60px; }
.checkout-tabela-head .col-qtd { width: 144px; text-align: center; }
.checkout-tabela-head .col-valor { width: 124px; text-align: right; }

.checkout-linha {
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f2f2f2;
}
.checkout-linha:last-of-type { border-bottom: none; }

.checkout-lixeira {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-right: 14px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 4px;
    color: #bdbdbd;
    font-size: 17px;
    cursor: pointer;
    transition: color .15s, background .15s;
}
.checkout-lixeira:hover { color: var(--brand); background: #fdeaea; }

.checkout-produto {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}
.checkout-produto-img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 4px;
    color: var(--brand);
    font-size: 22px;
}
.checkout-produto-img img {
    max-width: 38px;
    max-height: 38px;
    image-rendering: pixelated;
}
.checkout-produto-texto { min-width: 0; }
.checkout-produto-nome {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #212121;
    line-height: 1.2;
}
.checkout-produto-unit {
    display: block;
    font-size: 12px;
    color: #9e9e9e;
    margin-top: 2px;
}
.checkout-produto-unit em { font-style: normal; color: #bdbdbd; }

/* Stepper de quantidade */
.checkout-qtd {
    width: 144px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkout-qtd-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    font-size: 16px;
    line-height: 1;
    color: #616161;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}
.checkout-qtd-btn:hover { background: #ececec; color: #212121; }
.checkout-qtd-mais {
    background: var(--brand);
    border-color: var(--brand-dark);
    color: #fff;
    font-weight: 700;
}
.checkout-qtd-mais:hover { background: var(--brand-dark); border-color: var(--brand-darker); color: #fff; }
.checkout-qtd-valor {
    width: 46px;
    height: 32px;
    margin: 0 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #212121;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}
.checkout-qtd-valor:focus { outline: none; border-color: var(--brand); }
.checkout-qtd-unico {
    font-size: 12px;
    color: #9e9e9e;
    font-style: italic;
}

.checkout-valor {
    width: 124px;
    flex-shrink: 0;
    text-align: right;
    font-size: 17px;
    font-weight: 700;
    color: #212121;
}

.checkout-tabela-pe {
    padding: 12px 22px;
    background: #fafafa;
    border-top: 1px solid #eee;
}
.checkout-link {
    padding: 0;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    cursor: pointer;
}
.checkout-link:hover { color: var(--brand-dark); text-decoration: underline; }

/* ---------- Forma de pagamento ---------- */
.checkout-pagamento {
    display: flex;
    align-items: stretch;
    padding: 26px 22px;
}
.checkout-pagamento-texto { flex: 1; min-width: 0; padding-right: 30px; }
.checkout-pagamento-texto h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.05;
    color: #212121;
    text-transform: uppercase;
    margin: 0 0 12px;
}
.checkout-pagamento-texto p {
    font-size: 13px;
    color: #757575;
    margin-bottom: 8px;
}
.checkout-selo {
    display: inline-block;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #2e7d32;
}

.checkout-metodos {
    display: flex;
    flex-shrink: 0;
}
.checkout-metodo { margin: 0; cursor: pointer; }
.checkout-metodo + .checkout-metodo { margin-left: 14px; }
.checkout-metodo input { position: absolute; opacity: 0; pointer-events: none; }

.checkout-metodo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 148px;
    min-height: 172px;
    padding: 30px 12px 0;
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    transition: border-color .15s, box-shadow .15s;
}
.checkout-metodo:hover .checkout-metodo-card { border-color: #d0d0d0; }
.checkout-metodo input:checked + .checkout-metodo-card {
    border-color: var(--brand);
    box-shadow: 0 4px 14px rgba(211,47,47,.18);
}
.checkout-metodo input:disabled + .checkout-metodo-card {
    opacity: .45;
    cursor: not-allowed;
}

/* Etiqueta que cavalga a borda de cima (RECOMENDADO / ESTRANGEIRO) */
.checkout-metodo-tag {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
}
.tag-recomendado { background: var(--brand); }
.tag-estrangeiro { background: #455a64; }

.checkout-metodo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 2px 7px;
    background: #f5f5f5;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #757575;
}
.checkout-metodo input:checked + .checkout-metodo-card .checkout-metodo-badge {
    background: #fdeaea;
    color: var(--brand);
}

.checkout-metodo-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0 12px;
}
.checkout-metodo-logo img {
    max-width: 62px;
    max-height: 54px;
    filter: grayscale(1);
    opacity: .55;
    transition: filter .15s, opacity .15s;
}
.checkout-metodo:hover .checkout-metodo-logo img,
.checkout-metodo input:checked + .checkout-metodo-card .checkout-metodo-logo img {
    filter: none;
    opacity: 1;
}

.checkout-metodo-nome {
    width: 100%;
    padding: 9px 0;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #616161;
}
.checkout-metodo input:checked + .checkout-metodo-card .checkout-metodo-nome { color: var(--brand); }

/* ---------- Aviso do metodo / resumo ---------- */
.checkout-aviso {
    display: flex;
    padding: 18px 22px;
}
.checkout-aviso > i {
    font-size: 28px;
    color: var(--brand);
    flex-shrink: 0;
    margin-right: 14px;
}
.checkout-aviso strong { display: block; font-size: 14px; color: #212121; margin-bottom: 3px; }
.checkout-aviso p { font-size: 13px; color: #757575; margin: 0; }

#cartao-fields { padding: 18px 22px 4px; }
.mp-field { height: 42px; }

.checkout-resumo { padding: 20px 22px; }
.checkout-resumo-linha {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 14px;
    color: #616161;
    padding: 6px 0;
}
.checkout-resumo-total {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    font-size: 15px;
    font-weight: 700;
    color: #212121;
}
.checkout-resumo-total span:last-child { font-size: 22px; color: var(--brand); }

.checkout-termos {
    display: flex;
    align-items: flex-start;
    margin: 14px 0 16px;
    font-size: 13px;
    font-weight: 400;
    color: #757575;
    cursor: pointer;
}
.checkout-termos input { margin-top: 3px; margin-right: 8px; }
.checkout-termos a { color: var(--brand); font-weight: 600; }

.checkout-finalizar {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--brand);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s;
}
.checkout-finalizar:hover { background: var(--brand-dark); color: #fff; }
.checkout-finalizar:disabled { background: #bdbdbd; cursor: not-allowed; }
.checkout-finalizar-menor { width: auto; padding: 12px 28px; margin: 0 auto; }

/* ---------- Carrinho vazio ---------- */
.checkout-vazio { text-align: center; padding: 50px 20px; }
.checkout-vazio > i { font-size: 52px; color: #e0e0e0; }
.checkout-vazio h3 { font-size: 22px; font-weight: 700; color: #212121; margin: 14px 0 4px; }
.checkout-vazio p { font-size: 13px; color: #9e9e9e; margin-bottom: 20px; }

/* ---------- Telas menores ---------- */
@media (max-width: 991px) {
    .checkout-pagamento { display: block; }
    .checkout-pagamento-texto { padding-right: 0; margin-bottom: 22px; }
    .checkout-metodos { flex-wrap: wrap; }
    .checkout-metodo-card { width: 132px; }
}
@media (max-width: 767px) {
    .checkout-ident { display: block; text-align: center; }
    .checkout-avatar { margin: 0 auto 16px; }
    .checkout-ident-campos { text-align: left; }
    .checkout-ident-linha { display: block; }
    .checkout-ident-linha .checkout-campo + .checkout-campo { margin-left: 0; }
    .checkout-tabela-head { display: none; }
    .checkout-linha { flex-wrap: wrap; }
    .checkout-produto { flex: 1 1 100%; order: 1; margin-bottom: 10px; }
    .checkout-lixeira { order: 3; margin-right: 0; }
    .checkout-qtd { order: 2; width: auto; margin-left: auto; }
    .checkout-valor { order: 4; width: auto; margin-left: auto; }
    .checkout-metodo { margin-bottom: 14px; }
}

/* ==========================================================================
   NOTICIA (pagina inteira) e CHANGELOG
   ========================================================================== */

.noticia-page { padding: 24px 0 40px; }

.noticia-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
    overflow: hidden;
}

/* A capa e sempre 800x160 (proporcao 5:1). A imagem cadastrada pode vir de
   qualquer tamanho, entao a moldura manda: cover recorta o excesso em vez de
   esticar a arte. */
.noticia-capa {
    width: 100%;
    aspect-ratio: 5 / 1;
    max-height: 160px;
    overflow: hidden;
    background: #eceff1;
}
.noticia-capa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.noticia-corpo { padding: 24px 28px 20px; }

.noticia-titulo {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    color: #212121;
    text-transform: uppercase;
}

.noticia-autor {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid #eee;
}
.noticia-autor img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    image-rendering: pixelated;
}
.noticia-autor > div { display: flex; flex-direction: column; line-height: 1.3; }
.noticia-autor-nome { font-size: 14px; font-weight: 700; color: #37474f; }
.noticia-autor-data { font-size: 12px; color: #78909c; }

.noticia-texto { font-size: 14px; line-height: 1.7; color: #37474f; }
.noticia-texto img { max-width: 100%; height: auto; border-radius: 4px; }

/* --- reacoes --- */
.noticia-reacoes {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #eee;
}
.noticia-reacoes-botoes { display: flex; flex-wrap: wrap; gap: 8px; }

.reacao {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 14px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: transform .1s ease, background .15s, border-color .15s;
}
.reacao:hover:not(:disabled) { background: #eceff1; transform: translateY(-1px); }
.reacao:disabled { cursor: not-allowed; opacity: .55; }
.reacao.ativo {
    background: rgba(211,47,47,.08);
    border-color: var(--brand);
}
.reacao-emoji { font-size: 17px; line-height: 1; }
.reacao-contagem { font-size: 13px; font-weight: 700; color: #546e7a; min-width: 8px; }
.reacao.ativo .reacao-contagem { color: var(--brand); }

.noticia-reacoes-rodape {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    font-size: 12px;
    color: #78909c;
}

/* --- changelog --- */
.changelog-page { padding: 24px 0 40px; }
.changelog-dia {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}
.changelog-data {
    flex: 0 0 132px;
    text-align: right;
    padding-top: 18px;
}
.changelog-data span {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #fff;
    background: var(--brand);
    border-radius: 20px;
}
.changelog-blocos {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
    padding: 18px 22px;
}
.changelog-bloco + .changelog-bloco { margin-top: 16px; padding-top: 16px; border-top: 1px solid #f0f0f0; }
.changelog-titulo {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: #37474f;
}
.changelog-lista { list-style: none; margin: 0; padding: 0; }
.changelog-lista li {
    position: relative;
    padding: 4px 0 4px 18px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #546e7a;
}
/* marcador proprio no lugar da bolinha padrao, na cor da marca */
.changelog-lista li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    opacity: .55;
}

@media (max-width: 767px) {
    .changelog-dia { flex-direction: column; gap: 8px; }
    .changelog-data { flex: none; text-align: left; padding-top: 0; }
    .noticia-corpo { padding: 18px; }
    .noticia-titulo { font-size: 21px; }
}

/* ==========================================================================
   HISTORICO DE PEDIDOS / MINHAS COMPRAS
   ========================================================================== */

.pedidos-tabela-wrap {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
    overflow-x: auto;
}
.pedidos-tabela {
    margin: 0;
    font-size: 13px;
}
.pedidos-tabela thead th {
    border-top: none;
    border-bottom: 2px solid #f0f0f0;
    padding: 14px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9e9e9e;
    white-space: nowrap;
}
.pedidos-tabela tbody td, .pedidos-tabela tbody th {
    padding: 14px 16px;
    vertical-align: middle;
    border-top: 1px solid #f5f5f5;
    font-weight: 400;
    color: #37474f;
}
.pedidos-tabela tbody tr:hover { background: #fafafa; }

.pedido-codigo {
    font-family: monospace;
    font-size: 12px;
    color: #78909c !important;
    cursor: help;
}
.pedido-data { white-space: nowrap; color: #78909c !important; }
.pedido-valor { font-weight: 700; white-space: nowrap; }

/* Etiqueta de situacao: a cor diz o que aconteceu antes de a pessoa ler */
.pedido-status {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-radius: 20px;
    white-space: nowrap;
}
.pedido-status-verde    { background: rgba(46,125,50,.12);  color: #2e7d32; }
.pedido-status-amarelo  { background: rgba(245,124,0,.14);  color: #ef6c00; }
.pedido-status-vermelho { background: rgba(198,40,40,.12);  color: #c62828; }
.pedido-status-roxo     { background: rgba(106,27,154,.12); color: #6a1b9a; }
.pedido-status-cinza    { background: #f0f0f0;              color: #757575; }

.btn-carrinho {
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand);
    background: transparent;
    border: 1px solid rgba(211,47,47,.3);
    border-radius: 20px;
    cursor: pointer;
    transition: background .15s, border-color .15s;
}
.btn-carrinho:hover { background: rgba(211,47,47,.06); border-color: var(--brand); }

/* Estado vazio: em vez de uma tabela so com cabecalho e uma frase solta */
.pedidos-vazio {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
    padding: 44px 24px;
    text-align: center;
}
.pedidos-vazio i { font-size: 44px; color: #cfd8dc; }
.pedidos-vazio h4 { margin: 14px 0 6px; font-size: 17px; font-weight: 700; color: #37474f; }
.pedidos-vazio p { max-width: 420px; margin: 0 auto 18px; font-size: 13px; color: #78909c; }

@media (max-width: 767px) {
    .pedidos-tabela thead th, .pedidos-tabela tbody td, .pedidos-tabela tbody th { padding: 10px; }
    .pedido-codigo { font-size: 11px; }
}

/* ==========================================================================
   BOTAO DE ACAO (perfil) - o mesmo desenho dos botoes da loja
   ========================================================================== */

/*
 * Botao chapado, na cor da marca.
 *
 * Sem relevo, sem gradiente e sem sombra projetada: uma cor solida so. O
 * feedback do clique e o proprio tom escurecendo, e nao o botao "afundando" -
 * por isso nao ha transform nenhum aqui.
 */
.btn-acao {
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    background: var(--brand);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: none;
    transition: background-color .12s ease, color .12s ease;
}
.btn-acao:hover {
    color: #fff;
    text-decoration: none;
    background: var(--brand-dark);
}
.btn-acao:active {
    background: var(--brand-darker);
}
.btn-acao:focus-visible {
    outline: 3px solid rgba(211,47,47,.35);
    outline-offset: 2px;
}
.btn-acao i { font-size: 17px; }

/* azul do Discord: a cor da propria plataforma, pra quem ve ja saber onde vai
   cair antes de clicar */
.btn-acao-discord { background: #5865f2; }
.btn-acao-discord:hover { background: #4752c4; }
.btn-acao-discord:active { background: #3c45a5; }

/* secundario: so o contorno, pra nao competir com a acao principal */
.btn-acao-contorno {
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
}
.btn-acao-contorno:hover { background: var(--brand); color: #fff; }
.btn-acao-contorno:active { background: var(--brand-dark); color: #fff; }

.btn-acao + .btn-acao { margin-left: 8px; }

/*
 * Linha de botoes lado a lado (suporte).
 *
 * Como texto, dois inline-flex se alinham pela LINHA DE BASE, e o botao de
 * contorno tem 2px de borda empurrando o texto dele pra baixo - resultado: as
 * duas caixas saiam desencontradas na vertical. Num container flex o
 * alinhamento passa a ser pelo centro das caixas, e o problema some.
 */
.suporte-acoes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 575px) {
    .btn-acao { width: 100%; }
    .btn-acao + .btn-acao { margin: 8px 0 0; }
    .suporte-acoes { flex-direction: column; align-items: stretch; }
}

/* ==========================================================================
   ENTRAR / CRIAR CONTA
   ========================================================================== */

.acesso-page {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 0 56px;
}

.acesso-card {
    flex: 0 0 420px;
    max-width: 420px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.10);
    padding: 30px 32px 24px;
}

.acesso-topo { text-align: center; margin-bottom: 22px; }
.acesso-logo {
    width: 62px;
    height: 62px;
    image-rendering: pixelated;
    margin-bottom: 10px;
}
.acesso-titulo {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 800;
    color: #212121;
}
.acesso-sub { margin: 0; font-size: 13px; color: #90a4ae; }

/* Abas como interruptor: o fundo cinza e a pastilha branca dizem sozinhos
   que sao dois lados da mesma coisa, sem parecer dois botoes de acao */
.acesso-abas {
    display: flex;
    gap: 4px;
    padding: 4px;
    margin-bottom: 22px;
    background: #f0f2f5;
    border-radius: 10px;
}
.acesso-aba {
    flex: 1;
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #78909c;
    text-decoration: none;
    border-radius: 8px;
    transition: background .15s, color .15s, box-shadow .15s;
}
.acesso-aba:hover { color: #37474f; text-decoration: none; }
.acesso-aba.active {
    background: #fff;
    color: var(--brand);
    box-shadow: 0 1px 3px rgba(0,0,0,.12);
}

.acesso-campo { margin-bottom: 16px; }
.acesso-campo label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9e9e9e;
}

/* O icone fica DENTRO do campo, e o padding da esquerda abre espaco pra ele */
.acesso-input { position: relative; }
.acesso-input i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #b0bec5;
    pointer-events: none;
    transition: color .15s;
}
.acesso-input .form-control {
    width: 100%;
    padding: 12px 14px 12px 40px;
    font-size: 14px;
    color: #212121;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color .15s, box-shadow .15s;
}
.acesso-input .form-control:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(211,47,47,.12);
}
.acesso-input .form-control:focus + i,
.acesso-input:focus-within i { color: var(--brand); }
.acesso-input .form-control::placeholder { color: #cfd8dc; }

.acesso-dica {
    display: block;
    margin-top: 6px;
    font-size: 11.5px;
    color: #90a4ae;
}

.acesso-enviar { width: 100%; margin-top: 6px; }

.acesso-form .alert {
    border: none;
    border-radius: 8px;
    font-size: 13px;
    padding: 10px 14px;
}

.acesso-rodape {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    font-size: 12.5px;
    color: #90a4ae;
}
.acesso-rodape a { color: var(--brand); font-weight: 600; }

/* Coluna lateral: diz o que a conta serve, pra quem chegou sem saber */
.acesso-lado {
    flex: 0 0 300px;
    max-width: 300px;
    padding-top: 6px;
}
.acesso-lado-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    margin-bottom: 12px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.acesso-lado-item i { font-size: 22px; color: var(--brand); }
.acesso-lado-item b { display: block; font-size: 13.5px; color: #37474f; margin-bottom: 2px; }
.acesso-lado-item span { font-size: 12.5px; line-height: 1.5; color: #90a4ae; }

@media (max-width: 991px) {
    .acesso-page { flex-direction: column; align-items: center; padding: 24px 0 40px; }
    .acesso-card, .acesso-lado { flex: 1 1 auto; width: 100%; max-width: 460px; }
}
@media (max-width: 575px) {
    .acesso-card { padding: 22px 18px 18px; }
}

/* ==========================================================================
   SEGURANCA DA CONTA
   ========================================================================== */

.seguranca-aviso {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 22px;
    background: rgba(211,47,47,.05);
    border-left: 3px solid var(--brand);
    border-radius: 4px;
}
.seguranca-aviso i { font-size: 20px; color: var(--brand); }
.seguranca-aviso b { display: block; font-size: 13.5px; color: #37474f; margin-bottom: 2px; }
.seguranca-aviso span { font-size: 12.5px; line-height: 1.55; color: #78909c; }
.seguranca-aviso code, .seguranca-dicas code {
    padding: 1px 5px;
    font-size: 12px;
    background: #eceff1;
    border-radius: 3px;
    color: #546e7a;
}

/* dados em duas colunas: cabem numa olhada, sem virar tabela */
.seguranca-dados {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-bottom: 26px;
    background: #eceff1;
    border-radius: 6px;
    overflow: hidden;
}
.seguranca-dado { background: #fff; padding: 14px 16px; }
.seguranca-rotulo {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #b0bec5;
    margin-bottom: 3px;
}
.seguranca-valor { font-size: 13.5px; color: #37474f; }
.seguranca-pendente { color: #ef6c00; font-style: normal; font-size: 12.5px; }

.seguranca-titulo {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    color: #37474f;
}
.seguranca-form { max-width: 420px; }
.seguranca-form .alert { border: none; border-radius: 8px; font-size: 13px; padding: 10px 14px; }
.seguranca-form .btn-acao { width: 100%; margin-top: 6px; }

.seguranca-dicas {
    margin-top: 28px;
    padding: 16px 18px;
    background: #fafafa;
    border-radius: 6px;
}
.seguranca-dicas h5 {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #78909c;
}
.seguranca-dicas h5 i { color: #ef6c00; margin-right: 4px; }
.seguranca-dicas ul { margin: 0; padding-left: 18px; }
.seguranca-dicas li { font-size: 12.5px; line-height: 1.7; color: #78909c; }

@media (max-width: 767px) {
    .seguranca-dados { grid-template-columns: 1fr; }
}

/* aviso das regras da senha, embaixo de cada campo */
.senha-regra {
    display: block;
    margin-top: 6px;
    font-size: 11.5px;
    color: #90a4ae;
    min-height: 15px;
}
.senha-regra.regra-ok { color: #2e7d32; }
.senha-regra.regra-ok::before { content: "\2713  "; font-weight: 700; }
.senha-regra.regra-erro { color: #c62828; }
.senha-regra.regra-erro::before { content: "\2715  "; font-weight: 700; }

/* ==========================================================================
   IMAGEM DENTRO DA NOTICIA
   ==========================================================================
   O editor grava a largura em pixel no proprio <img> (ex: width: 984px), que
   nao tem relacao com a largura do cartao: sobrava faixa de um lado e a
   imagem era cortada do outro. Aqui a imagem sangra ate as bordas - o
   "+48px" e a soma do respiro dos dois lados do cartao, desfeito pela margem
   negativa. So vale pra imagem sozinha no paragrafo (a capa do post); imagem
   no meio do texto continua no tamanho normal.
   ========================================================================== */

.feed .body p > img:only-child,
.noticia-texto p > img:only-child {
    display: block;
    max-width: none;
    height: auto !important;
    border-radius: 0;
}
.feed .body p > img:only-child {
    width: calc(100% + 48px) !important;
    margin-left: -24px;
    margin-right: -24px;
}
/* Na pagina interna o texto e limitado a 900px pra nao virar linha
   quilometrica de ler. O limite passa a valer paragrafo a paragrafo, e nao no
   bloco inteiro - assim o texto continua confortavel e SO a imagem vai de
   ponta a ponta do cartao. */
.noticia-texto { max-width: none; }
.noticia-texto > p,
.noticia-texto > ul,
.noticia-texto > ol,
.noticia-texto > h1, .noticia-texto > h2, .noticia-texto > h3,
.noticia-texto > h4, .noticia-texto > h5, .noticia-texto > blockquote {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.noticia-texto > p:has(> img:only-child) {
    max-width: none;
}
.noticia-texto p > img:only-child {
    width: calc(100% + 56px) !important;
    margin-left: -28px;
    margin-right: -28px;
}

/* o paragrafo que so tem a imagem nao precisa de espaco em volta */
.feed .body p:has(> img:only-child),
.noticia-texto p:has(> img:only-child) {
    margin: 0 0 14px;
}


/* ==========================================================================
   TOP COMPRADORES (lateral da home)
   ========================================================================== */

/* card claro, igual aos outros cartoes de conteudo do site */
.topc-card {
    background: #fff;
    border: solid 1px #eceff1;
    border-top: solid 3px var(--brand);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    margin-bottom: 20px;
    overflow: hidden;
}
.topc-topo { padding: 16px 18px 12px; }
.topc-titulo {
    font-size: 16px;
    font-weight: 800;
    color: #37474f;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.topc-sub { font-size: 11.5px; color: #b0bec5; margin-top: 2px; }

.topc-lista {
    margin: 0 12px 14px;
    padding: 6px;
    border-radius: 8px;
    background: #fafafa;
    border: solid 1px #f0f2f4;
}
.topc-linha {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 6px;
}
.topc-linha + .topc-linha { margin-top: 2px; }
/* a head vem do minotar em 32px e e desenhada em 28: pixel art reduzida
   fica limpa, ampliada fica borrada */
.topc-head {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    image-rendering: pixelated;
    flex-shrink: 0;
}
.topc-nick {
    font-size: 13px;
    font-weight: 700;
    color: #37474f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.topc-lugar { font-weight: 600; color: #b0bec5; }
.topc-valor {
    margin-left: auto;
    font-size: 13px;
    font-weight: 800;
    color: #2e7d32;
    white-space: nowrap;
}
/* so o primeiro ganha destaque - se todos brilham, ninguem brilha */
.topc-pos-1 { background: #fff8e1; }
.topc-pos-1 .topc-nick { color: #8d6e00; }

.topc-vazio {
    padding: 14px 10px;
    font-size: 12.5px;
    line-height: 1.6;
    color: #90a4ae;
    text-align: center;
}

.topc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 12px 14px;
    min-height: 42px;
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #fff;
    background: var(--brand);
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s ease;
}
.topc-cta:hover { background: var(--brand-dark); color: #fff; text-decoration: none; }

/* linha dos termos quando o comprador tenta finalizar sem marcar */
.checkout-termos-faltando {
    padding: 8px 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 6px;
    color: var(--brand-dark);
    background: rgba(211,47,47,.08);
    border: solid 1px rgba(211,47,47,.35);
    animation: termos-piscar .5s ease 2;
}
.checkout-termos-faltando a { color: var(--brand-dark); }
@keyframes termos-piscar {
    0%, 100% { background: rgba(211,47,47,.08); }
    50%      { background: rgba(211,47,47,.22); }
}

/* ==========================================================================
   PAGINA DE VOTACAO
   ========================================================================== */

.votar-page { padding-bottom: 40px; }
.votar-topo { margin-bottom: 22px; }
.votar-lista { display: flex; flex-direction: column; gap: 12px; }
.votar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 10px;
    background: #fff;
    border: solid 1px #eceff1;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
.votar-item:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.1); text-decoration: none; }
.votar-item-marca { width: 6px; height: 38px; border-radius: 4px; flex-shrink: 0; }
.votar-item-texto { display: flex; flex-direction: column; }
.votar-item-texto b { font-size: 15px; color: #37474f; }
.votar-item-texto span { font-size: 12px; color: #90a4ae; }
.votar-item-acao {
    margin-left: auto;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #fff;
    background: var(--brand);
    border-radius: 8px;
}
.votar-item:hover .votar-item-acao { background: var(--brand-dark); }

.votar-caixa {
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    border: solid 1px #eceff1;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.votar-caixa h6 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #90a4ae;
    margin-bottom: 12px;
}
.votar-passos { padding-left: 18px; margin: 0 0 14px; }
.votar-passos li { font-size: 13px; color: #546e7a; margin-bottom: 6px; line-height: 1.5; }
.votar-nick { font-size: 12.5px; color: #78909c; margin-bottom: 14px; }
.votar-premio {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fff8e1;
    border: solid 1px #ffe082;
}
.votar-premio span { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: #b28900; }
.votar-premio b { font-size: 14px; color: #6d4c00; }

@media (max-width: 767px) {
    .votar-caixa { margin-top: 16px; }
}

/* ==========================================================================
   REGRAS
   ========================================================================== */

.regras-page { padding-bottom: 40px; }

/* capa: a imagem entra como fundo do cabecalho, com o texto num cartao logo
   abaixo. Texto POR CIMA da arte seria mais bonito e menos legivel - a
   imagem e clara em alguns pontos e escura em outros */
.regras-capa {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: solid 1px #eceff1;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    margin-bottom: 22px;
}
.regras-capa img { width: 100%; display: block; }
.regras-capa-texto { padding: 20px 22px 22px; }
.regras-capa-texto h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    color: #37474f;
}
.regras-capa-texto p { margin: 0; font-size: 13.5px; line-height: 1.6; color: #78909c; max-width: 760px; }

.regras-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}
.regra-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border: solid 1px #eceff1;
    border-left: solid 3px #cfd8dc;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
    transition: transform .15s ease, box-shadow .15s ease;
}
.regra-card:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.09); }
.regra-icone {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    border-radius: 12px;
    background: #f5f7f9;
}
.regra-corpo { min-width: 0; }
.regra-cabecalho {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
.regra-titulo { font-size: 15px; font-weight: 800; color: #37474f; }
/* selo da pena: diz o tamanho do problema antes de a pessoa ler o paragrafo */
.regra-pena {
    padding: 3px 9px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    border-radius: 999px;
}
.regra-card p { margin: 0; font-size: 13px; line-height: 1.6; color: #78909c; }

/* cada gravidade tem a sua cor, e ela pinta a borda, o icone e o selo */
.regra-warn { border-left-color: #f2c94c; }
.regra-warn .regra-icone { background: #fff8e1; }
.regra-warn .regra-pena { color: #8d6e00; background: #fff8e1; }

.regra-mute { border-left-color: #ffa042; }
.regra-mute .regra-icone { background: #fff3e0; }
.regra-mute .regra-pena { color: #a04d00; background: #fff3e0; }

.regra-ban { border-left-color: var(--brand); }
.regra-ban .regra-icone { background: rgba(211,47,47,.08); }
.regra-ban .regra-pena { color: var(--brand-dark); background: rgba(211,47,47,.09); }

.regras-nota {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border: solid 1px #d6e4ff;
    border-left: solid 3px #56ccf2;
    border-radius: 10px;
}
.regras-nota-icone {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #2f80ed;
    background: #e8f2ff;
    border-radius: 10px;
}
.regras-nota b { display: block; font-size: 14px; color: #37474f; margin-bottom: 4px; }
.regras-nota p { margin: 0; font-size: 13px; line-height: 1.6; color: #78909c; }
.regras-nota a { color: var(--brand); font-weight: 700; }

@media (max-width: 767px) {
    .regras-grid { grid-template-columns: minmax(0, 1fr); }
    .regras-capa-texto { padding: 16px 16px 18px; }
    .regras-capa-texto h3 { font-size: 19px; }
}
