@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;
}

main #content {
  background-color: #f5f5f5;
}

main #content #slideColumn {
  background-color: #f5f5f5;
}

main #content #slideColumn #slide {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

main #content #slideColumn #slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

main #content #slideColumn #slide img.active {
  opacity: 1;
}

#slide-controls {
  text-align: center;
}

main #content #slideColumn #slide-controls button {
  border: 1px solid #000000;
  background-color: #ddd;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 10px 5px;
  border-radius: 50%;
  cursor: pointer;
}

main #content #slideColumn #slide-controls button.active {
  background-color: #555;
  color: #fff;
}

main #content #services {
  background-color: #f1fff1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

main #content #services .services {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main #content #services h1 {
  font-family: "Open Sans", "Poppins", Arial, Helvetica;
  text-align: center;
}

main #content #services h2 {
  color: #94cb76;
  font-family: "Open Sans", "Poppins", Arial, Helvetica;
}

main #services .servicesList {
  display: flex;
  flex-direction: row;
}

main #content #services .servicesList ul {
  font-family: "Poppins", Arial, Helvetica;
  font-weight: 700;
  padding: 20px;
}

main #content #services .servicesList ul li:hover {
  color: #ec4030;
  cursor: pointer;
}

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 #content #slideColumn #slide {
    height: 400px;
  }

  main #content #slideColumn #slide-controls button {
    width: 17px;
    height: 17px;
  }

  main #content #services h1 {
    font-size: 30px;
  }

  main #content #services h2 {
    font-size: 25px;
  }

  main #content #services .servicesList ul {
    font-size: 13px;
    padding: 3px;
  }

  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) {
  nav {
    flex-direction: column;
    justify-content: center;
  }

  nav .logo img {
    width: 125px;
  }

  main #content #slideColumn #slide {
    height: 325px;
  }

  main #content #slideColumn #slide-controls button {
    width: 15px;
    height: 15px;
  }

  main #content #services h2 {
    font-size: 25px;
  }

  main #content #services .servicesList {
    flex-direction: column;
  }

  main #content #services .servicesList ul {
    padding: 5px;
    font-size: 15px;
  }

  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 {
    text-align: center;
  }
}

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

  nav .logo img {
    width: 125px;
  }

  main #content #slideColumn #slide {
    height: 250px;
  }

  main #content #services h1 {
    line-height: 28px;
    font-size: 28px;
  }

  main #content #services h2 {
    font-size: 20px;
  }

  main #content #services .servicesList ul {
    padding: 5px;
    font-size: 14px;
  }

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

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

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

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

  nav .logo img {
    width: 125px;
  }

  main #content #slideColumn #slide {
    height: 200px;
  }

  main #content #services h1 {
    line-height: 25px;
    font-size: 25px;
  }

  main #content #services h2 {
    font-size: 17px;
  }

  main #content #services .servicesList ul {
    padding: 3px;
    font-size: 12px;
  }

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

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

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

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

  nav .logo img {
    width: 125px;
  }

  main #content #slideColumn #slide-controls button {
    width: 13px;
    height: 13px;
  }

  main #content #services h2 {
    font-size: 15px;
  }

  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;
  }
}
