/* Adicione seu CSS personalizado aqui */
/* *{
    font-family: Presicav, sans-serif;
} */

#drawer{
    width: 100vw;
    height: 100vh;;
}

.mobile-menu-bg{
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 30vw;
    height: 62vh;
    right: 0;
}

.overflow-hidden{
    overflow: hidden !important;
}

.fix-word-position{
    position: relative;
    right: -30px;
}

.menu-btn{
    display: none;
}

.menu-btn-pages {
    width: 64px;
    height: 64px;
    align-items:center;
    justify-content:center;
    background: transparent;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-top: -4px;
    margin-left: -15px;
}

/** Scale Font to be like Presicav Font **/
.scale-font .elementor-heading-title{
    transform: scaleY(0.7);
    -webkit-transform: scaleY(0.7);
}

.scale-font-two .elementor-heading-title{
    transform: scaleY(0.8) scaleX(1.1);
    -webkit-transform: scaleY(0.8) scaleX(1.1);
    display: block;
}

.show-desktop{
    display: block;
}

.hide-desktop{
    display: none !important;
}

.navigation{
    height: 55px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.navigation img{
    width: 45px;
    height: 45px;
}

.language-row{
    position: relative;
}

.language-row:hover ul{
    display: flex;
}

.language-row ul{
    position: absolute;
    top: 100%;
    background-image: url('https://kionera.co/wp-content/uploads/2025/10/language-menu-bg.png');
    background-size: 100% 100%;
    z-index: 999999;
    display: block;
    width: 192px;
    height: 156px;
    left: -140px;
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 10px 25px;
}

.language-row li:hover, .language-row li:focus{
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
}

/* .drawer .language-row ul{
    left: -175px !important;
} */

.language-row ul li{
    font-size: 19px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    color: #fff;
}

.drawer .language-row ul li a, .language-list li{
    padding: 8px 0;
}

.drawer-menu{
    list-style: none;
    position: relative;
    top: 100px;
}

.fixed-items{
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    width: 100%;
}

.fixed-items .f_logo{
    max-width: 250px;
}

.show-fixed-items{
    display: flex;
}

.display-none{
    display: none !important;
}

.fix-menu-width{
    width: 90vw !important;
    max-width: 90vw !important;
}

@media (min-width: 601px){
    .language-row ul {
        top: 50px;
        left: 50% !important;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }

    .drawer .language-row ul {
        top: 67px;
    }
}

@media screen and (max-width: 600px) {

    .fixed-items .f_logo{
        max-width: 100px;
    }

    .fix-menu-width{
        width: 100vw !important;
        max-width: 100vw !important;
    }

    .fixed-items .f_logo{
        max-width: 100px;
    }

    .spaced-text-mobile .elementor-heading-title {
		display: flex;
        justify-content: space-between;
        width: 100%;
	}

    .remove-spaced-text-mobile .elementor-heading-title{
        display: block !important;
    }

    .fix-word-position{
        right: 0px;
    }

    .custom-menu-shortcode{
        max-width: 300px;
        flex-direction: row !important;
        justify-content: center !important;
        width: 100%;
    }

    .hide-mobile{
        display: none !important;
    }

    .show-mobile{
        display: block;
    }
}

/* Custom scrollbar color for the website - mais específico */

html::-webkit-scrollbar, body::-webkit-scrollbar {
    width: 12px;
    background: #5b3c28 !important;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
    background: #5b3c28 !important;
    border-radius: 6px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
    background: #5b3c28 !important;
}

/* For modern browsers */
body::-webkit-scrollbar {
    width: 12px;
    background: #5b3c28;
}
body::-webkit-scrollbar-thumb {
    background: #5b3c28;
    border-radius: 6px;
}
body::-webkit-scrollbar-track {
    background: #5b3c28;
}

/* For Firefox */
html, body {
    scrollbar-width: thin;
    scrollbar-color: #2C1000 #5b3c28;
}

/* For Edge/IE (muito limitado) */
html {
    scrollbar-face-color: #2C1000;
    scrollbar-track-color: #5b3c28;
}