@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
.header-voltar a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  letter-spacing: 0px;
  color: #75C79E;
  font-size: 1.3rem;
  font-weight: 300;
}
.pag-projetos {
  max-width: 1170px;
  padding: 1.5rem 0;
  margin: 0 auto;
}
.pag-projetos-container {
  display: flex;
  align-items: center;
  justify-content: center;
  display: grid;
  grid-template-areas: "a a";
  animation: fadeInUp 1s ease;
}
@media (max-width: 1000px) {
  .pag-projetos-container {
    grid-template-areas: "a";
  }
}
.pag-projetos-container a img {
  width: 500px;
  grid-area: "a";
  margin: 10px;
  border-radius: 10px;
  box-shadow: 2px 5px 50px rgba(0, 0, 0, 0.2);
  opacity: 0.6;
}
@media (max-width: 1000px) {
  .pag-projetos-container a img {
    width: 300px;
    opacity: 0.6;
  }
}
.pag-projetos-container a img:hover {
  opacity: 1;
}

.container-obg {
  animation: pagina 1s;
}
.container-obg .obrigado {
  animation: pagina 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-top: 25vh;
  animation: pagina 1s;
  transition: 0.4s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "roboto mono";
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  width: 10px;
  background: rgba(117, 199, 158, 0.337254902);
}

body {
  background-color: #2D2F33;
  color: #fff;
}
body a {
  color: #fff;
  text-decoration: none;
  transition: 0.401s;
}
body ul {
  list-style: none;
}

.header {
  max-width: 1170px;
  padding: 1.5rem 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pagina 1s;
}
@media (max-width: 700px) {
  .header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header-brand {
  font-family: sans-serif;
}
@media (max-width: 700px) {
  .header-brand {
    margin-top: 15px;
  }
}
.header-brand a {
  font-size: 1.8rem;
  line-height: 28px;
  letter-spacing: -2px;
}
.header-brand a span {
  color: #A7A8A9;
}
.header nav {
  display: flex;
  justify-content: space-between;
  margin-left: 50px;
}
.header-navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-around;
  margin: 0 50px 0 0;
}
@media (max-width: 700px) {
  .header-navbar {
    position: fixed;
  }
}
.header-navbar ul {
  display: flex;
  justify-content: space-around;
  margin: 10px;
}
@media (max-width: 1000px) {
  .header-navbar ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
  }
}
.header-navbar ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  width: 120px;
  font-size: 1rem;
}
@media (max-width: 1000px) {
  .header-navbar ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 20px;
    margin: 20px;
    font-size: 1.2rem;
    z-index: 999;
  }
}
.header-navbar ul li a {
  color: #fff;
  transition: 0.4s;
}
@media (max-width: 700px) {
  .header-navbar ul li a {
    color: #fff;
    transition: 0.2s;
  }
}
.header-navbar ul li a:hover {
  color: #75C79E;
  text-shadow: 2px 5px 1px rgb(0, 0, 0);
  transition: 0.2s;
}
.header-navbar ul li a:hover span {
  opacity: 1;
}
.header-navbar ul li .active {
  color: #75C79E;
  text-shadow: 2px 5px 1px rgb(0, 0, 0);
}
.header .navbar-apps {
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-left: 50px;
  font-size: 1rem;
}
@media (max-width: 1000px) {
  .header .navbar-apps {
    display: none;
  }
}
.header .navbar-apps a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}
.header .navbar-apps a:hover {
  color: #75C79E;
}
.header .navbar-apps img {
  margin: 0 10px;
  width: 20px;
}

#back-to-top {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 50px;
  right: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 99999;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: pagina 1s;
}
@media (max-width: 1000px) {
  #back-to-top {
    display: none;
  }
}
#back-to-top img {
  width: 30px;
  transform: rotate(-90deg);
  padding-left: 2px;
}

