@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Ubuntu:wght@400;500&display=swap');

:root {
    --primary-bg: #e28923;
    --secondary-bg: #9b5f1a;
    --text: #471A03;
    --secondary: #c57922;
}


body {
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    padding: 20px;
    background: linear-gradient(0deg, var(--secondary-bg), var(--primary-bg));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: var(--secondary);
    color: #fff;
    padding: 13px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    overflow-x: auto;
    white-space: nowrap;
}

.descricao {
    font-family: 'Montserrat', sans-serif;
}

.servidores {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.servidor {
    flex: 1 1 200px;
    box-sizing: border-box;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li t {
    display: inline-block;
    color: var(--text);
    font-weight: bold;
}

nav li {
    display: inline-block;
    margin-right: 20px;
    color: var(--text);
}

nav li a {
    text-decoration: none;
    color: var(--text);
}

img {
    border-radius: 3rem;
    width: 5rem;
    height: 5rem;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

nav li a:hover {
    border-bottom: 2px solid #fff;
}


fieldset {
    border: 0;
}

.radio input[type="radio"] {
    position: absolute;
    visibility: hidden;
    display: none;
    opacity: 0;
    z-index: -1;
}

.radio label {
    position: relative;
    padding: 10px 20px 10px 25px;
    cursor: pointer;
    border-radius: 20px;
    color: var(--text);
    margin: 0px 5px;
    font-weight: 600;
    text-transform: uppercase;
}

.radio label,
.radio label::before {
    -webkit-transition: .25s all ease;
    transition: .25s all ease;
}

.radio label::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    content: " ";
    position: absolute;
    top: 30%;
    left: 0;
    width: 1em;
    height: 1em;
    border: 2px solid var(--secondary-bg);
}

.radio input[type="radio"]+label::before {
    border-radius: 1em;
}

.radio input[type="radio"]:checked+label {
    color: #fff;
    background: var(--text);
    z-index: 1;
}

.radio input[type="radio"]:checked+label {
    padding: 10px 20px 10px 20px;
}

.radio input[type="radio"]:checked+label::before {
    top: 4px;
    width: 100%;
    height: 2em;
    z-index: -1;
}

.sidebar {
    position: fixed;
    top: 47px;
    left: 0;
    height: calc(100% - 50px);
    width: 250px;
    background-color: var(--secondary-bg);
    color: #fff;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(0);
    z-index: 900;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    padding: 20px;
    border-bottom: 1px solid #fff;
}

.sidebar a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.back-btn {
    position: fixed;
    right: 12px;
    margin-top: 36px;
    z-index: 1000;
}


.menu-toggle {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
    display: none;
    position: fixed;
    margin-top: 27px;
    left: 20px;
    z-index: 1001;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .sidebar {
        width: 250px;
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

footer {
    display: none;
    background-color: var(--primary-bg);
    color: var(--text);
    padding: 10px 20px;
    text-align: center;
    border-top: 1px solid #ddd;
    position: fixed;
    bottom: 0;
    left: 250px;
    width: calc(100% - 250px);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .button {
    margin: 0 5px;
    display: inline-flex;
}


footer.show {
    display: flex;

}

#add-role-button {
    display: inline-block;
    margin-bottom: 20px;
}

.role-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    background-color: var(--secondary-bg);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.role-item select,
.role-item input {
    margin-right: 10px;
    padding: 5px;
}


.button {
    border-radius: 8px;
    height: 40px;
    border: none;
    background: var(--text);
    color: white;
    padding: 15px;
    box-shadow: 0 0.7065919983928324px 0.7065919983928324px -0.625px #00000026,
        0 1.8065619053231785px 1.8065619053231785px -1.25px #00000025,
        0 3.6217592146567767px 3.6217592146567767px -1.875px #00000023,
        0 6.8655999097303715px 6.8655999097303715px -2.5px #00000020,
        0 13.646761411524492px 13.646761411524492px -3.125px #0000001b,
        0 30px 30px -3.75px #0000000d;
    font-weight: bold;
    font-family: Montserrat;
    cursor: pointer;
    transition: 150ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button:active {
    scale: 0.95;
    background: black;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.26) 0px 0.637473px 1.14745px -1.125px,
        rgba(0, 0, 0, 0.24) 0px 1.93094px 3.4757px -2.25px,
        rgba(0, 0, 0, 0.192) 0px 5.10423px 9.18761px -3.375px,
        rgba(0, 0, 0, 0.03) 0px 16px 28.8px -4.5px;
}

.antiraid-option {
    background-color: var(--secondary);
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.antiraid-option:hover {
    transform: scale(1.02);
}

h1 {
    color: var(--text);
    text-align: center;
    margin-bottom: 40px;
    margin-top: 50px;
    font-size: 45px;
}

h2 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 30px;
}

p {
    color: var(--text);
    margin-bottom: 20px;
}

.botoes {
    text-align: center; 
    margin-top: 40px;
}

.btnIndex {
    position: relative;
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1em 2.5em;
    display: inline-block;
    border-radius: 6em;
    transition: all .2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: black;
    background-color: white;
}

.btnIndex:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btnIndex:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btnIndex::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

.btnIndex::after {
    background-color: #fff;
}

.btnIndex:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.adicionar {
    background-color: rgb(79, 128, 0);
    color: white;
}

.adicionar::after {
    background-color: rgb(83, 128, 0);
}

.topgg {
    background-color: rgb(219, 33, 0);
    color: white;
}

.topgg::after {
    background-color: rgb(219, 33, 0);
}

.funcionalidades {
    background-color: var(--secondary);
    border-radius: 5px;
    padding: 20px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 16px 16px rgba(0, 0, 0, 0.1);
}

h3 {
    color: var(--text);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.f-texto {
    color: var(--text);
    font-size: 16px;
    line-height: 1.5em;
}

.descricao {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text);
}

.df_img {
    width: 300px;
    height: 300px;
    background-size: cover;
    display: block;
    margin: 0 auto;
}