@font-face {
    font-family: 'Urbane-Medium';
    font-weight: 500;
    font-style: normal;
    src: url('/site/fonts/Urbane-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Urbane-Light';
    font-weight: 300;
    font-style: normal;
    src: url('/site/fonts/Urbane-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'ElzaTrial-Bold';
    font-weight: 700;
    font-style: normal;
    src: url('/site/fonts/ElzaTrial-Bold.otf') format('opentype');
}

@font-face {
    font-family: 'ElzaTrial-Regular';
    font-weight: 500;
    font-style: normal;
    src: url('/site/fonts/ElzaTrial-Regular.otf') format('opentype');
}

html[data-theme='dark'] {
    --text-color-normal: #fff;
}

html {
    --text-color-banner: #fff;
    --text-color-normal: #151719;
    --text-color-castanho: rgb(148, 119, 96);
    --background-body: rgba(245, 245, 245, 1);
    --background-white: #fff;
    --menu-color: #fff;
    --menu-color-hover: #000;
    --background-menu-white: #fff;
    --background-menu-black: #000;
    --background-creme: rgb(239, 229, 217);
    --background-castanho: rgb(148, 119, 96);
}

html, body{
    width: 100%;
    position: relative;
}

body{
    background-color: var(--background-body);
    font-family: 'Urbane-Medium';
    font-size: 18px;
    line-height: 24px;
    color: var(--text-color-normal);

    @media screen and (max-width: 991px) {
        &{
            font-size: 16px;
            line-height: 20px;
        }
    }

}

body.open{
    overflow: hidden;
}

img{
    max-width: 100%;
    vertical-align: middle;
}

a{
    color: inherit;
}

.left{ text-align: left; }
.center{ text-align: center; }
.right{ text-align: right; }

#popup_holder{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block !important;
    padding: 15px;
    text-align: center;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;

    &:after{
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.4);
        z-index: 1;
    }

    .close{
        cursor: pointer;
        position: absolute;
        color: #fff;
        top: 10px;
        right: 10px;
        z-index: 3;
    }

    a{
        display: flex;
        height: 100%;
        justify-content: center;
        align-items: center;
    }

    .img{
        position: relative;
        height: 400px;
        z-index: 2;
        width: 800px;
        display: inline-block;
        max-width: 100%;

        img{
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            position: absolute;
            object-fit: cover;
        }
    }


    &.close{
        display: none !important;
    }
}

.iframe_holder{
    position: relative;
    padding-bottom: 53.35%;
    padding-top: 25px;
    height: 0;
}

.iframe_holder iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


@media (min-width: 768px){
    .custom_container {
        max-width: 750px;
    }
}

@media (min-width: 992px){
    .custom_container {
        max-width: 970px;
    }
}


@media (min-width: 1200px){
    .custom_container {
        max-width: 1099px;
    }
}


@media (min-width: 1300px){
    .custom_container {
        max-width: 1199px;
    }
}

@media (min-width: 1400px){
    .custom_container {
        max-width: 1300px;
    }
}

@media (min-width: 1500px){
    .custom_container {
        max-width: 1400px;
    }
}

@media (min-width: 1700px){
    .custom_container {
        max-width: 1650px;
    }
}

@media (min-width: 1800px){
    .custom_container {
        max-width: 1720px;
    }
}

.custom_container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

/*==================================================================================================*/
/*MENU*/
/*==================================================================================================*/

.menu_holder{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 85px 0;
    width: 100%;
    z-index: 6;

    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;

    &.scroll{
        padding: 20px 0;
        background-color: var(--background-castanho);
    }
}

.menu_holder .menu-toggler{
    background: transparent;
    border: 0;
    width: 40px;
    cursor: pointer;
    height: auto;
    padding: 0;
}

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
    width: 34px;
    height: 26px;
    position: relative;
    margin: 0 auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon1 span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: var(--background-white);
    border-radius: 0;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.menu_holder.scroll #nav-icon1 span {
    background: #fff;
}

#nav-icon1.open span {
    background: #fff;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
    top: 0px;
}
#nav-icon1 span:nth-child(2) {
    top: 10px;
}
#nav-icon1 span:nth-child(3) {
    top: 20px;
}
#nav-icon1.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(140deg);
    -moz-transform: rotate(140deg);
    -o-transform: rotate(140deg);
    transform: rotate(140deg);
    background-color: var(--background-menu-black);
}

#nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#nav-icon1.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-140deg);
    -moz-transform: rotate(-140deg);
    -o-transform: rotate(-140deg);
    transform: rotate(-140deg);

    background-color: var(--background-menu-black);
}


