@media screen and (min-width: 1025px) {
   /*animacao fundo*/
  #cosmicCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    z-index: 0;
    pointer-events: none; /* Isso impede que ele capture cliques */
  }
  
  #sobre {
    display: flex;
    align-items: center;
    height: 90vh;
    align-content: center;
  }

  #sobre .content {
    display: flex;
    flex-direction: column;
    width: 52%;
    padding: 1em 0em;
    position: relative;
    z-index: 1;
    margin-left: 18%;
  }

  #sobre .wTitle{
    text-align: left;
  }


  p.sobreDescricao {
    font-weight: 100;
    line-height: 1.8;
    padding: 1rem 0;
    text-align: justify; 
  }

  a.btnFastContact {
    display: inline-block;
    background-color: #2b035d;
    color: #fff;
    font-size: 1.1em;
    border-radius: .6em;
    cursor: pointer;
    font-weight: bold;
    width: 10em;
    height: 2.3em;
    display: flex;
    justify-content: center;
    align-items: center;
          
  }

  a.btnFastContact:hover {
    background-color: #fff;
    color: #2b035d;
    font-weight: bold;
    transition: all 0.9s ease;
  }

 
}