@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

header {
  width: 100%;
}

.nav-contem-conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

i {
  color: #ffffff;
}

.icones {
  display: flex;
  gap: 14px;
}

.icones a:hover i {
  animation: translateY 0.8s infinite alternate;
  color: #83D940;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-botao {
  border: solid 1px #ffffff;
  padding: 8px 24px;
  color: #ffffff;
  border-radius: 4px;
  background-color: transparent;
  transition: 0.8s;
}

.header-botao:hover {
  background-color: #83D940;
  border: solid 1px #83D940;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

@media screen and (max-width: 768px) {
  .nav-contem-conteudo {
    width: 100%;
    justify-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .header-logo img {
    width: 168px;
    margin-top: 20px;
  }
  .header-botao {
    display: none;
  }
  .icones i {
    margin-top: 15px;
    font-size: 30px;
  }
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.8;
}

.bg-home {
  position: relative;
}

.bg-home::before {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(6, 16, 38, 0.1), #06121e), url("Imagem/bg-home.png");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: 50% 0;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.hero {
  color: #ffffff;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px;
}
.hero h1 {
  text-align: center;
  line-height: 150%;
  max-width: 960px;
  font-size: 40px;
}
.hero p {
  text-align: center;
  margin: 14px 0;
}
.hero .botao-especial {
  padding: 14px 28px;
  border: 0;
  color: #ffffff;
  background-color: #83D940;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
  margin: 14px 0;
}
.hero .botao-especial:hover {
  animation: animacaoBotao 0.8s alternate infinite;
}
@keyframes animacaoBotao {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
@media screen and (max-width: 768px) {
  .hero .hero {
    min-width: 60vh;
  }
  .hero h1 {
    font-size: 34px;
    padding: 0 14px;
    width: 100%;
  }
  .hero p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .hero .hero h1 {
    font-size: 24px;
  }
}

.sobre {
  background-color: #06121E;
  overflow: hidden;
  color: #ffffff;
  display: flex; /* Adicione esta linha para tornar o conteúdo lado a lado */
}

.sobre-conteudo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 14px 64px 14px;
}

img {
  max-width: 430px;
}

.descricao-sobre div {
  flex: 1;
}

.descricao-sobre h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 38px;
  padding-bottom: 33px;
}
.descricao-sobre h4 {
  font-size: 24px;
  margin-bottom: 24px;
}
.descricao-sobre p {
  margin-bottom: 14px;
  font-weight: 150%;
}

.descricao-matheus {
  display: block;
  margin-left: 350px;
  margin-top: 60px;
}
.descricao-matheus h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.descricao-matheus h4 {
  font-size: 24px;
  margin-bottom: 24px;
}
.descricao-matheus p {
  margin-bottom: 14px;
  font-weight: 150%;
}
.descricao-matheus img {
  max-width: 240px;
}

.descricao-matheus div {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .sobre-conteudo {
    flex-direction: column;
  }
  .descricao-matheus {
    margin: 0;
  }
  .descricao-matheus img {
    max-width: 348px;
  }
  .servico-info a {
    margin-left: 7px;
  }
}
.servicos {
  background-color: #ffffff;
  color: #090d11;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 54px 14px;
}

.servicos-conteudo h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
}

.servicos-conteudo p {
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
  max-width: 760px;
}

.servico-prestados {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0px 44px 34px 44px;
}

.servico {
  flex: 1;
  flex-direction: column;
  display: flex;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px -1px 17px 4px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.servico img {
  width: 100%;
  max-width: 460px;
  transition: transform 0.3s;
}

.servico img:hover {
  transform: scale(1.2);
  z-index: 1;
}

.servico-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 14px;
  background-color: #ffffff;
  z-index: 99;
}

.servico-info a {
  color: #ffffff;
  background-color: #255202;
  padding: 4px 8px;
  border: 0;
  border-radius: 4px;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .servico-prestados {
    flex-direction: column;
  }
}
.rodape {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 54px 0px;
  gap: 20px;
  color: #ffffff;
}

.rodape-icones {
  display: flex;
  gap: 14px;
}

.btn-whatsapp {
  position: fixed;
  padding-right: 24px;
  padding-bottom: 24px;
  right: 0;
  bottom: 0;
  z-index: 99;
}
.btn-whatsapp img {
  max-width: 74px;
  transition: transform 0.7s;
}
.btn-whatsapp img:hover {
  transform: scale(1.2);
}

.btn-whatsapp .text-whatsapp {
  visibility: hidden;
  position: absolute;
  width: 120px;
  top: 8px;
  left: -144px;
  padding: 4px;
  border-radius: 8px;
  text-align: center;
  background-color: #040f1a;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.5s;
}

.btn-whatsapp:hover.text-whatsapp {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .btn-whatsapp img {
    max-width: 64px;
  }
}
body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #06121E;
}

button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

a {
  cursor: pointer;
  text-decoration: none;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}/*# sourceMappingURL=style.css.map */