/* Estilos gerais */
body {
    background-image: url('imagens/bosque.png');
    margin: 0;
    font-family: Arial, sans-serif;
    color: #ffffff;
    background-color: #1a1a1a;
    line-height: 1.6;
    cursor: url(imagens/cursor.png), auto;
    height: 100vh;
    width: 100%;
}

#pointer{
    cursor: url(imagens/pointer.png), pointer;
    
}

/* Ajustes gerais para imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Menu lateral */
.menu-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 30px;
    cursor: pointer;
    z-index: 1000;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #333;
    padding-top: 50px;
    transition: left 0.3s ease;
    z-index: 999;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 20px 0;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: background 0.3s ease;
}

.sidebar ul li a:hover {
    background: #555;
}

/* Seção principal */
.hero {
    height: 100vh;
    background-image: url('imagens/bosque.png');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
}

.hero-text p {
    font-size: 1.2rem;
}

/* Ajustes para o símbolo da PixelClad Studios */
.symbol {
    max-width: 80%; /* Ocupa até 80% da largura da tela no celular */
    height: auto;   /* Mantém a proporção da imagem */
    margin: 0 auto; /* Centraliza no celular */
    display: block;
}

/* Seção de notícias */
.news-section {
    padding: 50px;
    background: #222;
}

.news-section h2 {
    text-align: center;
    color: #f0db4f;
    margin-bottom: 20px;
    font-size: 2rem;
}

.news-item {
    margin-bottom: 20px;
    padding: 20px;
    background: #333;
    border-radius: 10px;
}
.news-item:hover{
    box-shadow: 0px 0px 20px 0.5px rgba(255, 255, 255, 0.4);
    margin-right: 1%;
    margin-left: 1%;
    font-size: 99%;
}

.news-item h3 {
    margin: 0 0 10px;
}

.button-news {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    background-color: white;
    border-radius: 10px;
    color: #393939;
    padding: 5px;
    margin: 0 30px 0 30px;
    text-decoration: none;
    transition-duration: 0.5s;
}

.button-news:hover {
    background-color: #898989;
    color: white;
    margin: 0 40px 0 40px;
    box-shadow: 0px 0px 20px 0.5px rgba(255, 255, 255, 0.4);
    transition-duration: 0.5s;
}

.imagemdosite {
    width: 100%; /* Adapta à largura da tela */
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.news-item span {
    font-size: 0.9rem;
    color: #aaa;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 10px;
    background: #111;
}

/* Equipe */
.team-section {
    text-align: center;
    padding: 50px;
    background: #1a1a1a;
    color: #ffffff;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #f0db4f;
}


.team-category {
    opacity: 0;
    margin-bottom: 20px;
    padding: 15px;
    background: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0px 0px 50px 1px rgba(255, 255, 255, 0.699);
    max-width: 400px;
    margin: 28px auto;
    filter: blur(15px);
    transition: all 1s;
    transform: translateY(100%);
}

.team-categoryShow {
    opacity: 1;
    filter: blur(0);
    transition: all 1s;
    transform: translateY(0);
}

.team-category h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    border-bottom: 2px solid #5865F2;
    display: inline-block;
    padding-bottom: 5px;
}

.team-category p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* Scroll mais suave */
html {
    scroll-behavior: smooth;
}

/* Discord */
.discord-section {
    text-align: center;
    padding: 50px;
    background: #23272A;
    color: #ffffff;
    box-shadow: 0px 0px 120px 10px #4854c8;
}

.discord-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.discord-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    background: #5865F2;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.discord-link:hover {
    background: #4854c8;
}

.discord-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Contato */
.contact-section {
    text-align: center;
    padding: 50px;
    background: #1f1f1f;
    color: #ffffff;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #f0db4f;
}

.contact-group {
    margin-bottom: 30px;
}

.contact-group h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #5865F2;
    display: inline-block;
    padding-bottom: 5px;
}

.contact-group ul {
    list-style: none;
    padding: 0;
}