.menu_holder .menu ul.menu-nav{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    padding-right: 80px;
    justify-content: end;
    list-style: none;
    gap: 100px;

    .dropdown{
        font-family: 'ElzaTrial-Bold';
        font-size: 18px;
        line-height: 22px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--menu-color);
        padding: 10px 0;

        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;

        .dropdown-menu {
            background-color: var(--background-white);
            color: var(--menu-color-hover);
            padding: 0 10px;
            top: 6px !important;

            li{
                margin: 10px 0;
            }
        }

        &.language{
            margin-left: -45px;
        }

        a{
            text-decoration: none;
            -webkit-transition: .25s ease-in-out;
            -moz-transition: .25s ease-in-out;
            -o-transition: .25s ease-in-out;
            transition: .25s ease-in-out;

            &.dropdown-toggle::after{
                display: none;
            }
        }

    }

}

.menu_holder .menu-nav .dropdown a:hover,
.menu_holder .menu-nav li.active > a,
.menu_holder .menu-nav li.active:hover > a {
    color: var(--text-color-castanho);
    text-decoration: none !important;
}

.menu_holder.scroll .menu-nav .dropdown a:hover,
.menu_holder.scroll .menu-nav li.active > a,
.menu_holder.scroll .menu-nav li.active:hover > a {
    color: var(--menu-color-hover);
}

.menu_holder .menu-nav .dropdown .dropdown-menu a {
    color: var(--menu-color-hover);
}

.menu_holder .navbar-header .svg{
    display: none;
}

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

    .menu_holder .menu ul.menu-nav{
        gap: 60px;
    }

    .menu_holder .menu ul.menu-nav {
        & .dropdown {
            &.language {
                margin-left: -25px;
            }
        }
    }

}

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

    .menu_holder .menu ul.menu-nav{
        gap: 45px;
        padding-right: 0;
    }

    .menu_holder .menu ul.menu-nav {
        & .dropdown {
            &.language {
                margin-left: -15px;
            }
        }
    }

}

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

    .menu_holder {
        padding: 15px 10px;

        &.open{
            background-color: var(--background-menu-white);
        }
    }

    .menu_holder {
        &.scroll {
            padding: 15px 10px;
            background-color: var(--background-menu-white);
        }
    }

    .menu_holder .menu{
        display: block !important;
    }

    .menu_holder .menu ul.menu-nav{
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        position: absolute;
        background-color: var(--background-menu-white);
        top: Calc(100% - 0px);
        flex-direction: column;
        left: 0;
        text-align: right;
        align-items: start;
        gap: 0px;

        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }

    .menu_holder .menu.aberto ul.menu-nav{
        max-height: 400px;
    }

    .menu_holder .menu ul.menu-nav .dropdown {
        font-family: 'Urbane-Light';
        font-size: 16px;
        line-height: 19px;
        color: var(--menu-color-hover);
        text-transform: initial;
        border-top: 1px solid var(--background-castanho);
        width: 100%;
        text-align: left;
        padding: 25px;


        &.language {
            margin-left: 0px;
        }
    }

    .menu_holder.scroll .navbar-header .img,
    .menu_holder.open .navbar-header .img{
        display: none;
    }

    .menu_holder.scroll .navbar-header .svg,
    .menu_holder.open .navbar-header .svg{
        display: block;
    }

    .menu_holder.scroll #nav-icon1 span {
        background: #000;
    }

}


/*==================================================================================================*/
/*BANNER*/
/*==================================================================================================*/


.banner{
    position: relative;
    width: 100%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.banner .mask{
    position: absolute;
    width: 100%;
    bottom: -2px;
    z-index: 2;
}

.banner .mask img{
    width: 100%;
}

.banner .holder_slider{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.banner .holder_slider img{
    width: 100%;
}

.banner .holder_slider .single_banner,
.banner .holder_slider .single_banner .holder_content,
.banner .holder_slider .single_banner .holder_content_img{
    width: 100%;
    height: 100vh;
    min-height: 900px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.banner.interno .holder_slider .single_banner{
    background-position: bottom center;
}

.banner .holder_slider .single_banner .holder_content_img .iframe_holder{
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.banner.internas li {
    height: 260px;
    background-position: top center;
}

.banner #slider_home .owl-controls {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 100px;
}

.banner #slider_home .owl-dots {
    position: absolute;
    bottom: 75px;
    text-align: center;
    margin: 0px auto 0;
    left: 0;
    right: 0;
}

.banner #slider_home .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    display: inline-block;
    vertical-align: middle;
    margin: 0 25px;
    border-radius: 100%;
    border: 1px solid #fff;
}

.banner #slider_home .owl-dots .owl-dot.active {
    background-color: transparent;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.banner #slider_home .owl-prev img,
.banner #slider_home .owl-next img {
    width: 32px !important;
}

.banner .holder_slider video{
    position: absolute;
    width: 100%;
    /* height: 100%; */
    top: Calc( 50% - 36px );
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 1;
}

.banner .conteudo{
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.banner .conteudo .nome{
    font-family: 'Urbane-Light';
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.2em;
    color: var(--text-color-banner);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.banner .conteudo .descricao{
    font-family: 'Antic Didone';
    font-weight: 400;
    font-size: 72px;
    line-height: 120%;
    color: var(--text-color-banner);
    margin-bottom: 50px;
}

.banner .conteudo button{
    background-color: transparent;
    border: 1px solid var(--text-color-banner);
    padding: 20px 35px;
    font-family: 'Urbane-Light';
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-color-banner);
}


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

    .banner .conteudo .descricao{
        font-size: 50px;
    }

}

