body {
  background: #dbe8ee;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* PAGE INSTA */
.page_insta {
  background: #dbe8ee;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 100px;
  height: auto;
  padding: 50px 0;
}
.page_insta .logo {
  max-width: 380px;
}
.page_insta .buttons {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 460px;
  margin: auto;
}
.page_insta .buttons > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page_insta .buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background-color: #0095e4;
  color: #fff;
  border-radius: 10px;
  font-size: 25px;
  font-weight: 600;
  transition: all 0.2s;
  margin: 0 auto;
  box-shadow: 0 0 0 3px #fff;
  padding: 0 50px;
}
.page_insta .buttons a:hover {
  background-color: #0072af!important;
  box-shadow: 0 0 0 6px #fff;
}
.page_insta .buttons a.--local {
  background: #0095e4 url('../img/local.png') no-repeat 10px;
}
.page_insta .buttons a.--whats {
  background: #0095e4 url('../img/whats.png') no-repeat 10px;
}
.page_insta .buttons a.--group {
  background: #0095e4 url('../img/whats_fundo.png') no-repeat 10px;
}
.page_insta .buttons a.--tel {
  background: #0095e4 url('../img/tel.png') no-repeat 10px;
}
@media (max-width: 1200px) {

  .page_insta .logo {
    width: 280px;
  }
  .page_insta .buttons {
    gap: 30px;
  }
  .page_insta .buttons a {
    height: 50px;
    font-size: 20px;
  }
  .page_insta h3 {
    font-size: 25px;
  }
}
@media (max-width: 500px) {
  .page_insta {
    padding: 30px 15px;
    padding-bottom: 50px;
  }
  .page_insta .buttons {
    gap: 20px;
  }
  .page_insta .buttons a {
    font-size: 16px;
  }
  .page_insta .buttons h3 {
    font-size: 18px;
  }
}