.contact-group li {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-group a {
    text-decoration: none;
    color: #5865F2;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-group a:hover {
    color: #f0db4f;
}

.direitos {
    text-decoration: none; /* Remove a linha sublinhada */
    color: inherit; /* Herda a cor do texto ao invés de usar o padrão do link */
}

.direitos:hover {
    text-decoration: none; /* Opcional: adiciona um sublinhado ao passar o mouse */
    color: #f0db4f; /* Opcional: muda a cor ao passar o mouse */
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Estilo para o logo no canto inferior direito */
.logo {
    position: fixed;
    bottom: 5%; /* Ajuste para ficar um pouco afastado da borda */
    right: 5%;  /* Evita que fique colado ao canto no celular */
    width: 60px; /* Reduzido para telas menores */
    z-index: 9999;
    opacity: 0.7;
    transition: opacity 0.3s ease, filter 0.3s ease;
    animation: rotate 25s infinite linear;
}
.logos{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.logos :nth-child(2){
    transition-delay: 400ms;
}
.logos :nth-child(3){
    transition-delay: 700ms;
}
.logos :nth-child(4){
    transition-delay: 1000ms;
}
.logos :nth-child(5){
    transition-delay: 1300ms;
}
.logos :nth-child(6){
    transition-delay: 1700ms;
}

.Cards{
    padding: 50px;
    background: #222;
}
.Cards h2{
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #f0db4f;
    text-align: center;
}
.CardL {
    height: 300px;
    width: 300px; /* ou o que você quiser */
    background-color: white;
    border-radius: 10px;
    margin: 5px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.CardL:hover {
    box-shadow: 0px 0px 20px 0.5px rgba(21, 255, 0, 0.575);
}

.CardL.reset {
    transform: rotateX(0deg) rotateY(0deg);
}

.hidden{
    filter: blur(15px);
    transition: all 1s;
    transform: translateX(-100%);
}
.show{
    opacity: 1;
    filter: blur(0);
    transition: all 1s;
    transform: translateX(0);
}



/* FaLLing Star */
.FaLLing{
    background-image: url('imagens/FaLLing-Star.jpg');
    width: auto;
    height: auto;
    margin: -21px 0 -21px 0;
    text-align: center;
    align-content: center;
    padding: 10%;
}
.FaLLing h2{
    color: #f0db4f;
    text-shadow: 2px 3px rgba(22, 22, 22, 0.575);

}
.FS-Conteudo{
    background-color: rgba(22, 22, 22, 0.938);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.747);
}
.FS-Conteudo img{
    width: 8%;
    padding: 10px 0px 10px 5px;
}
.FS-Musics{
    text-decoration: none;
    color: #000;
    background-color: rgba(255, 255, 255, 0.103);
    margin: 20px 0 20px 5px;
    padding: 0 5px 0 1px;
    border-radius: 10px;
    transition: 1s;
}
.FS-Musics:hover{
    background-color: rgba(22, 22, 22, 0.938);
    color: #aaa;
}



@keyframes rotate {
    0% {
        transform: rotate(0deg); /* Começa com a imagem sem rotação */
    }
    100% {
        transform: rotate(360deg); /* Gira a imagem 360 graus */
    }
}

/* Responsividade - Ajustes para telas menores */
@media (max-width: 768px) {
    /* Menu lateral */
    .menu-icon {
        font-size: 24px;
        top: 10px;
        left: 10px;
    }

    .sidebar {
        width: 200px;
    }

    .sidebar ul li a {
        padding: 8px 15px;
    }

    /* Texto no header (hero) */
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    /* Seção de equipe */
    .team-category {
        max-width: 90%; /* Ocupa 90% da largura da tela no celular */
        padding: 10px;
    }

    /* Discord link */
    .discord-link {
        font-size: 1rem;
        padding: 8px 15px;
    }

    /* Espaçamento no rodapé */
    footer {
        padding: 20px;
    }
}

#arvoreD{
    position: absolute;
    right: 10px;
    bottom: 0;
    width: 150px;
}

.moeda-alvo {
    cursor: url(imagens/pointer.png), pointer;
    position: absolute;
    left: 10px;
    bottom: 0px;
    width: 150px;
  }

  .moeda {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url(imagens/moeda.png);
    background-size: cover;
    animation: subirEGirar 1s ease-out forwards;
    pointer-events: none;
  }

  @keyframes subirEGirar {
    0% {
      transform: translateY(0) rotateY(0deg);
      opacity: 1;
    }
    50% {
      transform: translateY(-80px) rotateY(180deg);
      opacity: 1;
    }
    100% {
      transform: translateY(-150px) rotateY(360deg);
      opacity: 0;
    }
  }

  @media (max-width: 736px) {
    .CardL{
        height: 200px;
        width: 200px;
    }
  }

  @media (max-width: 649px) {
    #arvoreD{
        width: 100px;
    }
    
    .moeda-alvo {
        width: 100px;
      }
  }
  
  @media (max-width: 533px) {
    .CardL{
        height: 150px;
        width: 150px;
    }
    .moeda-alvo{
        height: 60px;
        width: 60px;
    }
    #arvoreD{
        height: 60px;
        width: 60px;
    }
  }

  @media (max-width: 436px) {
    .CardL{
        height: 100px;
        width: 100px;
    }
  }

  @media (max-width:  322px){
    .news-section h2 {
        font-size: 1.5rem;
    }
  }