@media screen and (min-width: 992px) {

    .banner .holder_slider img{
        display: none;
    }

}

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

    .banner{
        margin-top: 0;
    }

    .banner, .banner .holder_slider .single_banner {
        height: 470px;
        min-height: unset;
    }

    .banner.internas,
    .banner.internas li {
        height:200px;
    }

    .banner .conteudo .descricao {
        font-size: 35px;
    }

    .banner .conteudo {
        text-align: center;
        top: 63%;
    }

    .banner .conteudo button {
        padding: 15px 35px;
        font-size: 16px;
    }

    .banner #slider_home .owl-dots {
        display: none;
    }

    .banner .holder_slider .single_banner {
        background-position: top right;
    }
}


/*==================================================================================================*/
/*BLOCOS*/
/*==================================================================================================*/

.bloco{
    position: relative;
    width: 100%;
    padding: 150px 0;

    &.creme{background-color: var(--background-creme);}

    h5{
        font-family: 'Urbane-Light';
        font-size: 18px;
        line-height: 22px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        margin-bottom: 20px;

        &.black{color: var(--text-color-normal);}
        &.castanho{color: var(--text-color-castanho);}
    }

    h1{
        font-family: 'Antic Didone';
        font-weight: 400;
        font-size: 72px;
        line-height: 120%;
        &.white{color: var(--text-color-banner);}

        @media screen and (max-width: 1200px) {
            &{
                font-size: 50px;
            }
        }

        @media screen and (max-width: 767px) {
            &{
                font-size: 30px;
            }
        }

    }

    h2{
        font-family: 'Antic Didone';
        font-weight: 400;
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 50px;

        &.black{color: var(--text-color-normal);}
        &.castanho{color: var(--text-color-castanho);}

        @media screen and (max-width: 991px) {
            &{
                font-family: 'Urbane-Light';
                font-size: 20px;
                line-height: 1.2;
                letter-spacing: 0.3em;
                text-transform: uppercase;
                color: var(--text-color-castanho);
            }
        }

    }

    h3{
        font-family: 'Antic Didone';
        font-weight: 400;
        font-size: 40px;
        line-height: 40px;
        color: #000000;
    }

}

.bloco.no-margin{
    padding: 0;
}


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

    .bloco{
        padding: 80px 0;
    }
}


/*==================================================================================================*/
/*MIDDER*/
/*==================================================================================================*/