.section {
  max-width: 1170px;
  padding: 1.5rem 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  animation: pagina 1s;
}
@media (max-width: 700px) {
  .section {
    max-width: 100vw;
  }
}
.section-text {
  margin-left: 100px;
}
@media (max-width: 700px) {
  .section-text {
    margin-left: 10px;
  }
}
.section-text h2 {
  width: 180px;
  height: 30px;
  background-color: #75C79E;
  color: #2D2F33;
  font-size: 0.9rem;
  padding: 4px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  margin: 20px 0;
  font-weight: 400;
  animation: backInLeft 1s ease;
}
.section-text h1 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 60px;
  animation: fadeInLeft 1s ease;
}
@media (max-width: 700px) {
  .section-text h1 {
    font-size: 2rem;
  }
}
.section-text p {
  color: #A7A8A9;
  margin: 20px 0 90px 0;
  font-weight: 500;
  animation: fadeInLeft 1.2s ease;
  max-width: 50ch;
}
.section-text p strong {
  color: #75C79E;
}
@media (max-width: 700px) {
  .section-text p {
    font-size: 0.8rem;
    max-width: 30ch;
  }
}
.section-text a {
  color: #75C79E;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.2rem;
  animation: fadeInUp 1s ease;
}
.section-text a:hover {
  text-shadow: 4px 6px 10px rgb(0, 0, 0);
}
.section-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 700px) {
  .section-image {
    display: none;
  }
}
.section-image img {
  width: 480px;
  margin-right: 20px;
  margin-top: 10px;
}
.section .bola {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgb(35, 37, 41);
  background: linear-gradient(135deg, rgb(35, 37, 41) 10%, rgb(35, 37, 41) 10%, #2D2F33 100%);
  top: 100px;
  right: 100px;
  z-index: -1;
  box-shadow: 2px 3px 19px rgba(0, 0, 0, 0.3);
}
.section .bolinha {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgb(35, 37, 41);
  top: 120px;
  right: 150px;
  display: flex;
  z-index: -1;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  animation: jackInTheBox 2s ease;
}
@media (max-width: 700px) {
  .section .bolinha {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    right: 50px;
  }
}
.section .bolinha img {
  width: 30px;
}
@media (max-width: 700px) {
  .section .bolinha img {
    width: 20px;
  }
}
.section .bolinha2 {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgb(35, 37, 41);
  top: 450px;
  right: 600px;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  animation: jackInTheBox 2s ease;
}
@media (max-width: 700px) {
  .section .bolinha2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    right: 45px;
    top: 370px;
  }
}
.section .bolinha2 img {
  width: 45px;
}
@media (max-width: 700px) {
  .section .bolinha2 img {
    width: 25px;
  }
}
.section .bolinha3 {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgb(35, 37, 41);
  top: 430px;
  right: 170px;
  display: flex;
  z-index: 0;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  animation: jackInTheBox 2s ease;
}
@media (max-width: 700px) {
  .section .bolinha3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    right: 120px;
    top: 550px;
    z-index: -1;
  }
}
.section .bolinha3 img {
  width: 55px;
}
@media (max-width: 700px) {
  .section .bolinha3 img {
    width: 25px;
  }
}
.section .bolinha-verde {
  background-color: #75C79E;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: -1;
  top: 420px;
  right: 60px;
  animation: rollIn 1s ease;
}
.section .bolinha-cinza {
  background-color: rgb(35, 37, 41);
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: 220px;
  right: 60px;
  animation: rollIn 1s ease;
}
.section .bolinha-cinza-grande {
  background: linear-gradient(135deg, rgb(35, 37, 41) 10%, rgb(35, 37, 41) 10%, #2D2F33 100%);
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: 430px;
  right: 560px;
  z-index: -2;
  animation: rollIn 1s ease;
}

.works {
  max-width: 1170px;
  padding: 1.5rem 0;
  margin: 0 auto;
  max-width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
  margin: 0 auto;
  justify-content: space-around;
  background-color: #25262A;
  animation: pagina 1s;
}
@media (max-width: 700px) {
  .works {
    margin-top: 200px;
    flex-direction: column;
    height: auto;
  }
}
@media (max-width: 700px) {
  .works-banner {
    width: 90vw;
    margin-bottom: 30px;
    position: relative;
  }
}
.works-banner #boxes {
  background-color: #2D2F33;
  border-radius: 5px;
  margin: 8px;
  padding: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 700px) {
  .works-banner #boxes {
    padding: 10px;
  }
}
.works-banner #boxes h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #75C79E;
  font-weight: 400;
  font-size: 1.5rem;
  margin: 20px;
}
@media (max-width: 700px) {
  .works-banner #boxes h2 {
    font-size: 1.3rem;
    margin: 10px 5px;
  }
}
.works-banner #boxes p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A7A8A9;
  font-size: 0.9rem;
  margin: 20px;
  line-height: 1.4;
}
@media (max-width: 700px) {
  .works-banner #boxes p {
    font-size: 0.9rem;
    margin: 0px;
    text-align: center;
  }
}
.works-banner #boxes a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin: 20px;
}
@media (max-width: 1000px) {
  .works-banner #boxes a {
    margin: 5px;
  }
}
.works-banner #boxes a:hover {
  text-decoration: underline;
}
.works-banner #boxes::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  background: #75C79E;
}
@media (max-width: 700px) {
  .works .introduce {
    margin: 0;
    width: 90vw;
  }
}
.works .introduce h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 700px) {
  .works .introduce h1 {
    font-size: 2rem;
    width: 100%;
    margin-bottom: 40px;
  }
}
.works .introduce h1 span {
  color: #75C79E;
}
.works .introduce h2 {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 30px;
}
@media (max-width: 700px) {
  .works .introduce h2 {
    font-size: 1rem;
    width: 100%;
    margin-bottom: 20px;
  }
}
.works .introduce p {
  color: #A7A8A9;
  margin: 10px 0;
  text-align: start;
}
@media (max-width: 700px) {
  .works .introduce p {
    font-size: 0.9rem;
    width: 100%;
  }
}

.project {
  max-width: 1170px;
  padding: 1.5rem 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  max-width: 100vw;
  background-color: #25262A;
  display: flex;
  justify-content: space-evenly;
  animation: pagina 1s;
}
@media (max-width: 700px) {
  .project {
    flex-direction: column;
    margin-top: -1px;
    height: auto;
  }
}
.project-text {
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (max-width: 700px) {
  .project-text {
    margin-top: 16px;
  }
}
.project-text h1 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
}
@media (max-width: 700px) {
  .project-text h1 {
    font-size: 1.3rem;
  }
}
.project-text p {
  color: #A7A8A9;
  margin: 20px;
  font-weight: 300;
}
@media (max-width: 700px) {
  .project-text p {
    font-size: 0.7rem;
  }
}
.project-text a {
  margin: 20px;
}
@media (max-width: 700px) {
  .project-text a {
    margin: 10px;
  }
}
.project-text a img {
  width: 450px;
  height: 250px;
  border-radius: 15px;
  box-shadow: 5px 20px 20px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.4s;
}
@media (max-width: 700px) {
  .project-text a img {
    width: 250px;
    height: 150px;
    opacity: 0;
  }
}
.project-text a img:hover {
  opacity: 0.5;
}
.project-text a:hover {
  opacity: 1;
}
.project-text .btn-projects {
  color: #75C79E;
  text-decoration: underline;
  font-weight: 500;
  font-size: 1rem;
}
@media (max-width: 700px) {
  .project-text .btn-projects {
    display: none;
  }
}
.project-text .btn-projects:hover {
  text-shadow: 4px 6px 5px rgb(0, 0, 0);
  transition: 0.4s;
}
.project-image {
  display: flex;
  flex-direction: column;
}
.project-image img {
  width: 450px;
  height: 250px;
  margin: 16px;
  border-radius: 15px;
  box-shadow: 5px 20px 20px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.4s;
}
@media (max-width: 700px) {
  .project-image img {
    width: 250px;
    height: 150px;
    opacity: 0;
    margin: 10px;
  }
}
.project-image img:hover {
  opacity: 0.5;
}
.project-image .btn-projects-mobile {
  display: none;
}
@media (max-width: 700px) {
  .project-image .btn-projects-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #75C79E;
    text-decoration: underline;
    font-weight: 500;
    margin: 20px 0;
  }
}
.project-image .btn-projects-mobile:hover {
  text-shadow: 4px 6px 10px rgb(0, 0, 0);
  transition: 0.4s;
}

.contato {
  width: 100%;
  height: 100vh;
  display: flex;
}
.contato .form-contato {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: pagina 1s;
  width: 100%;
  height: 100%;
}
@media (max-width: 1000px) {
  .contato .form-contato {
    margin-top: 15px;
  }
}
.contato .form-contato label {
  font-size: 1.3rem;
}
.contato .form-contato input {
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
  border: none;
  padding: 10px;
  border-radius: 5px;
  width: 30vw;
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.5);
  color: white;
}
@media (max-width: 1000px) {
  .contato .form-contato input {
    width: 80vw;
  }
}
.contato .form-contato textarea {
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
  border: none;
  padding: 10px;
  border-radius: 5px;
  color: black;
  width: 30vw;
  min-height: 10rem;
  max-height: 15rem;
  resize: vertical;
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1000px) {
  .contato .form-contato textarea {
    width: 80vw;
  }
}
.contato .form-contato .input-btn {
  margin-bottom: 0px;
  background-color: #75C79E;
  border: none;
  padding: 10px;
  border-radius: 5px;
  color: white;
  width: 20vw;
  cursor: pointer;
  transition: 0.4s;
}
@media (max-width: 1000px) {
  .contato .form-contato .input-btn {
    width: 70vw;
  }
}
.contato .form-contato .input-btn:hover {
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.5);
  opacity: 0.7;
}
.contato .form-contato label {
  padding: 5px;
}

