@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Manrope:wght@200..800&display=swap");
/* BARRA DE ROLAGEM - SCROLLBAR*/

::-webkit-scrollbar {
  width: 0px;
}

/* Remove o destaque azul completamente */
* {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -webkit-tap-highlight: none;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
  scroll-behavior: smooth;
  list-style-type: square;
  /*user-select: none;*/
  text-decoration: none !important;
  list-style: none !important;
  outline: none !important;
}

*:focus {
  outline: none !important;
}

*:active {
  outline: none !important;
}

body {
  background: #0c0c0c;
  overflow-x: hidden;
}

#casa {
  position: relative;
  background: #0c0c0c;
  /* Fundo escuro como base */
  overflow: hidden;
  width: 100%;
}

#casa::before,
#casa::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  animation: discoMove 4s infinite ease-in-out;
  mix-blend-mode: screen;
  filter: blur(10px);
}

#casa::before {
  background: radial-gradient(circle,
      rgba(255, 0, 255, 0.5) 0%,
      rgba(255, 0, 255, 0.1) 70%,
      rgba(255, 0, 255, 0) 100%);
  animation-delay: 0s;
  z-index: 2;
  /* Coloca o círculo rosa na frente */
}

#casa::after {
  background: radial-gradient(circle,
      rgba(0, 255, 255, 0.5) 0%,
      rgba(0, 255, 255, 0.1) 70%,
      rgba(0, 255, 255, 0) 100%);
  animation-delay: 2s;
  z-index: 1;
  /* Coloca o círculo ciano atrás */
}

@keyframes discoMove {
  0% {
    top: 10%;
    left: 20%;
    transform: scale(1);
  }

  25% {
    top: 40%;
    left: 70%;
    transform: scale(1.5);
  }

  50% {
    top: 80%;
    left: 50%;
    transform: scale(1.2);
  }

  75% {
    top: 50%;
    left: 10%;
    transform: scale(1.8);
  }

  100% {
    top: 10%;
    left: 20%;
    transform: scale(1);
  }
}

#login {

  width: 100%;
}

h1,
h2 {
  color: #fa6a0a;
  font-size: 1.3em;
}

p {
  color: #e4daf5;
  text-align: justify;
}

button {
  border: none;
  cursor: pointer;
  background-color: transparent;
}

/*HEADER*/

header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(to top, black, #2d3242);
  overflow: hidden;
  transition: 0.5s;
  z-index: 10000;
}

.boxLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
}

.logo {
  color: #e329fc;
  font-size: 1em;
  font-family: "Josefin Sans", sans-serif;
  text-decoration: none;
  letter-spacing: 2px;
  overflow: hidden;
}

.logo:hover {
  color: #fa6a0a;
}

.lira {
  width: 12px;
}

header ul {
  position: relative;
  display: flex;
  overflow: hidden;
}

header ul li {
  position: relative;
  overflow: hidden;
}

header ul li a {
  position: relative;
  display: inline-block;
  margin: 0 15px;
  color: #e4daf5;
  text-decoration: none;
  overflow: hidden;
}

header ul li a:hover {
  color: #e329fc;
}

/*SOBRE*/

.title {
  font-weight: 600px;
  margin: 50px 0 20px 0;
}

.content {
  display: flex;
  justify-content: space-between;
}

.contentBx {
  z-index: 1000;
}

.w50 {
  min-width: 50%;
  padding: 150px 50px 0px 50px;
  overflow: hidden;
}

.w50 img {
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  /* Bordas suavizadas */
}

/*BOTÃO ANIMADO*/

.btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn .neon {
  position: relative;
  display: flex;
  margin: 50px 50px 180px 50px;
  padding: 10px 20px;
  color: #e329fc;
  font-size: 1em;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: 0.5s;
  letter-spacing: 4px;
}

.neon:hover {
  background: #e329fc;
  color: #111;
  box-shadow: 0 0 5px #e329fc, 0 0 25px #ea48ff, 0 0 50px #ea48ff,
    0 0 100px #ea48ff;
}

a span,
button span {
  position: absolute;
  display: block;
}


a span:nth-child(1),
button span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e329fc);
  animation: animate1 1s linear infinite;
}

@keyframes animate1 {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

a span:nth-child(2),
button span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #e329fc);
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}

@keyframes animate2 {
  0% {
    top: -100%;
  }

  50%,
  100% {
    top: 100%;
  }
}

a span:nth-child(3),
button span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #e329fc);
  animation: animate3 1s linear infinite;
  animation-delay: 0.5s;
}