.midder{
    width: 100%;
    height: 650px;
    position: relative;

    /*background-attachment: fixed;*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.midder .conteudo {
    width: 30%;
    top: 20%;
    left: 0;
    text-align: left;
    position: absolute;
    padding: 0 2%;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.midder .conteudo h2 {
    font-size: 48px;
    color: #111;
    text-transform: none;
}
.midder .conteudo p {
    font-size: 17px;
    color: #838383;
}


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

    .midder {
        height: 250px;
        background-attachment: initial;
    }
    .midder .conteudo h2 {
        font-size: 25px;
    }
}

/*@media screen and (max-width: 470px) {

	.midder {
		height: 250px;
	}
	.midder .conteudo h2 {
		font-size: 25px;
	}
}*/


/*==================================================================================================*/
/*HOMEPAGE*/
/*==================================================================================================*/

.conteudo-levamos{
    background-color: var(--background-castanho);
    display: flex;
    flex-direction: column;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    height: 100%;
    justify-content: space-evenly;
    padding: 0 55px;

    @media screen and (max-width: 1199px) {
        &{
            border-radius: 0px;
            padding-top: 30px;
            padding-bottom: 30px;
            text-align: center;
            align-items: center;
        }
    }

    .helper{
        max-width: 500px;
    }

    .titulo{
        font-family: 'Antic Didone';
        font-weight: 400;
        font-size: 64px;
        line-height: 120%;
        color: #FFFFFF;
        margin-bottom: 30px;

        @media screen and (max-width: 1199px) {
            &{
                font-size: 30px;
            }
        }

    }

    .descricao{
        font-family: 'Urbane-Medium';
        font-size: 20px;
        line-height: 140%;
        color: #FFFFFF;

        @media screen and (max-width: 1199px) {
            &{
                font-size: 16px;
                margin-bottom: 20px;
            }
        }

    }

    .conteudo{
        font-family: 'Urbane-Medium';
        font-weight: 600;
        font-size: 20px;
        line-height: 36px;
        color: #FFFFFF;

        @media screen and (max-width: 1199px) {
            &{
                font-size: 16px;
            }
        }

    }

}

#homepage {
    .helper_blocos_frotas {
        margin: 0 -30px;

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

            &{
                margin: 0 0;
            }

        }


        .bloco_frota_home {
            position: relative;

            .img {
                padding-bottom: 155%;
                position: relative;
                border-radius: 5px;
                overflow: hidden;

                img {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    object-fit: cover;
                }
            }

            .conteudo {
                position: absolute;
                width: 100%;
                padding: 45px 40px;
                bottom: 0;
                left: 0;

                .nome{
                    font-family: 'Urbane-Medium';
                    font-size: 28px;
                    line-height: 24px;
                    color: var(--text-color-banner);
                    margin-bottom: 30px;
                }

                .descricao{
                    font-family: 'Urbane-Light';
                    font-size: 18px;
                    line-height: 24px;
                    color: var(--text-color-banner);
                    margin-bottom: 40px;
                }

                .content{
                    font-family: 'Urbane-Light';
                    font-size: 16px;
                    line-height: 24px;
                    color: var(--text-color-banner);
                }

            }

        }
    }

    .img-cuidamos{
        img{
            width: 66vw;
            max-width: unset;
            margin-top: -5vw;
        }
    }

    .descricao-cuidamos{
        margin-bottom: 50px;
    }

    .descricao-cuidamos,
    .conteudo-cuidamos{
        h3{
            font-size: 32px;
            line-height: 54px;
            color: var(--text-color-castanho);
            margin-bottom: 30px;
        }
    }

    .conteudo-cuidamos{
        color: var(--text-color-castanho);
    }

    .text-cv{
        font-family: 'Antic Didone';
        font-weight: 400;
        font-size: 38px;
        line-height: 53px;
        color: #A6A9AE;
    }

    .bloco-parceiros{
        .holder_slider{
            margin: 0 -12px;

            &.owl-carousel .owl-stage-outer{
                overflow: unset;
            }

            &.owl-carousel .owl-item{
                opacity: 0;

                -webkit-transition: .33s ease-in-out;
                -moz-transition: .33s ease-in-out;
                -o-transition: .33s ease-in-out;
                transition: .33s ease-in-out;
            }

            &.owl-carousel .owl-item.active{
                opacity: 1;
            }

            &.owl-carousel .owl-nav{
                position: absolute;
                right: 10px;
                top: -92px;
                display: flex;
                gap: 25px;
            }

            .slide-parceiro{
                background: #FFFFFF;
                box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
                border-radius: 16px;
                padding: 55px 25px;
                margin: 0 12px;
            }
        }
    }

}


/*==================================================================================================*/
/*SOBRE NÓS*/
/*==================================================================================================*/

#sobre-nos{
    font-family: 'Urbane-Light';
    font-size: 20px;
    line-height: 24px;
    color: #000000;


    @media screen and (max-width: 991px) {
        &{
            font-size: 16px;
            line-height: 20px;
        }
    }

    .holder-background{
        background-repeat: no-repeat;
        background-position: right center;
        background-size: 100% auto;

        @media screen and (max-width: 991px) {
            &{
                background: none;
            }
        }
    }

    h4{
        font-family: 'Urbane-Medium';
        font-size: 32px;
        line-height: 38px;
        color: var(--text-color-castanho);

        @media screen and (max-width: 991px) {
            &{
                font-size: 24px;
                line-height: 24px;
            }
        }
    }

    hr{
        margin: 30px 0;
        border: 1px solid var(--background-castanho);
        opacity: 1;
    }

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

        .banner.interno .conteudo button {
            border: 1px solid var(--background-castanho);
            color: var(--text-color-castanho);
        }

        .banner.interno .conteudo .descricao{
            margin-bottom: 15px;
        }

        .banner.interno .conteudo {
            text-align: center;
            top: 55%;
        }

    }

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

        .banner.interno .holder_slider img{
            width: 767px;
            height: 540px;
            object-fit: cover;
        }

    }

}


/*==================================================================================================*/
/*CONTACTOS*/
/*==================================================================================================*/

