/*-------------------------------------------------------
  Author: AtenaSoft
--------------------------------------------------------*/

/*=============================================================
RESET STYLES
===============================================================*/


/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;

}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    background: none;
    border: none;
    font: inherit;
    outline: inherit;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    /* padding: 0px 20px; */
    background-color: white;
}
 

.bootstrap-select>.dropdown-toggle {
    min-height: 50px;
    height: auto !important;
    background-color: var(--light-theme) !important;
    padding-top: 12px;
}

.form-control {
    border-radius: 0;
}

/*=============================================================
Variáveis
===============================================================*/

:root {
    --client-theme: #29ABE2;
    --client-theme2: #115D7E;
    --client-theme3: #F3B61F;
    --transparent-client-theme: #28AAE184;
    --transparent-client-theme2: #115D7E84;
    --transparent-client-theme3: #F3B61F84;
    /*  */
    --light-theme: #F4F4F6;
    /*     --light-theme2: #f2f2f2; */
    --midtone-theme: #676767;
    /*     --midtone-theme2: #bcbbbb; */
    --dark-theme: #2E282A;
    /*   --dark-theme2: #2b2b2b; */
    --transparent-light-theme: #F4F4F6b7;
    --transparent-midtone-theme: #67676784;
    --transparent-dark-theme: #2E282A84;
    /*  */

    /* outras cores */
    --instagram: #d33070;
    --facebook: #1973eb;
    --linkedin: #0d63bc;
    --whatsapp: #46c355;
    --email: #ce493c;
    --messenger: #027ff7;
    --youtube: #f60004;
    --twitter: #1e96e9;
    --snapchat: #f8f400;
    --pinterest: #c41f25;




    --font-size-xxs: 0.6rem;
    /* 9px */
    --font-size-xs: 0.7rem;
    /* 10px */
    --font-size-sm: 0.8rem;
    /* 14px */
    --font-size-md: 1rem;
    /* 16px */
    --font-size-lg: 1.1rem;
    /* 18px */
    --font-size-xl: 1.25rem;
    /* 20px */
    --font-size-2xl: 1.5rem;
    /* 24px */
    --font-size-3xl: 1.9rem;
    /* 30px */
    --font-size-4xl: 2.3rem;
    /* 40px */
    --font-size-5xl: 4.5rem;
    /* 50px */

    --border-theme: 7px;

}


h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-3xl);
}

h4 {
    font-size: var(--font-size-2xl);
}

h5 {
    font-size: var(--font-size-xl);
}

h6 {
    font-size: var(--font-size-lg);
}






/*=============================================================
GENERAL STYLES
===============================================================*/

html,
body {
    font-family: 'rubik', sans-serif;
}

*:hover {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.text-client {
    color: var(--client-theme);
}

.text-client2 {
    color: var(--client-theme2);
}

.btn-client {
    background-color: var(--client-theme);
    color: white;
    box-shadow: 0px 1px 1px 0px var(--transparent-midtone-theme);
    border-radius: var(--border-theme);

    &:hover {
        background-color: var(--client-theme);
        color: white;
        box-shadow: none;
    }
}

.btn-client:first-child:active {
    background-color: var(--client-theme);
    color: white;
}

.btn-client .btn-client2 {
    background-color: var(--client-theme2);
    color: white;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    border-radius: 0;
}

.btn-client2:first-child:active {
    background-color: var(--client-theme2);
    color: white;
}

.btn-client2:hover {
    background-color: var(--midtone-theme);
    color: white;
    box-shadow: none;
}

.theme-titles h1 {
    font-weight: 800;
    font-size: var(--font-size-5xl);
    color: var(--client-theme);
}

.theme-titles h2 {
    font-weight: 400;
    color: var(--client-theme2);
    font-size: var(--font-size-2xl);
}

.theme-titles h4 {
    font-weight: 300;
    color: var(--client-dark);
    font-size: var(--font-size-xl);
}


.theme-titles h5 {
    font-weight: 600;
    font-size: var(--font-size-xl);
    font-style: italic;
    color: var(--dark-theme);
}

.theme-titles h6 {
    font-weight: 300;
    font-size: var(--font-size-lg);
    color: var(--dark-theme);
}

.theme-titles-2 h1 {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--dark-theme);
}

