@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Slab:ital,wght@0,500;1,400;1,500;1,600&family=Montserrat:ital,wght@0,400;0,500;0,600;0,900;1,600;1,800&display=swap");
* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ffffff;
}

:root {
  --fonte-primária: "Poppins", sans-serif;
  --fonte-secundaria:"josefin Slab",sans-serif;
}

body {
  background-color: green;
}

header {
  font-family: var(--fonte-primária);
}

.topo {
  background-color: #383c3d;
}

main p {
  font-family: var(--fonte-secundaria);
  text-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.4);
  font-weight: 500;
}

section h2 {
  font-family: var(--fonte-primária);
}

section a {
  color: #ffffff;
  text-decoration: none;
}

.img-carousel {
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.9;
}

body {
  background: #232526;
  background: -webkit-gradient(linear, left top, right top, from(#414345), to(#232526));
  background: linear-gradient(to right, #414345, #232526);
}

.root {
  margin-top: 3rem;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 250px))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 250px));
  grid-gap: 20px;
}

.root .img-wrapper {
  background-color: #666869;
  margin-left: 6vmax;
  width: 250px;
}

.root .img {
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 5px;
}

.btn-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: default;
  margin-top: 10px;
}

.btn-section .next-page {
  font-family: var(--fonte-primária);
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  color: #ffffff;
  background-color: #ffffff00;
  border: solid 2px white;
  border-radius: 15px;
  padding: 5px 10px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-section .next-page:hover {
  background-color: #817e7e60;
}

footer span {
  cursor: default;
  color: #ffffffb2;
}

.contato li a {
  color: #ffffffb2;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  footer span {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */