@keyframes sh02 {
    from {
        opacity: 0;
        left: 0%;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
        left: 100%;
    }
  }




.gradient-text {
    background: linear-gradient(90deg, #A02AAD 30%, #14D892 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-container {
    margin-top: auto;
    text-align: center;
    color: var(--white);
    padding: 10px;
    width: 100%;
  }

.grid {
    z-index: -1; 
    position: absolute; 
    opacity: .2; 
    margin-top: 10%; 
    width: 50%; 
    height: 706px;
}

.right {
    position: absolute;
    right: 0;
}

.btn {
    color: var(--white);
    background: linear-gradient(to right, #14D892, #0B724D);
    padding: 0.8rem 5.5rem;
    outline: none;
    border: none;
    font-size: 18px;
    border-radius: 15px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .3px;
    overflow: hidden;
    position: relative;
    transition: all 0.2s ease-in;
    box-shadow: 0px 40px 63px rgba(11, 114, 77, 0.5), 0px 23px 133px rgba(20, 216, 146, 0.5);
}

.btn::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
    animation: sh02 1.5s infinite;
}

.btn:hover {
    transform: scale(1.05);
}


.gradient-radial {
    background: radial-gradient(circle, #24004C 10%, #0002125e 100%);
}

.text-destaque {
    color: var(--green);
    font-weight: bold;
}

.arrow {
    animation: moveUpDown 2s infinite ease-in-out;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px); 
    }
    100% {
        transform: translateY(0); 
    }
}

.destaque-strong {
    font-weight: bold;
}

.color-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius:  25px;
    padding: 1px; 
    background: linear-gradient(180deg, rgba(160, 42, 173, 0.5) 0%, rgba(20, 216, 146, 0.5) 53%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}


.d-flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 130px 0;
    text-align: center;
}

.main-text {
    font-weight: 300;
    font-size: 28px
}



::-webkit-scrollbar {
    width: 8px; 
  }
  

  ::-webkit-scrollbar-track {
    background: transparent; 
  }
  

  ::-webkit-scrollbar-thumb {
    background-color: #4A1B8A; 
    border-radius: 12px;
  }
  

  ::-webkit-scrollbar-thumb:active {
    background-color: #3f1a77; 
  }
  

  ::-webkit-scrollbar-thumb {
    height: 50px; 
  }
  
  