#contactos{

    .bloco.bloco-titulo{
        padding: 380px 0px;

        @media screen and (max-width: 991px) {
            padding: 100px 0px;
            text-align: center;
        }
    }

    .holder-background{
        background-size: 100% auto;
        background-position: top center;
        background-repeat: no-repeat;

        .info-contactos{
            padding-top: 115px;

            @media screen and (max-width: 991px) {
                &{
                    padding-top: 50px;
                    padding-bottom: 80px;
                    text-align: center;
                    color: rgb(148, 119, 96);
                }
            }
        }

        .holder_form_contactos{
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12.5px);
            border-radius: 32px;
            padding: 10.7% 10.7%;
            max-width: 1015px;
            margin-left: auto;
        }

        #form_contactos{
            label{
                font-family: 'Urbane-Light';
                font-size: 18px;
                line-height: 22px;
                letter-spacing: 0.3em;
                text-transform: uppercase;
                color: #000000;
                margin-bottom: 10px;
                display: block;

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

                    &{
                        font-size: 15px;
                        line-height: 20px;
                    }

                }

            }

            input.form-control{
                font-family: 'Urbane-Light';
                font-size: 16px;
                line-height: 20px;
                color: #000000;
                border: none;
                box-shadow: none;
                border-bottom: 1px solid #000000;
                border-radius: 0;
                background-color: transparent;
                padding-left: 0;
                padding-right: 0;
                margin-bottom: 50px;
            }

            textarea.form-control{
                min-height: 230px;
                padding: 20px 40px;
                border-radius: 0;
                box-shadow: none;
                background-color: transparent;
                border: 1px solid #000000;
            }

            button{
                background-color: transparent;
                border: 1px solid var(--text-color-normal);
                padding: 20px 35px;
                font-family: 'Urbane-Light';
                font-size: 16px;
                line-height: 19px;
                letter-spacing: 0.3em;
                text-transform: uppercase;
                color: var(--text-color-normal);
            }

            select{
                width: 100%;
            }

            .select2-container{
                margin-bottom: 50px;
                width: 100% !important;
            }

            .select2-container--default .select2-selection--single{
                background-color: transparent;
                padding: 15px;
                border-radius: 0;
                width: 100%;
                height: auto;
                border: 1px solid #000000;
            }

            .select2-container--default .select2-selection--single .select2-selection__rendered{
                line-height: 1;
                font-family: 'Urbane-Light';
                font-weight: 300;
                font-size: 18px;
                letter-spacing: 0.3em;
                color: rgba(0, 0, 0, 0.5);
            }

            .select2-container--default .select2-selection--single .select2-selection__arrow{
                height: 100%;
            }


            .field_checkbox {
                position: relative;
            }

            .field_checkbox label{
                font-weight: 400;
            }

            .field_checkbox label a {
                font-weight: 400;
                color: #333;
                text-decoration: underline;
            }

            .field_checkbox input {
                position: absolute;
                opacity: 0;
                cursor: pointer;
                height: 0;
                width: 0;
            }

            .field_checkbox .checkmark {
                margin-left: 55px;
                margin-top: 0;
                height: 39px;
                margin-bottom: 15px;
                line-height: 39px;
            }

            .field_checkbox .checkmark:before {
                content: '';
                position: absolute;
                top: 1px;
                left: 0px;
                height: 38px;
                width: 38px;
                border: 1px solid #000000;
            }

            .field_checkbox .checkmark:after {
                content: "";
                position: absolute;
                display: none;
                left: 12px;
                top: 4px;
                width: 12px;
                height: 25px;
                border: solid #fff;
                border-width: 0 4px 4px 0;
                -webkit-transform: rotate(42deg);
                -ms-transform: rotate(42deg);
                transform: rotate(42deg);
            }

            .field_checkbox input:checked ~ .checkmark:before {
                background-color: rgba(217, 217, 217, 0.6);
            }

            .field_checkbox input:checked ~ .checkmark:after {
                display: block;
            }

        }

    }



}



/*==================================================================================================*/
/*PRODUTOS*/
/*==================================================================================================*/

#frota{
    .banner_interno{
        .single_banner{
            padding-top: 13.3%;
            padding-bottom: 8.3%;
            background-size: cover;

            @media screen and (max-width: 991px){
                &{
                    padding-top: 18.3%;
                    padding-bottom: 18.3%;
                }
            }

            .conteudo{
                h1{
                    font-family: 'Antic Didone';
                    font-weight: 400;
                    font-size: 70px;
                    line-height: 70px;
                    color: #FFFFFF;

                    @media screen and (max-width: 991px){
                        &{
                            font-size: 25px;
                            line-height: 1.2;
                            text-align: center;
                            max-width: 400px;
                            margin: 0 auto;
                        }
                    }
                }

                .opcoes{
                    margin: 50px 0 25px;
                    font-family: 'ElzaTrial-Bold';
                    font-size: 16px;
                    line-height: 30px;
                    display: flex;
                    align-items: center;
                    text-transform: uppercase;
                    gap: 30px;
                    color: #FFFFFF;

                    a.active{
                        font-family: 'ElzaTrial-Regular';
                        font-weight: 500;
                        text-decoration: underline;
                    }
                }

                .faixa_pesquisa_topo{
                    background: #FFFFFF;
                    border-radius: 16px;
                    padding: 10px 10px 10px 50px;
                    max-width: 1160px;
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    justify-content: space-between;

                    .helper{
                        display: flex;
                        align-items: center;
                        gap: 20px;
                    }

                    .filtro{
                        position: relative;
                        &:after{
                            content: '';
                            position: absolute;
                            right: -10px;
                            border-left: 1px solid #E9E9E9;
                            top: 0;
                            display: block;
                            height: 100%;
                        }
                        &:last-child{
                            &:after{
                                opacity: 0;
                            }
                        }
                    }

                    select{
                        font-family: 'Antic Didone';
                        font-weight: 400;
                        font-size: 15px;
                        line-height: 28px;
                        color: #050B20;
                        border: 0;
                        padding: 8px 0;
                        outline: none;
                    }

                    .botao{
                        padding: 20px 15px;
                        width: 215px;
                        text-align: center;
                        background: #947760;
                        border: 1px solid #947760;
                        border-radius: 16px;
                        font-family: 'Antic Didone';
                        font-weight: 400;
                        font-size: 15px;
                        line-height: 28px;
                        color: #FFFFFF;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 12px;
                        cursor: pointer;
                    }
                }

            }
        }
    }
}

