@media (max-width: 768px) {
  .logo-zap-body {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    background-color: #25d366;
    z-index: 9999;
  }

  .logo-zap-body #icone-wpp-header {
    margin: 0;
    transition: transform 0.3s ease;
  }

  .logo-zap-body::after {
    content: "Agende agora!";
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: #25d366;
    color: white;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .logo-zap-body:hover {
    transform: translateX(-8px);
  }

  .logo-zap-body:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  /*----------------------------------------------------
              COMEÇO DO MENU HAMBURGER
  -------------------------------------------------
  */

  header hr.color-hr {
    border: 2px solid var(--secondary-color);
  }

  #background-menu-toggle {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1002;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 8px;
    transition: all 0.35s ease;
  }
  #background-menu-toggle.active {
    top: 20px;
    width: 70%;
    background-color: rgba(0, 0, 0, 0.481);
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 22px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    height: 3px;
    width: 30px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 8px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -8px);
  }

  #nav-bar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.97);
    padding: 2rem 1rem;
    transition: left 0.35s ease;
    z-index: 1000;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.5);
    flex-direction: column;
  }

  #nav-bar.active {
    left: 0;
  }

  .nav-logo img {
    width: 130px;
  }

  .nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 12px 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: background 0.3s ease;
    border-radius: 6px;
  }

  .nav-links li a:hover {
    background: #c49c51;
  }

  /*CONTATO*/
  #section-localizacao-contato {
    flex-direction: column;
  }
}
