/* =========================
   RESET / FUNDO
========================= */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #e0e0e0;

    background:
        linear-gradient(rgba(15,18,21,0.9), rgba(15,18,21,0.9)),
        url("../images/header.png") center/cover fixed;
}

/* =========================
   HEADER / MENU
========================= */
.header {
    position: relative;
    background: #1a1f24;
    padding: 15px 30px;
    border-bottom: 1px solid #2a2f36;
}

/* MENU CENTRALIZADO */
.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #f0a500;
}

/* =========================
   SELETOR DE IDIOMA
========================= */
.lang-switch {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
}

.lang-switch img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.7;
    box-sizing: border-box;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-switch img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* BANDEIRA ATIVA */
.lang-switch img.active {
    opacity: 1;
    box-shadow: 0 0 0 2px #f0a500, 0 0 6px rgba(240,165,0,0.6);
}

/* =========================
   CONTEÚDO PRINCIPAL
========================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 30px;
    text-align: center;
}

/* =========================
   LOGO PRINCIPAL
========================= */
.logo {
    margin-bottom: 25px;
}

.logo img {
    max-width: 260px;   /* ajuste se quiser */
    width: 100%;
    height: auto;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   TEXTOS
========================= */
.container h2 {
    font-size: 26px;
    margin-top: 50px;
    margin-bottom: 15px;
}

.container p {
    font-size: 18px;
    color: #b5b5b5;
    line-height: 1.6;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* =========================
   LISTA DE BENEFÍCIOS
========================= */
.features {
    list-style: none;
    padding: 0;
    margin: 20px 0 40px 0;
}

.features li {
    font-size: 17px;
    margin-bottom: 8px;
    color: #cfcfcf;
}

/* =========================
   DIVISÓRIA
========================= */
hr {
    margin: 50px 0;
    border: none;
    border-top: 1px solid #2a2f36;
}

/* =========================
   BOTÕES
========================= */
.buttons {
    margin-top: 35px;
}

.buttons a {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    background: #f0a500;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.buttons a:hover {
    background: #ffb733;
}

/* =========================
   RODAPÉ
========================= */
footer {
    text-align: center;
    padding: 20px;
    background: #1a1f24;
    color: #777;
    font-size: 14px;
    border-top: 1px solid #2a2f36;
}

/* =========================
   SERVIDORES - BANDEIRA
========================= */
.server-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.server-flag {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    opacity: 0.9;
}


//* =========================
   GUIA DE CONEXÃO (SERVIDORES)
========================= */
.server-guide {
    max-width: 520px;          /* caixa menor */
    margin: 30px auto 40px;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid #2a2f36;
    border-radius: 6px;
    text-align: center;        /* CENTRALIZA TUDO */
}

.server-guide p {
    font-weight: bold;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.server-guide ol {
    list-style-position: inside; /* números centralizados */
    padding: 0;
    margin: 0;
}

.server-guide li {
    margin-bottom: 8px;
    color: #cfcfcf;
}

.server-guide code {
    background: #1a1f24;
    padding: 2px 6px;
    border-radius: 4px;
    color: #f0a500;
}

/* =========================
   BOTÃO COPIAR CONNECT
========================= */
.server-connect {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.copy-btn {
    background: #1a1f24;
    border: 1px solid #2a2f36;
    color: #e0e0e0;
    font-size: 12px;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.copy-btn:hover {
    background: #f0a500;
    color: #000;
}


/* =========================
   LOJA VIP
========================= */
.shop-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.shop-card {
    width: 320px;
    padding: 30px 25px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid #2a2f36;
    border-radius: 8px;
    text-align: center;
}

.shop-flag {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.shop-card h3 {
    margin-bottom: 10px;
}

.shop-card p {
    color: #cfcfcf;
    margin-bottom: 20px;
}

.shop-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #f0a500;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.shop-btn:hover {
    background: #ffb733;
}



/* =========================
   NOVIDADES (LISTA SIMPLES)
========================= */
.news-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 20px;
    margin-bottom: 12px;

    background: rgba(26, 31, 36, 0.8);
    border: 1px solid #2a2f36;
    border-radius: 6px;

    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;

    transition: background 0.2s ease, border-color 0.2s ease;
}

.news-row:hover {
    background: rgba(42, 47, 54, 0.9);
    border-color: #f0a500;
}

.news-row .news-date {
    font-size: 13px;
    color: #aaa;
    white-space: nowrap;
}
