* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }

  body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    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%;
  }
  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 {
      width: 100vw;
      background-color: #000000;
      padding: 0 40px;
  }


#title {
    color: #ffd102;
    margin: 0;
    font-size: 32px;
}

#contatoButtonsDiv {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 50px 0 100px 0;
    align-items: center;
}

.contatoButtons {
    border-radius: 10px;
    border-width: 0 0px 0 5px;
    width: 32%;
    height: 230px;
    border-left-color: #ffd102;
    background-color: #ffffff;
    cursor: pointer;
    
  }

  a {
    text-decoration: none;
    color: #000000
  }
  
  .buttonsLink {
      text-decoration: none;
  }

.iconeContato {
    width: 50px;
    height: 50px;
    transition: 0.3s;
}

.iconeContato:hover {
    transform: scale(1.1);
}

.tipoDadosContato {
    font-weight: bold;
    font-size: 24px;
}

.dadosContato {
    font-weight: bold;
    color: rgb(105, 105, 105);
    font-size: 16px;
}

.horizontalLine{
    height: 5px;
    width: 100%;
    background-color: #ffd102;
    border: none;
    margin: 100px 0 50px 0;
}

.subtitle {
    font-size: 32px;
    font-weight: bold;
    color: #ffd102;
    text-decoration: none;
    margin-top: 10px;
}

#instagramProfileDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#circleImageButton {
    width: 150px;
    height: 150px;
    border: none;
    border-radius: 75px;
    background-color: #ffd102;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    margin: 30px 0 20px 0;
    transition: 0.3s;
}

#circleImageButton:hover {
    transform: scale(1.1);
}

#circleImage {
    width: 140px;
    height: auto;
}

.servicesText {
    color: #ffffff;
    margin: 10px 0 0 0;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 0 70px 50px 70px;
    background-color: #000000;
}

.footerContent{
    display: flex;
    flex-direction: column;

}

.textFooterZone {
    font-size: 20px;
    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: 18px;
    margin: 5px 0;
}

.icon {
    width: 24px;
    height: auto;
}

@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;
      }

      .subtitle {
        font-size: 24px;
      }

      #circleImageButton {
        display: flex;
        align-self: center;
      }

    #contatoButtonsDiv {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .contatoButtons {
        margin: 10px 20px;
        width: 100%;
    }

    .dadosContato {
      font-size: 14px;
    }


    footer {
        display: block;
        margin: 0;
        width: 100vw;
    }

    .footerContent {
        margin-bottom: 50px;
    }

    .footerContactLinks {
      font-size: 16px;
    }
}