/*
body {
    font-family: Roboto;
    height: 80vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
  }
*/

.button {
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    margin-left: 25px;
    bottom: 50px;
   
}

.button:hover .button__border-circle {
    transform: translateX(77px);
}

.button:hover .button__mask-circle {
    -webkit-clip-path: circle(25px at 85px);
    clip-path: circle(25px at 85px);
}

.button__text {
    z-index: 1;
    font-size: 16px;
    margin-right: -44px;
    color: #fafafa;
    letter-spacing: 0.1em;
    text-align: center;
}

.button__wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.button__arrow {
    left: 50px;
    height: 3px;
    width: 50px;
    display: flex;
    position: absolute;
    align-items: center;
    background-color: #f0552a;
}

    .button__arrow:after {
        content: "";
        width: 0;
        height: 0;
        top: -5px;
        right: -7px;
        position: absolute;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        border-left: 7px solid #f0552a;
    }

.button__border-circle {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 3px solid #f0552a;
    transition: transform 500ms;
}

.button__mask-circle {
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-clip-path: circle(80px);
    clip-path: circle(10px);
    transition: -webkit-clip-path 987ms;
    transition: clip-path 987ms;
    transition: clip-path 987ms, -webkit-clip-path 500ms;
}

.button__small-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translateX(77px);
    background-color: #f0552a;
}

.aqui {
    color: #F0552A;
    font-weight:bold;
}

.separador1 {
    padding: 0px 3rem;
    margin-bottom: 2rem;
}

#import1 {
    text-align: center;
    background: linear-gradient(90deg, #EE0979, #FF6A00, #EE0979);
    z-index: 1000;
    border-radius: 5px;
    background-size: 400%;
    animation: animated 8s linear infinite;
    transition: all linear .5s;
    color: #fff;
    text-transform: uppercase;
}

@keyframes animated {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 400%;
    }
}

#titulo_imp {
    text-align: center;
    background: linear-gradient(90deg, #EE0979, #FF6A00, #EE0979);
    z-index: 1000;
    border-radius: 5px;
    background-size: 400%;
    animation: animated 8s linear infinite;
    transition: all linear .5s;
    color: #fff;
    text-transform: uppercase;
}