@import url('https://fonts.googleapis.com/css2?family=Grey+Qo&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');



.__update_page_book_book {
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    width: 370px;
    height: 550px;
    perspective: 2000px;
}

.__update_page_book_pages {
    width: 100%;
    height: 100%;
    position: relative;
}

.__update_page_book_page {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #111;
    border-radius: 6px;
    overflow: hidden;
    transform-origin: left;
    transform-style: preserve-3d;
    transition: transform 0.9s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    backface-visibility: hidden;
}

/* Empilhamento */
.__update_page_book_page:nth-child(1) {
    z-index: 4;
}

.__update_page_book_page:nth-child(2) {
    z-index: 3;
}

.__update_page_book_page:nth-child(3) {
    z-index: 2;
}

.__update_page_book_page:nth-child(4) {
    z-index: 1;
}

/* Página virada */
.__update_page_book_page.__update_page_book_turned {
    transform: rotateY(-180deg);
}

/* Pontos */
.__update_page_book_dots {
    display: flex;
    gap: 10px;
    position: relative;
    bottom: 70px;
}

.__update_page_book_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbcbcb;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.__update_page_book_dot.__update_page_book_active {
    background: #BF4226;

}




.page-book-container {

    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}


.capa_1 {

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}


.content_element_p_page_book {

    width: 100%;
    height: 100%;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}


.BookContainerHtmlElement {

    width: 100vw;
    height: 100vh;
    display: flex;

    align-items: center;
    justify-content: center;
}





.capa_1 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('/Imagens/asx.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

}


