body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: rgb(24, 24, 27);
  color: white;
}

.navbar {
  position: fixed;
  background-color: rgb(15, 15, 17);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 10%;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.logo {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  
}

.logo a {
    font-size: 25px;
    text-decoration: none;
    color: #dbdbdb;
    transition: 0.2s;
}

.logo a:hover {
    text-decoration: none;
    color: #ffffff;
    font-size: 30px;
    transition: 0.2s;
}

.nav-links {
  align-items: center;
  list-style: none;
  display: flex;
  gap: 50px;
}

.nav-links li a {
  text-decoration: none;
  font-size: 17px;
  color: #ddd;
  transition: 0.2s;
}

#vipBttn {
    color: gold;
    font-weight: bold;
}

#vipBttn:hover {
    color: rgb(255, 234, 112);
    font-size: 25px;
    transition: 0.2s;
}

#buyVipBttn {
    margin-top: 5%;
    border-radius: 10px;
    height: 55px;
    width: 175px;
    background: linear-gradient(to left, rgb(41, 103, 184), rgb(79, 164, 233));
    font-size: 100%;
    color: #fff;
    border: none;
    transition: 0.2s;
}

#buyVipBttn:hover {
    background: linear-gradient(to left, rgb(31, 77, 138), rgb(56, 117, 167));
    height: 60px;
    width: 180px;
    transition: 0.2s;
}

#discordBttn {
  color: rgb(86, 98, 246);
  font-weight: bold;
}

.nav-links li a:hover {
  color: #ffffff;
  font-size: 25px;
  transition: 0.2s;
}

.conteudo {
  margin-top: 100px; /* espaço por causa da navbar fixa */
  text-align: center;
}

.shopButton {
    margin-top: 100px;
    margin-left: 25px;

}

.button {
    margin-top: 15%;
}

.gradient-text {
    background: linear-gradient(to right, rgb(252, 210, 75), rgb(245, 159, 13));
    background-clip: text;
    color: transparent;
}



.retangulo {
  width: 50%;
  height: 25%;
  background-color: rgb(15, 15, 17);
  color: white;
  padding: 20px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  margin: 0 auto; /* Isso centraliza horizontalmente */
}
