@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');


@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP&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: 30px;
}

.__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: rgb(247, 79, 13);

}




.page-book-container {

    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}


.capa_1 {
    background-image: url('../Imagens/app-icons/capa_el_update.jpg');
    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.5), rgba(0, 0, 0, 0.6)),
        url('/Imagens/gallery_1.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.6);

    bottom: 10px;
    padding: 20px;
    border-radius: 10px;
    font-size: 16px;
    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-view {
    transform: scale(1.2);
    width: 295px;
    height: 160px;
    background-color: rgb(87, 87, 87);
    border-radius: 10px;
    padding: 10px;
    border-radius: 10px;
    text-align: justify;
    line-height: 33px;
    font-size: 12px;
    color: rgb(255, 255, 255);
}

.aligment-itens-view {

    width: 100%;
    height: 90%;
    display: flex;
    align-items: center;
    position: relative;
    /* top: -25px; */
    flex-direction: column;
    justify-content: space-evenly;
}

.aligment-itens-view-collum-1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}

.flower-icon {
    width: 145px;
    transform: scale(1.2);
    height: 145px;
    background-image: url('/public/Assets/Imagens/Estrutural/gift.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}



.choise-box-element-container {

    width: 100%;
    height: 200px;
    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: 70%;
    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-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-transform: capitalize;

    font-family: "LINE Seed JP", sans-serif;
    font-weight: 400;
    font-style: normal;



}

.page-first-search-box {

    width: 100%;
    height: 70%;
    display: flex;
    position: relative;
    top: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;


}


.second-box-seach-page {
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}


.al-box-page-settings {
    width: 100%;
    height: 70%;
    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;
    }
}


.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: contain;
}

.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;
}











.__element_drag_form_feature_slider {
    width: 340px;
    height: 60px;
    background: #1e293b;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.6);
}

/* barra de progresso */
.__element_drag_form_feature_progress {
    position: absolute;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #D99962, #D99962);
}

/* texto */
.__element_drag_form_feature_slider_text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    letter-spacing: 1px;
    user-select: none;
    pointer-events: none;

    color: transparent;
    background: linear-gradient(to right,
            #ffffff 0%,
            #ffffff var(--fill, 0%),
            #94a3b8 var(--fill, 0%),
            #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* botão arrastável */
.__element_drag_form_feature_drag {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(145deg, #D9B29C, #D9B29C);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: box-shadow .2s;
}

/* glow */
.__element_drag_form_feature_drag::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;



}

/* pressionado */
.__element_drag_form_feature_drag:active {
    box-shadow: 0 0 15px #22c55e;
}



.container_cover_form_book {
    border: 2px solid black;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.title_view_main {
    text-align: center;
    width: 80%;
    line-height: 50px;
    font-size: 28px;
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}


.width_icon_container {
    width: 100px;
    height: 100px;
    background-image: url('/public/Assets/Imagens/Estrutural/computer.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain
}




.input-group {
    transform: scale(1.1);
    width: 280px;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    outline: none;
    font-size: 14px;
    background: white;
    transition: all .25s ease;
}

.input-group input::placeholder {
    color: #9ca3af;
}

.input-group input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}


.button_container_form_next_name {

    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form_text_name {
    width: 200px;
    height: 50px;
    font-size: 18px;
    display: flex;
    align-items: center;
    background-color: #202020;
    border-radius: 5px;
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    justify-content: center;
}

.err_text_view {
    font-size: 13px;
    width: 100%;
    color: rgb(161, 43, 43);
    font-family: sans-serif;
    text-align: center;
}

/* CSS */
.__form_res {
    align-items: center;
    background-image: linear-gradient(135deg, #f34079 40%, #fc894d);
    border: 0;
    border-radius: 10px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-family: "Codec cold", sans-serif;
    font-size: 16px;
    font-weight: 700;
    height: 54px;
    justify-content: center;
    letter-spacing: .4px;
    line-height: 1;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 3px;
    text-decoration: none;
    text-transform: uppercase;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.__form_res:active {
    outline: 0;
}

.__form_res:hover {
    outline: 0;
}

.__form_res span {
    transition: all 200ms;
    color: white;
}

.__form_res:hover span {
    transform: scale(.9);
    opacity: .75;
}

@media screen and (max-width: 991px) {
    .__form_res {
        font-size: 15px;
        height: 50px;
    }

    .__form_res span {
        line-height: 50px;
    }
}


.awser_response_container_overlay {
    width: 300px;
    height: 200px;
    position: absolute;
    left: 50%;
    z-index: 99999999;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    align-items: center;
    justify-content: center
}

.algiment_responde_item {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}


.p_text_warn_user_form {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.473);
    border: 2px solid rgba(255, 0, 0, 0.25);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.4;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    animation: subirDevagar 4s ease-out forwards;
}

@keyframes subirDevagar {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }


    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}