#sticky-contact {
  display: none;
}

@media (max-width: 768px) {
  #sticky-contact {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    border-top: 2px solid var(--color-primary);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  }

  .sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px;
    background-color: var(--color-dark-accent);
    color: #fff;
    font-family: 'TCCC Unity', sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .sticky-btn svg {
    width: 24px;
    height: 24px;
  }

  .sticky-btn:active {
    background-color: var(--color-primary);
  }

  .sticky-whatsapp {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .sticky-phone {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  body {
    padding-bottom: 70px;
  }
}