.theme-titles-2 h2 {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--dark-theme);
}

.theme-titles-2 h3 {
    font-size: var(--font-size-2xl);
    text-transform: uppercase;
    font-weight: 300;
    color: var(--dark-theme);

}

.theme-titles-2 h4 {
    font-size: var(--font-size-2xl);
    font-weight: 500;
    color: var(--dark-theme);
}

.logged {
    fill: var(--client-theme);
}

/*=============================================================
Share icons  Socials
===============================================================*/
.share-wrap {
    border-radius: 3px;
    padding: 2px;
}


.share-icons {
    border-radius: 3px;
    padding: 0 10px;
    background-color: transparent;
}

.share-icons i {
    padding: 0 5px;
}

i.fa-share-nodes {
    color: var(--instagram);
}

.share-icons i.fa-link {
    color: var(--messenger);
}
.share-icons i.fa-link-f {
    color: var(--facebook);
}

.share-icons i.fa-envelope {
    color: var(--email);
}

.share-icons i.fa-whatsapp {
    color: var(--whatsapp);
}

.share-icons i:hover {
    color: var(--dark-theme);
}

/* .btn-share-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--whatsapp);
    color: white;
    font-size: var(--font-size-md);
} */


/*  */


/* .topdiv {
    background-image: url(../img/topdiv.png);
    height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

.bottomdiv {
    background-image: url(../img/bottomdiv.png);
    height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
}
 */

/*=============================================================
ASIDES e MODALS
===============================================================*/



#backToTop {
    position: fixed;
    right: 75px;
    bottom: 25px;
    z-index: 3;
    height: 48px;
    width: 48px;
    border: 3px solid var(--client-theme);
    border-radius: 50%;
    background-color: white;
    opacity: 80%;
}

.whatsapp-button {
    position: fixed;
    right: 12px;
    bottom: 20px;
    z-index: 3;
    opacity: 80%;

    & img {
        height: 60px;
    }
}

@media (max-width:992px) {

    .whatsapp-button {
        bottom: 90px;
    }

    #backToTop {
        right: 17px;
        bottom: 155px;
    }
}


/*=============================================================
TOPBAR
===============================================================*/
.topbar__contact__single__info {
    font-weight: 300;
    font-size: var(--font-size-sm);
}

.topbar__topbar-wrap__userandlangs {
    font-weight: 500;
    font-size: var(--font-size-sm);
}

/*=============================================================
HEADER
===============================================================*/

/* -------------------------------------------------------------
 header*/
.header__logo {
    & img {
        max-width: 230px;
        max-height: 80px;
    }
}

@media (min-width: 992px) {
    .header__contacts-carrinho {
        min-width: 230px;
    }

}

.header__info-cart__quantity {
    font-size: var(--font-size-sm);
}

.header__info-cart__value {
    font-size: var(--font-size-lg);
    line-height: 0.9;
}