@keyframes animate3 {
  0% {
    right: -100%;
  }

  50%,
  100% {
    right: 100%;
  }
}

a span:nth-child(4),
button span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #e329fc);
  animation: animate4 1s linear infinite;
  animation-delay: 0.7s;
}

@keyframes animate4 {
  0% {
    bottom: -100%;
  }

  50%,
  100% {
    bottom: 100%;
  }
}

/*BOTÃO CONVERTER*/

.containerConvert {
  width: 100%;
  height: 100%;
  padding: 50px;
}

.boxTxtConverter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 50px;
}

.boxBtnConverter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  padding: 50px;
}

.converteBtn {
  position: relative;
  display: flex;
  margin: 50px 30px;
  padding: 10px 20px;
  color: #e329fc;
  font-size: 1em;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
  letter-spacing: 4px;
  background-color: #1f1f1f;
  border-radius: 5px;
  overflow: hidden;
  /* Bordas arredondadas */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Sombra sutil */
}

.converteBtn:hover {
  background-color: #e329fc;
  /* Altera cor de fundo no hover */
  color: #252525;
  /* Altera a cor do texto no hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  /* Aumenta a sombra no hover */
  transform: scale(1.05);
  /* Efeito de aumento suave */
}

.converteBtn:hover {
  background: #e329fc;
  color: #111;
  box-shadow: 0 0 5px #e329fc, 0 0 25px #ea48ff, 0 0 50px #ea48ff,
    0 0 100px #ea48ff;
}

.converteBtn {
  display: flex;
}

.arquivoConverte {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border: 4px dashed #4b4b4b;
  padding: 20px;
  width: 50%;
  height: auto;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  margin: auto;
  transition: border-color 0.3s ease;
}

.arquivoConverte:hover {
  border-color: #fa6a0a;
}

.arquivoConverte i,
.arquivoConverte span {
  font-size: 1.5em;
  color: #4b4b4b;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.arquivoConverte input {
  display: none;
}

/*SOUND*/

.containerSound {
  display: flexbox;
  padding-top: 150px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}

.boxText {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 25px 20px 25px;
}

.boxSound {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border: 4px dashed #4b4b4b;
  padding: 20px;
  width: 50%;
  height: auto;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  margin: auto;
  transition: border-color 0.3s ease;
}

.boxSound:hover {
  border-color: #fa6a0a;
}

.labelSound {
  display: flex;
  align-items: center;
  font-size: 1.5em;
  color: #4b4b4b;
  cursor: pointer;
  overflow: hidden;
}

.labelSound i {
  font-size: 1.5em;
  color: #4b4b4b;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.labelSound span {
  color: #4b4b4b;
}

.labelSound:hover i {
  color: #fa6a0a;
}

.labelSound:hover span {
  color: #fa6a0a;
}

.imagemSound {
  display: none;
}

/*Botão Soud */

.boxButtonSound {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play,
.novo,
.download,
.partitura {
  padding: 10px;
  margin: 20px;
  border-radius: 10px;
  background: #36394480;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px #00000033;
  color: #a7a7a7;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  gap: 10px;
  overflow: hidden;
}

.play:hover,
.novo:hover,
.download:hover,
.partitura:hover {
  background: #fa6a0a;
  color: #111;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.porcentagem {
  font-weight: 900;
  margin-left: 10px;
  display: none;
}

/*CADASTRO*/
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  padding-top: 150px;
}

.form-group {
  width: 300px;
  margin-top: 20px;
  background-color: transparent;
  border-bottom: 1px solid #4b4b4b;
}

.form-group input {
  background-color: transparent;
  border: none;
  color: #a7a7a7;
  font-size: 1em;
  width: 92%;
}

#mensagem {
  width: 100%;
  padding: 10px;
  margin-top: 30px;
  color: #a7a7a7;
  font-size: 1em;
  border: 1px solid #4b4b4b;
  border-radius: 5px;
  background-color: transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#mensagem:focus {
  border-color: #fa6a0a;
  box-shadow: 0 0 5px rgba(250, 151, 3, 0.5);
}

#mensagem {
  resize: vertical;
  /* Permite que o usuário ajuste a altura */
  min-height: 100px;
  /* Altura mínima */
}

.btn {
  text-align: center;
}

.visible {
  color: #4b4b4b;
  margin: 5px auto;
  cursor: pointer;
}

.visible:hover {
  color: #fa6a0a;
}

.boxPergunta {
  color: #e4daf5;
  flex-wrap: wrap;
  margin: 0 10px;
  padding: 20px 10px 100px 10px;
}