#frota .zona_produtos .holder_zona_produtos{
    display: flex;
    gap: 100px;
}

#frota .zona_produtos .label_filtros{
    margin: 40px 0;
    cursor: pointer;
    display: none;
    i{
        margin-left: 10px;
    }


    @media screen and (max-width: 991px){
        &{
            display: block;
            position: relative;
            bottom: 0px;
            padding: 12px 16px;
            width: 325px;
            text-align: center;
            margin: 0 auto 40px;
            background: #FFFFFF;
            box-shadow: 0px 11px 90.3px 5px rgba(195, 177, 177, 0.2);
            border-radius: 12px;
        }
    }
}

#frota .zona_produtos .filtros > .close{
    margin: 0 0 40px 0;
    cursor: pointer;
    display: none;
    text-align: right;
    font-size: 30px;
    .holder_close{
        display: inline-block;
    }

    @media screen and (max-width: 991px){
        &{
            display: block;
        }
    }
}

#frota .zona_produtos .holder_zona_produtos .filtros {
    width: 300px;
    position: relative;
    padding: 35px;
    background: #FFFFFF;
    border: 1px solid #EEF0F1;
    border-radius: 24px;


    @media screen and (max-width: 1200px){
        &{
            width: 275px;
        }
    }
}

#frota .zona_produtos .holder_zona_produtos .filtros .botao,
#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro{
    padding-top: 5px;
    padding-bottom: 10px;

    h4{
        position: relative;
        cursor: pointer;

        &:after{
            content: "\f068";
            -webkit-font-smoothing: antialiased;
            display: var(--fa-display, inline-block);
            font-style: normal;
            font-variant: normal;
            line-height: 1;
            text-rendering: auto;
            font-family: var(--fa-style-family, "Font Awesome 6 Free");
            font-weight: var(--fa-style, 900);

            position: absolute;
            right: 0;
            top: 2px;
        }
    }

    .opcoes{
        overflow: hidden;
        max-height: 2000px;
        transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }

    &.close{
        h4:after{
            content: "\f067";
        }

        .opcoes{
            max-height: 0px;
        }

    }

}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro h3{
    font-family: 'Urbane';
    font-size: 20px;
    line-height: 23px;
    color: #13171B;
    padding-bottom: 15px;
    border-bottom: 2px solid #F6F7F9;
    margin-bottom: 25px;
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro .single_opcao{
    padding: 3px 0;
    margin-bottom: 15px;
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro .single_opcao label{
    font-family: 'Antic Didone';
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #A6AFBA;
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro .single_opcao label input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro .single_opcao label .checkmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #F6F7F9;
    cursor: pointer;
    border: 1px solid #EEF0F1;
    border-radius: 4px;
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro .single_opcao label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro .single_opcao label input:checked ~ .checkmark:after {
    display: block;
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro .single_opcao label input:checked ~ .checkmark {
    background-color: rgb(148, 119, 96);
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro .single_opcao label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro .opcoes_btn{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro .single_opcao_btn label input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro .single_opcao_btn label .checkmark {
    border: 1px solid #D7D7D7;
    cursor: pointer;
    background: #D7D7D7;
    border-radius: 100px;
    padding: 5px 10px;
    color: #212529;
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro .single_opcao_btn label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro .single_opcao_btn label input:checked ~ .checkmark:after {
    display: block;
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro .single_opcao_btn label input:checked ~ .checkmark {
    background-color: #2D82B7;
    border-color: #2D82B7;
    color: #fff;
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro h4{
    font-family: 'Antic Didone';
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #4C5C6B;
}

#frota .zona_produtos .holder_zona_produtos .filtros .holder_filtros .single_filtro h5 {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #6F9DB2;
}

#frota .zona_produtos .holder_zona_produtos .holder_lista_produtos {
    width: Calc(100% - 320px);

    .nr_produtos{
        font-weight: 400;
        font-size: 15px;
        line-height: 22px;
        color: #6F9DB2;
    }

    .ordenacao{
        font-weight: 700;
        font-size: 15px;
        line-height: 22px;
        color: #13283D;

        select{
            padding: 0;
            background-color: transparent;
            border: 0;
            font-weight: 400;
            font-size: 15px;
            line-height: 24px;
            color: #6F9DB2;
            width: 100%;
        }
    }

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

            width: Calc(100% - 275px);
        }
    }

    @media screen and (max-width: 991px){
        &{
            .ordenacao_nr_produtos{
                flex-wrap: wrap;
            }
            .ordenacao {
                width: 115px;
                margin-top: 0;
                order: 1;
                text-align: right;
            }
            .nr_produtos{
                order: 2;
                width: 100%;
                text-align: left;
            }
        }
    }
}

#frota .zona_produtos .holder_zona_produtos .holder_lista_produtos .lista_produtos{

    .helper_produtos {
        display: flex;
        flex-wrap: wrap;
        margin: 0px 0px 0;
        gap: 16px;
    }

    .paginacao{
        width: 100%;
        flex: 1;
        justify-content: center;

        .single_pag{
            cursor: pointer;
        }

        .single_pag:not(.seta){
            font-weight: 200;
            font-size: 16px;
            line-height: 24px;
            color: #000000;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            text-align: center;

            &.active{
                background: #DFDFDF;
            }
        }

        .single_pag.seta {
            font-weight: 200;
            font-size: 16px;
            line-height: 24px;
            color: #000000;
            margin: 0 10px;

            i{
                display: inline-block;
                margin-left: 10px;
            }
        }

    }
}

#frota .zona_produtos .holder_zona_produtos .lista_produtos .bloco_produto{
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    width: Calc(100% / 3 - 12px);
    padding: 20px 20px;
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 30px;

    .info_produto{
        width: 100%;
        a{
            text-decoration: none;
        }
    }

    .img_holder{
        position: relative;

        .discount-label{
            background: #D63A2F;
            border-radius: 5px;
            font-weight: 700;
            font-size: 14px;
            line-height: 18px;
            text-align: center;
            color: #FFFFFF;
            padding: 3px 10px;
            display: inline-block;
            margin-right: 5px;
            position: relative;
            z-index: 2;
        }

        .novo-label{
            background: #13283D;
            border-radius: 5px;
            font-weight: 700;
            font-size: 14px;
            line-height: 18px;
            text-align: center;
            color: #FFFFFF;
            padding: 3px 10px;
            display: inline-block;
            margin-right: 5px;
            position: relative;
            z-index: 2;
        }

        .img{
            margin-top: 0px;
            position: relative;
            padding-bottom: 75%;
            height: 0;
            overflow: hidden;
            border-radius: 25px;
            img{
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

    }

    .marca{
        margin-top: 10px;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        text-transform: uppercase;
        color: rgba(0, 0, 0, 0.2);
    }

    .nome{
        font-family: 'Antic Didone';
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
        color: #050B20;
        margin-top: 15px;
        margin-bottom: 50px;

        @media screen and (max-width: 550px){
            &{
                word-wrap: break-word;
            }
        }

    }

    .line-info{
        padding: 0 25px;
        display: flex;
        justify-content: space-between;
        margin-bottom: 25px;
        flex-wrap: wrap;
        gap: 22px;

        .info{
            display: flex;
            gap: 15px;
            align-items: center;
            font-family: 'Antic Didone';
            font-weight: 400;
            font-size: 16px;
            line-height: 14px;
            color: #947760;
            width: 125px;
        }
    }

    .botoes{
        margin-top: 15px;
        width: 100%;

        .btn1{
            padding: 15px;
            background-color: transparent;
            font-family: 'Antic Didone';
            font-weight: 400;
            font-size: 16px;
            line-height: 28px;
            color: #947760;
            border: 1px solid rgba(148, 119, 96, 0.5);
            border-radius: 20px;
            width: 100%;
            text-transform: uppercase;
        }
    }

    @media screen and (max-width: 1400px){
        &{
            width: Calc(100% / 2 - 12px);
        }
    }
    @media screen and (max-width: 600px){
        &{
            width: 100%;
        }
    }
}

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

    #frota{
        .ordenacao_nr_produtos{
            width: 100%;
            margin-left: auto;
            justify-content: flex-end !important;
            gap: 10px;
        }
    }

}

@media screen and (max-width: 1200px){
    #frota .zona_produtos .holder_zona_produtos .lista_produtos .single_produto {
        width: 50%;
    }
}

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

    #frota .zona_produtos .lista_produtos .single_produto {
        margin-bottom: 60px;
        width: 50%;
    }
    #frota .zona_produtos .holder_zona_produtos {
        display: flex;
        gap: 0;
        flex-wrap: wrap;
    }
    #frota .zona_produtos .holder_zona_produtos .holder_lista_produtos {
        width: 100%;
    }
    #frota .zona_produtos .holder_zona_produtos .filtros:before {
        display: none;
    }

    #frota .zona_produtos .holder_zona_produtos .filtros {
        width: 100%;
        max-width: 100%;
        padding: 30px;
        margin-bottom: 30px;
    }
    #frota .zona_produtos .holder_zona_produtos .filtros {
        display: none;
        position: fixed;
        top: 50%;
        transform: translate(-50%, -50%);
        left: 50%;
        z-index: 999;
        max-height: 75vh;
        overflow: auto;
        max-width: 90%;
        background: #fff;
        box-shadow: 0px 0px 11px #1474bd66;
        border-radius: 30px;

    }
    #frota .zona_produtos .holder_zona_produtos .filtros.open {
        display: block;
    }
}

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

    #frota .zona_produtos .lista_produtos{
        margin: 0;
    }

    #frota .zona_produtos .lista_produtos .single_produto {
        padding: 0;
        width: 300px;
        max-width: 100%;
        margin: 0 auto 50px;
    }

}

