.servicos {
    background-color: #111;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    font-family: 'Roboto', sans-serif;
  }
  
  .servicos-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #00e0ff;
  }
  #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
  }
  .servicos-header p {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;

  }
  
  .servicos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    
  }
  
  /* Estilo do Bloco de Serviço */
  .servico-bloco {
    background: linear-gradient(145deg, #1a1a1a, #0c0c0c);
    padding: 30px;
        color: #00e0ff;

    width: 300px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 224, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .servico-bloco:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(0, 224, 255, 0.3);
  }
  
  .servico-icon {
    background: #00e0ff;
    color: #00e0ff;

    font-size: 3rem;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 224, 255, 0.2);
  }
  
  .servico-bloco h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    color: #00e0ff;

  }
  
  .servico-bloco p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
  }
  
  /* Efeito no hover - leve animação de borda */
  .servico-bloco::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 15px;
    background: linear-gradient(45deg, #ff0000, #00e0ff, #ff0000, #00e0ff);
    background-size: 400% 400%;
    animation: gradientAnimation 4s linear infinite;
    z-index: 0;
    color: #00e0ff;

  }
  .icon {
    color: #00e0ff;
}

h3 {
    color: #00e0ff;
}

  .servico-bloco:hover::after {
    background-position: 400% 400%;
  }
  
  @keyframes gradientAnimation {
    0% {
      background-position: 0% 0%;
    }
    50% {
      background-position: 100% 100%;
    }
    100% {
      background-position: 0% 0%;
    }
  }
  
  /* Responsivo Mobile */
  @media screen and (max-width: 768px) {
    .servicos-container {
      flex-direction: column;
      gap: 20px;
    }
  
    .servico-bloco {
      width: 100%;
      max-width: 320px;
      margin-bottom: 20px;
    }
  }
  