@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 36px;
    border: 4px solid transparent;
    font-size: 16px;
    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: 16px;
}

/* 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;
    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: -25%;
}

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

.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: none;
    align-items: center;
    justify-content: center;
    width: 100%;
}

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

}



.progress-bar {
    width: 100%;
    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, #FF8C00, #8B0000);
}


.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%, #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;
}

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


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