html, body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #4f4848;
    /*background-image: url('/static/botgtbr/GTBR-BOT.png'); Substitua pelo caminho da sua imagem */
    /*background-repeat: no-repeat; Impede a repetição da imagem */
    /*background-size: cover; Faz a imagem cobrir toda a tela */
    /*background-position: center; Centraliza a imagem */
    /*background-attachment: fixed; Mantém a imagem fixa quando rolar a página */
}
main {
    flex: 1;
}
/* barra */
.top-bar {
    background-color: #141313;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px #1e1e1e;
}

/* logo nome ghost e loja */
.logo {
    height: 60px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre logo e texto */
}

.server-name {
    font-size: 17px;
    color: #fff;
}

/* Botões */
.btn-discord {
    margin-left: auto; /* Só esse empurra o grupo de botões para a direita */
    background-color: #4752C4;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-discord:hover {
    background-color: #3e469f;
}

.btn-whatsapp {
    margin-left: 10px; /* Espaço entre os botões */
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-whatsapp:hover {
    background-color: #34aa5f;
}

.botoes-contato {
    text-align: right; /* alinha os botões à direita */
    margin: 20px;
}

/* janelinha */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #222;
    color: #fff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 0 15px #000;
}

.modal-content a {
    color: #00ffcc;
    text-decoration: none;
}

.modal-content button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #00ffcc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #000;
    font-weight: bold;
}

/* link dos icon discord e youtube */
.modal-content a {
    text-decoration: none;
}

.modal-content i:hover {
    transform: scale(1.2);
    transition: transform 0.2s;
}
/* icon discord e youtube */
.icon-link {
    width: 40px;
    height: 40px;
    margin: 5px;
    transition: transform 0.2s;
}

.icon-link:hover {
    transform: scale(1.1);
}

/* Menu imagens */
/* sobra em volta */
.menu-imagens {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 40px 27px;
}

.imagem-link {
    background-color: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 300px;
    flex: 1 1 300px;
    box-shadow: 0 0 10px #065bfa;
}

.imagem-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #ffd500;
}

.imagem-link img {
    width: 100%;
    height: auto;
    
}

.imagem-link span {
    display: block;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
}

.painel-admin-link {
    border-bottom: 4px solid #ff0000;
    text-decoration: none;
}
.painel-admin-link img {
    width: 100%;
    color: #ff0000;
}
.painel-admin-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px #ff0000;
}

.amostra {
    border-bottom: 4px solid #0330f9;
    text-decoration: none;
}
.amostra img {
    width: 100%;
    color: #0330f9;
}
.amostra:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px #0330f9;
}

.vips {
    border-bottom: 4px solid #ff9900;
    text-decoration: none;
}
.vips img {
    width: 100%;
    color: #ff9900;
}
.vips:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px #ff9900;
}

.loja-online {
    border-bottom: 4px solid #00ffcc;
    text-decoration: none;
}
.loja-online img {
    width: 100%;
    color: #00ffcc;
}
.loja-online:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px #00ffcc;
}

/* Rodapé */
footer {
    background-color: #141313;
    background-image: url('/static/botgtbr/botgtbr.png');
    background-repeat: no-repeat;
    background-position: right center; /* imagem no lado direito e centralizada verticalmente */
    background-size: 100px auto; /* ajuste o tamanho conforme necessário */
    text-align: center;
    padding: 20px;
    border-top: 2px solid #0f62fe;
    font-size: 0.9rem;
    color: #bbb;
    margin-top: auto;
}


/* Responsividade */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-loja, .btn-loja_vip {
        margin: 10px 0 0;
    }

    .server-name {
        font-size: 1.4rem;
    }
}
