body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000
  }
  
  #particles-js { /* Agora o ID está aqui */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px 50px; /* Altura diminuída */
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
    color: white;
    animation: fadeIn 1s ease-in-out;
    z-index: 1;
    width: 500px;
  }
  
  h1 {
    margin-bottom: 20px; /* Margem inferior diminuída */
    font-size: 28px;
  }
  
  .botoes button {
    margin: 10px;
  }
  
  .btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background-color: #7c3aed;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 4px 8px rgba(124, 58, 237, 0.4);
    animation: slideUp 0.8s ease;
  }
  
  .btn:hover {
    background-color: #a78bfa;
    transform: scale(1.05);
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  
  @keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  .container img {
    width: 250px;
    height: auto;
    margin-bottom: 10px; /* Margem inferior diminuída */
  }