@charset "UTF-8";
html, body {
  margin: 0px;
  padding: 0px;
  font-family: Lexend, sans-serif;
  font-weight: 400;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/**
 * Padrões
 */
.container {
  width: 90vw;
  max-width: 960px;
  margin: 0px auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/**
 * Layout principal
 */
nav {
  position: sticky;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 999;
  color: #fff;
  background-color: #000;
}
nav .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1em 2em;
}
nav .container .links {
  flex: 1;
  padding: 1em 0em;
  list-style: none;
  text-align: center;
}
nav .container .links li {
  display: inline-block;
}
nav .container .links li + li {
  margin-left: 2em;
}
nav .container .links li a:hover {
  border-bottom: 1px solid #fff;
}
nav .container .social {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}
nav .container .social a img {
  height: 24px;
}

header {
  display: flex;
  flex-direction: column;
}
@media (min-width: 980px) {
  header {
    flex: 1;
    flex-direction: row;
  }
}
header .header-section {
  position: relative;
  z-index: 1;
  height: 60vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #999;
  background-color: #333;
  transition: 0.25s all ease-in-out;
}
@media (min-width: 980px) {
  header .header-section {
    flex: 1;
    height: auto;
  }
}
header .header-section img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
  mix-blend-mode: multiply;
  object-fit: cover;
  object-position: center;
}
header .header-section div {
  flex: 1;
  font-size: 1.6em;
  font-weight: bold;
  text-align: center;
}
header .header-section:hover {
  color: #000;
  background-color: #fff;
}
@media (min-width: 980px) {
  header .header-section:hover {
    flex: 2;
  }
}

main {
  padding: 1em 0em 3em;
  background-color: #f7f7f7;
  font-size: 18px;
  line-height: 1.6em;
}
main h2 {
  margin: 2em;
  padding: 0em;
  font-size: 2em;
  text-align: center;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #e29a10;
}
footer #rodape .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2em 0em;
}
@media (min-width: 980px) {
  footer #rodape .container {
    flex-direction: row;
  }
}
footer #rodape .container > div {
  flex: 1;
}
@media (min-width: 980px) {
  footer #rodape .container > div:nth-child(1) {
    text-align: left;
  }
  footer #rodape .container > div:nth-child(2) {
    text-align: center;
  }
  footer #rodape .container > div:nth-child(3) {
    text-align: right;
  }
}
footer #todos-direitos {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 2em 0em;
  text-align: center;
}
footer #todos-direitos p {
  margin: 0px;
}
footer #developed-by {
  width: 100%;
  padding: 1em 0em;
  color: #fff;
  background-color: #000;
  font-size: 0.8em;
  text-align: center;
}
footer #developed-by a {
  font-weight: bold;
}

#btn-whatsapp {
  position: fixed;
  right: 0px;
  bottom: 10%;
  z-index: 999;
  font-size: 0px;
  --size: 32px;
}
#btn-whatsapp img {
  height: var(--size);
}
#btn-whatsapp:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: calc(var(--size) * 2);
  height: calc(var(--size) * 2);
  border-radius: 50%;
  background-color: #23d366;
  box-shadow: inset 0px 0px 1px #000;
}

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