@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@600;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  background: #151515;
  height: 15vh;
}

nav .nav-list a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 1000;
}

nav .nav-list a:hover {
  color: #94cb76;
}

.logo img {
  width: 200px;
}

.nav-list {
  list-style: none;
  display: flex;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.nav-list li {
  letter-spacing: 1px;
  padding: 8px;
  font-size: 15px;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #fff;
  margin: 8px;
  transition: 0.3s;
}

main {
  background-size: cover;
  height: 85vh;
}

/* Form de contato */
main #contact {
  color: #151515;
  background-color: #f5f5f5;
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main main #contact .column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main #contact .column h1 {
  text-align: center;
  font-family: "Open Sans", "Poppins", Arial, Helvetica, sans-serif;
}

main #contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 10px;
  padding: 20px;
  width: 500px;
}

main #contact form label {
  color: #151515;
  font-family: "Open Sans", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

main #contact form input,
textarea {
  background-color: #f5f5f5;
  border: 2px solid #000000;
  border-radius: 25px;
  color: #4e4e4e;
  font-size: 15px;
  outline: none;
  padding: 15px;
  width: 100%;
}

main #contact form button {
  color: #121212;
  background-color: #f5f5f5;
  border: 2px solid #000000;
  border-radius: 50px;
  width: 80px;
  padding: 8px;
  cursor: pointer;
  font-weight: 800;
}

main #contact form button:hover {
  color: #f5f5f5;
  background-color: #121212;
  border: 2px solid #f5f5f5;
  border-radius: 50px;
  width: 80px;
  padding: 8px;
  cursor: pointer;
  font-weight: 800;
}

main #contacts {
  background-color: #262626;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 2rem;
}

main #contacts .imgContacts img {
  width: 200px;
}

main #contacts .contactsList {
  display: flex;
  flex-direction: column;
}

main #contacts .contactsList h2 {
  color: #94cb76;
  font-family: "Open Sans", "Poppins", Arial, Helvetica;
  line-height: 50px;
}

main #contacts .contactsList a i {
  font-family: "Open Sans", "Poppins", Arial, Helvetica;
  color: #fff;
  font-weight: 500;
  line-height: 22px;
}

main #contacts .contactsList i:hover {
  color: #94cb76;
}

main #contacts .contactsList i {
  font-family: "Open Sans", "Poppins", Arial, Helvetica;
  color: #fff;
  font-weight: 500;
}

main #contacts .contactsList .iconTime i {
  color: #fff;
  line-height: 22px;
}

main #contacts .contactsList .iconTime i:hover {
  color: #fff;
}

footer {
  background-color: #000000;
  padding: 20px;
  display: flex;
  align-self: center;
  justify-content: center;
}

footer p {
  color: #f5f5f5;
  font-family: "Open Sans", "Poppins", Arial, Helvetica;
  font-size: 14px;
}

footer p a {
  color: #bcbcbc;
  text-decoration: none;
}

footer p a strong:hover {
  color: #94cb76;
}

footer p a:hover {
  color: #ec3030;
}

/* Scroll Bar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  width: 10px;
  background-color: #474747;
}

/* RESPONSIVIDADE */
@media screen and (max-width: 1100px) {
  /*NONE*/
}

@media screen and (max-width: 768px) {
  nav .logo img {
    width: 150px;
  }

  main #contacts .imgContacts img {
    width: 150px;
  }

  main #contacts .contactsList h2 {
    font-size: 25px;
  }

  main #contacts .contactsList a i {
    font-size: 16px;
  }

  main #contacts .contactsList i {
    font-size: 16px;
  }

  footer p {
    font-size: 12px;
  }
}

@media screen and (max-width: 550px) {
  body {
    overflow-x: hidden;
  }

  nav {
    flex-direction: column;
    justify-content: center;
  }

  nav .logo img {
    width: 125px;
  }

  main #contact .column h1 {
    font-size: 27px;
    text-align: center;
  }

  main #contact form {
    width: 435px;
  }

  main #contacts .imgContacts img {
    display: none;
  }

  main #contacts .contactsList h2 {
    font-size: 26px;
    line-height: 30px;
  }

  main #contacts .contactsList a i {
    font-size: 16px;
  }

  main #contacts .contactsList i {
    font-size: 16px;
  }

  footer p {
    font-size: 12px;
    text-align: center;
  }
}

@media screen and (max-width: 435px) {
  nav {
    flex-direction: column;
    justify-content: center;
  }

  nav .logo img {
    width: 125px;
  }

  main #contact .column h1 {
    font-size: 22px;
    text-align: center;
  }

  main #contact form {
    width: 350px;
  }

  main #contact form label {
    font-size: 15px;
  }

  main #contacts .contactsList h2 {
    font-size: 20px;
    line-height: 30px;
  }

  main #contacts .contactsList a i {
    font-size: 16px;
  }

  main #contacts .contactsList i {
    font-size: 16px;
  }
}

@media screen and (max-width: 350px) {
  main #contact .column h1 {
    font-size: 18px;
    text-align: center;
  }

  main #contact form {
    width: 300px;
  }

  main #contact form label {
    font-size: 14px;
  }

  main #contacts .contactsList h2 {
    font-size: 17px;
    line-height: 17px;
  }

  main #contacts .contactsList a i {
    font-size: 16px;
  }

  main #contacts .contactsList i {
    font-size: 16px;
  }
}

@media screen and (max-width: 290px) {
  main #contact .column h1 {
    font-size: 17px;
    text-align: center;
  }

  main #contact form {
    width: 290px;
  }

  main #contact form label {
    font-size: 14px;
  }

  main #contacts .contactsList h2 {
    font-size: 17px;
    line-height: 17px;
  }

  main #contacts .contactsList a i {
    font-size: 14px;
  }

  main #contacts .contactsList i {
    font-size: 14px;
  }
}
