.banner_texto,.botaoWhats{position:fixed;color:#fff;text-align:center}.banner_texto{border:none;padding:10px;z-index:10000;top:90%;width:100%;background:#28a745}@media screen and (min-width:490px){.banner_texto{display:none}}@media screen and (max-width:490px){.whats{display:none}}.pulse-button2{box-shadow:0 0 0 0 #28a745;background-size:cover;background-repeat:no-repeat;cursor:pointer;-webkit-animation:1.25s cubic-bezier(.66,0,0,1) infinite pulse;-moz-animation:1.25s cubic-bezier(.66,0,0,1) infinite pulse;-ms-animation:pulse 1.25s infinite cubic-bezier(0.66,0,0,1);animation:1.25s cubic-bezier(.66,0,0,1) infinite pulse}.pulse-button2:hover{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}@-webkit-keyframes pulse{to{box-shadow:0 0 0 45px rgba(232,76,61,0)}}@-moz-keyframes pulse{to{box-shadow:0 0 0 45px rgba(232,76,61,0)}}@-ms-keyframes pulse{to{box-shadow:0 0 0 45px rgba(232,76,61,0)}}@keyframes pulse{to{box-shadow:0 0 0 45px rgba(232,76,61,0)}}.botaoWhats{width:60px;height:60px;bottom:40px;right:40px;background-color:#28a745;border-radius:50px;box-shadow:1px 1px 2px #1b8a36;z-index:1000;transition:.3s ease-in-out}.botaoWhats:hover{background-color:#fff;color:#28a745}.text-dark{color:#000!important}



.hamburger, .close {
    border: none;
    cursor: pointer;
    /* position absolute position the icons relative to the body because they have no position relative parents*/
    position: absolute;
    top: 70px;
    right: 20px;
    width: 36px;
    height: 36px;
  }
  .hamburger {
    color: #153397;
  }
  .close {
    color: #153397;
  }
  .hamburger img, .close img {
    width: 100%;
    height: 100%;
  }
  .navbar {
    margin: 0;
    position: fixed;
    /* a higher z-index put navbar above hamburger */
    z-index: 10001;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    /* basic menu styling*/
    list-style: none;
    background: rgb(255, 255, 255);
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
    /* animate slide up/down */
    transform: translateY(-100%);
    transition: transform 0.2s ease;
  }
  /* :target is called when its anchor id #navbar is called by clicking on the hamburger which has href="#navbar" */
  .navbar:target {
    /* show navbar */
    transform: translateY(0);
  }
  .navbar li a {
    display: block;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
    /* remove default underline and add our own with padding and border bottom */
    text-decoration: none;
    border-bottom: 2px solid #153397;
    padding-bottom: 0.5rem;
  }
  .img-menu {
    text-align: left;
  }

  @media (min-width: 680px) {
 
    #navbar {
      display: none;
    }
    .hamburger {
      display: none;
    }
    .close {
      display: none;
    }
  }
