@charset "UTF-8";

* {
  margin: 0;
}
body {
  background-color: #0f0f1e;
  color: white;
  overflow-x: hidden;
}

.logo {
  font-size: 20px;
  font-weight: 900;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: aqua;
  text-shadow: rgba(0, 255, 255, 0.421) 3px 0px 3px;
  margin-left: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

ul {
  list-style: none;
  display: flex;
  margin: 0px;
}

ul > li {
  margin: 0px 20px;
  font-size: 18px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-weight: 600;
  position: relative;
  text-shadow: rgba(250, 255, 255, 0.296) 3px 0px 3px;
  cursor: pointer;
}

li::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 0%;
  background-color: aqua;
  top: 100%;
  left: 0%;
  transition: width 0.4s ease;
}

li:hover::after {
  width: 100%;
  cursor: pointer;
}

.content {
  width: 100%;
  height: 88vh;
  overflow: hidden;
  display: none;
  align-items: center;
}

.content.active {
  width: 100%;
  height: 88vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

@keyframes content {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
  }
}

@keyframes content2 {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
  }
}

img {
  width: 60%;
  height: 60%;
  filter: drop-shadow(3px 3px 9px rgba(0, 255, 255, 0.601));
}

.img {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: content 0.7s ease-out;
}

.texto {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

p#titulo {
  font-size: 20px;
  font-weight: 900;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: aqua;
  text-shadow: rgba(0, 255, 255, 0.421) 3px 0px 3px;
  margin-left: 20px;
  text-decoration: underline;
  margin: 0;
  animation: content2 0.7s ease-out;
}

p#nome {
  font-size: 80px;
  margin: 0;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-weight: 900;
  text-shadow: rgba(0, 255, 255, 0.64) 3px 0px 3px;
  animation: content2 0.7s ease-out;
}

p#texto {
  font-size: 20px;
  width: 50%;
  text-align: justify;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  animation: content 0.7s ease-out;
}

@media (max-width: 575px) {
  .content.active {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;

    flex-direction: column;
    align-items: center;
  }

  img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(3px 3px 9px rgba(0, 255, 255, 0.601));
  }

  .img {
    width: 64%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .texto {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  p#titulo {
    font-size: 20px;
    font-weight: 900;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
    color: aqua;
    text-shadow: rgba(0, 255, 255, 0.421) 3px 0px 3px;
    margin-left: 20px;
    text-decoration: underline;
    margin: 0;
  }

  p#nome {
    font-size: 60px;
    margin: 0;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
      "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    font-weight: 900;
    text-shadow: rgba(0, 255, 255, 0.64) 3px 0px 3px;
  }

  p#texto {
    font-size: 20px;
    width: 50%;
    text-align: justify;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
  }
}

div#antes {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transform: translateY(500%);
  font-size: 50px;
  font-weight: 900;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: aqua;
  text-shadow: rgba(0, 255, 255, 0.421) 3px 0px 3px;
  margin-left: 20px;
}

div#antes:hover {
  display: flex;
  position: absolute;
  transform: translateY(500%);
  font-size: 50px;
  font-weight: 900;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: rgb(58, 125, 125);
  text-shadow: rgba(0, 255, 255, 0.421) 3px 0px 3px;
  margin-left: 20px;
}

div#antes::before {
  content: "<";
}

div#depois {
  display: flex;
  position: absolute;
  transform: translate(95vw, 500%);
  font-size: 50px;
  font-weight: 900;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: aqua;
  text-shadow: rgba(0, 255, 255, 0.421) 3px 0px 3px;
  
}

div#depois:hover {
  display: flex;
  position: absolute;

  transform: translate(95vw, 500%);
  font-size: 50px;
  font-weight: 900;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: red;
  text-shadow: rgba(0, 255, 255, 0.421) 3px 0px 3px;
}
div#depois::before {
  content: ">";
}

.linha {
  height: 2vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.linha > div {
  display: flex;
  background-color: gray;
  height: 5px;
  width: 80px;
  border-radius: 50px;
  margin: 0px 10px;
}

.linha > div.active {
  background-color: aqua;
  height: 5px;
  width: 80px;
  margin: 0px 10px;
  animation: linha 0.5s ease-out;
}

@keyframes linha {
  0% {
    width: 0px;
  }
  100% {
    width: 80px;
  }
}

.numero {
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: aqua;
  text-shadow: rgba(0, 255, 255, 0.421) 3px 0px 3px;
  margin: 0px 0px 7px 0px;
  height: 2vh;
  transition: 1s;
}


