/* --- RESET E BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: #050505;
    color: white;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- FUNDO --- */
.bg-imagem {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    background-color: #000; 
}

.bg-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(5,5,5,0.98));
    z-index: -1;
    backdrop-filter: blur(5px); /* Desfoque leve no fundo */
}

/* --- NAV BAR --- */
.glass-nav {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5); /* Mais escuro para ler melhor */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.minha-logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.neon-green {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.btn-login {
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 25px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-login:hover {
    background: #bd00ff;
    border-color: #bd00ff;
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.5);
}

/* --- HERO SECTION --- */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
}

.titulo-principal {
    font-size: 3rem;
    font-weight: 800; /* Título principal continua forte */
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.1;
}

.texto-gradiente {
    background: linear-gradient(90deg, #00ff88, #bd00ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-box {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.descricao {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 300;
}

.descricao strong {
    color: #fff;
    font-weight: 600;
}

.features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feat {
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-destaque {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(90deg, #00ff88, #00b862);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.btn-destaque:hover {
    transform: scale(1.05);
    box-shadow: 0 0 45px rgba(0, 255, 136, 0.5);
}

/* --- PLANOS --- */
.planos-section {
    padding: 80px 0;
}

/* AQUI ESTÁ A CORREÇÃO QUE VC PEDIU NO TÍTULO */
.titulo-secao {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    font-weight: 200; /* Deixei BEM fino como pediu */
    letter-spacing: 4px; /* Espaçamento elegante */
    color: rgba(255,255,255,0.9);
}

.grid-planos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    align-items: start;
}

/* Card do Plano */
.card-plano {
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: 0.4s;
}

.card-plano:hover {
    transform: translateY(-10px);
    background: rgba(25, 25, 25, 0.9);
    border-color: #444;
}

.card-plano.destaque {
    border-color: #bd00ff;
    background: linear-gradient(180deg, rgba(189, 0, 255, 0.08), rgba(10,10,10,0.9));
    transform: scale(1.05); /* Destaque levemente maior */
}

.card-plano.destaque:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 50px rgba(189, 0, 255, 0.15);
}

.tag-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #bd00ff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.plano-nome {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
}

.preco {
    font-size: 2.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 5px;
}

.mes {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.plano-slots {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ccc;
}

/* Lista de Recursos */
.lista-recursos {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.lista-recursos li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lista-recursos li i {
    color: #00ff88;
}

.lista-recursos li.off {
    color: #555;
    text-decoration: line-through; /* Risca o que não tem */
}
.lista-recursos li.off i {
    color: #555;
}

/* Botões dos Planos */
.btn-aderir {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-aderir:hover {
    background: #fff;
    color: #000;
}

.btn-aderir.roxo {
    border-color: #bd00ff;
    background: #bd00ff;
    color: #fff;
}
.btn-aderir.roxo:hover {
    background: #a200db;
    box-shadow: 0 0 20px rgba(189, 0, 255, 0.4);
}

.btn-aderir.azul {
    border-color: #00d4ff;
    color: #00d4ff;
}
.btn-aderir.azul:hover {
    background: #00d4ff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* --- FOOTER --- */
footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 50px 0;
    background: #000;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contato h4 {
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.discord-link {
    color: #5865F2;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin: 10px 0;
}

.status-off {
    color: #ff4444;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    background: rgba(255, 68, 68, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-flex;
}

.dot-red {
    width: 6px;
    height: 6px;
    background: #ff4444;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff4444;
}

.direitos p {
    color: #555;
    font-size: 0.9rem;
    text-align: right;
}
/* --- CORREÇÃO DO BOTÃO JOGAR --- */

.server-action {
    text-align: right;
    display: flex;
    justify-content: flex-end; /* Garante que fica na direita */
    align-items: center;
}

.btn-connect {
    display: inline-block; /* Garante visibilidade */
    background: transparent;
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 10px 25px; /* Botão um pouco maior para clicar fácil */
    border-radius: 5px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
    opacity: 1; /* SEMPRE VISÍVEL AGORA */
    transform: none; /* SEM MOVIMENTO ESTRANHO */
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-connect:hover {
    background: #00ff88;
    color: #000;
    box-shadow: 0 0 20px rgba(0,255,136,0.6);
}

/* --- RESPONSIVIDADE (CELULAR) --- */
@media (max-width: 768px) {
    .list-header { display: none; } 
    
    .server-list .server-row {
        /* No celular vira uma coluna só */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .server-icon img {
        width: 80px;
        height: 80px;
    }

    .server-info {
        width: 100%;
    }

    .server-bio {
        white-space: normal; /* Deixa o texto quebrar linha no celular */
        max-width: 100%;
        margin: 0 auto;
    }

    /* Mostra os players no celular tbm */
    .server-players {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 10px;
    }
    
    .progress-bar {
        margin-bottom: 0;
        width: 150px;
    }

    /* Esconde coisas menos importantes no mobile */
    .server-tags, .server-region { display: none; }

    /* Botão JOGAR grande no celular */
    .server-action {
        width: 100%;
        justify-content: center;
    }
    
    .btn-connect {
        width: 100%;
        padding: 15px;
        background: rgba(0, 255, 136, 0.1);
    }
}
/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 768px) {
    
    /* Navbar: Empilha Logo e Botões */
    .glass-nav { height: auto; padding: 15px 0; }
    .nav-content { flex-direction: column; gap: 15px; }
    .logo-area { margin-bottom: 10px; }

    /* Hero Section: Texto menor e empilhado */
    .hero { padding-top: 140px; padding-bottom: 40px; }
    .titulo-principal { font-size: 2.5rem; }
    .features { flex-direction: column; gap: 10px; }
    .glass-box.principal { padding: 20px; width: 95%; }

    /* Planos: Um embaixo do outro */
    .grid-planos { grid-template-columns: 1fr; } /* 1 coluna só */
    .card-plano { margin-bottom: 20px; }
    .card-plano.destaque { transform: none; } /* Remove o zoom do destaque no mobile */

    /* Modal do Carrinho: Ajuste de largura */
    .modal-carrinho { 
        width: 90%; 
        max-width: 90%; 
        padding: 20px;
        margin: 0 auto;
    }
    .selector-slots { flex-wrap: wrap; } /* Botões de slots quebram linha se precisar */
    
    /* Footer: Centralizado */
    .footer-grid { flex-direction: column; text-align: center; gap: 30px; }
}