.descriptionleads {
    font-size: AUTO;
  }
  
  .destaquelead1 {
    color: #34C759; /* cor verde */
    animation: move-right 2s infinite;
    display: inline-block;
    font-size: 1.3em;
  }
  
  @keyframes move-right {
    0% {
      transform: translateX(0);
    } 50%
    {
        transform: translateX(10px);
      }
    100% {
      transform: translateX(0px);
    }
  }

  .destaquelead2 {
    color: #1f08f5; /* cor verde */
    animation: move-right 2s infinite;
    display: inline-block;
    font-size: 2em;
  }
  


  .destaquelead3 {
    color: #fae904; /* cor verde */
 
    display: inline-block;
    font-size: 1.1em;
  }

  #LIBERARPLANILHAS {
    animation: pulse 2s infinite;
  }
  
  #LIBERARPLANILHAS:hover {
    background-color: #2ecc71; /* cor verde mais clara */
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

  .destaquelead4 {
    color: #fae904; /* cor verde */
 
    display: inline-block;
    font-size: 1.1em;
    animation: pulse 2s infinite;
  }

  
  .dedo {
    animation: move-down 3s infinite;
    font-size: 24px;
    display: inline-block;
  }
  
  @keyframes move-down {
    0% {
      transform: translateY(0);
    }
    30% {
      transform: translateY(50px);
    }
    100% {
      transform: translateY(0);
    }
  }


  .content-row {
    display: flex;
    flex-direction: row;
    width: 98%;
    border-radius: 5px;
    border: 4px solid #00cc66;
    background-color: #e0dfd0;
    text-align: center;
    font-size: 20px;
    background-color: #b5f8b8;
    color: #000;
    font-weight: bold;
    margin-top: 5%;
    margin-left: 1%;
    margin-bottom: 5%;
    padding: 2%;
  
  }
  
  .content-row span {
    margin-right: 20px;
  }
  
  .input-config {
    width: 96%;
    border-radius: 20px;
    border: 4px solid #00cc66;
    background-color: #e0dfd0;
    margin-right: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
  }
  
  .input-config:hover {
    background-color: #c5872b;
  }