@import url('https://fonts.googleapis.com/css2?family=Hind+Vadodara:wght@300;400;500;600;700&display=swap');




@import url('https://fonts.googleapis.com/css2?family=Averia+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');



@import url('https://fonts.googleapis.com/css2?family=Mandali&display=swap');



.neo-slide-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 30px;
    border: 4px solid transparent;
    font-size: 14px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: #401902;
    box-shadow: 0 0 0 2px #401902;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
}

.neo-slide-btn__icon {
    position: absolute;
    width: 24px;
    fill: #401902;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Seta Inicial (Direita) */
.neo-slide-btn__icon--primary {
    right: 1px;
}

/* Seta de Hover (Esquerda) */
.neo-slide-btn__icon--secondary {
    left: -25%;
}

.neo-slide-btn__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #401902;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.neo-slide-btn__text {
    position: relative;
    white-space: nowrap;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Estados de Interação --- */

.neo-slide-btn:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #ffffff;
    border-radius: 12px;
}

.neo-slide-btn:hover .neo-slide-btn__icon--primary {
    right: -35%;
}

.neo-slide-btn:hover .neo-slide-btn__icon--secondary {
    left: 16px;
}

.neo-slide-btn:hover .neo-slide-btn__text {
    transform: translateX(12px);
}

.neo-slide-btn:hover .neo-slide-btn__icon {
    fill: #ffffff;
}

.neo-slide-btn:hover .neo-slide-btn__circle {
    width: 220px;
    height: 220px;
    opacity: 1;
}

.neo-slide-btn:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px #401902;
}

.h2_text_list {
    font-family: "Hind Vadodara", sans-serif;
    font-weight: 600;
    font-style: normal;
}