/* -------------------------------------------------------------
nav */
.nav-item {
    position: relative;

    & a {
        color: var(--dark-theme);

        &.active {
            color: inherit;

            &:before,
            &:after {
                content: "";
                border-bottom: solid 2px var(--client-theme);
                position: absolute;
                bottom: 7px;
                width: 50%;
            }
        }

        &:hover {
            color: inherit;
        }
    }


    & a:before,
    & a:after {
        content: "";
        border-bottom: solid 2px var(--client-theme);
        position: absolute;
        bottom: 7px;
        width: 0;
    }

    & a:before {
        left: 20px;
    }

    & a:after {
        right: 20px;
    }

    & a:hover:before,
    & a:hover:after {
        width: 50%;
        color: inherit;
    }

    & a:before,
    & a:after {
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
}


/* mobile */


.nav-mobile-wrap {

    .nav-mobile-wrap-logo {
        & img {
            max-height: 50px;
        }
    }

    .navbar-toggler {
        border: 3px solid var(--client-theme);
        border-radius: 50%;

        &:focus {
            box-shadow: 0 0 0 0;
        }
    }
}

.nav-mobile-list {
    transition: height 300ms linear;
}

/* animação do menu de hamburger */
.hamburger .line {
    width: 20px;
    height: 3px;
    background-color: var(--client-theme);
    display: block;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}


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

.banner {
    position: relative;

    .banner__bg-image {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50%;
    }


    .banner-wrap_search {
        position: absolute;
        top: 100px;
        width: clamp(260px, 50%, 550px);
        height: 60px;
        opacity: 90%;
        background-color: white;
        border-radius: 50px;
        overflow: hidden;
        display: flex;
        align-items: center;
        padding: 3px;
        z-index: 2;


        :is(button) {
            height: 53px;
            width: 53px;
            color: var(--dark-theme);
            background-color: white;
            border: 3px solid var(--client-theme);
            border-radius: 50% !important;

            &.btn:active {
                border-color: var(--client-theme);
                background-color: var(--client-theme);
            }
        }

        .form-control {
            border: 1px solid white;
            height: 100%;
            margin-right: 5px;

            &:focus {
                box-shadow: none;
            }
        }
    }

    @media (max-width: 992px) {
        .banner-wrap_search {
            top: 50px;
        }

    }

    .swiper {
        height: 100%;
        position: relative;

        .swiper-wrapper {
            position: absolute;
            bottom: 0;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            color: var(--client-theme);
        }

        .swiper-button-next, .swiper-button-prev {
            /* --swiper-navigation-top-offset: 75%;  alteração feita a 25/10/2024, cliente pediu para passar esta section para metade da altura*/
            --swiper-navigation-top-offset: 88%;
        }


    }


    .banner__content {
        height: 100%;
        .swiper-slide{
            position: relative;
            .banner__background {
                position: absolute;
                width: 100%;
                bottom: 0px;
                /* height: 267px;  alteração feita a 25/10/2024, cliente pediu para passar esta section para metade da altura*/
                height: 180px;
                background-color: var(--transparent-light-theme);
                align-items: center;
            }
        }
    
    }


    .banner-wrap h1 {
        font-size: var(--font-size-3xl);
        font-weight: 700;
        color: var(--dark-theme);
    }

    .carousel__banner-content__subtitle1 {
        padding: 0 0 0;
        font-size: var(--font-size-lg);
        font-weight: 300;
        color: var(--dark-theme);
        line-height: 1;
    }

    .carousel__banner-content__subtitle2 {
        font-size: var(--font-size-xl);
        font-weight: 300;
        color: var(--dark-theme);
        line-height: 1;
    }

    .carousel__banner-content__subtitle2 span {
        font-weight: 600;
    }

    .banner-wrap__button .btn {
        padding: 10px;
        font-size: var(--font-size-md);
        border-radius: 50px;
    }

    @media (max-width: 992px) {
        .banner h1 {
            font-size: var(--font-size-4xl);
        }
    }
}


.banner-small__bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

/*=============================================================
BRANDS
===============================================================*/
.marcas {

    .marcas__wrap__link {
        & img {
            height: 55px;
            width: 80px;
            object-fit: cover;
        }
    }

}



/*=============================================================
BANNER-SMALL
===============================================================*/
.banner-small__bg {
    color: var(--dark-theme);
    box-shadow: inset 300px 300px var(--transparent-light-theme);
}

/*=============================================================
BREADCRUMBS
===============================================================*/

/*=============================================================
HERO
===============================================================*/

/*=============================================================
CARDS
===============================================================*/
.card-theme {
    position: relative;
    border: none;
    border-radius: var(--border-theme);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);

    &:hover {
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }

    .badge-new,
    .badge-discount {
        position: absolute;
    }

    .badge-discount {

        top: 10px;
        left: 10px;
        color: var(--client-theme2);
        border-radius: 40px;
        height: 46px;
        width: 46px;
        border: 4px solid var(--client-theme2);
        background-color: white;


        .badge-discount__text {
            position: absolute;
            top: 13px;
            left: 5px;
        }
    }

    .card-image {
        height: 240px;
        overflow: hidden;

        & img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
    }

    .card-body {
        padding-bottom: 0;

        .card-title {
            font-weight: 500;
            font-size: var(--font-size-lg);
        }

        .card-brandmodel {
            font-weight: 300;
            font-size: var(--font-size-sm);
        }
    }

    .card-footer {
        background-color: white;
        border: none;

        .old-price-tag {
            font-size: var(--font-size-sm);
            font-weight: 200;
            text-decoration: line-through;
            color: var(--client-theme2);
        }

        .price-tag {
            font-size: var(--font-size-lg);
            font-weight: 600;
            color: var(--client-theme);
        }

        .tax-tag {
            font-size: var(--font-size-xs);
            color: var(--midtone-theme);
            bottom: 10px;
            font-weight: 400;
            font-style: italic;
        }
    }
}