/*==================================================================================================*/
/*CONTACTOS*/
/*==================================================================================================*/




/*==================================================================================================*/
/*BLOG*/
/*==================================================================================================*/
.pagina_noticias{

}

.pagina_noticias .listagem_noticias .paginacao{

}

.pagina_noticias .listagem_noticias .paginacao .single_pag{
    display: inline-block;
    cursor: pointer;
    padding: 10px;
}

.pagina_noticias .listagem_noticias .paginacao .single_pag.active{
    font-weight: 600;
}

.pagina_noticias .listagem_noticias .lista_noticias{
    display: flex;
    flex-wrap: wrap;
}
.pagina_noticias .listagem_noticias .single_noticia{
    width: Calc(100% / 3);
}

.pagina_noticias .listagem_noticias .single_noticia .imagem img{
    width: 100%;
}
.pagina_noticias #load-noticias-blog.display_none{
    display: none !important;
}
.pagina_noticias .noticias-loading-blog{
    display: none;
}

/*==================================================================================================*/
/*FAQS*/
/*==================================================================================================*/

.faqs .holder_faqs .pergunta{
    cursor: pointer;
}

.faqs .holder_faqs .pergunta .cabecalho h3{
    font-family: 'Urbane-Medium';
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: #000000;
    margin-bottom: 12px;

    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}