.footer {
  background-color: #25262A;
  width: 100%;
  max-width: 1170px;
  padding: 1.5rem 0;
  margin: 0 auto;
  animation: pagina 1s;
  max-width: none;
  padding: 5px 0;
  position: relative;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  margin: 50px 50px 0 50px;
}
@media (max-width: 700px) {
  .footer .container {
    margin: 10px;
  }
}
.footer .container-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.footer .container-text h1 {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 35ch;
}
@media (max-width: 700px) {
  .footer .container-text h1 {
    font-size: 0.8rem;
    max-width: 22ch;
  }
}
.footer .container-text h2 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .footer .container-text h2 {
    font-size: 0.6rem;
  }
}
.footer .container-text h2 span {
  color: #75C79E;
  text-decoration: underline;
}
.footer .container-infos {
  margin: 10px 0;
}
.footer .container-infos p {
  color: #A7A8A9;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
@media (max-width: 700px) {
  .footer .container-infos p {
    font-size: 0.6rem;
  }
}
.footer .container-infos h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 500;
}
@media (max-width: 700px) {
  .footer .container-infos h2 {
    font-size: 0.5rem;
    font-weight: 300;
  }
}
.footer .container-infos ul {
  float: right;
}
.footer .container-infos ul li {
  margin: 10px 0;
}
@media (max-width: 1000px) {
  .footer .container-infos ul li {
    margin: 2px 0;
  }
}
.footer .container-infos ul li a {
  font-size: 1rem;
  font-weight: 300;
}
@media (max-width: 700px) {
  .footer .container-infos ul li a {
    font-size: 0.7rem;
    color: #75C79E;
  }
}
.footer .container-infos ul li a:hover {
  color: #75C79E;
}
.footer .copy {
  max-width: 1170px;
  padding: 1.5rem 0;
  margin: 0 auto;
  justify-content: space-evenly;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 700px) {
  .footer .copy {
    padding: 0;
    margin: 0;
  }
}
.footer .copy .nome {
  display: flex;
  align-items: center;
}
.footer .copy .nome h2 {
  margin-right: 20px;
  letter-spacing: -3px;
}
.footer .copy .nome h2 span {
  color: #A7A8A9;
}
.footer .copy .nome p {
  color: #A7A8A9;
}
.footer .copy-redes {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin-left: 50px;
  font-size: 0.9rem;
}
@media (max-width: 700px) {
  .footer .copy-redes {
    display: none;
  }
}
.footer .copy-redes a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}
.footer .copy-redes a:hover {
  color: #75C79E;
}
.footer .copy-redes img {
  margin: 0 10px;
  width: 20px;
}

.footer::before {
  content: "";
  display: block;
  width: 1rem;
  height: 5rem;
  background: #75C79E;
  position: absolute;
  top: -2.5rem;
  left: 4rem;
  transform: rotate(40deg);
}
@media (max-width: 1000px) {
  .footer::before {
    content: "";
    display: block;
    width: 0.5rem;
    height: 2rem;
    background: #75C79E;
    position: absolute;
    top: -1rem;
    left: 4rem;
    transform: rotate(40deg);
  }
}

@keyframes pagina {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
[data-anime] {
  opacity: 0;
  transition: 0.8s;
}

[data-anime=left] {
  transform: translate3d(-50px, 0, 0);
}

[data-anime=top] {
  transform: translate3d(0px, 50px, 0);
}

[data-anime=topmid-right] {
  transform: translate3d(50px, 50px, 0px);
}

[data-anime=topmid-left] {
  transform: translate3d(-50px, 50px, 0px);
}

[data-anime=topmid-left2] {
  transform: translate3d(-50px, -50px, 0px);
}

[data-anime].animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/*# sourceMappingURL=styles.css.map */
