/* ----------------------------------------------------------------*/
/*            AREA DE COMPLETO CAOS E DESORDEM                     */
/* ----------------------------------------------------------------*/

@charset "UTF-8";

/* ------------------------------ */
/*            Fontes              */
/* ------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&display=swap");

/* ------------------------------ */
/*           Variáveis            */
/* ------------------------------ */
:root {
  --white: #ffffff;
  --dark: #111111;
  --grey: #929292;
  --blue: #356eea;
  --maneos-blue: #0f3b98;
  --gradient: linear-gradient(to right, #1a58f4ff, #3604a9ff);
}

/* ------------------------------ */
/*          Reset básico          */
/* ------------------------------ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Alan Sans", sans-serif;
  background: #f5f5f5;
  color: var(--dark);
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

button {
  all: unset;
  display: inline-block;
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------ */
/*             Header             */
/* ------------------------------ */

header {
  font-family: "IBM Plex Mono", monospace;
  background: linear-gradient(to right, #4e4e4e, #292929);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 7px solid;
  border-image: var(--gradient) 1;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
  z-index: 1000;
}

header.hidden {
  transform: translateY(-100%);
}

.logo img {
  width: clamp(150px, 10vw, 250px);
  height: auto;
}

.pages {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  color: #c8c8c8;
}

.pages a {
  font-weight: 400;
  transition: color 0.2s ease;
}

.pages a:hover,
.pages a.selected {
  color: var(--white);
  cursor: not-allowed;
}

.donate-button {
  background-color: var(--white);
  color: var(--dark);
  padding: 0.6rem 1rem;
  border-radius: 10%;
  transition: 0.3s ease;
  text-decoration: none;
}

.donate-button i {
  transition: transform 0.3s ease;
}

.donate-button:hover i {
  transform: scale(1.3);
}

.copyBtn {
  font-size: 80%;
  background-color: var(--dark);
  color: var(--white);
  border-radius: 10%;
  transition: 0.3s ease;
  padding: 0.5rem;
  margin: 10px;
}

.copyInput {
  display: none;
}

code {
  background: var(--dark);
  padding: 0.5rem;
  color: var(--white);
  border-radius: 5%;
  display: block;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
  max-width: 300px;
}

.pix-icon {
  width: 1.1rem;
  margin-bottom: -0.2rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
}

.menu {
  display: none;
}

.donate-button2 {
  display: none;
}

/* ------------------------------ */
/*              Main              */
/* ------------------------------ */
main {
  padding: 2rem;
  margin-top: 10rem;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

h3 {
  font-size: 3rem;
}

.status {
  margin: clamp(10px, 5%, 400px);
  margin-top: 50px;
  font-size: 1.3rem;
  text-align: justify;
}

/* ------------------------------ */
/*            Section 2           */
/* ------------------------------ */
.section2 {
  position: relative;
  align-items: flex-end;
  justify-content: center;
  background-color: #292929;
  color: var(--white);
  margin-top: 6rem;
  padding: 5rem 2rem 3rem 2rem;
  text-align: center;
  overflow: visible;
  width: 100%;
}

.many {
  position: absolute;
  top: -50%;
  bottom: 91.9%;
  right: 0;
  left: 40%;
  background-image: url('../assets/many.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.whatsapp {
  color: rgb(68, 99, 255);
}

/* ------------------------------ */
/*             Footer             */
/* ------------------------------ */
footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 0.8rem;
  margin-top: auto;
  font-size: 0.9rem;
}

/* ------------------------------ */
/*         Responsividade         */
/* ------------------------------ */
@media (max-width: 768px) {
  body {
    font-size: 90%;
  }

  header {
    padding: 1rem;
  }

  .pages {
    display: none;
  }

  .close-menu {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: bolder;
    background-color: #4d4d4d;
    color: var(--white);
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 100%;
    margin-bottom: 50px;
  }

  .menu {
    display: flex;
    position: fixed;
    top: 0;
    right: -250px; /* esconde fora da tela */
    width: 250px;
    height: 100%;
    background: #292929;
    flex-direction: column;
    align-items: start;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.2s ease;
    z-index: 1200;
    font-size: 1.1rem;
  }

  .menu a {
    margin: 5%;
  }

  .donate-button2 {
    display: flex;
    color: var(--dark);
    background: var(--white);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 10%;
  }

  .menu.open {
    right: 0; /* mostra o menu */
  }

  .donate-button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  main {
    padding: 1rem;
  }

  footer {
    font-size: 0.8rem;
  }

  h2 {
    padding: 0.1rem;
    margin-top: -10%;
    font-size: 2rem;
  }

  h1 {
    font-size: 1.7rem;
  }

  .status {
    margin-top: 10%;
    font-size: 1.2rem;
  }

  .section2 {
    padding-top: 4rem;
  }
  
  .many {
    top: -215px;      /* Distância do topo */
    left: 350px;     /* Distância da esquerda */
    width: 250px;    /* Largura fixa */
    height: 250px;   /* Altura fixa */
  }
  
}

@media (max-width: 620px) {
  .many {
    top: -129px;      /* Distância do topo */
    left: 120px;     /* Distância da esquerda */
    width: 150px;    /* Largura fixa */
    height: 150px;   /* Altura fixa */
  }
}