
  
  .svg {
    position: absolute;
  }
  
  .demo {
    position: fixed;
    bottom: 20px; /* Define a posição no rodapé */
    left: 50%; /* Centraliza horizontalmente */
    transform: translateX(-50%); /* Ajusta o centro */
    z-index: 1000; /* Garante que fique acima de outros elementos */
    width: 200px;
    height: 200px;
  }
  .demo__buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-100px, -100px);
    filter: url("#goo");
  }
  .demo__buttons.step-0 .demo__social-btn-1, .demo__buttons.step-0 .demo__social-btn-2, .demo__buttons.step-0 .demo__social-btn-3, .demo__buttons.step-0 .demo__social-btn-4 {
    transform: translate3d(-50px, -50px, 0);
  }
  .demo__buttons.step-1 .demo__social-btn-1 {
    transform: translate3d(-50px, -50px, 0);
  }
  .demo__buttons.step-1 .demo__social-btn-2, .demo__buttons.step-1 .demo__social-btn-3, .demo__buttons.step-1 .demo__social-btn-4 {
    transform: translate3d(-50px, 50px, 0);
  }
  .demo__buttons.step-2 .demo__social-btn-1 {
    transform: translate3d(-50px, -50px, 0);
  }
  .demo__buttons.step-2 .demo__social-btn-2 {
    transform: translate3d(-50px, 50px, 0);
  }
  .demo__buttons.step-2 .demo__social-btn-3, .demo__buttons.step-2 .demo__social-btn-4 {
    transform: translate3d(50px, 50px, 0);
  }
  .demo__buttons.step-3 .demo__social-btn-1 {
    transform: translate3d(-50px, -50px, 0);
  }
  .demo__buttons.step-3 .demo__social-btn-2 {
    transform: translate3d(-50px, 50px, 0);
  }
  .demo__buttons.step-3 .demo__social-btn-3 {
    transform: translate3d(50px, 50px, 0);
  }
  .demo__buttons.step-3 .demo__social-btn-4 {
    transform: translate3d(50px, -50px, 0);
  }
  .demo__social-btn {
    position: absolute;
    left: 65px;
    top: 65px;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    font-size: 70px;
    background: white;
    color: #232323;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .demo__social-btn:hover {
    color: #232323;
    box-shadow: 0 0 15px white;
  }
  .demo__open-btn {
    position: absolute;
    left: 65px;
    top: 65px;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    font-weight: 700;
    font-size: 30px;
    font-family: sans-serif;
    background: white;
    color: #232323;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .demo__open-btn:hover {
    color: #232323;
    box-shadow: 0 0 15px white;
  }
  .modal-crimes {
    display: none; /* Inicialmente escondido */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    text-align: center;
  }
  
  .close-modal {
    margin-top: 10px;
    padding: 10px 20px;
    background: #232323;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .close-modal:hover {
    background: #232323;
  }

  .share-tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    z-index: 1000;
    display: none;
    transform: translate(-50%, -150%);
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  
  