.faqs .holder_faqs .pergunta .cabecalho{
    position: relative;
    padding-bottom: 10px;
    padding-right: 45px;
}

.faqs .holder_faqs .pergunta .cabecalho span{
    position: absolute;
    color: var(--text-color-castanho);
    top: 12px;
    font-size: 15px;
    right: 10px;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.faqs .holder_faqs .pergunta.open .cabecalho span{
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.faqs .holder_faqs .pergunta .cabecalho span.fa-minus{
    display: none;
}

.faqs .holder_faqs .pergunta.open .cabecalho span.fa-plus{
    display: none;
}

.faqs .holder_faqs .pergunta.open .cabecalho span.fa-minus{
    display: block;
}

.faqs .holder_faqs .resposta p,
.faqs .holder_faqs .resposta {
    font-family: 'Urbane-Light';
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.faqs .holder_faqs .resposta {
    display: none;
    padding-top: 12px;
}
.faqs .holder_faqs .single_faq{
    margin-bottom: 40px;
    border-bottom: 1px solid rgb(148, 119, 96);
    padding-bottom: 15px;
}
.faqs .holder_faqs .single_faq:last-child{
    margin-bottom: 0;
}

.faqs .holder_faqs .pergunta.open .cabecalho h3{
    font-size: 32px;
}

@media screen and (max-width: 1400px){
    .faqs .holder_faqs .pergunta .cabecalho h2 {
        font-size: 30px;
        line-height: 35px;
    }

    .faqs .holder_faqs .pergunta .cabecalho span {
        top: 8px;
    }

    .faqs .holder_faqs {
        width: 80%;
    }
}

@media screen and (max-width: 1300px){
    .faqs .holder_faqs {
        width: 100%;
    }
}

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

    .faqs .holder_faqs .pergunta .cabecalho h3,
    .faqs .holder_faqs .pergunta.open .cabecalho h3{
        font-size: 16px;
        line-height: 22px;
    }

    .faqs .holder_faqs .resposta p,
    .faqs .holder_faqs .resposta {
        font-size: 16px;
        line-height: 22px;
    }

    .faqs .holder_faqs .single_faq {
        text-align: center;
    }

}

/*==================================================================================================*/
/*FOOTER*/
/*==================================================================================================*/


footer{
    background: rgba(19, 30, 41, 1);
    padding-top: 70px;
    font-family: 'Urbane-Medium';
    /*font-weight: 500;*/
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--text-color-castanho);
}

.lower_footer{
    font-family: 'Urbane-Light';
    font-size: 12px;
    line-height: 14px;
    color: var(--text-color-castanho);
    text-align: center;
    margin-top: 90px;
    padding-top: 40px;
    padding-bottom: 45px;
    border-top: 1px solid var(--text-color-castanho);
}

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

    .lower_footer{
        margin-top: 35px;
    }

}


.politica_privacidade table{
    max-width: 100% !important;
    border: none !important;
}

.politica_privacidade table tr td{
    width: Calc(100% / 3) !important;
    padding: 5px 10px;
    border: none !important;
}
.politica_privacidade table tr th{
    background: #c6c5c5;
    padding: 5px 10px;
}