.container_message_img {
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

img {
    animation: smoothReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}


.container_flex_image_icon {
    background-color: white;
    border-radius: 8px;
    height: 300px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.icon_message {
    width: 100px;
    height: 100px;
    background-image: url('/Assets/imgs/mail.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.message_view_paragraph {

    width: 80%;
    border-radius: 8px;
    height: 50px;
    display: flex;
    align-items: center;
    text-align: justify;
    justify-content: center;
    line-height: 33px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 13px;
    padding: 20px;
}

.container_button_action {
    height: 50px;
    width: 90%;
    display: flex;

    align-items: center;
    justify-content: space-around;
}


.container_button_active_el {
    background-color: #202020;
    width: 150px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 8px;
    padding: 5px;
    text-align: center;
}


/* Estado base (sempre oculto) */
.container_el_backtotop {
    position: fixed;
    width: 50px;
    height: 50px;
    background-image: url('/Assets/imgs/arrow.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    z-index: 9999;
    display: none;
}

/* Só aparece em modo vertical */
body.vertical-mode .container_el_backtotop {
    display: flex;
}

/* Ajustes específicos por tema */
body.dark-mode .container_el_backtotop {
    bottom: 20px;
    right: 20px;
    filter: invert(1);
}

body.light-mode .container_el_backtotop {
    bottom: 0;
    right: 0;

}

.hidden_overflow {
    overflow: hidden !important;
}

.direction_container {

    width: 200px;
    height: 100px;
    position: absolute;
    display: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.animation_direction {



    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bottomTop_container {
    transform: translateY(100px);

    padding: 20px;
    border-radius: 10px;
    opacity: 0;

    animation: animationAppereance 2s ease-in-out;
}

@keyframes animationAppereance {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    60% {
        opacity: 1;
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}


/* eminet domain */


.settings_icon_action {
    width: 28px;
    height: 28px;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: 90%;
}


.Container_main {

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

.dark-mode .Container_main {
    background-color: rgb(0, 0, 0);
}


.light-mode .Container_main {
    background-color: rgb(255, 255, 255);
}

.imgTag {
    margin-top: 10px;
    height: 316px;
    width: 480px;
    display: none;
}


.dark-mode .settings_icon_action {
    filter: invert(1);
}

.light-mode .settings_icon_action {
    filter: invert(0);
}

.container_aligment_itens {

    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px;
    gap: 15px;
}




.container_overlay_homeBack {
    position: fixed;
    inset: 0;

    background: rgba(15, 15, 15, 0.35);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);

    display: none;
    align-items: center;
    justify-content: center;
}

.center_homeback {
    height: 150px;
    width: 360px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    animation: modalPop 0.8s ease-in-out;
    justify-content: space-evenly;
}

.text_home_back {

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

.container_buttons_algiment_home_back {

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

.backtohome {
    width: 140px;
    height: 40px;

    color: white;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00a8f7a2;
}

.stayment {
    width: 140px;
    height: 40px;
    background-color: #ccc;
    color: white;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.x_container_close {
    background-color: #ccc;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    border-radius: 100%;
    position: absolute;
    top: 5px;
    right: 5px;
    font-family: sans-serif;
    font-size: 12px;
}

@keyframes modalPop {
    0% {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }

    60% {
        transform: scale(1.05) translateY(-5px);
        opacity: 1;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes smoothReveal {
    0% {
        opacity: 0;
        transform: scale(0.82) translateY(50px);

    }

    60% {
        opacity: 1;
        transform: scale(1.04) translateY(-4px);

    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);

    }
}

.home {
    background-image: url('/Assets/imgs/home-icon-silhouette.png');
}

.code {
    background-image: url('/Assets/imgs/settings.png');
}

.message_icon {
    background-image: url('/Assets/imgs/email_icon.png');

}

.exit_form {
    background-image: url('/Assets/imgs/logout.png');

}


@keyframes surg {
    0% {
        transform: translateY(300px);
    }

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


@keyframes exit_form_animation_ico {
    0% {
        transform: translateY(0px);
    }

    100% {

        transform: translateY(300px);
    }
}


.progress-bar {
    width: 100%;
    display: block;
    background-color: #e0e0e0;
    overflow: hidden;
    position: relative;
    transition: background-color .5s;
    height: 2px;
    border-radius: 10px;

}

.progress-bar-inner {
    position: relative;
    height: 100%;
    width: 0;
    background-color: #e321a9;
    transition: width 0.7s;

    overflow: hidden;
    /* Adicionado */
}




.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.blue::after,
.purple::after,
.white::after,
.orange::after,
.green::after,
.pink::after {
    content: '';
    position: absolute;
    overflow: hidden !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: shimmer 2s infinite;
}



/* Mantenha suas classes de cor originais */
.white {
    background: linear-gradient(to right, #d86a11, #a30606);
}


.orange {
    background: linear-gradient(to right, #761600, #fd6900);


}

.purple {
    background: linear-gradient(to right, #cc6511, #ce3000);
}

.green {
    background: linear-gradient(to right, #d40000, #BF5315);
}

.pink {
    background: linear-gradient(to right, #FF1493, #FFA500);
}

.pink {
    background: linear-gradient(to right, #a10000, #FFA500);
}

@property --border-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0turn;
}


.dark-mode .container_icon_father_animation.animation {
    --border-size: 2px;
    --border-angle: 0turn;

    background-image:
        conic-gradient(from var(--border-angle), #000000, #000000 50%, #000000),
        conic-gradient(from var(--border-angle), transparent 20%, #BF3706, #f5581f);

    background-size: calc(100% - (var(--border-size) * 2)) calc(100% - (var(--border-size) * 2)), cover;
    background-position: center center;
    background-repeat: no-repeat;

    animation:
        __container_gear_bg-spin 3s linear infinite,
        fade_border 0.8s ease forwards;
}

.light-mode .container_icon_father_animation.animation {
    --border-size: 2px;
    --border-angle: 0turn;

    background-image:
        conic-gradient(from var(--border-angle), #ffffff, #ffffff 50%, #ffffff),
        conic-gradient(from var(--border-angle), transparent 20%, #D9985F, #D9985F);

    background-size: calc(100% - (var(--border-size) * 2)) calc(100% - (var(--border-size) * 2)), cover;
    background-position: center center;
    background-repeat: no-repeat;

    animation:
        __container_gear_bg-spin 3s linear infinite,
        fade_border 0.8s ease forwards;
}

.dark-mode .container_positionament.animation {

    --border-size: 2px;
    --border-angle: 0turn;

    background-image:
        conic-gradient(from var(--border-angle), #202020, #202020 50%, #202020),
        conic-gradient(from var(--border-angle), transparent 20%, #D9985F, #D9985F);

    background-size: calc(100% - (var(--border-size) * 2)) calc(100% - (var(--border-size) * 2)), cover;
    background-position: center center;
    background-repeat: no-repeat;

    animation:
        __container_gear_bg-spin 3s linear infinite,
        fade_border 0.8s ease forwards, surgirSuave 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.light-mode .container_positionament.animation {

    --border-size: 2px;
    --border-angle: 0turn;

    background-image:
        conic-gradient(from var(--border-angle), #ffffff, #ffffff 50%, #ffffff),
        conic-gradient(from var(--border-angle), transparent 20%, #D9985F, #D9985F);

    background-size: calc(100% - (var(--border-size) * 2)) calc(100% - (var(--border-size) * 2)), cover;
    background-position: center center;
    background-repeat: no-repeat;

    animation:
        __container_gear_bg-spin 3s linear infinite,
        fade_border 0.8s ease forwards, surgirSuave 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}


.dakr-mode .container_positionament.surgir {
    animation: surgirSuave 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}



.light-mode .container_positionament.surgir {
    animation: surgirSuave 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}





/* Rotação */
@keyframes __container_gear_bg-spin {
    to {
        --border-angle: 1turn;
    }
}

/* Fade-in da borda */
@keyframes fade_border {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@keyframes __container_gear_bg-spin {
    to {
        --border-angle: 1turn;
    }
}

--border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;

}


.container_icon_father_animation {
    height: 45px;
    width: 45px;
    display: flex;
    overflow: hidden !important;
    align-items: center;
    justify-content: center;
}

/* .container_positionament {
     width: 400px;
    height: 70px;
    background-color: #202020;
    visibility: hidden;
    position: absolute;
    z-index: 99999;
    animation: desaparecerSuave 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
} */

.dark-mode .container_positionament {
    width: 400px;
    height: 70px;
    background-color: #202020;
    visibility: hidden;
    position: absolute;
    z-index: 5;
    animation: desaparecerSuave 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


.light-mode .container_positionament {
    width: 400px;
    height: 70px;
    background-color: #ffffff;
    visibility: hidden;
    position: absolute;
    z-index: 5;
    animation: desaparecerSuave 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;

}

.container_settings_model {

    width: 100%;
    height: 100%;
    display: flex;

    align-items: center;
    justify-content: space-evenly;
}



.container_text_view_grade {

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

.container_text_view_grade p {
    font-size: 13px;
}

.grade_container_choise {

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

.grade_view_show {

    height: 100%;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.text_gallery_normal {
    font-size: 13px;
}

.grade_view_show.active {
    transition: transform 0.6s ease-in-out;
    background-color: #4d4d4d;
    transform: scale(1.1);
    padding: 10px;
    border-radius: 14px;
}

.gallery_normal_icon {
    width: 50px;
    height: 50px;
    background-image: url('/Assets/imgs/image-galery.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 60%;
    filter: invert(1);
}

.gallery_view_icon_list {
    width: 50px;
    height: 50px;
    background-image: url('/Assets/imgs/mosaic.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 60%;
    filter: invert(1);
}

.list_gallery_view {

    height: 100%;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.container_config_itens {

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

.itens_settigns {
    width: 28px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;

}



.i_children {
    height: 27px;
    width: 27px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}



.light-mode .theme_change {
    background-image: url('/Assets/imgs/brightness.png');

}

.dark-mode .theme_change {
    background-image: url('/Assets/imgs/brightness.png');
    filter: invert(1);
}

.light-mode .theme_change.active {
    background-image: url('/Assets/imgs/night-mode.png');

}

.dark-mode .theme_change.active {
    background-image: url('/Assets/imgs/night-mode.png');
    filter: invert(1);
}

.light-mode .sensibility {
    background-image: url('/Assets/imgs/touch-screen.png');

}

.dark-mode .sensibility {
    background-image: url('/Assets/imgs/touch-screen.png');
    filter: invert(1);
}

.light-mode .fullScreen {
    background-image: url('/Assets/imgs/fullscreen.png');

    background-size: 85% !important;
}

.dark-mode .fullScreen {
    background-image: url('/Assets/imgs/fullscreen.png');
    filter: invert(1);
    background-size: 85% !important;
}


.light-mode .icon_text_sett {
    font-size: 10px;
    font-family: sans-serif;
    color: black;
}

.dark-mode .icon_text_sett {
    font-size: 10px;
    font-family: sans-serif;
    color: white;
}


.container_absolute_sett {
    width: 200px;
    border-radius: 8px;
    height: 100px;
    display: flex;
    background-color: white;
    flex-direction: column;
    align-items: center;
    top: -100px;
    position: absolute;
    justify-content: space-evenly;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.04);
}


.sensi-slider {
    width: 155px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-family: system-ui, -apple-system, sans-serif;
}

.sensi-slider-track {
    position: relative;
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    border-radius: 50px;
}

.sensi-slider-fill {
    position: absolute;
    height: 100%;
    width: 0%;
    background: #111;
    border-radius: 50px;

}

.sensi-slider-thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    touch-action: none;

}

.sensi-slider-thumb:active {
    transform: translate(-50%, -50%) scale(1.15);
}

.sensi-slider-value {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: right;
}





@keyframes surgirSuave {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);

    }

    60% {
        opacity: 1;
        transform: translateY(-4px) scale(1.01);

    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);

    }
}




@keyframes desaparecerSuave {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);

    }

    100% {
        opacity: 0;
        transform: translateY(15px) scale(0.97);

    }
}




.dark-mode .galery_icon_mid {
    background-image: url('/Assets/imgs/image-galery.png');
    filter: invert(1);
    background-size: 85% !important;
}

.light-mode .galery_icon_mid {
    background-image: url('/Assets/imgs/image-galery.png');
    background-size: 85% !important;
}

.dark-mode .list_mode_view {
    background-image: url('/Assets/imgs/mosaic.png');
    filter: invert(1);
    background-size: 85% !important;
}

.light-mode .list_mode_view {
    background-image: url('/Assets/imgs/mosaic.png');
    background-size: 85% !important;
}

.icon_text_sett.active {
    color: rgb(187, 157, 23);
}











.g1 {

    background-image: url('/Imagens/gallery_1.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g2 {

    background-image: url('/Imagens/gallery_2.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g3 {

    background-image: url('/Imagens/gallery_3.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g4 {

    background-image: url('/Imagens/gallery_4.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g5 {

    background-image: url('/Imagens/gallery_5.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g6 {

    background-image: url('/Imagens/gallery_6.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g7 {

    background-image: url('/Imagens/gallery_7.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g8 {

    background-image: url('/Imagens/gallery_8.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g9 {

    background-image: url('/Imagens/gallery_9.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g10 {

    background-image: url('/Imagens/gallery_10.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g11 {

    background-image: url('/Imagens/gallery_11.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g12 {

    background-image: url('/Imagens/gallery_12.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g13 {

    background-image: url('/Imagens/gallery_13.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g14 {

    background-image: url('/Imagens/gallery_14.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g15 {

    background-image: url('/Imagens/gallery_15.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g16 {

    background-image: url('/Imagens/gallery_16.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g17 {

    background-image: url('/Imagens/gallery_17.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g18 {

    background-image: url('/Imagens/gallery_18.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g19 {

    background-image: url('/Imagens/gallery_19.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g20 {

    background-image: url('/Imagens/gallery_20.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g21 {

    background-image: url('/Imagens/gallery_21.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g22 {

    background-image: url('/Imagens/gallery_22.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g23 {

    background-image: url('/Imagens/gallery_23.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g24 {

    background-image: url('/Imagens/gallery_24.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g25 {

    background-image: url('/Imagens/gallery_25.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g26 {

    background-image: url('/Imagens/gallery_26.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g27 {

    background-image: url('/Imagens/gallery_27.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g28 {

    background-image: url('/Imagens/gallery_28.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g29 {

    background-image: url('/Imagens/gallery_29.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g30 {

    background-image: url('/Imagens/gallery_30.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g31 {

    background-image: url('/Imagens/gallery_31.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g32 {

    background-image: url('/Imagens/gallery_32.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g33 {

    background-image: url('/Imagens/gallery_33.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g34 {

    background-image: url('/Imagens/gallery_34.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g35 {

    background-image: url('/Imagens/gallery_35.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g36 {

    background-image: url('/Imagens/gallery_36.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g37 {

    background-image: url('/Imagens/gallery_37.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g38 {

    background-image: url('/Imagens/gallery_38.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g39 {

    background-image: url('/Imagens/gallery_39.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g40 {

    background-image: url('/Imagens/gallery_40.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g41 {

    background-image: url('/Imagens/gallery_41.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g42 {

    background-image: url('/Imagens/gallery_42.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g43 {

    background-image: url('/Imagens/gallery_43.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g44 {

    background-image: url('/Imagens/gallery_44.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g45 {

    background-image: url('/Imagens/gallery_45.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g46 {

    background-image: url('/Imagens/gallery_46.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g47 {

    background-image: url('/Imagens/gallery_47.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g48 {

    background-image: url('/Imagens/gallery_48.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g49 {

    background-image: url('/Imagens/gallery_49.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g50 {

    background-image: url('/Imagens/gallery_50.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g51 {

    background-image: url('/Imagens/gallery_51.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g52 {

    background-image: url('/Imagens/gallery_52.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}




.g53 {

    background-image: url('/Imagens/gallery_53.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}





.g54 {

    background-image: url('/Imagens/gallery_54.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.g55 {

    background-image: url('/Imagens/gallery_55.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.g56 {

    background-image: url('/Imagens/gallery_56.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.g57 {

    background-image: url('/Imagens/gallery_57.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.g58 {

    background-image: url('/Imagens/gallery_58.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.g59 {

    background-image: url('/Imagens/gallery_59.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.g60 {

    background-image: url('/Imagens/gallery_60.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.g61 {

    background-image: url('/Imagens/gallery_61.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.g62 {

    background-image: url('/Imagens/gallery_62.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.g63 {

    background-image: url('/Imagens/gallery_63.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}






.g64 {
    background-image: url('/Imagens/gallery_64.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g65 {
    background-image: url('/Imagens/gallery_65.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g66 {
    background-image: url('/Imagens/gallery_66.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g67 {
    background-image: url('/Imagens/gallery_67.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g68 {
    background-image: url('/Imagens/gallery_68.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g69 {
    background-image: url('/Imagens/gallery_69.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g70 {
    background-image: url('/Imagens/gallery_70.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g71 {
    background-image: url('/Imagens/gallery_71.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g72 {
    background-image: url('/Imagens/gallery_72.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g73 {
    background-image: url('/Imagens/gallery_73.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g74 {
    background-image: url('/Imagens/gallery_74.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g75 {
    background-image: url('/Imagens/gallery_75.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g76 {
    background-image: url('/Imagens/gallery_76.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g77 {
    background-image: url('/Imagens/gallery_77.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g78 {
    background-image: url('/Imagens/gallery_78.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g79 {
    background-image: url('/Imagens/gallery_79.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g80 {
    background-image: url('/Imagens/gallery_80.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g81 {
    background-image: url('/Imagens/gallery_81.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g82 {
    background-image: url('/Imagens/gallery_82.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g83 {
    background-image: url('/Imagens/gallery_83.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g84 {
    background-image: url('/Imagens/gallery_84.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g85 {
    background-image: url('/Imagens/gallery_85.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g86 {
    background-image: url('/Imagens/gallery_86.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g87 {
    background-image: url('/Imagens/gallery_87.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g88 {
    background-image: url('/Imagens/gallery_88.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g89 {
    background-image: url('/Imagens/gallery_89.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g90 {
    background-image: url('/Imagens/gallery_90.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g91 {
    background-image: url('/Imagens/gallery_91.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g92 {
    background-image: url('/Imagens/gallery_92.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g93 {
    background-image: url('/Imagens/gallery_93.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g94 {
    background-image: url('/Imagens/gallery_94.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g95 {
    background-image: url('/Imagens/gallery_95.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g96 {
    background-image: url('/Imagens/gallery_96.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g97 {
    background-image: url('/Imagens/gallery_97.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g98 {
    background-image: url('/Imagens/gallery_98.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g99 {
    background-image: url('/Imagens/gallery_99.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g100 {
    background-image: url('/Imagens/gallery_100.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g101 {
    background-image: url('/Imagens/gallery_101.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g102 {
    background-image: url('/Imagens/gallery_102.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g103 {
    background-image: url('/Imagens/gallery_103.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g104 {
    background-image: url('/Imagens/gallery_104.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g105 {
    background-image: url('/Imagens/gallery_105.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g106 {
    background-image: url('/Imagens/gallery_106.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g107 {
    background-image: url('/Imagens/gallery_107.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g108 {
    background-image: url('/Imagens/gallery_108.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g109 {
    background-image: url('/Imagens/gallery_109.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g110 {
    background-image: url('/Imagens/gallery_110.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g111 {
    background-image: url('/Imagens/gallery_111.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g112 {
    background-image: url('/Imagens/gallery_112.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g113 {
    background-image: url('/Imagens/gallery_113.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g114 {
    background-image: url('/Imagens/gallery_114.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g115 {
    background-image: url('/Imagens/gallery_115.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g116 {
    background-image: url('/Imagens/gallery_116.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g117 {
    background-image: url('/Imagens/gallery_117.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g118 {
    background-image: url('/Imagens/gallery_118.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g119 {
    background-image: url('/Imagens/gallery_119.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g120 {
    background-image: url('/Imagens/gallery_120.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g121 {
    background-image: url('/Imagens/gallery_121.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g122 {
    background-image: url('/Imagens/gallery_122.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.g123 {
    background-image: url('/Imagens/gallery_123.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}














.happy_container_show_view_user {

    width: 338px;
    height: 200px;
    position: absolute;
    bottom: 90px;
    z-index: 9999999;
    display: none;
    align-items: center;
    justify-content: center;

}

.happy_social_show_content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    width: 100%;
    animation: surge_animation_opacity 1s ease-in-out;
}


.social_icons_display_algiment {
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

.adding_happy_social_choise_title {
    color: black;
    height: 50px;
    width: 100%;
    padding: 10px;
    text-align: center;
    line-height: 28px;

    font-family: "Averia Libre", system-ui;
    font-weight: 400;
    font-style: normal;
}


@keyframes surge_animation_opacity {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.settings_icon_view_social {
    width: 25%;
    height: 100%;

    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.settings_icon_social_state {

    height: 50px;
    width: 50px;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: 70%;
}


.text_social_state {
    margin: 0;
    color: black;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 300;
    font-size: 13px;

}

.gmail {
    background-image: url('/Assets/imgs/gmail.png');
}

.instagram {
    background-image: url('/Assets/imgs/social.png');
}

.telegram {
    background-image: url('/Assets/imgs/telegram.png');
}

.whatsapp {
    background-image: url('/Assets/imgs/whatsapp\ \(1\).png');
}


a {
    text-decoration: none !important;
}


@keyframes scale_animation_css_social {
    0% {
        transform: scale(0.80);

    }

    50% {
        transform: scale(1.6);

    }

    100% {
        transform: scale(1);
    }
}


.container_acess_user_social_choise_amostre {


    position: absolute;
    display: none;
    z-index: 99999999999;
    bottom: 100px;
    height: 180px;
    width: 400px;

}


.envolve_social_choise_container {
    height: 100%;
    width: 1000%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    background-color: white;
    animation: popupReveal 0.8s ease-in-out;
    justify-content: space-evenly;
}

.title_envolve_text {

    width: 100%;
    height: 70px;
    text-align: center;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Mandali", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.envolve_social_aligment_itens {

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

.settings_envolve_icons {
    width: 50px;
    height: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.view_social_settings {
    width: 50px;
    height: 50px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 70%;
}

.text_social_settings {
    color: black;
    font-size: 13px;
    font-family: "Mandali", sans-serif;
    font-weight: 600;
    font-style: normal;

}


.last_itens_amostre_animated {

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


@keyframes popupHide {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    30% {
        transform: scale(1.05) rotate(-4deg);
    }

    60% {
        transform: scale(0.85) rotate(6deg);
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: scale(0.35) rotate(-14deg);
    }
}


@keyframes popupReveal {
    0% {
        opacity: 0;
        transform: scale(0.4) rotate(-12deg);
    }

    40% {
        opacity: 1;
        transform: scale(1.1) rotate(6deg);
    }

    70% {
        transform: scale(0.96) rotate(-2deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}


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


.envolve_iphone_container {

    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: white;
    border-radius: 10px;
    animation: animation_envolve_container 1s ease-in-out;
}


@keyframes animation_envolve_container {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

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


.text_styled_iphone_envolve {
    color: black;
    text-align: justify;
    line-height: 28px;
    padding: 10px;
    font-size: 16px;
    font-family: sans-serif;
}


.close_overlay {
    width: 100px;
    background-color: #202020;
    display: flex;
    align-items: center;
    color: white;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.aligment-for-pc-feature {
    width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.09);
}

.container-al-p-warn-user p {
    text-align: justify;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 35px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 6px;
}

.container-al-p-warn-user {
    width: 400px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.full-screen-element-view {
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.09);
    width: 700px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}


.h1-Tablet-Mode {
    font-family: 'Times New Roman', Times, serif;
    font-size: 3rem;
    font-weight: 300;
    color: black;
    text-align: center;
}

.p-For-Tablet-container {
    background-color: rgba(0, 0, 0, 0.8);
    width: 600px;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.p-For-Tablet {
    color: white !important;
    text-align: justify;
    padding: 10px;
    line-height: 43px;
}

.father-div-flex {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}





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

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

.__atived_full_screen_action_USER-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(to left,
            hsl(0, 0%, 0%) 0%,
            hsl(0, 0%, 0%) 8%,
            hsl(0, 0%, 0%) 92%,
            hsl(0, 0%, 0%) 100%);
}

.__atived_full_screen_action_USER-front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: white;
    background: hsla(0, 0%, 0%, 0.644);
    will-change: transform;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {
    .__atived_full_screen_action_USER-front {
        font-size: 1.25rem;
        padding: 12px 42px;
    }
}

.__atived_full_screen_action_USER-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}

.__atived_full_screen_action_USER-pushable:hover .__atived_full_screen_action_USER-front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.__atived_full_screen_action_USER-pushable:active .__atived_full_screen_action_USER-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.__atived_full_screen_action_USER-pushable:hover .__atived_full_screen_action_USER-shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.__atived_full_screen_action_USER-pushable:active .__atived_full_screen_action_USER-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.__atived_full_screen_action_USER-pushable:focus:not(:focus-visible) {
    outline: none;
}



.get_amostre {

    width: 220px;

}



.__button_container_back_choise {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}






.__element_back_home_overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    align-items: center;
    justify-content: center;

    width: 380px;
    height: 220px;

    animation: fadeOverlay 0.25s ease;
}

.envolv_overlay_home {
    width: min(90%, 360px);


    border-radius: 8px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.92),
            rgba(245, 245, 248, 0.88));

    border: 1px solid rgba(255, 255, 255, 0.55);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 100%;
    width: 100%;

    animation: popupSmooth 0.35s cubic-bezier(.2, .8, .2, 1);
}

.__text_question_user_view {
    font-size: 1.1rem;
    font-weight: 600;
    color: #18181b;

    text-align: center;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.__button_container_back_choise {
    display: flex;
    flex-direction: row-reverse;
    gap: 12px;
}

.__button_container_back_choise button {
    flex: 1;

    height: 48px;

    border: none;
    border-radius: 6px;

    font-size: 0.95rem;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.__user_back_statement_stay {
    background: #111827;
    color: white;
    width: 130px;
    border-radius: 8px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 20px rgba(17, 24, 39, 0.18);
}

.__user_back_statement_stay:hover {
    transform: translateY(-2px);
    background: #000;
}

.__user_back_statement_back {
    background: rgba(0, 0, 0, 0.05);
    color: #27272a;
    width: 130px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.__user_back_statement_back:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.08);
}

.__button_container_back_choise button:active {
    transform: scale(0.97);
}

@keyframes popupSmooth {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

* {
    -webkit-tap-highlight-color: transparent;
}

.__overlay_alert_page_proxy {
    position: absolute;
    left: 50%;
    top: 50%;
    display: none;
    width: 370px;
    height: 200px;
    transform: translate(-50%, -50%);
}

.__proxy_envolve_container {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    animation: animation_scale 1s ease-in-out;
}


@keyframes animation_scale {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}





._text_proxy_title {

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

}

._text_proxy_title p {
    color: black;
    text-align: justify;
    line-height: 33px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 500;
    font-size: 18px;
    width: 80%;
}

.__button_close_alert_proxy {
    height: 50px;
    width: 90%;
    display: flex;
    align-items: center;

    justify-content: flex-end;
}

.__close_proxy_ {
    width: 90px;
    background-color: #202020;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 5px;
}


.page-content-whatsapp {

    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    align-items: flex-start;
    justify-content: center;
}

.view-europa-context {

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


.view-europa-context p {
    text-align: justify;
    line-height: 33px;
    color: white;
    width: 90%;
    font-family: sans-serif;
    font-weight: 300;
}

.page-content-lead-whatsapp {

    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}


.img-view-europa {

    width: 300px;
    height: 300px;
    background-image: url('/Assets/imgs/book.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}


.__button_container_center {

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



.gift_presente_button_env {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #59040C, #260101);
    color: white;
    font-family: 'Arial', sans-serif;
    border: none;
    width: 300px;
    font-size: 18px;
    font-weight: bold;
    height: 70px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}


.gift_presente_button_env:hover {
    background: linear-gradient(45deg, #b85146, #ee9d8a);
    /* Cor levemente mais escura no hover */
    transform: scale(1.05);
    /* Pequeno aumento ao passar o mouse */
}

.gift_presente_button_env:active {
    transform: scale(0.98);
    /* Reduz o tamanho levemente ao ser clicado */
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    /* Sombra menos pronunciada ao clicar */
}


.__line_fine {
    border: 1px solid red;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}



.__img_container_text {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0px;
}

.__deslize_text_app {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.__deslize_text_app p {
    background-color: rgba(0, 0, 0, 0.15);
    color: white !important;
    padding: 12px 18px;
    border-radius: 14px;
    backdrop-filter: blur(6px);

    /* animação */
    animation: pulseText 2s ease-in-out infinite;
    transform-origin: center;
}

/* animação acender/apagar */
@keyframes pulseText {

    0% {
        opacity: 0.2;
        transform: scale(0.8);
        filter: blur(2px);
    }

    50% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0px);
    }

    100% {
        opacity: 0.2;
        transform: scale(0.8);
        filter: blur(2px);
    }
}




.__form_container {
    width: 100%;

    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 200px;

    margin: auto;
}

.__input_group {
    width: 100%;
    height: 65px;
    position: relative;
}

.dark-mode .__input_group input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    border-radius: 18px;
    padding: 0px 22px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
    box-sizing: border-box;
}

.dark-mode .__input_group input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.light-mode .__input_group input::placeholder {
    color: rgba(0, 0, 0, 0.55);
}

.__input_group input:focus {
    border: 1px solid #82ff2e;
    box-shadow: 0px 0px 20px rgba(112, 255, 46, 0.35);
    transform: translateY(-2px);
}



.light-mode .__input_group input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    border-radius: 18px;
    padding: 0px 22px;
    font-size: 16px;
    background: rgb(0 0 0 / 6%);
    backdrop-filter: blur(10px);
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0 0 0 / 8%);
    transition: 0.3s ease;
    box-sizing: border-box;
}



.__envolve_page_aligment_itens {

    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}



.__container_for_inputs_elements_overlay {

    width: 100%;
    height: 90%;
    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}


.__lead_content_whatsapp {
    width: 100%;

    height: 200px;

    background-color: #202020;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.__lead_content_whatsapp p {
    width: 90%;
    color: white;
    text-align: justify;
    line-height: 35px;

}

@keyframes pulseLead {
    0% {
        transform: scale(1);
        opacity: 0.92;
    }

    50% {
        transform: scale(1.02);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.92;
    }
}


.__button_env_container_lead {

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




.__env_status_ok {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    z-index: 9999;
    display: none;

    animation: popupShow 0.4s ease;
}

.__env_status_ok_icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #e8fff0;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: bold;
}

.__env_status_ok h2 {
    color: #111;
    font-size: 24px;
    margin-bottom: 14px;
}

.__env_status_ok p {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.__env_status_ok_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
    backdrop-filter: blur(4px);
}

@keyframes popupShow {
    from {
        opacity: 0;
        transform: translate(-50%, -45%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}



.error_styled {
    font-size: 16px;
    color: red;
    font-family: 'Times New Roman', Times, serif;
}







.__popstate_user_out_overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 999999999999999999;
    display: none;
    align-items: center;
    justify-content: center;
}


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


.__title_styled_h1 {

    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -200px;
}


.__button_project_container_contact {

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
















.contact_user {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* Compacto e Elegante */
    padding: 8px 18px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;

    /* Visual Minimalista (Preto e Branco) */
    color: #ffffff;
    background-color: black;
    border: 1px solid #111111;
    white-space: nowrap;
    border-radius: 4px;

    /* Transição suave para o efeito de passar o mouse */
    transition: all 0.2s ease-in-out;
}

/* Efeito de Hover (Passar o mouse) */
.contact_user:hover {
    color: #ffffff;
    background-color: #111111;
}

/* Efeito de Active (Quando o botão é clicado) */
.contact_user:active {
    transform: scale(0.98);
}



.page-content-contact {

    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.__contact_img {

    width: 300px;
    height: 300px;
    position: relative;
    left: -10px;
    background-image: url('/Imagens/book.png');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.__des_text_content_link {

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

.__des_text_content_link p {
    font-family: 'Times New Roman', Times, serif;
    text-align: justify;
    width: 90%;
    font-size: 15px;
    line-height: 37px;
}

.__button_container_acess {

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



.text_button_acess {
    color: white;
}











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

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

.__acess_link_button-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(to left,
            hsl(17, 95%, 23%) 0%,
            hsl(24, 97%, 27%) 8%,
            hsl(24, 93%, 28%) 92%,
            hsl(29, 97%, 23%) 100%);
}

.__acess_link_button-front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: white;
    background: #c25e06;
    will-change: transform;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {
    .__acess_link_button-front {
        font-size: 1.25rem;
        padding: 12px 42px;
    }
}

.__acess_link_button-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}

.__acess_link_button-pushable:hover .__acess_link_button-front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.__acess_link_button-pushable:active .__acess_link_button-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.__acess_link_button-pushable:hover .__acess_link_button-shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.__acess_link_button-pushable:active .__acess_link_button-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.__acess_link_button-pushable:focus:not(:focus-visible) {
    outline: none;
}