html{
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.text-gradient {
    display: inline-block;
    position: relative;
    background: linear-gradient(74deg, #4285f4 0, #9b72cb 9%, #d96570 20%, #d96570 24%, #9b72cb 35%, #4285f4 44%, #9b72cb, #d96570 56%, #131314 75%, #131314);
    background-size: 400% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    widows: 100%;
    -webkit-text-fill-color: transparent;
}
.text-gradient-2{
    background: #1d1d1f;
    background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    background-image: linear-gradient(108deg,#0894FF,#C959DD 34%,#FF2E54 68%,#FF9004);
}
.text-gradient-3 {
    display: inline-block;
    position: relative;
    background: linear-gradient(90deg,rgba(111, 214, 255, 1) 0%, rgba(253, 81, 29, 1) 25%, rgba(204, 255, 0, 1) 50%, rgba(111, 214, 255, 1) 67%, rgba(204, 255, 0, 1) 87%);
    background-size: 400% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    widows: 100%;
    -webkit-text-fill-color: transparent;
}

.text-gradient-whatsapp{
    background: #1d1d1f;
    background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    background-image: linear-gradient(108deg, #0882ff, #0ecaeb 34%, #31ff2e 68%, #13ff04);
}

.badge {
    top: 2px;
    right: -10px;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: red;
    color: white;
    font-weight: bold;
    margin-left: 4px;
}

#progressBar {
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: moveIndeterminate;
    animation-timing-function: linear;
    background-color: rgb(209 213 219);
    background-image: linear-gradient(to right, rgb(37 99 235 / var(--tw-bg-opacity, 1)) 30%, rgb(209 213 219) 30%);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 150% 150%;
    
}
@keyframes moveIndeterminate {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }  
}