.hero {
    position: relative;
    min-height: 60vh; /* antes 100vh */
    padding-top: 180px; /* antes 120px */
    padding-bottom: 40px;
    background: #0a0a0a;
    color: #fff;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  
  
  .typed-text i {
    margin-right: 8px;
    color: #00e0ff;
  }
  
  #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  
  .btn-hero {
    padding: 12px 28px;
    background: #00e0ff;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-block;
    font-size: 1rem;
  }
  
  .btn-hero:hover {
    background: #00b8d6;
  }
  
  /* RESPONSIVO - Mobile */
  @media screen and (max-width: 600px) {
    .hero h1 {
      font-size: 1.8rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .btn-hero {
      font-size: 0.95rem;
      padding: 10px 22px;
    }
  }
  