* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  width: 100vw;
  height: auto;
}

.flex {
  display: flex;
}

.interface {
  max-width: 1280px;
  margin: 0 auto;
}

h2.titulo {
  color: #000000;
  font-size: 35px;
  text-align: center;
}

h2.titulo span {
  color: #ffd102;
}

/* ESTILO DO CABEÇALHO */
header {
  padding: 40px 4%;
  background-color: #000000;
}

header>.interface {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffd102;
  padding: 13px;
  border-radius: 10px;
}

header a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
}

header a:hover {
  color: #fff;
  transform: scale(1.05);
}

header nav ul {
  list-style-type: none;
}

header nav.menu-desktop ul li {
  display: inline-block;
  padding: 0 40px;
}

/* Estilo Menu Mobile */
.btn-abrir i {
  color: #000;
  font-size: 40px;
}

.menu-mobile {
  background-color: #000;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  width: 0%;
  overflow: hidden;
  transition: 0.5s;
}

.menu-mobile.abrir-menu {
  width: 70%;
}

.menu-mobile.abrir-menu~.orvelay-menu {
  display: block;
}

.menu-mobile nav ul {
  text-align: right;
}

.menu-mobile nav ul li a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  padding: 20px 8%;
  display: block;
}

.menu-mobile nav ul li a:hover {
  background-color: #ffd102;
  color: #000;
}

.menu-mobile .btn-fechar {
  padding: 20px 5%;
}

.menu-mobile .btn-fechar i {
  color: #ffd102;
  font-size: 30px;
}

.orvelay-menu {
  background-color: #0000005b;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 88888;
  display: none;
}

#logoImg {
  width: 100%;
  height: auto;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 10px;
}

.servicesDivContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90vw;
  margin: 30px 0;
  transition: 0.1s;
  padding: 20px 0;
  border-radius: 10px;
}

.servicesDivContainer:hover {
  border: 2px #000 solid;
  border-radius: 10px;
}


.servicesDivContainer .servicesLine {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
  margin: 20px 0;
  padding: 0 20px;
}

.servicesDivContainer .servicesLine .typeServices {
  width: 270px;
  height: auto;
  transition: 0.5s;

  display: flex;
  flex-direction: column;

  margin: 0rem 0.2rem;
}

#botaoSaibaMaisBeeathon {
  font-family: Nunito;
  font-size: 15.9pt;
  font-weight: bold;

  background-color: transparent;

  padding: 0rem 1rem;

  border: 1px solid;

  border-radius: 20px;

  width: 70%;
  margin: 0 auto;

  &:hover {
    background-color: #ffd102;
  }
}

#botaoSaibaMaisBeeathon a {
  text-decoration: none;
  color: black;
}

.typeServices:hover {
  transform: scale(1.1);
}

.serviceImages {
  width: 120px;
  height: auto;
  margin-top: 10px;
}

h1 {
  margin: 5px 0;
  font-size: 52px;
  position: relative;
}

h2 {
  margin: 10px 0 10px 0;
  font-size: 30px;
}

h3 {
  margin: 10px 0 5px 0;
  font-size: 20px;
}

h4 {
  font-size: 18px;
  margin: 5px 0;
}

p {
  margin-bottom: 10px;
  font-size: 16px;
  text-align: justify;
}

strong {
  font-weight: normal;
}

mark {
  background-color: #ffd102;
}

li {
  list-style-position: inside;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 20px 70px 50px 70px;
  background-color: #000000;
}

.footerContent {
  display: flex;
  flex-direction: column;

}

.textFooterZone {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 10px;
}

.footerMapLinks {
  color: #ffffff;
  text-decoration: none;
  margin-top: 5px;
  font-weight: 600;
  transition: 0.3s;
  font-size: 16px;
}

.footerMapLinks:hover {
  color: #969696;
}

.footerContactLinks {
  display: flex;
  flex-direction: row;
  color: #ffffff;
  gap: 0 10px;
  text-decoration: none;
  font-size: 16px;
  margin: 5px 0;
}

.icon {
  width: 24px;
  height: auto;
}

@media (max-width:1450px) {
  .servicesDivContainer .servicesLine .typeServices {
    width: 250px;
  }
}

@media (max-width:1270px) {
  .servicesDivContainer .servicesLine .typeServices {
    width: 200px;
  }
}

@media screen and (max-width: 1020px) {
  .flex {
    flex-direction: column;
  }

  h2.titulo {
    font-size: 40px;
    line-height: 40px;
  }

  /* cabeçalho */
  .menu-desktop,
  .btn-contato {
    display: none;
  }

  .servicesDivContainer .servicesLine {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
    padding: 0 20px;
  }

  .servicesDivContainer .servicesLine .typeServices {
    margin: 10px 0;
    width: 250px;
    padding: 0 50px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    text-align: center;
    font-size: 28px;
  }

  footer {
    display: block;
    margin: 0;
  }

  .footerContent {
    margin-bottom: 50px;
    width: 100%;
  }


  .servicesDivContainer {
    width: 100vw;
  }

}