/*=============================================================
PARTS CARDS
===============================================================*/
.parts {
    background-color: var(--light-theme);

    .parts__wrap {

        & .parts__wrap__title {
            margin: 15px;

            @media (min-width:992px) {
                width: 30%;
            }
        }

        .parts__wrap_group {
            position: relative;
            color: white;
            height: clamp(230px, 270px, 325px);
            padding: 20px;
            border-radius: var(--border-theme);
            background-size: cover;
            background-position: center;
            transition: background 1s ease-in-out;

            .part-shadow {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                z-index: 0;
                border-radius: var(--border-theme);
                background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
                opacity: 60%;
                transition: all 0.3s ease-in-out;
            }

            &:hover {
                .part-shadow {
                    opacity: 80%;
                }
            }

            @media (min-width:992px) {
                margin: 10px;
            }

            .parts__single-title {
                font-size: var(--font-size-2xl);
                font-weight: 800;
                color: white;
                position: relative;
                z-index: 1;
            }

            .parts__single-list {
                font-size: var(--font-size-md);
                position: relative;
                z-index: 1;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 6;
                overflow: hidden;


                .parts-cards__list-item {
                    .a{
                        white-space: nowrap;
                        text-overflow: ellipsis;
                    }

                    &:before {
                        position: relative;
                        font-family: "Font Awesome 5 Free";
                        font-weight: 100;
                        content: "\f111";
                        font-size: 9px;
                        color: var(--client-theme);
                        padding: 0 7px;
                        top: -3px;
                        display: inline-block;
                    }

                    &:hover {
                        /* color: var(--client-theme); */

                        &:before {
                            font-weight: 900;
                        }
                    }
                }

            }



            .parts__single-more {
                font-size: var(--font-size-sm);
                font-weight: 400;
                position: relative;
                z-index: 1;

                & a {
                    &:hover {
                        text-decoration: underline;
                        color: inherit;
                    }
                }
            }

            &.parts__wrap__40 {
                @media (min-width:992px) {
                    width: 40%;
                }
            }

            &.parts__wrap__30 {
                @media (min-width:992px) {
                    width: 30%;
                }
            }

        }
    }

    @media (max-width:992px) {
        .parts__wrap_group {
            height: 325px !important;
        }
    }
}



/*=============================================================
SEARCH
===============================================================*/
.selectpicker {
    min-height: 50px;
    height: auto !important;
}

.free-search {
    min-height: 50px;
    height: auto !important;
    /*  border: 1px solid var(--light-theme); */
    border: none;
    background-color: var(--light-theme);
    border-radius: var(--border-theme);
    padding: 7px 0 7px 14px;
    color: var(--midtone-theme);

}

.search__wrap__search-button {
    min-height: 50px;
    height: auto !important;
    padding: auto;
}

/*=============================================================
CTA
===============================================================*/

/*=============================================================
NEWSLETTER
===============================================================*/
.newsletter {
    .form-control {
        border-radius: var(--border-theme);
    }

    .checkbox-custom-label {
        font-size: var(--font-size-sm);
    }

}

