@media(max-width: 768px) {
    h2 {
    font-size: 1.87rem;
    line-height: 2.43rem;   
  }
   .padding-page {
    padding: 0 1.5rem;
  }

  .header {
    font-size: 1.87rem;
    line-height: 2.43rem;
    padding: 1rem;
    width: 100vw;
  }

  .header img {
    max-height: 3.75rem;
    object-fit: fill;
  }
  
   .header #menu {
    display: block;
    position: absolute;
    width: 100%;
    top: 6.87rem;
    right: 0px;
    background-color: var(--background-color);
    transition: .6s;
    z-index: 1000;
    height: 0px;
    visibility: hidden;
    overflow-y: hidden;
  }

  .header #nav {
    display: block;
    text-align: center;
  }

  .header #nav button {
    font-family: 'DM Sans', sans-serif;
    color: var(--primary-color-dark);
    font-size: 1.05rem;
  }

   #nav.active #menu {
    height: calc(100vh - 4.37rem);
    visibility: visible;
  }

  .header #menu .nav-item a {
    padding: 1rem 0;
  }
  
  .header #menu .nav-item a:hover {
    border-bottom: none;
    background-color: var(--color-clear);
    border-radius: 0px;
    transition: 0.4s;
    font-weight: 500;
  }

  .header #btn-mobile {
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: .5rem;
  }

  #hamburguer {
    display: block;
    border-top: 2px solid;
    width: 1.25rem;
    color: var(--primary-color-dark);      
  }
  
  #hamburguer::after, #hamburguer::before {
    content: '';
    display: block;
    width: 1.25rem;
    height: 2px;
    background-color: currentColor;  
    margin-top: 0.31rem;
    transition: .3s;
    position: relative;
  }

  #nav.active #hamburguer {
    border-top-color: transparent;    
  }

  #nav.active #hamburguer::before {
    transform: rotate(135deg);
   
  }

  #nav.active #hamburguer::after{
    transform: rotate(-135deg);
    top: -7px;
  }

  .home-texto {
    padding-top: 7.5rem;
  }

  .footer .whatsapp {
    top: 90%;  
  }

  .footer .whatsapp img {
    width: 45%;    
  }
}

@media(max-width:990px) {
  .header #nav #menu .whatsapp-btn-menu {
   display: none;
  }

  main .home {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
  }

  .home .home-texto h1 {    
    font-size: 2.12rem;
  }

  .home .home-imagem {
    display: flex;
    align-items: center;
    justify-content: center;
  }

 .home .home-imagem img {
    display: none;
  }

  .mais {
    flex-direction: column;
    padding: 2.5rem 5rem;
    gap: 1rem;
  }

  .mais-item:nth-child(1),
  .mais-item:nth-child(2) {
    border: none;
    padding: 0;
  }

  .servicos {
    padding: 7.5rem 3.37rem;
  }

  .servicos h2 {
    margin-bottom: 2.12rem;
  }

  .servicos .servicos-cards {
    flex-direction: column;
    gap: 2rem;
  }

  .servicos .servicos-card:nth-child(1) {
    margin-right: 0;
  }

  .fotos {
    display: grid;
    grid-template-areas: 
    "foto1 foto2"
    "foto3 foto4";
  }

  .foto {
    width:100%;
  }

  .foto1 {
    grid-area: foto1;
  }

  .foto2 {
    grid-area: foto2;
  }

  .foto3 {
    grid-area: foto3;
  }

  .foto4 {
    grid-area: foto4;
  }
  
  .sobre {
    flex-direction: column;
    padding: 7.5rem 3.37rem;
  }

  .sobre .sobre-texto {
    width: 100%;  
  }

  .sobre .sobre-img {
    width: 100vw;
    display: inline-block;
  }

  .sobre .sobre-img img {
    width: 85%;
  }

  .fale-conosco {
    flex-direction: column;
    padding: 7.5rem 1.5rem;
    gap: 3.75rem;
  }

  .fale-conosco .fale-conosco-texto {
    width: 100%;
  }

  .fale-conosco .formulario {
    width: 100%;
    padding: 0.94rem;
  }

  .fale-conosco .formulario .field-duplo {
    flex-direction: column;
  }

  .fale-conosco .formulario input[type='submit'] {
    font-size: 1rem;
    width: 30%;
  }

  .footer {
    flex-direction: column;
    padding: 1.25rem 0;
    align-items: center;
  }

  .footer-esquerdo {
    display: inline-block;
    width: 100%;
    text-align: center;  
  }

  .footer-direito {
    width: 100%;
  } 
  
  .open {
    display: block;    
  }
}