.center_title {

    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h2_styled_cover {
    font-family: "Grey Qo", cursive;
    font-weight: 300;
    font-style: normal;
    color: white;
    text-align: center;
    font-size: 60px;
}


.button_styled_text {
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    bottom: 10px;
    padding: 20px;
    border-radius: 10px;
    font-size: 13px;
    color: white;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;

    animation: pulse_text 1.2s infinite;
}

@keyframes pulse_text {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.view_message_logos {

    width: 100%;
    height: 100%;
   
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg_color_text_book {
    width: 95%;
    height: 180px;
    background-color: rgb(87, 87, 87);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-color-text-view {
    width: 90%;
    text-align: justify;
    line-height: 37px;
    font-size: 15px;
    color: rgb(255, 255, 255);
}

.aligment-itens-view {

    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;

 
    flex-direction: column;
    justify-content: space-around;
}


.__body_sete_icon{
   
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aligment-itens-view-collum-1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}

.flower-icon {
   

    width: 133px;
    height: 133px;
    border-radius: 100%;
  

    background-image: url('/Imagens/ilustration_icon_handler.png');
    background-size: cover;
    background-position: 80% 100%;
    background-repeat: no-repeat;
}


.__body_envolve_flower_icon{
  
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.choise-box-element-container {

    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}









.rating_box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: Arial, sans-serif;
    width: 90%;
}

.rating_item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fdfdfd;
    transition: 0.2s;
}

.rating_item:hover {
    background: #ececec;
}

.rating_item input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #bbb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.checkmark::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #0099ff;
    border-radius: 2px;
    transform: scale(0);
    transition: 0.2s;
}

.rating_item input:checked+.checkmark {
    border-color: #02afff;
}

.rating_item input:checked+.checkmark::after {
    transform: scale(1);
}

.text {
    font-size: 16px;
    color: #333;
    font-family: "Quicksand", sans-serif;
    text-transform: capitalize;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}


.page-container-lauch {

    width: 100%;
    height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;

}

.al-box-page-settings {

    width: 100%;
    height: 100%;

}

.title_form_style {

    text-align: center;
    font-family: sans-serif;
    font-size: 23px;
    line-height: 40px;
    width: 85%;

    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-transform: capitalize;


}



.last_group_text_content {
    text-align: center;
    width: 80%;
    height: 125px;
    font-size: 17px;
    line-height: 40px;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-transform: capitalize;
}

.page-first-search-box {

    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;


}


.second-box-seach-page {
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}


.al-box-page-settings {
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.container-box-search-second {

    width: 90%;
}

.algiment-box-question {

    width: 90%;
}


.container_loading_speaner {

    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    justify-content: space-around;
}


.question_container_element {

    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    justify-content: space-around;
}


@keyframes rotation {
    0% {
        transform: rotate(0deg), ;
    }

    100% {
        transform: rotate(360deg), ;
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}



.el_circle {
    fill: none;
    stroke: hsl(214, 97%, 59%);
    stroke-width: 2;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash4 {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dashoffset: -125px;
    }
}


.__resgate_container {

    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}






.__resgate_book-pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.__resgate_book-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.__resgate_book-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(to left,
            hsl(340deg 100% 16%) 0%,
            hsl(340deg 100% 32%) 8%,
            hsl(340deg 100% 32%) 92%,
            hsl(340deg 100% 16%) 100%);
}

.__resgate_book-front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: white;
    background: hsl(345deg 100% 47%);
    will-change: transform;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {
    .__resgate_book-front {
        font-size: 1.25rem;
        padding: 12px 42px;
    }
}

.__resgate_book-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}

.__resgate_book-pushable:hover .__resgate_book-front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.__resgate_book-pushable:active .__resgate_book-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.__resgate_book-pushable:hover .__resgate_book-shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.__resgate_book-pushable:active .__resgate_book-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.__resgate_book-pushable:focus:not(:focus-visible) {
    outline: none;
}



.cover_florest_h {

    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('/Imagens/three_cover.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}


.cover_area_update {

    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}

.cover_update_state {
    width: 200px;
    height: 200px;
    overflow: hidden;

    transform: scale(1.2);
    position: relative;
    left: -10px;
    background-image: url('/Imagens/completo_cover.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;

}


.text_container_styled {

    transform: scale(1.1);
    width: 300px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text_styled_read {
    background-color: rgba(0, 0, 0, 0.6);
    text-align: justify;
    line-height: 35px;
    font-size: 13px;
    color: white;
    border-radius: 10px;
    padding: 15px;
}













.bird {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/174479/bird-cells-new.svg');
    filter: invert(82%) sepia(8%) saturate(275%) hue-rotate(350deg) brightness(95%) contrast(88%);
    background-size: auto 100%;
    width: 88px;
    height: 125px;


    animation-timing-function: steps(10);
    animation-iteration-count: infinite;
}

.bird.animation_fly {
    animation-name: fly-cycle;
}

.bird-one {
    animation-duration: 1s;
    animation-delay: -0.5s;

}

.bird-two {
    animation-duration: 0.9;
    animation-delay: -0.75.s;

}

.bird-three {
    animation-duration: 1.25s;
    animation-delay: -0.25s
}

.bird-four {
    animation-duration: 1.1s;
    animation-delay: -0.5s;
}

.bird-container {
    position: absolute;
    top: 10%;
    left: -3%;
    transform: scale(0) translateX(-10vw);

    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.bird-container.animation {
    animation-name: fly-right-one;
}

.bird-container-one {
    animation-duration: 15s;
    animation-delay: 0;
}

.bird-container-two {
    animation-duration: 16s;
    animation-delay: 1s;
}

.bird-container-three {
    animation-duration: 14.6s;
    animation-delay: 9.5s;
}

.bird-container-four {
    animation-duration: 16s;
    animation-delay: 10.25s;
}

/* @keyframes fly-cycle {
    100%{
        background-position: -3600px 0;
    }
} */
@keyframes fly-cycle {

    100% {
        background-position: -900px 0;
    }

}

@keyframes fly-right-one {

    0% {
        transform: scale(0.3) translateX(-10vw);
    }

    10% {
        transform: translateY(2vh) translateX(10vw) scale(0.4);
    }

    20% {
        transform: translateY(0vh) translateX(30vw) scale(0.5);
    }

    30% {
        transform: translateY(4vh) translateX(50vw) scale(0.6);
    }

    40% {
        transform: translateY(2vh) translateX(70vw) scale(0.6);
    }

    50% {
        transform: translateY(0vh) translateX(90vw) scale(0.6);
    }

    60% {
        transform: translateY(0vh) translateX(110vw) scale(0.6);
    }

    100% {
        transform: translateY(0vh) translateX(110vw) scale(0.6);
    }

}

@keyframes fly-right-two {

    0% {
        transform: translateY(-2vh) translateX(-10vw) scale(0.5);
    }

    10% {
        transform: translateY(0vh) translateX(10vw) scale(0.4);
    }

    20% {
        transform: translateY(-4vh) translateX(30vw) scale(0.6);
    }

    30% {
        transform: translateY(1vh) translateX(50vw) scale(0.45);
    }

    40% {
        transform: translateY(-2.5vh) translateX(70vw) scale(0.5);
    }

    50% {
        transform: translateY(0vh) translateX(90vw) scale(0.45);
    }

    51% {
        transform: translateY(0vh) translateX(110vw) scale(0.45);
    }

    100% {
        transform: translateY(0vh) translateX(110vw) scale(0.45);
    }

}


.algiment_button_container {

    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}










/* From Uiverse.io by gharsh11032000 */
.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 36px;
    border: 4px solid;
    border-color: transparent;
    font-size: 16px;
    background-color: inherit;
    border-radius: 50px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    background-color: white;
    box-shadow: 0 0 0 2px rgb(255, 255, 255);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
    position: absolute;
    width: 24px;
    transform: rotate(90deg);
    fill: rgb(0, 0, 0);
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
    right: 16px;
}

.animated-button .arr-2 {
    left: -25%;
}

.animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #212121;
    border-radius: 12px;
}

.animated-button:hover .arr-1 {
    right: -25%;
}

.animated-button:hover .arr-2 {
    left: 16px;
    transform: rotate(0deg);
}

.animated-button:hover .text {
    transform: translateX(12px);
}

.animated-button:hover svg {
    fill: #212121;
}

.animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px greenyellow;
}

.animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
}




.drop {
    position: absolute;
    bottom: 100%;
    width: 10px;
    height: 120px;
    pointer-events: none;
    animation: drop 0.5s linear infinite;
}

@keyframes drop {
    0% {
        transform: translateY(0vh);
    }

    75% {
        transform: translateY(110vh);
    }

    100% {
        transform: translateY(110vh);
    }
}

.stem {
    width: 2px;
    height: 60%;
    margin-left: 7px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25));
    animation: stem 0.5s linear infinite;
}

@keyframes stem {
    0% {
        opacity: 1;
    }

    65% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.splat {
    width: 15px;
    height: 10px;
    border-top: 2px dotted rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 1;
    transform: scale(0);
    animation: splat 0.5s linear infinite;
    display: none;
}

.splat {
    display: block;
}

@keyframes splat {
    0% {
        opacity: 1;
        transform: scale(0);
    }

    80% {
        opacity: 1;
        transform: scale(0);
    }

    90% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}







.working-icon-form {

    width: 150px;
    height: 150px;
    background-image: url('/Imagens/freelancer.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

}

.sete_icon {
    width: 50px;
    height: 50px;
    background-image: url('/Imagens/right-arrow.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
















@keyframes titleAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);

    }

    60% {
        opacity: 1;
        transform: translateY(-5px);

    }

    100% {
        opacity: 1;
        transform: translateY(0);

    }
}


.Content_exit_user_probable {

    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}


.center_rating_box {

    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.overlay_popstate_enviroment {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    width: 100%;
    height: 100%;
}

.animated_crying_popstate_container {
    width: 350px;
    height: 500px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.icon_crying_size {

    width: 150px;
    height: 150px;
    transform: scale(1.3);
    background-image: url('/Imagens/crying.gif');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}


.center_text_content_size {

    width: 90%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center_text_content_size p {
    background-color: rgba(0, 0, 0, 0.795);
    border-radius: 10px;
    color: white;
    text-align: justify;
    line-height: 33px;
    padding: 20px;
    font-size: 14px;
}



a {
    text-decoration: none;
}

.container_button_algment {

    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button_action_click {
    border: 2px solid black;
    width: 140px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    color: white;
    background-color: rgb(0, 0, 0);
    font-family: sans-serif;
    font-weight: 800;
    align-items: center;
    justify-content: center;
}





.section_final_season_container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.algiment_final_itens {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.icon_settings_view_end {
    height: 100px;
    width: 100px;
    position: relative;
    top: 10px;
    transform: scale(1.1);
    background-image: url('/Imagens/icon_finale.png');
   
    background-size: 80%;
    background-position: center center;
    background-repeat: no-repeat;

}

.p_content_container_view {
    width: 90%;
    height: 120px;
    display: flex;
    align-items: center;
    position: relative;
    top: 14px;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.p_content_container_view p {

    text-align: justify;
    line-height: 33px;
    font-size: 15px;
    width: 80%;
    color: white;

}

.oi_text {
    color: white;
    background-color: #e65447;
    width: 35px;
    height: 30px;
    vertical-align: middle;
    transform: scale(1.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    line-height: normal;
    border-radius: 5px;
}


.button_next_section_end {
    height: 50px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}








.button-24 {
    background: #590902;
    border: 1px solid #590902;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    min-height: 40px;
    outline: 0;
    padding: 19px 24px;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
}

.button-24:hover,
.button-24:active {
    background-color: initial;
    background-position: 0 0;
    color: #FF4742;
}

.button-24:active {
    opacity: .5;
}









.__contact_suport_grup-pushable {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.__contact_suport_grup-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: hsl(0deg 0% 0% / 0.25);
  will-change: transform;
  transform: translateY(2px);
  transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.__contact_suport_grup-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(
    to left,
    hsl(113, 68%, 7%) 0%,
    hsl(113, 74%, 14%) 8%,
    hsl(116, 64%, 9%) 92%,
    hsl(116, 63%, 13%) 100%
  );
}

.__contact_suport_grup-front {
  display: block;
  position: relative;
  padding: 12px 27px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: rgb(255, 255, 255);
  background: hsl(108, 100%, 13%);
  will-change: transform;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {
  .__contact_suport_grup-front {
    font-size: 1.25rem;
    padding: 12px 42px;
  }
}

.__contact_suport_grup-pushable:hover {
  filter: brightness(110%);
  -webkit-filter: brightness(110%);
}

.__contact_suport_grup-pushable:hover .__contact_suport_grup-front {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.__contact_suport_grup-pushable:active .__contact_suport_grup-front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.__contact_suport_grup-pushable:hover .__contact_suport_grup-shadow {
  transform: translateY(4px);
  transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.__contact_suport_grup-pushable:active .__contact_suport_grup-shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.__contact_suport_grup-pushable:focus:not(:focus-visible) {
  outline: none;
}







* {
  -webkit-tap-highlight-color: transparent;
}
