* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
img {
  display: block;
  max-width: 100%;
  border-radius: 10px;
}
.whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  color: #FFF;
  color: green;
  animation: whatsapp 1s infinite linear alternate; 
}
.whatsapp:hover {
  text-shadow: 0px 0px 10px  #0069B4;
}
@keyframes whatsapp{
  0% {
      width: 43px;
      height: 43px;
      font-size: 53px;
  }
  50% {
      width: 47px;
      height: 47px;
      font-size: 57px;
  }
  100% {
      width: 53px;
      height: 53px;
      font-size: 63px;
  }
}

body {
  background: #EFF1F4;
  color: #333333;
  font-family: 'Montserrat', sans-serif;  
}
.logo {
  max-width: 200px;
  filter: invert(1);
  }
.btn-menu {
  all: unset;
  display: none;
  cursor: pointer;
  color: #FFF;
}
.header-menu{
  background: linear-gradient(#1E3A5F, #2C567E);
  display: flex;
  justify-content: space-between;
  padding: 0px 10px;
  align-items: center;
  height: 90px;
}
.menu-lista {
  display: flex;
  list-style: none;
  gap: 10px;
}
.menu-lista a {
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
  padding: 15px;
  color: #FFF;
  background: #2C567E;
}
.menu-lista a:hover {
  background: #1E3A5F;
  transition: 0.5s;
}
.menu-lista a.button{
  background: linear-gradient(#FFC082, #F67633);
}
.menu-lista .button:hover {
  background: #f96515;
  transition: 0.5s;
}
.banner {
  background-image: url("../img/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.banner-texto {
  max-width: 1200px;
  display: grid;
  justify-self: center;
  color: #FFF;
  padding: 30px; 
}
.banner-span {
  color: #D4A017;
}
.banner-texto p {
  font-size: 1.4rem;
  margin: 20px 0px;
  
}
.orcamento {
  display: flex;
  justify-content: center;
  max-width: 200px;
  color: #FFF;
  background: linear-gradient(#FFC082, #F67633);
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  border: #FFF ;
  border-radius: 30px;
  padding: 10px;
  margin-top: 10px;
}
.orcamento:hover {
  background: #f96515;
  transition: 0.5s;
}
.section-servicos {
  max-width: 1200px;
  display: grid;
  justify-self: center;
}
.section-servicos h2 {
  text-align: center;
  margin-top: 30px;
  font-size: 2.3rem;
  font-weight: bold;
  color: #0069B4;
  padding: 15px;
}
.section-servicos h2::before {
  display: inline-block;
  content: "";
  width: 40px;
  height: 4px;
  background: #0069B4;
  position: relative;
  bottom: -10px;
  left: 42px;
}
.container-servicos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 15px auto;
}
.servico-conteudo h3{
  padding: 0px 10px;
  font-size: 2rem;
  color: #0069B4;
}
.servico-conteudo span {
  display: block;
  padding: 10px 30px 0px 10px;
  line-height: 1.325;
  font-size: 1.3rem;
}
.depoimentos {
  display: grid;
  justify-self: center;
  max-width: 1200px;
  margin: 20px;
}
.depoimentos h2 {
  text-align: center;
  color: #0069B4;
  font-size: 2rem;
  padding: 30px;
}
.depoimentos-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.footer {
  background-image: url("../img/background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #FFF;

}
.footer h4 {
  font-size: 2rem;
  text-align: center;
  color: #FFF;
  grid-column: span 3;
  padding: 30px 0px;
}
.footer h4::before {
  display: inline-block;
  content: "";
  width: 40px;
  height: 4px;
  background: #FFF;
  position: relative;
  bottom: -10px;
  left: 42px;
}
.footer-conteudo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  font-size: 1rem;
  font-weight: bold;
  font-style: italic;
}
.footer-conteudo-servico {
  margin: 15px;
}
.footer-conteudo-servico li{
  list-style: none;
  line-height: 1.5;
  margin-bottom: 20px;

}
.footer-conteudo-atendimento span {
  display: block;
  line-height: 1.5;
  margin: 20px;
}
.copy {
  grid-column: 1 / -1;
  padding: 20px;
  margin-top: 30px;
  font-size: 1.2rem;
}


/* Responsivo*/
/* Menu*/
@media(max-width:770px) {
  .btn-menu {
    display: block;
    font-size: 40px;
  }
  .menu-lista {
    display: block;
    position: absolute;
    top: 90px;
    width: 100%;
    right: 0;
    background: #1E3A5F;
    height: 0px;
    transition: .6s;
    z-index: 999;
    visibility: hidden;
    overflow-y: hidden;
  }
  .menu-lista.active {
    height: calc(100vh - 90px);
    visibility: visible;
    overflow-y: auto;
  }
  .menu-lista a{
    all: unset;
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #FFF;
    cursor: pointer;
    padding: 10 0px;
    margin: 10px;
  }
  .depoimentos-item {
    display: grid;
    grid-template-columns: 1fr;
  }
  .container-servicos img {
    display: none;
  }
  .container-servicos {
    display: block;
  }
}
@media (max-width: 600px) {
  .banner-texto p {
    font-size: 1rem;
  }
  .orcamento {
    font-size: 1rem;
    max-width: 100%;
  }
  .footer-conteudo {
    display: flex;
    flex-direction: column;
  }
  .copy {
    font-size: 1rem;
  }
}