#floating_cta {
    -webkit-box-shadow: 0px 0px 10px #00000053;
    box-shadow: 0px 0px 10px #00000053;
    bottom: 5%;
    background-color: #ff4615;
    font-weight: 700;
    padding: .5rem 2rem; /* aumentado a 1rem  */
    position: fixed;
    right: 0;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
    -webkit-transform: translate(110%);
    transform: translate(110%);
    z-index: 10;
    cursor: pointer;
}

#floating_cta > a {
    text-decoration: none;
    color: #000000;
}

#floating_cta.sticky {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

#floating_cta::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    z-index: 9;
    width: 40px;
    height: 40px;
    background-image: url('/icons/arrow-start.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#floating_cta:hover {
    opacity: 0.9;
}

#floating_cta span {
    color: white;
}

#svg-icon-arrow-mb {
    display: none;
}

@media (max-width: 480px) {
    #floating_cta {
        width: 100%;
        position: fixed;
        bottom: 0;
        text-align: center;
        padding: 1rem 2rem; /* aumentado a 1rem  */
    }
    #floating_cta::before {
        display: none;
    }
    #svg-icon-arrow-mb {
        display: inline;
        width: 15px;
        margin: -2px 5px 0;
    }
    #front #floating_cta {
        text-align: center;
        bottom: 0;
        padding-bottom: 20px;
        padding-right: 60px;
        width: 100%;
        -webkit-transform: translate(0, 101%);
        transform: translate(0, 101%);
    }
}

@media (max-width: 768px) {
    #floating_cta::before {
        height: 35px;
    }
}