/*=============================================================
FOOTER
===============================================================*/
.footer {
    color: white;

    .footer__bg {
        background-image: url(../../images/img/footerImage.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: right;
    }

    .footer__logo {
        & img {
            max-height: 70px;

        }
    }


    @media (min-width:992px) {
        .footer__info-logos {
            position: relative;
            top: -80px;
            left: -25px;
        }
    }

    @media (min-width:1200px) {
        .footer__info-logos {
            position: relative;
            top: -85px;
            left: -30px;
        }
    }

    @media (min-width:1400px) {
        .footer__info-logos {
            position: relative;
            top: -85px;
            left: -45px;
        }
    }


}

/*=============================================================
FLOOR
===============================================================*/
.floor {
    position: relative;
    color: var(--dark-theme);
    font-size: var(--font-size-xxs);
    background-color: white;
}

@media (max-width:992px) {
    .floor {
        margin-bottom: 82px;
    }
}

/*=============================================================
Accordion / faqs
===============================================================*/

/*=============================================================
AMBIENTE
===============================================================*/

/*=============================================================
FEATURES
===============================================================*/
.features {
    background-color: var(--light-theme);

    .features__wrap__single-wrap__text {

        max-width: 230px;

        .features__wrap__caption {
            font-size: var(--font-size-sm);

            overflow-wrap: break-word;
        }
    }

    @media (min-width:992px) {
        .features__wrap__single-wrap__text {

            max-width: 300px;
        }
    }
}


/*=============================================================
STOCK DETAIL
===============================================================*/
.stock-detail {

    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper {
        width: 100%;

        margin-left: auto;
        margin-right: auto;
    }

    @media (max-width:992px) {
        .swiper {

        }
    }

    .swiper-slide {
        background-size: contain;
        background-position: center;
    }

    .stock-detail__big {
        max-height: 70%;
        width: 100%;
    }

    .stock-detail__thumbs {
        margin-top: 20px;
        height: 100px;
        box-sizing: border-box;
        padding: 10px 0;
    }

    .stock-detail__thumbs .swiper-slide {
        width: 25%;
        height: 100%;
        opacity: 0.4;
    }

    .stock-detail__thumbs .swiper-slide-thumb-active {
        opacity: 1;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .stock-detail__big {
        border-radius: var(--border-theme);

        & img {
            border-radius: var(--border-theme);
        }
    }

    .stock-detail__thumbs {
        border-radius: var(--border-theme);

        & img {
            border-radius: var(--border-theme);
        }
    }

    .stock-detail__col-wrap {
        height: fit-content;
    }
}


/* infos */
.stock-detail__table-container {
    width: 100%;

    & h6 {
        font-weight: 800;
        color: red;

    }

    & td {
        padding: 1rem 0;
    }
}


.stock-detail__table-title {
    font-size: var(--font-size-md);
    color: var(--midtone-theme);
    font-weight: 400;
}

.stock-detail__table-sub {
    font-size: var(--font-size-md);
    color: var(--dark-theme) !important;
    font-weight: 600;
}

.detail-alert__text {
    font-size: var(--font-size-xs) !important;
}

/*=============================================================
OUTRAS PEÇAS DA VIATURA
===============================================================*/
.pecas-viatura {
    .pecas-viaturas__spec-title {
        font-size: var(--font-size-md);
        font-weight: 300;
    }

    .pecas-viaturas__spec {
        font-size: var(--font-size-md);
        font-weight: 600;
    }
}

.pecas-viatura__carousel {
    /* margin: 0 -5px; */
    height: 250px;

    & img {
        width: 100%;
        object-fit: cover;
    }
}

.pecas-viatura__carousel__single {
    padding: 5px;
    height: 250px;
    object-fit: cover;
}

.pecas-viaturas__spec-title {
    font-size: var(--font-size-md);
    font-weight: 200;
}

.pecas-viaturas__spec {
    font-size: var(--font-size-md);
    font-weight: 600;
}

.pecas-viatura__table {
    color: var(--dark-theme);

}

.pecas-viatura__table tbody tr {
    border-bottom: 1px solid lightgray;
    padding: 20px;
}

.pecas-viatura__table__thumbnail {
    height: 65px;
    width: 65px;
    padding: 5px 20px 0 0;
}

.pecas-viatura__table__thumbnail img {
    height: 50px;
    width: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.pecas-viatura__table__part {
    font-size: var(--font-size-lg);
    font-weight: 400;
    color: var(--dark-theme);

}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: white;
    color: var(--bs-table-striped-color);
}

.pecas-viatura__table__price {
    font-size: var(--font-size-lg);
    font-weight: 300;
    width: 150px;
}

.pecas-viatura__table__old-price {
    font-size: var(--font-size-xs);
    color: var(--midtone-theme);
    text-decoration: line-through;
}

.pecas-viatura__table__tax {
    font-size: var(--font-size-xs);
    font-weight: 200;
    line-height: 1;
}

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

/*=============================================================
salvados
===============================================================*/

/*=============================================================
Pagination
===============================================================*/

.pagination {
    --bs-pagination-disabled-bg: transparent;
    --bs-pagination-disabled: transparent;
    font-family: Lato;
    font-size: var(--font-size-md);
}

.pagination .page-link {
    padding: 5px 15px;
    color: var(--dark-theme);
    border-color: rgba(128, 128, 128, 0.24);
    background-color: transparent;
    border-radius: var(--border-theme);
}

.page-link:hover {
    background-color: var(--client-theme);
    color: var(--light-theme)
}

.active>.page-link,
.page-link.active {
    color: var(--light-theme);
    background-color: var(--client-theme2);
    border-color: var(--midtone-theme);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    font-weight: 600;
}

.navigation__custom-next,
.navigation__custom-prev {
    /*     font-family: "Font Awesome 5 free";
    font-weight: 900; */

}

/*=============================================================
SOBRE NOS
===============================================================*/
.section-sobre__text {
    line-height: 2;
}

.section-sobre__storeimage {
    & img {
        width: 100%;
        max-height: 420px;
        object-fit: cover;
    }
}

/*=============================================================
VFV
===============================================================*/

/*  ------------------------------------------------------------
section-vfv*/
.section-vfv__intro__info {
    font-size: var(--font-size-md);
    font-weight: 300;
}

.section-vfv__intro__do {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.section-vfv__form-wrap {
    background-color: var(--bg-theme-light);
}

.section-vfv__form__title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin: 0 0 50px 0;
    color: var(--client-theme2);
}

.section-vfv__form .form-label {
    font-size: var(--font-size-md);
    font-weight: 500;
    margin: 0;
}

.section-vfv__form *::placeholder {
    color: var(--midtone-theme);
    font-size: var(--font-size-sm);
    font-weight: 300;
}

@media (max-width:992px) {
    .section-vfv__form .btn-client2 {
        width: 100%;
    }
}

.section-vfv__form .form-check-label {
    color: var(--dark-theme);
    font-size: var(--font-size-sm);
    font-weight: 300;
}

.section-vfv__form .form-check-input {
    height: 20px;
    width: 20px;
    margin-top: 2px;
    margin-right: 10px;
}

/*  ------------------------------------------------------------
upload de fotos drop-zone*/
.section-vfv__form-wrap__drop-wrap {
    background-color: white;
    padding: 10px;
    border-radius: var(--border-theme);
}

.section-vfv__form-wrap .drop-zone {
    /* max-width: 700px; */
    height: 185px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--midtone-theme);
    font-size: var(--font-size-sm);
    font-weight: 300;
    cursor: copy;
    border: 1px dashed var(--midtone-theme);
    border-radius: var(--border-theme);
}

.section-vfv__form-wrap .drop-zone:hover {
    border: 1px dashed var(--midtone-theme);
    background-color: #ffffffbb;
}

.section-vfv__form-wrap .drop-zone--over {
    border-style: solid;
}

.section-vfv__form-wrap .drop-zone__prompt {
    color: rgba(0, 0, 0, 0.6);
}

.section-vfv__form-wrap .drop-zone__input {
    display: none;
}

.section-vfv__form-wrap .drop-zone__thumb {
    width: 100%;
    height: 100%;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
    border-radius: var(--border-theme);
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    background-position: center;
    position: relative;
}

.section-vfv__form-wrap .drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    color: var(--midtone-theme);
    font-size: var(--font-size-sm);
    font-weight: 300;
    text-align: center;
}

/*=============================================================
LISTA DE PARTES
===============================================================*/

.section-list__see-all:hover {
    color: var(--client-theme);
}

.section-list .list-item:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f111";
    font-size: 10px;
    color: var(--client-theme);
    padding: 0 7px;
    display: inline-block;
}

.section-list .list-item:hover {
    color: var(--client-theme);
}

.section-list .list {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-width: 200px;
    -moz-column-width: 200px;
    column-width: 200px;

    & ul {
        & li {
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }
    }
}




/*=============================================================
Mapa
===============================================================*/

.mapa__map-wrap {
    line-height: 0;
}

/*=============================================================
Share icons Socials
===============================================================*/


/*=============================================================
Rating
===============================================================*/


.rating-active i {
    color: var(--client-theme2);
}

.rating-label {
    font-size: var(--font-size-xs);
    font-weight: 300;
}

.rating-active {
    z-index: 2;
}

.grecaptcha-badge{
    visibility:hidden!important;
}