.boxPergunta a {
  color: #1dfcde;
  font-weight: 900;
  margin-left: 5px;
}

.boxPergunta a:hover {
  color: #fa6a0a;
}

.edite {
  color: #fa6a0a;
}

.edite:hover {
  color: #1dfcde;
}

.esqueciSenha {
  padding: 10px 0;
}

.esqueciSenha a {
  color: #a3a3a3;
}

.esqueciSenha a:hover {
  color: #1dfcde;
}

.lixo i {
  font-size: 1.5em;
  color: #fa0000;
  margin-left: 5px;
}

.lixo i:hover {
  color: #fa6a0a;
}

/*ALERTA*/
.alerta {
  top: 110px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 30px 50px 30px;
  margin: 0 20px;
  border-radius: 10px;
  background-color: #2c2c2c;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.boxOk {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-top: 40px;
  border-radius: 10px;
  background-color: #fa6a0a;
}

.boxOk:hover {
  animation: rubberBand 1s;
}

.boxOk button {
  color: #111;
  font-weight: 900;
  font-size: 1em;
}

.xBox {
  display: flex;
  justify-content: end;
  margin-bottom: 20px;
  font-size: 1.5em;
  color: #fa6a0a;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.5, 0.2, 0.3, 1);
}

.xBox:hover {
  transform: rotate(360deg);
}



/*RODAPÉ*/

.copyright {
  width: 100%;
  bottom: 5px;
  padding: 20px 0px;
  display: block;
  justify-content: center;
  border-top: solid 1px #e329fc;
  background-color: #000;
}

.copyright p {
  text-align: center;
}

/*RESPONSIVO*/

@media all and (min-width: 200px) and (max-width: 600px) {
  /* TOGGLE */

  .menu-toggle {
    display: none;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 10000;
  }

  .menu-toggle span {
    display: block;
    height: 4px;
    background: #e4daf5;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Novo estilo para o hover */
  .menu-toggle:hover span {
    background: #fa6a0a;
    /* Cor laranja no hover */
  }

  /* Ajustes para a BoxToggle */
  .BoxToggle {
    position: fixed;
    /* Use fixed para sobrepor o conteúdo principal */
    top: 0;
    right: -100%;
    /* Inicialmente fora da tela à direita */
    width: 80px;
    height: 100vh;
    background: linear-gradient(to top, black, #2d3242);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: all 0.5s ease;
    /* Suavidade no movimento */
    z-index: 1000;
    /* Sobrepõe outros elementos */
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    /* Adiciona um leve efeito de sombra */
  }

  .BoxToggle ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    /* Itens em coluna */
    align-items: center;
    /* Centraliza os itens horizontalmente */
    gap: 15px;
  }

  .BoxToggle ul li a {
    color: #e4daf5;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }

  .BoxToggle ul li a:hover {
    color: #e329fc;
  }

  /* Quando o toggle estiver ativo */
  .BoxToggle.active {
    right: 0;
    /* Move para dentro da tela pelo lado direito */
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  /* Posicionando o menu-toggle no lado direito */
  .menu-toggle {
    display: flex;
    position: fixed;
    top: 15px;
    right: 25px;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
  }

  header {
    padding: 20px 0px;
  }

  nav ul {
    display: none;
  }

  .content {
    flex-direction: column-reverse;
  }

  .w50 {
    padding: 80px 30px 0px 30px;
  }

  .w50 img {
    max-width: 100%;
  }

  /*SOUND*/

  .containerSound {
    height: 100%;
  }

  .boxSound {
    width: 90%;
  }

  .labelSound {
    font-size: 1em;
    flex-direction: column;
  }

  .labelSound i {
    font-size: 1em;
  }

  /*Botão Soud */

  .boxButtonSound {
    flex-direction: column;
  }

  .play,
  .novo,
  .download,
  .partitura {
    margin-top: 30px;
    width: 90%;
  }

  /*BOTÃO CONVERTER*/
  .containerConvert {
    padding: 50px 20px;
  }

  .boxTxtConverter {
    padding: 15px;
  }

  .boxBtnConverter {
    padding: 20px;
  }

  .arquivoConverte {
    width: 100%;

  }

  .arquivoConverte i,
  .arquivoConverte span {
    font-size: 1em;
    margin-right: 10px;
  }

}

@media all and (min-width: 601px) and (max-width: 1000px) {
  .content {
    flex-direction: column-reverse;
  }

  .w50 {
    padding: 80px 50px 0px 50px;
  }

  .w50 img {
    max-width: 100%;
  }
}