﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


:root {
    --color--main-restauracao: #ec6421;
    --color--main-servicos: #FFB900;
    --color--main: #0092ff;
    --color-main-rgb: 0, 146, 255;
    --color--secondary: #0069b7;
    --color--gray-50: #f8fafc;
    --color--gray-100: #f1f5f9;
    --color--gray-200: #e2e8f0;
    --color--gray-300: #cbd5e1;
    --color--gray-400: #94a3b8;
    --color--gray-800: #1e293b;
    --color--gray-900: #0f172a;
    --shadow-lg: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(15, 23, 42, 0.05) 0px 20px 25px -5px, rgba(15, 23, 42, 0.05) 0px 8px 10px -6px;
    --shadow-lg-hover: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(15, 23, 42, 0.1) 0px 21px 25px -5px, rgba(15, 23, 42, 0.1) 0px 9px 10px -6px;
    --shadow-float: 0 .14px 2.29266px rgba(0,0,0,.032),0 .37px 4.42626px rgba(0,0,0,.048),0 3px 7px rgba(0,0,0,.09);
    --border-radius-geral: 6px;
}


* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin;
    scrollbar-color: var(--color--main) black;
}

body {
    font-family: 'Inter', sans-serif;
    height: 100%;
    letter-spacing: 0.5px;
}


/*.container-principal {
    max-width: 1720px;
    width: 100%;
    margin: auto;
}*/

.row {
    --bs-gutter-x: 0;
}

.mt1-3 {
    margin-top: 1rem !important;
}

::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px grey;
    border-radius: 40px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color--main);
    border-radius: 40px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: var(--color--secondary);
    }
.loader-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    background: black;
    z-index: 100000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display:none;
}

.loader {
    font-size: 40px;
    color: white;
}

    .loader i {
        color: white;
    }
/*----------------------------GOTOP--------------------------*/
#backtotop {
    opacity: 0;
    position: fixed;
    bottom: 1em;
    right: 0;
    margin: 0 25px 0 0;
    z-index: 100;
    transition: 0.6s;
}

    #backtotop i {
        color: #0092ff;
        font-size: 50px;
    }

/*----------------------------NAVBAR-----------------------------*/
/*#region *NAVBAR**/
/*.navbar {
    -webkit-box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.43);
    box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.43);
    background-color: rgb(255,255,255,0.95) !important;
}

.navbar-nav {*/
    /*font-family: 'Playfair Display', serif;*/
    /*font-family: 'Raleway', sans-serif;*/
    /*height: 70px;
    width: 100%;
    z-index: 1000;
}

.navbar-light .navbar-nav .nav-link.active {
    color: #60abe4;
    filter: none;
}

.navbar-light .navbar-brand {
    padding: 8px 20px;
    background: transparent;
    transition: all ease-out 0.3s;
    border-radius: 50px;
    line-height: 24px;
}

    .navbar-light .navbar-brand.active {*/
        /*border: 1px solid;*/
        /*background-color: var(--color--main);
        color: white;
        border-radius: 50px;
    }

    .navbar-light .navbar-brand:hover {*/
        /*box-shadow: 0 0 0 1px black;*/
        /*border-radius: 50px;
        background-color: var(--color--main);
        color: white;
    }

.nav-link, .navbar-brand img {
    filter: grayscale();
}

#Vendas_img, #Vendas_img1 {
    filter: none;
}

.nav-link:hover, .navbar-brand:hover img {
    filter: none;
}

.nav-item:hover > .nav-link {
    color: #60abe4 !important;
}

.navbar-light .navbar-nav .nav-link {
    padding: 0px 15px 0px 15px;
    display: block;
    position: relative;
}

    .navbar-light .navbar-nav .nav-link::after {
    }*/

    /* Fade in */
    /*.navbar-light .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #60abe4;
        height: 0.1em;
        opacity: 0;
        transition: opacity 300ms, transform 300ms;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link:focus::after {
        opacity: 1;
        transform: translate3d(0, 0.2em, 0);
    }

.dropbtn {
    color: white;
    padding: 0;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    background: white;
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

    .dropdown-content a {
        color: black;
        padding: 10px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: var(--color--main);
            color: white;
        }

.dropdown:hover .dropdown-content {
    display: block;
}
.pesquisar-dropdown {
    background: transparent;
    color: #888888;
    border-style: hidden;
    box-shadow: none;
    width: 100%;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder {
    border: none;
    background-color: transparent;
    box-shadow: none;
    width: 100%;
}

.bootstrap-select .dropdown-menu {
    border-radius: 20px;
}

.bootstrap-select .btn:focus {
    outline: none !important;
    box-shadow: none;
    border: none;
}

.bootstrap-select > .dropdown-toggle {
    width: 100%;
    background: transparent;
    outline: none;
    border: none;
}*/
/*#endregion*/

/*-----------------------SLICK SHOW CATEGORIAS-----------------------*/
.container-cats-pesquisa {
    width: 100%;
    /*max-width: 1920px;*/
    height: auto;
    /*margin-top: 1rem;*/
}

.container-categorias-pesquisa {
    width: 100%;
    position: relative;
}

.slick-categorias-img {
    width: inherit;
    max-width:1920px;
    height: 550px;
    /*object-fit: cover;
    cursor: pointer;*/
    /*background:#fff;*/
    /*border-radius: 20px;*/
    /*animation-name: scaleimg;
    animation-duration: 1s;*/
}
/*@keyframes scaleimg {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(10px, 0, 0);
    }
}*/

.slick-show-categorias .slick-prev {
    left: 10px;
    z-index: 1000;
    opacity: 0;
}

.slick-show-categorias .slick-next {
    right: 55px;
    z-index: 1000;
    opacity: 0;
}

.slick-show-categorias:hover .slick-prev {
    transition: 0.5s;
    opacity: 1;
    color: var(--color--secondary);
}

.slick-show-categorias:hover .slick-next {
    transition: 0.5s;
    opacity: 1;
    color: var(--color--secondary);
}

.slick-show-categorias .slick-prev:before, .slick-show-categorias .slick-next:before {
    font-size: 60px;
    color: var(--color--main);
}
.slick-show-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background-repeat: no-repeat;
    background-position: 50%;
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 50px;
    margin: 0 auto;
    width: 100%;
}

.slick-show-text-int {
    max-width: 1720px;
    margin: 0 auto;
    height: 100%;
}
.slick-show-text-img{
    width:100%;
    height:100%;
    position:absolute;
    bottom:0;
    right:0;
    object-fit:contain;
}
.slick-show-text-title {
    color: var(--color--main);
    font-size: 72px;
    line-height: 1.1em;
}
.slick-show-text-title-destaque {
    background: #fff;
    padding: 0 20px;
    transform: rotateZ(-2deg);
    display: inline-block;
    z-index: 1;
    position: relative;
}
.slick-show-text-desc {
    margin-top: 2rem;
    color: #8A8A8A;
    /*text-transform:capitalize;*/
}
.slick-show-text-btn{
    margin-top:2rem;
}
    .slick-show-text-btn a {
        box-shadow: unset;
        border: unset;
        padding: 15px 30px;
        font-size: 16px;
        font-weight:500;
        background: var(--color--main);
        color: #fff;
        display:block;
        width:fit-content;
    }
/*#region ***************************************CATEGORIAS GERAIS******************************************/
.categorias-gerais {
    margin-top: 5rem;
    margin-bottom: 4rem;
    z-index: 2;
    position: relative !important;
    padding:0 20px;
}
.categorias-gerais-layer {
    position: absolute;
    width: 100%;
    height: 550px;
    background: linear-gradient( to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 40%, rgb(255, 255, 255) 100% );
    backdrop-filter: saturate(200%) blur(15px);
    border-radius: var(--border-radius-geral);
}
.categorias-gerais-layer-reverse {
    position: absolute;
    width: 100%;
    height: 550px;
    background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 40%, rgb(255, 255, 255) 100% );
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-geral);
}
.categorias-banner-breakline-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--border-radius-geral);
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 22%);
}
.categorias-banner-breakline-img-reverse {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--border-radius-geral);
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 100% 22%, 0 100%);
}
.categorias-gerais-titles {
    max-width: 766px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background:#fff;
    border-radius:var(--border-radius-geral);
    padding:10px 50px;
}
.categorias-gerais h5 {
    font-size: 16px;
    line-height: 20px;
    width: fit-content;
    color: #7c7c7c;
    text-transform: uppercase;
    text-align:center;
    /*margin-bottom: 15px;*/
}
.categorias-gerais h3 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    width: fit-content;
    color: #0a0114;
    margin-bottom:3rem;
    text-align:center;
}
.categorias-gerais-text{
    text-align:center;
}
.categorias-gerais-container{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%; 
    min-height:60vh;
    margin:2rem 0 2rem 0;
}

.categorias-gerais-card {
    padding: 1rem;
    border-radius: 1rem;
    height: 100%;
    transform:none;
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}

.categorias-gerais-card .home-area-icon-container {
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height:150px;
    width:80%;
    margin:0 auto;
    padding: 1rem;
    border-radius:1rem;
    outline-offset:-5px;
    background: #FFFFFF;
}
    .categorias-gerais-card .home-area-icon-container:after{
        content:'';
        position:absolute;
        top:3px;
        left:0;
        display:block;
        width:100%;
        height:100%;
        border-radius:1rem;
        background:rgba(0,0,0,0.1);
        -webkit-filter:blur(8px);
        filter:blur(8px);
        z-index:-1;
    }
    .categorias-gerais-card.restaurantes {
        color: #F97316;
    }
    .categorias-gerais-card.restaurantes .home-area-icon-container,
    .categorias-gerais-card.restaurantes .home-area-icon-container:after {
        background: rgb(235,109,21);
        background: -moz-linear-gradient(65deg, rgba(235,109,21,1) 0%, rgba(255,160,93,1) 75%);
        background: -webkit-linear-gradient(65deg, rgba(235,109,21,1) 0%, rgba(255,160,93,1) 75%);
        background: linear-gradient(65deg, rgba(235,109,21,1) 0%, rgba(255,160,93,1) 75%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eb6d15",endColorstr="#ffa05d",GradientType=1);
    }
    .categorias-gerais-card.mercado {
        color:rgba(21,168,214,1);
    }
        .categorias-gerais-card.mercado .home-area-icon-container,
        .categorias-gerais-card.mercado .home-area-icon-container:after {
            background: rgb(21,168,214);
            background: -moz-linear-gradient(65deg, rgba(21,168,214,1) 0%, rgba(35,187,235,1) 39%, rgba(46,205,255,1) 75%);
            background: -webkit-linear-gradient(65deg, rgba(21,168,214,1) 0%, rgba(35,187,235,1) 39%, rgba(46,205,255,1) 75%);
            background: linear-gradient(65deg, rgba(21,168,214,1) 0%, rgba(35,187,235,1) 39%, rgba(46,205,255,1) 75%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#15a8d6",endColorstr="#2ecdff",GradientType=1);
        }
    .categorias-gerais-card.servicos {
        color: rgb(255, 185, 0);
    }
        .categorias-gerais-card.servicos .home-area-icon-container,
        .categorias-gerais-card.servicos .home-area-icon-container:after {
            background: rgb(245,175,0);
            background: -moz-linear-gradient(65deg, rgba(245,175,0,1) 0%, rgba(255,194,41,1) 39%, rgba(255,205,80,1) 75%);
            background: -webkit-linear-gradient(65deg, rgba(245,175,0,1) 0%, rgba(255,194,41,1) 39%, rgba(255,205,80,1) 75%);
            background: linear-gradient(65deg, rgba(245,175,0,1) 0%, rgba(255,194,41,1) 39%, rgba(255,205,80,1) 75%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5af00",endColorstr="#ffcd50",GradientType=1);
        }

.categorias-gerais-card {
    --hue-1: 25;
    --hue-2: 238;
    --container-color: #fff;
    position: relative;
    justify-items: center;
    color: var(--white-color);
    text-align: center;
    padding: 1.5rem;
    border: 2px solid transparent;
    background: linear-gradient(var(--container-color), var(--container-color)) padding-box, linear-gradient(135deg, hsl(var(--hue-1), 85%, 70%) 0%, var(--container-color), var(--container-color), hsl(var(--hue-2), 70%, 55%) 100%) border-box;
    border-radius: 1.25rem;
    overflow: hidden;
}

    .categorias-gerais-card.restaurantes {
        --hue-1: 25;
        --hue-2: 25;
    }
    .categorias-gerais-card.mercado {
        --hue-1: 194;
        --hue-2: 194;
    }
    .categorias-gerais-card.servicos {
        --hue-1: 44;
        --hue-2: 44;
    }


.area-icon-1 {
    position: relative;
    width: 148px;
    height: 148px;
    border-radius: 2rem;
    z-index: 2;
    margin:0 auto;
}
    .area-icon-1:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 2rem;
        filter:blur(12px);
        opacity:0.5;
        z-index: -1;
    }

.area-icon-2 {
    width: 116px;
    height: 116px;
    border-radius: 1.5rem;
    border:1px solid rgba(255,255,255,0.25);
}

.area-icon-3 {
    width: 76px;
    height: 76px;
    border-radius: 1rem;
    display: grid;
    place-items: center;
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.25);
}

@media screen and (min-width:1200px) {
    .area-icon-1 {
        width: 178px;
        height: 178px;
    }
    .area-icon-2 {
        width: 146px;
        height: 146px;
    }
    .area-icon-3 {
        width: 106px;
        height: 106px;
        padding: 1rem;
    }
}

@media screen and (max-width:761px){
    .area-icon-1 {
        width: 74px;
        height: 74px;
        background: transparent !important;
    }
        .area-icon-1,
        .area-icon-1:after {
            border-radius: 0.75rem;
        }
    .area-icon-2 {
        width: 74px;
        height: 74px;
        border-radius: 0.75rem;
    }
    .area-icon-3 {
        width: 50px;
        height: 50px;
        border-radius: 0.5rem;
        padding: 0.5rem;
    }
    .categorias-gerais-card {
        --hue-1: 25;
        --hue-2: 25;
        --container-color: #fff;
        padding: 0.75rem;
        background: #fff;
     
        overflow:visible;
    }
    .categorias-gerais-card.restaurantes {
        --hue-1: 25;
        --hue-2: 25;
    }

    .categorias-gerais-card.mercado {
        --hue-1: 194;
        --hue-2: 194;
    }

    .categorias-gerais-card.servicos {
        --hue-1: 44;
        --hue-2: 44;
    }
}

.area-icon-2, .area-icon-3 {
    position: absolute;
    inset: 0;
    margin: auto;
}

.categorias-gerais-card.restaurantes .area-icon-1 {
    background: linear-gradient(140deg, rgba(235,109,21,0.25) 3%, rgba(255,160,93,0.45) 100%);
}
.categorias-gerais-card.restaurantes .area-icon-2 {
    background: linear-gradient(140deg, rgba(235,109,21,0.50) 3%, rgba(255,160,93,0.45) 100%);
}
.categorias-gerais-card.restaurantes .area-icon-3,
.categorias-gerais-card.restaurantes .area-icon-1:after {
    background: linear-gradient(140deg, rgba(235,109,21,0.60) 3%, rgba(255,160,93,0.60) 100%);
}
.categorias-gerais-card.mercado .area-icon-1 {
    background: linear-gradient(140deg, rgba(21,168,214,0.25) 3%, rgba(46,205,255,0.45) 100%);
}

.categorias-gerais-card.mercado .area-icon-2 {
    background: linear-gradient(140deg, rgba(21,168,214,0.50) 3%, rgba(46,205,255,0.45) 100%);
}
.categorias-gerais-card.mercado .area-icon-3,
.categorias-gerais-card.mercado .area-icon-1:after {
    background: linear-gradient(140deg, rgba(21,168,214,0.60) 3%, rgba(46,205,255,0.60) 100%);
}
.categorias-gerais-card.servicos .area-icon-1 {
    background: linear-gradient(140deg, rgba(245,175,0,0.25) 3%, rgba(255,205,80,0.45) 100%);
}

.categorias-gerais-card.servicos .area-icon-2 {
    background: linear-gradient(140deg, rgba(245,175,0,0.50) 3%, rgba(255,205,80,0.45) 100%);
}

.categorias-gerais-card.servicos .area-icon-3,
.categorias-gerais-card.servicos .area-icon-1:after {
    background: linear-gradient(140deg, rgba(245,175,0,0.60) 3%, rgba(255,205,80,0.60) 100%);
}
.area-icon-3 img {
    filter: invert();
}
.categorias-gerais-card h4{
    font-weight:800;
}
.categorias-gerais-card p{
    font-weight:500;
    font-size:1rem;
    letter-spacing:-1px;
    color:rgba(0,0,0,0.75);
}
.categorias-gerais-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.1);
    border-radius: 50rem;
    font-weight: 400;
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}
    .categorias-gerais-card.restaurantes a {
        background: rgba(245,175,0,0.1);
        color: #F97316;
    }
        .categorias-gerais-card.restaurantes a:hover {
            background: rgba(245,175,0,0.2);
            color: #F97316;
        }
    .categorias-gerais-card.mercado a {
        background: rgba(21,168,214,0.1);
        color: rgba(21,168,214,1);
    }
        .categorias-gerais-card.mercado a:hover {
            background: rgba(21,168,214,0.2);
            color: rgba(21,168,214,1);
        }
    .categorias-gerais-card.servicos a {
        background: rgba(245,175,0,0.1);
        color: rgb(255, 185, 0);
    }
        .categorias-gerais-card.servicos a:hover {
            background: rgba(245,175,0,0.2);
            color: rgb(255, 185, 0);
        }


@media screen and (max-width:768px) {
    
    .categorias-gerais-container {
        max-width: none;
        margin: 0;
        min-height: none;
        margin: 3rem 0 5rem 0;
    }
    .categorias-gerais-card {
        padding: 0.75rem;
        border: none;
        margin: 0;
    }
        .categorias-gerais-card a {
            padding: 0.35rem;
            font-size: 0.835rem;
        }
        .categorias-gerais-card .home-area-icon {
            max-width:none;
            max-width:40px;
        }
        .categorias-gerais-card .home-area-icon-container {
            min-height: 0px;
            padding:0;
            height:60px;
            width:60px;
            border-radius:1rem;
        }
        .categorias-gerais-card h4{
            font-weight:700;
            text-transform:uppercase;
            font-size:1.25rem;
        }
        .categorias-gerais-card p {
            font-weight: 500;
            font-size: 1rem;
        }
}
    /*#endregion*/
    /*----------------------PESQUISA-------------------------------*/
    .pesquisa-container {
        position: absolute;
        /*top: 0;*/
        bottom: 5%;
        left: 0;
        right: 0;
        margin: auto;
        width: 100%;
        min-width: 300px;
        max-width: 1150px;
        height: 68px;
        font-size: 18px;
        line-height: 26px;
        font-weight: 500;
        z-index: 21;
    }

.pesquisa-bar {
    background: white;
    padding: 6px;
    width: 100%;
    border-radius: 50px;
    opacity: 1;
    height: 68px;
    box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 27%);
}

.pesquisa-input {
    border-style: hidden;
    height: auto;
    width: calc(100% - 15px);
}

    .pesquisa-input:focus {
        outline: none;
    }

.pesquisar-dropdown {
    background: transparent;
    color: #888888;
    border-style: hidden;
    box-shadow: none;
    width: 100%;
}

.pesquisa-bar .bootstrap-select > .dropdown-toggle.bs-placeholder {
    border: none;
    background-color: transparent;
    box-shadow: none;
    width: 100%;
}

.pesquisa-bar .bootstrap-select .dropdown-menu {
    border-radius: 20px;
}

.pesquisa-bar .bootstrap-select .btn:focus {
    outline: none !important;
    box-shadow: none;
    border: none;
}

.pesquisa-bar .bootstrap-select > .dropdown-toggle {
    width: 100%;
    background: transparent;
    outline: none;
    border: none;
}
.pesquisa-wrap .bootstrap-select .dropdown-toggle {
    background: transparent;
    border-style: none;
}

.pesquisar-dropdown .dropdown-item1 {
    color: #888888;
}

    .pesquisar-dropdown .dropdown-item1:hover {
        background: var(--color--secondary);
        color: #1592ff;
        border-radius: 5px;
    }

.pesquisar-dropdown:focus {
    outline: none;
}

.pesquisa-btn {
    color: white;
    text-decoration: none;
    background-color: var(--color--main);
    border-radius: 30px;
    text-align: center;
    height: auto;
    padding: 15px 40px;
    font-weight: 600;
    box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 27%);
}

    .pesquisa-btn:hover {
        color: white;
        background-color: var(--color--secondary);
    }
.wrapper-profile i {
    font-size: 22px;
    margin-left: 1rem;
    cursor: pointer;
}

    .wrapper-profile i:hover {
        color: var(--color--secondary);
    }
/*---------------------------BREAKLINE------------------------*/
.breakline {
    margin-top: 4em;
}

.breakline-2 {
    margin-top: 2em;
}

.breakline-8 {
    margin-top: 8em;
    /*padding-top: 9em;*/
}

.breakline-div {
    position: relative;
}

    .breakline-div:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 0.2em;
        background: #0092ff;
        bottom: 9px;
        transition: all 0.2s ease-out;
    }

.breakline-h1 {
    position: relative;
    display: inline-block;
    /*background: linear-gradient(to bottom, #000, #000 60%, #fff 60%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;*/
    color: black;
    background-repeat: no-repeat;
    transition: background 0.2s ease-out;
    white-space: nowrap;
}

    .breakline-h1:hover {
        background-position: 0 6px;
    }

.breakline-div:hover:before {
    transform: translateY(10px)
}

.breakline h1 {
    /*font-family: 'Playfair Display', serif;*/
    font-weight: 500;
    font-size: 29px;
    line-height: 38px;
}

.breakline-img {
    margin-top: -40px;
    margin-bottom: -40px;
    width: 100%;
    min-width: 300px;
}

/*----------------------------FILTROS-------------------------*/
/*.filtros-container {
    margin-top: 2em;
    width: auto;
    max-width: 720px;
}

.filtros-item {
    font-size: 100px;*/
/*box-shadow:rgba(0,0,0,0.2) 3px;*/
/*background: #d8d8d8;
    margin: 1px;
    padding:20px 10px;
    border-radius: 5px;
    color:grey;
}

.filtros-item:hover {
    transform:scale(1.1);
    transition:all 200ms;
}

.card-body {
    border-radius: 10px;
    border: 1px solid #9d9d9d;
}*/

/*------------------------CATEGORIAS---------------------------*/
.categorias-container {
    width: 100%;
}

.categorias-card {
    width: 300px;
    height: 200px;
    margin-top: 20px;
}

    .categorias-card:hover .categorias-img-hidden {
        opacity: 1;
    }

    .categorias-card:hover .categorias-link {
        color: white;
        top: -10px;
    }

    .categorias-card:hover .categorias-icon {
        color: white;
    }

.categorias-link {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    color: black;
    -webkit-box-shadow: 5px 5px 10px -7px rgba(0,0,0,0.95);
    box-shadow: 5px 5px 10px -7px rgba(0,0,0,0.95);
    margin: 0px 10px;
    border-radius: 10px;
    position: relative;
    transition: all 500ms ease;
}

    .categorias-link h3 {
        margin: 15px 0px;
        z-index: 3;
    }

.categorias-icon {
    font-size: 28px;
    z-index: 3;
    color: var(--color--main);
    transition: all 500ms ease;
}

.categorias-img-hidden {
    opacity: 0;
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    transition: all 500ms ease;
}






.container-selecoes {
    width: 100%;
    height: auto;
    position: relative;
}

.container-selecoes-wrap {
    height: auto;
    padding: 10px;
}

.container-selecoes-wrap-zone {
    width: 100%;
    background: #fafafa;
    border-radius: 20px;
    height: 200px;
    position: relative;
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: transform 0.6s,filter 1s;
}

    .container-selecoes-wrap-zone a {
        text-decoration: none !important;
        width: auto;        
    }

        .container-selecoes-wrap-zone a:hover .container-selecoes-wrap-zone-moving-div {
            transform: translateX(-80%);
        }
        /*.container-selecoes-wrap-zone a:hover .container-selecoes-wrap-zone-img {
            opacity: 1;
        }*/

        .container-selecoes-wrap-zone a:hover .container-selecoes-wrap-zone-text h1 {
            color: white;
        }
        .container-selecoes-wrap-zone a:hover .container-selecoes-wrap-zone-text p {
            color: white;
        }
        .container-selecoes-wrap-zone .card-categorias:hover ~ .categorias-links a{
            color: white;
            border-color:white;
        }

        .container-selecoes-wrap-zone a:hover .cat-icon {
            filter: invert(100%);
        }


.container-selecoes-wrap-zone-moving-div {
    background: #f2f2f2;
    width: calc(100% + 300px);
    height: 100%;
    position: absolute;
    left: 0;
    transition: 1s ease-in-out;
    clip-path: polygon(0 0, 94% 0, 81% 100%, 0 100%);
    z-index: 2;
}

.container-selecoes-wrap-zone-img {
    z-index: 1;
    right: 0;
    top: 0;
    width: 100%;
    height: auto;
    position: absolute;
    object-fit: cover;
    /*opacity:0;*/
}
.container-selecoes-wrap-zone-text {
    z-index: 3;
    position:absolute;
}
.container-selecoes-wrap-zone-text h1 {
    color: black;
    font-size: 2.4rem;
    font-weight: 800;
    font-style: italic;
    transition: color 1s ease;
}
    .container-selecoes-wrap-zone-text p {
        color: black;
        margin: 0;
        transition: color 1s ease;
    }

.categorias-links {
    position: absolute;
    bottom: 10%;
    z-index: 6;
}
.categorias-links a{
    padding: 5px 15px;
    border-radius:20px;
    border:1px solid black;
    margin:5px;
    color:black;
    transition:1s ease;
}
    .categorias-links a:hover {
        background:black;
        color:white;
    }


.container-selecoes-wrap-zone-text h2 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    font-style: italic;
    position: absolute;
    top: 36%;
    left: 9%;
    z-index: 3;
    transition: color 1s ease;
}

.container-selecoes-wrap-zone-img1 {
    width: auto;
    height: 100%;
    position: absolute;
    right: -20%;
    top: 0;
    z-index: 2;
    display:none;
}

.container-selecoes-wrap-zone1:hover {
    transform: translateY(-10px);
}
.categorias-hidden{
    display:none;
}
@media only screen and (max-width: 576px) {
    .categorias-hidden {
        display: block;
    }
    .container-selecoes-wrap-zone-text .header {
        justify-content: start !important;
    }
    .container-selecoes-wrap-zone-text h1 {
        font-size: 1.3rem;
        margin: 0;
        line-height: 30px;
        color: white;
    }

    .categorias-links {
        left: 7%;
        bottom: 3%;
    }

        .categorias-links a {
            font-size: 0.6rem;
            padding: 3px 6px;
            margin: 3px !important;
            border-color: white;
            color: white;
        }

    .container-selecoes-wrap-zone-text .text-p {
        text-align: start !important;
    }

    .container-selecoes-wrap-zone-text {
        left: 7%;
        justify-content: end !important;
        top: 11%;
    }
    .container-selecoes-wrap-zone-img1 {
        display: block;
    }

    .container-selecoes-wrap-zone {
        height: 100px;
    }

    .cat-icon {
        width: 15px !important;
        height: 15px !important;
        opacity: 0;
    }

    .container-selecoes-wrap-zone1 {
        width: 100%;
        height: 110px;
    }

    .container-selecoes-wrap-zone-text h2 {
        font-size: 1.4rem;
        top: 35%;
        left: 8%;
    }

    .container-selecoes-wrap-zone-img {
        opacity: 0;
    }

    .container-selecoes-wrap {
        padding: 4px 0;
    }

    .container-selecoes-wrap-zone-text p {
        font-size: 0.6rem;
        color: white;
    }

    .svg-wrap-else {
        margin-top: 0 !important;
        justify-content: start !important;
    }
}
/*---------------------------DESTAQUES------------------------*/
.destaques-container {
    margin-top: 2em;
    width: 100%;
    min-width: 300px;
}

    .destaques-container:hover .carousel-control-next-icon,
    .destaques-container:hover .carousel-control-prev-icon {
        background-color: black;
        padding: 20px;
        border-radius: 50%;
        opacity: 1;
    }

.carousel-inner {
    border-radius: 30px;
    height: 300px;
}

.carousel-item {
}

/*---------------------------produtos---------------------------*/
.card {
    position: relative;
}

.btn-adicionar-carrinho {
    position: absolute;
    font-size: 24px;
    background-color: transparent;
    border-style: hidden;
}

.card .card-body {
    border-radius: 0px;
}

.card-marca-logo {
    width: 100px;
    position: absolute;
    border-radius: 7px;
    background-color: #42B3A3;
    padding: 1px 7px;
}

.card:hover .card-title {
    color: #60abe4;
}

/*---------------------------MARCAS-----------------------------*/
.marcas-img {
    width: 300px;
}

/*--------------------------SECCAO RESTAURACAO-------------------*/
.restauracao-container {
    background: #f2f2f2;
    height: auto;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

    .restauracao-container .descricao {
        /*width:40%;*/
        padding: 30px;
    }

        .restauracao-container .descricao h2 {
            font-weight: 700;
            line-height: 46px;
            font-size: 2rem;
            color: #222;
        }

        .restauracao-container .descricao p {
            margin-top: 1em;
            font-weight: 400;
            line-height: 36px;
            font-size: 1rem;
            color: #777;
        }

        .restauracao-container .descricao a {
            font-weight: 600;
            line-height: 30px;
            font-size: 0.8rem;
            border-radius: 40px;
            padding: 10px 22px;
            background: #0092ff;
            text-decoration: none;
            color: white;
            margin-top: 0.7em;
            width: max-content;
        }

            .restauracao-container .descricao a:hover {
                color: white;
                background-color: #0069b7;
            }

    .restauracao-container .imagens {
        /*width: 60%;*/
        height: 31em;
        position: relative;
    }

        .restauracao-container .imagens .flex-even img {
            position: relative;
            top: 0;
            left: 0;
            max-width: 100%;
            height: 100%;
            z-index: 1;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .restauracao-container .imagens .flex-even .logo_empresa {
            position: absolute;
            max-width: 4em;
            height: auto;
            border-radius: 15px;
            /*border: 2px solid var(--color--main);*/
            top: 0.4em;
            left: 0.4em;
            z-index: 3;
            transition: all 0.5s ease;
        }

        .restauracao-container .imagens .flex-even h3 {
            position: absolute;
            z-index: 6;
            color: white;
            padding: 5px 15px;
            background: rgba(0,0,0,.2);
            backdrop-filter: blur(10px);
            bottom: 0;
            margin: 0 0 10px 10px;
            opacity: 0;
            transition: all 0.5s ease;
            border-radius:20px;
        }

        .restauracao-container .imagens .flex-even:hover h3 {
            opacity: 1;
        }

        .restauracao-container .imagens .flex-even:hover {
            animation: slow_hovered_in 0.5s ease;
            /*width:70%;*/
            animation-fill-mode: forwards;
        }

@keyframes slow_hovered_in {
    from {
        width: 25%;
    }

    to {
        width: 70%;
    }
}

.restauracao-container .imagens .flex-even:hover .flex-even {
    animation: slow_brothers_in 0.5s ease;
    /*width:10%;*/
    animation-fill-mode: forwards;
}

@keyframes slow_brothers_in {
    from {
        width: 25%;
    }

    to {
        width: 10%;
    }
}

.restauracao-container .imagens .flex-even:not(:hover) {
    animation: slow_hovered_out 0.5s ease;
    /*width: 25%;*/
    animation-fill-mode: forwards;
}

@keyframes slow_hovered_out {
    from {
        width: 70%;
    }

    to {
        width: 25%;
    }
}

.restauracao-container .imagens .flex-even:not(:hover) .flex-even {
    animation: slow_brothers_out 0.5s ease;
    /*width: 25%;*/
    animation-fill-mode: forwards;
}

@keyframes slow_brothers_out {
    from {
        width: 10%;
    }

    to {
        width: 25%;
    }
}

.flex-even {
    position: relative;
    width: 25%;
}

/*--------------------------SECCAO ANUNCIOS/PROCURO-------------------*/

/*--------------------------PENSAMOS EM SI-------------------*/
.pensamos_container {
    width: 100%;
}

.pensamos_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.pensamos_item {
    margin-top: 10px;
    margin-left: 10px;
}

.pensamos-icon {
    width: 100px;
    height: 100px;
    background: var(--color--main);
    border-radius: 50%;
    line-height: 110px;
    text-align: center;
}

    .pensamos-icon i {
        font-size: 30px;
        color: white;
    }

.pensamos_item h4 {
    margin: 0 0 0 5px;
    font-size: 18px;
    color: #222;
    font-weight: 600;
}

.pensamos_item p {
    margin: 10px 0 3px 5px;
    font-size: 16px;
    font-weight: 400;
    color: #777;
}

.pensamos_text_hover:hover .pensamos-icon {
    background: var(--color--main);
}

.pensamos_text_hover:hover i {
    color: white;
}

/*.pensamos_img{
    width:100%;
    max-width:100%;
    height:auto;
}*/
/*--------------------------------VANTAGENS-------------------------------*/
.vantagens-col-item{
    padding:50px 20px 0 20px;
    text-align:center;
}
.vantagens-col-item-img{
    width:128px;
    height:auto;
    margin-bottom:1.5rem;
}
.vantagens-col-item-title {
    font-weight: 700;
    color: #000;
    font-size: 1.2rem;
    line-height: 1.2rem;
    margin-bottom: 1.4rem;
}
.vantagens-col-item-desc {
    font-weight: 400;
    color: #515151;
    font-size: 1.1rem;
    line-height: 1.3rem;
    /*padding: 0 15px;*/
}
/*.vantagens-container {
    width: 100%;
}

.vantagens-item {
    max-width: 30%;
    margin: 0 10px;
    padding: 20px;*/
/*border: 0.2px solid var(--color--main);*/
/*border-radius: 20px;*/
/*box-shadow: 0px 0px 7px 0px rgba(0, 146, 255, 0.74);*/
/*background:var(--color--main);*/
/*}

    .vantagens-item h4 {
        font-size: 18px;
        color: #222;
        font-weight: 600;
        margin-top: 0.8em;
    }

    .vantagens-item p {
        font-size: 16px;
        font-weight: 400;
        color: #777;
    }

    .vantagens-item .icon {
        background: var(--color--main);
        width: 80px;
        height: 80px;
        border-radius: 50%;
        line-height: 80px;
        text-align: center;
    }

    .vantagens-item .fas {
        color: white;
        font-size: 30px;
    }

    .vantagens-item a {
        text-decoration: none;
    }

    .vantagens-item .text {
        margin-left: 10px;
    }

    .vantagens-item:hover {
        background: var(--color--main);
    }

        .vantagens-item:hover .icon {
            background: white;
        }

            .vantagens-item:hover .icon i {
                color: var(--color--main);
                transition: 1s;
                transform: rotateY(180deg);
            }

    .vantagens-item:not(:hover) .icon i {
        transition: 1s;
        transform: rotateY(-180deg);
    }

    .vantagens-item:hover .text h4 {
        color: white;
    }

    .vantagens-item:hover .text p {
        color: white;
    }*/

/*.vantagens-cards {
    overflow:hidden;
}*/

/*.vantagens-card {
    height: 200px;
    padding:0 20px
}*/
.vantagens-card{
    padding:0 20px;
}
.vantagens-card:hover .vantagens-img-hidden {
    opacity: 1;
}

    .vantagens-card:hover .vantagens-link {
        color: white;
        top: -10px;
    }

.vantagens-link {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    color: black;
    box-shadow: var(--shadow-lg-hover);
    border-radius: 20px;
    position: relative;
    transition: all 500ms ease;
}

    .vantagens-link h3 {
        margin: 15px 0px;
        z-index: 3;
        color: #fff;
    }

    .vantagens-link p {
        margin: 15px 0px;
        z-index: 3;
        color: #fff;
        background: var(--color--main);
        padding: 3px 10px;
        border-radius: var(--border-radius-geral);
    }

.vantagens-img-hidden {
    opacity: 1;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    transition: all 500ms ease;
}
/*#region ***NOVO FOOTER*** */
/*.footer-container {
    width: 100%;
    height: auto;
    background: #fafafa;
    border-top: 1px solid #eaeaea;*/
/*background: linear-gradient(180deg, rgba(0,9,36,0.6670869031206232) 0%, rgba(0,212,255,0) 100%);*/
/*}

.footer-wrap {
    max-width: 1720px;
    padding: 30px;
}

    .footer-wrap h4 {
        margin-bottom: 2rem;
    }

.politicas {
    font-size: 12px;
}

    .politicas a {
        text-decoration: none;
        color: var(--color--main);
        font-weight: 500;
    }

        .politicas a:hover {
            text-decoration: underline;
        }

.footer-navegacao {
    text-align: center;
}

    .footer-navegacao a {
        margin-bottom: 5px;
        text-decoration: none;
        color: var(--color--main);
        font-weight: 500;
    }

        .footer-navegacao a:hover {
            text-decoration: underline;
        }


    .footer-contactos a {
        margin-bottom: 5px;
        text-decoration: none;
        color: var(--color--main);
        font-weight: 500;
    }

        .footer-contactos a:hover {
            text-decoration: underline;
        }

.footer-sobrenos p {
    text-align: left;
}

.footer-contactos ul {
    padding: 0;
    list-style-type: none;
}

    .footer-contactos ul li {
        list-style: none;
    }

        .footer-contactos ul li a {
            width: 50px;
            height: 50px;
            background-color: #fff;
            text-align: center;
            line-height: 50px;
            font-size: 25px;
            margin: 0 10px;
            display: block;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            border: 3px solid #fff;
            z-index: 1;
        }

            .footer-contactos ul li a .icon {
                position: relative;
                color: #262626;
                transition: .5s;
                z-index: 3;
            }

            .footer-contactos ul li a:hover .icon {
                color: #fff;
                transform: rotateY(360deg);
            }

            .footer-contactos ul li a:before {
                content: "";
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                height: 100%;
                background: #f00;
                transition: .5s;
                z-index: 2;
            }

            .footer-contactos ul li a:hover:before {
                top: 0;
            }

        .footer-contactos ul li:nth-child(1) a:before {
            background: #3b5999;
        }

        .footer-contactos ul li:nth-child(2) a:before {
            background: rgb(138,58,185);
            background: linear-gradient(180deg, rgba(138,58,185,1) 0%, rgba(233,89,80,1) 35%, rgba(252,204,99,1) 100%);
        }

        .footer-contactos ul li:nth-child(3) a:before {
            background: #0077b5;
        }*/
/*#endregion*/
/*#region ++++++++++++++++++++++++++++++++++++++++++_________________SWIPER_____________++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++  */
.swiper-wrapper-main-banner {
    width: 100%;
    min-height: 550px;
    height: 100%;
    margin: auto;
    background: rgb(19,33,51);
    background: linear-gradient(133deg, rgba(19,33,51,1) 0%, rgba(14,42,79,1) 82%);
    display: flex;
}

.container-wrapper-categorias {
    width: 100%;
    height: auto;
    margin-top: 6rem;
}
.wrapper-categorias-gerais{
    position:relative;
}
.wrapper-categorias {
    margin-bottom: 6rem;
}
.page-container-padding{
    padding:0 1rem;
}
.page-max-width {
    max-width: 1720px;
    width: 100%;
    margin: auto;
    position: relative;
    overflow:hidden;
}
.categorias-text {
    padding-right: 2rem;
    /*color:#fff;*/
}

@media screen and (max-width:761px){
    .categorias-text{
        padding:0 !important;
        margin-bottom:1rem;
    }
}

.categorias-container-anchor-action {
    margin-top: 2rem;
}
.categorias-text-descricao {
    font-size: 1.2rem;
}
/*#endregion*/
@media only screen and (max-width: 1500px) {
    .pesquisa-container1 {
        bottom: 20%;
        padding: 15px;
        position: absolute;
        width: 90%;
        font-size: 18px;
        font-weight: 500;
        margin: auto;
        left: 0;
        right: 0;
    }

    .pesquisa-wrap {
        margin: 8px 0px;
        background: white;
        width: 100%;
        border-radius: 50px;
        height: 68px;
    }

    .btn-wrap {
        margin: 30px 0px;
    }

    .pesquisa-bar1 {
        width: 95%;
        margin: auto;
    }

    .pesquisa-input1 {
        width: 100%;
        border-style: hidden;
        height: auto;
    }

        .pesquisa-input1:focus {
            outline: none;
        }

    .pesquisa-btn1 {
        color: white;
        text-decoration: none;
        background-color: #0092ff;
        border-radius: 30px;
        text-align: center;
        padding: 15px 40px;
        font-weight: 600;
    }

        .pesquisa-btn1:hover {
            color: white;
            background-color: #0069b7;
        }

    .pesquisar-dropdown1 {
        width: 95%;
        margin: auto;
        border-style: none;
        background: transparent;
        color: #888888;
        border-style: hidden;
        box-shadow: none;
    }

        .pesquisar-dropdown1:focus {
            border-style: none;
            outline: none;
        }

        .pesquisar-dropdown1:active {
            outline: none;
        }

    .restauracao-container .imagens .flex-even .logo_empresa {
        width: 6em;
        height: auto;
    }
}

@media only screen and (max-width: 992px) {
    .restauracao-container .imagens {
        margin-top: 2em;
    }

    .mt1-3 {
        margin-top: 0 !important;
    }

    .restauracao-container {
        flex-direction: column;
    }

    .imagens {
        position: relative;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
    }

        .imagens .flex-even {
            flex: 50%;
            height: 250px;
            bottom: 0;
            left: 0;
        }

    .restauracao-container .imagens .flex-even .logo_empresa {
        width: 4em;
        height: auto;
    }

    .restauracao-container .imagens .flex-even img {
        width: 100%;
        border: 2px solid white;
    }

    .restauracao-container .imagens .flex-even:hover .display-imagem {
        transform: scale(1.05);
        z-index: 3;
    }

    .restauracao-container .imagens .flex-even:hover h3 {
        transform: scale(1.05);
    }

    .restauracao-container .imagens .flex-even:hover .logo_empresa {
        transform: scale(1.05);
    }

    .pensamos-icon {
        width: 80px;
        height: 80px;
        line-height: 90px;
    }

        .pensamos-icon i {
            font-size: 25px;
        }

    .pensamos_img img {
        display: none;
    }

    .vantagens-item {
        margin: 5px 5px;
        max-width: 100%;
    }

    .vantagens-card {
        margin-top: 1em;
    }

    .restauracao-container .imagens .flex-even .logo_empresa {
        object-fit: cover;
        object-position: 20% 10%;
    }

    .pesquisa-wrap {
        height: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .swiper-wrapper-main-banner {
        min-height: unset;
    }
    .categorias-container-anchor-action {
        margin-top: unset;
        margin-bottom: 2rem;
        margin-left:auto;
        margin-right:auto;
    }
    .categorias-gerais-titles-geral {
        padding: 0 5px !important;
    }
    .vantagens-col-item-desc {
        font-size: 0.8rem;
        line-height: 0.8rem;
        padding: 0 5px;
    }
    .vantagens-col-item {
        padding: 30px 0 0 0;
    }
    .vantagens-col-item-title {
        font-size: 1rem;
        line-height: 1rem;
        margin-bottom: 0.4rem;
    }
    .vantagens-col-item-img {
        width: 90px;
    }
    .pensamos_text img {
        width: 90px;
    }
    .pensamos_item {
        margin: unset;
        text-align: center;
    }
    
    
    .categorias-text {
        padding-bottom: 2rem;
    }
    .wrapper-categorias {
        padding: 0 1rem;        
    }    
    .swiper-categorias-slide-anchor{
        width:200px;
        height:300px;
    }
    .swiper-categorias-slide-text{
        font-size:1.1rem;
    }
    .container-wrapper-categorias {
        margin-top: 5rem;
        padding: 0 5px;
    }
    .categorias-gerais h5 {
        font-size: 13px;
        line-height: 13px;
    }
    .categorias-gerais h3 {
        font-size: 30px;
        line-height: 40px;
    }
    .categorias-gerais {
        margin-top: 3rem;
        margin-bottom: 2rem;
    }
    .slick-show-text-title-destaque {
        font-size: 35px;
    }
    .slick-show-text-btn button {
        padding: 10px 20px;
        font-size: 13px;
    }
    .vantagens-link {
        margin: 0;
    }
    .categorias-gerais-text {
        text-align: start;
    }
    .slick-show-text-title {
        font-size: 46px;
    }
    .slick-show-text{
        padding:20px;
    }
    .slick-show-text-desc{
        font-size:14px;
    }
    /*.nav-item{
        height:30px;
        display:flex;
        align-items:center;
    }
    .navbar-nav{
        height:auto;
    }*/
    /*.wrapper-profile {
        display: none !important;
    }*/
    .pesquisa-container {
        height: unset;
    }

    .pesquisa-input {
        width: 100%;
    }

    .pesquisa-bar .bootstrap-select > .dropdown-toggle.bs-placeholder {
        padding: 0;
    }

    .mobile-pesquisa {
        margin-top: 5px;
        padding: 5px 10px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 27%);
    }

    .pesquisa-btn {
        width: auto;
        padding: 5px 15px;
        font-size: 13px;
    }

    .pesquisa-bar {
        background: none;
        box-shadow: none;
        height: fit-content;
    }
    .vantagens-item{
        padding:0;
        border:none;
    }
    .vantagens-card {
        padding: 0;
    }
    .pesquisa-container1 {
        bottom: 10%;
    }

    .pesquisa-wrap {
        height: 40px;
    }
    .restauracao-container .descricao h2 {
        margin: 0 !important;
    }
    .restauracao-container .descricao p{
        margin:0!important;
    }
    .restauracao-container .descricao {
        padding: 8px 10px;
    }
    .restauracao-container .imagens{
        margin:0!important;
    }
    .restauracao-container .descricao a {
        padding: 4px 13px;
    }
}

@media only screen and (max-width: 576px) {

    .slick-categorias-img {
        object-fit: cover;
        object-position: 0 0;
    }

    .pesquisa-container1 {
        bottom: 0%;
    }

    .pesquisa-wrap {
        height: 35px;
    }

    .btn-wrap {
        margin: 25px 0;
    }

    .pesquisa-btn1 {
        padding: 10px 20px;
    }

    .breakline {
        margin-top: 0;
    }

    .breakline-8 {
        margin-top: 3em;
    }

    .categorias-card {
        width: 180px;
        height: 160px;
        margin: 5px;
    }
}

@media only screen and (max-width: 576px) {
    .categorias-card {
        width: 150px;
        height: 130px;
        margin: 5px;
    }
}


.svg-wrap-else {
    margin-top: 10px;
}
.cat-icon {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-right: 5px;
    transition: filter 1s;
}

.categoria-background-1 {
    background-image: radial-gradient( circle farthest-corner at 10% 20%, rgba(14,174,87,1) 0%, rgba(12,116,117,1) 90% );
    background-image: radial-gradient( circle farthest-corner at 7.2% 13.6%, rgba(37,249,245,1) 0%, rgba(8,70,218,1) 90% );
    background-image: radial-gradient( circle farthest-corner at 10% 20%, rgba(255,209,67,1) 0%, rgba(255,145,83,1) 90% );
}



.page-header {
    display: flex;
    width: 100%;
    min-height: 300px;
    height: auto;
    padding: 1.5rem;
    justify-content: center;
}

.header-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1920' height='450' preserveAspectRatio='none' viewBox='0 0 1920 450'%3e%3cg mask='url(%26quot%3b%23SvgjsMask16816%26quot%3b)' fill='none'%3e%3crect width='1920' height='450' x='0' y='0' fill='url(%23SvgjsLinearGradient16817)'%3e%3c/rect%3e%3cpath d='M1603.56 308.37a5.6 5.6 0 1 0 6.57 9.07 5.6 5.6 0 1 0-6.57-9.07zM1612.95 321.33a5.6 5.6 0 1 0 6.57 9.07 5.6 5.6 0 1 0-6.57-9.07zM1622.33 334.29a5.6 5.6 0 1 0 6.57 9.07 5.6 5.6 0 1 0-6.57-9.07zM1631.71 347.25a5.6 5.6 0 1 0 6.57 9.07 5.6 5.6 0 1 0-6.57-9.07zM1571.83 291.84a5.6 5.6 0 1 0 6.57 9.07 5.6 5.6 0 1 0-6.57-9.07zM1581.22 304.79a5.6 5.6 0 1 0 6.57 9.08 5.6 5.6 0 1 0-6.57-9.08zM1590.6 317.75a5.6 5.6 0 1 0 6.57 9.07 5.6 5.6 0 1 0-6.57-9.07zM1599.99 330.71a5.6 5.6 0 1 0 6.57 9.07 5.6 5.6 0 1 0-6.57-9.07zM1540.11 275.3a5.6 5.6 0 1 0 6.57 9.07 5.6 5.6 0 1 0-6.57-9.07zM1549.49 288.26a5.6 5.6 0 1 0 6.57 9.07 5.6 5.6 0 1 0-6.57-9.07zM1558.88 301.22a5.6 5.6 0 1 0 6.56 9.07 5.6 5.6 0 1 0-6.56-9.07zM1568.26 314.18a5.6 5.6 0 1 0 6.57 9.07 5.6 5.6 0 1 0-6.57-9.07z' fill='rgba(255%2c 185%2c 0%2c 1)'%3e%3c/path%3e%3crect width='252' height='252' clip-path='url(%26quot%3b%23SvgjsClipPath16818%26quot%3b)' x='296.33' y='46.8' fill='url(%23SvgjsPattern16819)' transform='rotate(144.91%2c 422.33%2c 172.8)'%3e%3c/rect%3e%3crect width='225.36' height='225.36' clip-path='url(%26quot%3b%23SvgjsClipPath16820%26quot%3b)' x='199.36' y='148.02' fill='url(%23SvgjsPattern16821)' transform='rotate(334.23%2c 312.04%2c 260.7)'%3e%3c/rect%3e%3cpath d='M117.63 201.78a5.6 5.6 0 1 0 1.29 11.12 5.6 5.6 0 1 0-1.29-11.12zM119.47 217.67a5.6 5.6 0 1 0 1.29 11.13 5.6 5.6 0 1 0-1.29-11.13zM121.31 233.56a5.6 5.6 0 1 0 1.29 11.13 5.6 5.6 0 1 0-1.29-11.13zM123.15 249.46a5.6 5.6 0 1 0 1.29 11.12 5.6 5.6 0 1 0-1.29-11.12zM98.06 171.83a5.6 5.6 0 1 0 1.29 11.12 5.6 5.6 0 1 0-1.29-11.12zM99.9 187.72a5.6 5.6 0 1 0 1.29 11.13 5.6 5.6 0 1 0-1.29-11.13zM101.74 203.62a5.6 5.6 0 1 0 1.29 11.12 5.6 5.6 0 1 0-1.29-11.12zM103.58 219.51a5.6 5.6 0 1 0 1.28 11.13 5.6 5.6 0 1 0-1.28-11.13z' stroke='rgba(249%2c 115%2c 22%2c 1)' stroke-width='2.59' stroke-dasharray='3%2c 3'%3e%3c/path%3e%3crect width='156' height='156' clip-path='url(%26quot%3b%23SvgjsClipPath16822%26quot%3b)' x='1115.87' y='8.6' fill='url(%23SvgjsPattern16823)' transform='rotate(182.69%2c 1193.87%2c 86.6)'%3e%3c/rect%3e%3crect width='60' height='60' clip-path='url(%26quot%3b%23SvgjsClipPath16824%26quot%3b)' x='243.39' y='180.27' fill='url(%23SvgjsPattern16825)' transform='rotate(11.18%2c 273.39%2c 210.27)'%3e%3c/rect%3e%3crect width='216' height='216' clip-path='url(%26quot%3b%23SvgjsClipPath16826%26quot%3b)' x='287.28' y='-86.39' fill='url(%23SvgjsPattern16827)' transform='rotate(261.7%2c 395.28%2c 21.61)'%3e%3c/rect%3e%3crect width='277.92' height='277.92' clip-path='url(%26quot%3b%23SvgjsClipPath16828%26quot%3b)' x='1128.67' y='0.18' fill='url(%23SvgjsPattern16829)' transform='rotate(328.67%2c 1267.63%2c 139.14)'%3e%3c/rect%3e%3crect width='60' height='60' clip-path='url(%26quot%3b%23SvgjsClipPath16830%26quot%3b)' x='1738.64' y='45.23' fill='url(%23SvgjsPattern16831)' transform='rotate(156.75%2c 1768.64%2c 75.23)'%3e%3c/rect%3e%3crect width='225' height='225' clip-path='url(%26quot%3b%23SvgjsClipPath16832%26quot%3b)' x='1795.41' y='-28.18' fill='url(%23SvgjsPattern16833)' transform='rotate(275.37%2c 1907.91%2c 84.32)'%3e%3c/rect%3e%3cpath d='M1261.52 318.71L1248.72 318.43 1246.18 305.88 1233.38 305.6 1230.84 293.04 1218.03 292.77 1215.5 280.21M1266.65 312.57L1253.85 312.29 1251.31 299.74 1238.51 299.46 1235.97 286.91 1223.17 286.63 1220.63 274.08' stroke='rgba(255%2c 185%2c 0%2c 1)' stroke-width='2.62' stroke-dasharray='3%2c 3'%3e%3c/path%3e%3cpath d='M326.85 414.81 L339.06 437.31L321.21921004451497 437.7957899554851z' fill='rgba(255%2c 185%2c 0%2c 1)'%3e%3c/path%3e%3ccircle r='66.13370657246917' cx='1676.57' cy='432.89' stroke='rgba(21%2c 168%2c 214%2c 1)' stroke-width='1.23'%3e%3c/circle%3e%3crect width='202.16' height='202.16' clip-path='url(%26quot%3b%23SvgjsClipPath16834%26quot%3b)' x='170.6' y='-5.78' fill='url(%23SvgjsPattern16835)' transform='rotate(250.33%2c 271.68%2c 95.3)'%3e%3c/rect%3e%3cpath d='M388.44 246.84L391.4 259.3 379.89 264.92 382.85 277.38 371.34 283 374.3 295.46 362.8 301.08M381.21 243.42L384.16 255.88 372.66 261.5 375.62 273.96 364.11 279.58 367.07 292.04 355.56 297.66M373.97 240L376.93 252.46 365.43 258.08 368.39 270.54 356.88 276.16 359.84 288.62 348.33 294.25' stroke='rgba(21%2c 168%2c 214%2c 1)' stroke-width='1' stroke-dasharray='3%2c 2'%3e%3c/path%3e%3cpath d='M574.58 395.7L569.1 407.28 556.61 404.48 551.13 416.06 538.64 413.26 533.16 424.84 520.67 422.04M571.06 388.51L565.59 400.09 553.09 397.29 547.62 408.87 535.12 406.07 529.65 417.65 517.15 414.85' stroke='rgba(255%2c 185%2c 0%2c 1)' stroke-width='1.34' stroke-dasharray='3%2c 3'%3e%3c/path%3e%3ccircle r='37.5' cx='51.44' cy='220.14' stroke='rgba(249%2c 115%2c 22%2c 1)' stroke-width='2.92' stroke-dasharray='3%2c 3'%3e%3c/circle%3e%3crect width='221.32' height='221.32' clip-path='url(%26quot%3b%23SvgjsClipPath16836%26quot%3b)' x='1354.04' y='-96.11' fill='url(%23SvgjsPattern16837)' transform='rotate(251.36%2c 1464.7%2c 14.55)'%3e%3c/rect%3e%3cpath d='M78.88 323.03a5.6 5.6 0 1 0 8.47 7.33 5.6 5.6 0 1 0-8.47-7.33zM90.98 333.51a5.6 5.6 0 1 0 8.46 7.33 5.6 5.6 0 1 0-8.46-7.33zM103.07 343.98a5.6 5.6 0 1 0 8.46 7.34 5.6 5.6 0 1 0-8.46-7.34zM115.16 354.46a5.6 5.6 0 1 0 8.47 7.33 5.6 5.6 0 1 0-8.47-7.33z' stroke='rgba(21%2c 168%2c 214%2c 1)' stroke-width='1.73'%3e%3c/path%3e%3ccircle r='48.17257330826835' cx='890.48' cy='402.59' stroke='rgba(255%2c 185%2c 0%2c 1)' stroke-width='2' stroke-dasharray='3%2c 3'%3e%3c/circle%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask16816'%3e%3crect width='1920' height='450' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='80.86%25' y1='-81.67%25' x2='19.14%25' y2='181.67%25' gradientUnits='userSpaceOnUse' id='SvgjsLinearGradient16817'%3e%3cstop stop-color='rgba(14%2c 42%2c 71%2c 1)' offset='0.22'%3e%3c/stop%3e%3cstop stop-color='rgba(19%2c 33%2c 51%2c 1)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3cpattern x='0' y='0' width='6' height='6' patternUnits='userSpaceOnUse' id='SvgjsPattern16819'%3e%3cpath d='M3 1L3 5M1 3L5 3' stroke='rgba(0%2c 163%2c 93%2c 1)' fill='none' stroke-width='1.14'%3e%3c/path%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath16818'%3e%3ccircle r='63' cx='422.33' cy='172.8'%3e%3c/circle%3e%3c/clipPath%3e%3cpattern x='0' y='0' width='225.36' height='12.52' patternUnits='userSpaceOnUse' id='SvgjsPattern16821'%3e%3crect width='225.36' height='6.26' x='0' y='0' fill='rgba(255%2c 185%2c 0%2c 1)'%3e%3c/rect%3e%3crect width='225.36' height='6.26' x='0' y='6.26' fill='rgba(0%2c 0%2c 0%2c 0)'%3e%3c/rect%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath16820'%3e%3ccircle r='56.34' cx='312.04' cy='260.7'%3e%3c/circle%3e%3c/clipPath%3e%3cpattern x='0' y='0' width='156' height='6' patternUnits='userSpaceOnUse' id='SvgjsPattern16823'%3e%3crect width='156' height='3' x='0' y='0' fill='rgba(249%2c 115%2c 22%2c 1)'%3e%3c/rect%3e%3crect width='156' height='3' x='0' y='3' fill='rgba(0%2c 0%2c 0%2c 0)'%3e%3c/rect%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath16822'%3e%3ccircle r='39' cx='1193.87' cy='86.6'%3e%3c/circle%3e%3c/clipPath%3e%3cpattern x='0' y='0' width='6' height='6' patternUnits='userSpaceOnUse' id='SvgjsPattern16825'%3e%3cpath d='M3 1L3 5M1 3L5 3' stroke='rgba(249%2c 115%2c 22%2c 1)' fill='none' stroke-width='1'%3e%3c/path%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath16824'%3e%3ccircle r='15' cx='273.39' cy='210.27'%3e%3c/circle%3e%3c/clipPath%3e%3cpattern x='0' y='0' width='216' height='6' patternUnits='userSpaceOnUse' id='SvgjsPattern16827'%3e%3crect width='216' height='3' x='0' y='0' fill='rgba(0%2c 163%2c 93%2c 1)'%3e%3c/rect%3e%3crect width='216' height='3' x='0' y='3' fill='rgba(0%2c 0%2c 0%2c 0)'%3e%3c/rect%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath16826'%3e%3ccircle r='54' cx='395.28' cy='21.61'%3e%3c/circle%3e%3c/clipPath%3e%3cpattern x='0' y='0' width='7.72' height='7.72' patternUnits='userSpaceOnUse' id='SvgjsPattern16829'%3e%3cpath d='M0 7.72L3.86 0L7.72 7.72' stroke='rgba(249%2c 115%2c 22%2c 1)' fill='none'%3e%3c/path%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath16828'%3e%3ccircle r='69.48' cx='1267.63' cy='139.14'%3e%3c/circle%3e%3c/clipPath%3e%3cpattern x='0' y='0' width='6' height='6' patternUnits='userSpaceOnUse' id='SvgjsPattern16831'%3e%3cpath d='M0 6L3 0L6 6' stroke='rgba(0%2c 163%2c 93%2c 1)' fill='none'%3e%3c/path%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath16830'%3e%3ccircle r='15' cx='1768.64' cy='75.23'%3e%3c/circle%3e%3c/clipPath%3e%3cpattern x='0' y='0' width='7.5' height='7.5' patternUnits='userSpaceOnUse' id='SvgjsPattern16833'%3e%3cpath d='M3.75 1L3.75 6.5M1 3.75L6.5 3.75' stroke='rgba(255%2c 185%2c 0%2c 1)' fill='none' stroke-width='2.68'%3e%3c/path%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath16832'%3e%3ccircle r='56.25' cx='1907.91' cy='84.32'%3e%3c/circle%3e%3c/clipPath%3e%3cpattern x='0' y='0' width='7.22' height='7.22' patternUnits='userSpaceOnUse' id='SvgjsPattern16835'%3e%3cpath d='M0 7.22L3.61 0L7.22 7.22' stroke='rgba(249%2c 115%2c 22%2c 1)' fill='none'%3e%3c/path%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath16834'%3e%3ccircle r='50.54' cx='271.68' cy='95.3'%3e%3c/circle%3e%3c/clipPath%3e%3cpattern x='0' y='0' width='221.32' height='10.06' patternUnits='userSpaceOnUse' id='SvgjsPattern16837'%3e%3crect width='221.32' height='5.03' x='0' y='0' fill='rgba(0%2c 163%2c 93%2c 1)'%3e%3c/rect%3e%3crect width='221.32' height='5.03' x='0' y='5.03' fill='rgba(0%2c 0%2c 0%2c 0)'%3e%3c/rect%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath16836'%3e%3ccircle r='55.33' cx='1464.7' cy='14.55'%3e%3c/circle%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
    background-repeat:no-repeat;
    background-size: cover;
    background-position: center;
}

.page-header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.page-header-container-content {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background: rgba(0,0,0,0.35);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0);
}

@media screen and (max-width:761px) {
    .header-background-image {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='761' height='1353' preserveAspectRatio='none' viewBox='0 0 761 1353'%3e%3cg mask='url(%26quot%3b%23SvgjsMask20292%26quot%3b)' fill='none'%3e%3crect width='761' height='1353' x='0' y='0' fill='url(%23SvgjsLinearGradient20293)'%3e%3c/rect%3e%3crect width='288' height='288' clip-path='url(%26quot%3b%23SvgjsClipPath20294%26quot%3b)' x='575.09' y='212.24' fill='url(%23SvgjsPattern20295)' transform='rotate(267.12%2c 719.09%2c 356.24)'%3e%3c/rect%3e%3crect width='97' height='97' clip-path='url(%26quot%3b%23SvgjsClipPath20296%26quot%3b)' x='565.16' y='933.76' fill='url(%23SvgjsPattern20297)' transform='rotate(340.2%2c 613.66%2c 982.26)'%3e%3c/rect%3e%3cpath d='M561.06 449.15a5.6 5.6 0 1 0 5.57-9.72 5.6 5.6 0 1 0-5.57 9.72zM569.01 435.27a5.6 5.6 0 1 0 5.57-9.72 5.6 5.6 0 1 0-5.57 9.72zM576.97 421.38a5.6 5.6 0 1 0 5.57-9.71 5.6 5.6 0 1 0-5.57 9.71zM584.93 407.5a5.6 5.6 0 1 0 5.57-9.71 5.6 5.6 0 1 0-5.57 9.71zM559.03 484.87a5.6 5.6 0 1 0 5.57-9.72 5.6 5.6 0 1 0-5.57 9.72zM566.98 470.99a5.6 5.6 0 1 0 5.57-9.72 5.6 5.6 0 1 0-5.57 9.72zM574.94 457.1a5.6 5.6 0 1 0 5.57-9.71 5.6 5.6 0 1 0-5.57 9.71zM582.9 443.22a5.6 5.6 0 1 0 5.57-9.71 5.6 5.6 0 1 0-5.57 9.71zM557 520.59a5.6 5.6 0 1 0 5.57-9.72 5.6 5.6 0 1 0-5.57 9.72zM564.95 506.7a5.6 5.6 0 1 0 5.57-9.71 5.6 5.6 0 1 0-5.57 9.71zM572.91 492.82a5.6 5.6 0 1 0 5.57-9.71 5.6 5.6 0 1 0-5.57 9.71zM580.86 478.94a5.6 5.6 0 1 0 5.57-9.72 5.6 5.6 0 1 0-5.57 9.72z' stroke='rgba(255%2c 185%2c 0%2c 1)' stroke-width='1'%3e%3c/path%3e%3ccircle r='80.68167142893697' cx='571.5' cy='32.27' fill='rgba(0%2c 163%2c 93%2c 1)'%3e%3c/circle%3e%3cpath d='M515.4 1432.95 L525.46 1491.25L491.21137604369386 1491.318623956306z' fill='rgba(249%2c 115%2c 22%2c 1)'%3e%3c/path%3e%3cpath d='M177.02 1430.83 L193.84 1391.19L164.7314356613438 1390.3114356613437z' stroke='rgba(249%2c 115%2c 22%2c 1)' stroke-width='1' stroke-dasharray='4%2c 4'%3e%3c/path%3e%3crect width='372' height='372' clip-path='url(%26quot%3b%23SvgjsClipPath20298%26quot%3b)' x='211.64' y='1151.3' fill='url(%23SvgjsPattern20299)' transform='rotate(13.27%2c 397.64%2c 1337.3)'%3e%3c/rect%3e%3cpath d='M195.88 1051.09L203.21 1040.59 215.06 1045.43 222.39 1034.92 234.24 1039.76 241.57 1029.26 253.42 1034.1M198.15 1058.76L205.47 1048.26 217.33 1053.1 224.65 1042.6 236.51 1047.44 243.83 1036.93 255.69 1041.77M200.41 1066.44L207.74 1055.93 219.59 1060.77 226.92 1050.27 238.77 1055.11 246.1 1044.61 257.96 1049.45' stroke='rgba(0%2c 163%2c 93%2c 1)' stroke-width='2.22' stroke-dasharray='4%2c 4'%3e%3c/path%3e%3cpath d='M401 1041.76a5.6 5.6 0 1 0 7.5 8.32 5.6 5.6 0 1 0-7.5-8.32zM411.71 1053.64a5.6 5.6 0 1 0 7.5 8.32 5.6 5.6 0 1 0-7.5-8.32zM422.42 1065.53a5.6 5.6 0 1 0 7.5 8.32 5.6 5.6 0 1 0-7.5-8.32zM433.14 1077.41a5.6 5.6 0 1 0 7.5 8.32 5.6 5.6 0 1 0-7.5-8.32z' fill='rgba(249%2c 115%2c 22%2c 1)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask20292'%3e%3crect width='761' height='1353' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='119.45%25' y1='10.94%25' x2='-19.45%25' y2='89.06%25' gradientUnits='userSpaceOnUse' id='SvgjsLinearGradient20293'%3e%3cstop stop-color='rgba(14%2c 42%2c 71%2c 1)' offset='0.22'%3e%3c/stop%3e%3cstop stop-color='rgba(19%2c 33%2c 51%2c 1)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3cpattern x='0' y='0' width='6' height='6' patternUnits='userSpaceOnUse' id='SvgjsPattern20295'%3e%3cpath d='M3 1L3 5M1 3L5 3' stroke='rgba(249%2c 115%2c 22%2c 1)' fill='none' stroke-width='1'%3e%3c/path%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath20294'%3e%3ccircle r='72' cx='719.09' cy='356.24'%3e%3c/circle%3e%3c/clipPath%3e%3cpattern x='0' y='0' width='97' height='9.7' patternUnits='userSpaceOnUse' id='SvgjsPattern20297'%3e%3crect width='97' height='4.85' x='0' y='0' fill='rgba(249%2c 115%2c 22%2c 1)'%3e%3c/rect%3e%3crect width='97' height='4.85' x='0' y='4.85' fill='rgba(0%2c 0%2c 0%2c 0)'%3e%3c/rect%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath20296'%3e%3ccircle r='24.25' cx='613.66' cy='982.26'%3e%3c/circle%3e%3c/clipPath%3e%3cpattern x='0' y='0' width='372' height='6' patternUnits='userSpaceOnUse' id='SvgjsPattern20299'%3e%3crect width='372' height='3' x='0' y='0' fill='rgba(0%2c 163%2c 93%2c 1)'%3e%3c/rect%3e%3crect width='372' height='3' x='0' y='3' fill='rgba(0%2c 0%2c 0%2c 0)'%3e%3c/rect%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath20298'%3e%3ccircle r='93' cx='397.64' cy='1337.3'%3e%3c/circle%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
    }

    .page-header-container {
        padding: 0 1rem;
    }

    .page-header-container-content {
        padding: 1rem;
    }
}


.page-header h1 {
    font-weight: 200;
    font-size: 3.5rem;
}

    .page-header h1 span {
        font-weight: 800;
    }


.page-header h2 {
    font-size: 2.75rem;
    font-weight: 200;
}


    .page-header h2 .slick-show-text-title-destaque {
        background: var(--color--main);
        padding: 0 20px;
        transform: rotateZ(-2deg);
        display: inline-block;
        z-index: 1;
        position: relative;
        font-weight: 200;
        text-transform: uppercase;
    }

    @media screen and (max-width:761px){
        .page-header h2 .slick-show-text-title-destaque {
            font-size: 1.75rem;
        }
    }

.page-header .slick-show-text-desc {
    font-weight: 300;
    font-size: 1.25rem;
    color: rgba(255,255,255, 0.75);
    margin-bottom: 1rem;
}

.btn-explore {
    background: none !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none;
    position: relative;
    color: #fff;
    margin: auto;
    padding: 19px 22px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.btn-explore-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 4rem;
}

.btn-explore:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 100%;
    background: rgba(var(--color-main-rgb), 0.5);
    width: 4rem;
    height: 4rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-explore > * {
    z-index: 5;
}

.btn-explore span {
    position: relative;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: inherit;
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.btn-explore svg {
    opacity: 0.5;
    position: relative;
    transform: translateX(-3px);
    transition: all 0.3s ease;
    margin-top: -5px !important;
    z-index: 10 !important;
}

.btn-explore:hover:before {
    width: 100%;
    border-radius: 50rem;
    background: var(--color--main);
    z-index: 1 !important;
}

.btn-explore:hover svg {
    opacity: 1;
    margin-top: -5px !important;
    transform: translateX(1px);
}

.btn-explore:active {
    transform: scale(0.96);
}

.btn-explore:hover {
    color: #fff;
}

@media screen and (max-width:761px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header h2 {
        font-size: 1.5rem;
    }

        .page-header h2 .slick-show-text-title-destaque {
            font-weight: 600;
        }

        .page-header h2 i {
            display: none;
        }

    .page-header .slick-show-text-desc {
        font-size: 1rem;
    }
}

.card-vantagens {
    position: relative;
    height: 250px;
    max-width: 560px;
    margin: 0 auto;
    padding: 0;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}

    .card-vantagens .card-vantagens-content {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        margin: auto;
        background: rgba(0,0,0,0.5);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
        border-radius: 12px;
    }
        .card-vantagens .card-vantagens-content .stretched-link{
            display:flex;
            padding:1rem;
            font-size:0.9rem;
            border-radius:50rem;
            border:1px solid #fff;
            background:rgba(255,255,255,0.1);
            color:#fff;
            text-decoration:none;
            font-weight:600;
            text-transform:capitalize;
        }
        .card-vantagens:hover .card-vantagens-content .stretched-link{
            background:#fff;
            color:#000;
        }

        .home-page-subtitle {
            font-family: 'Inter', sans-serif !important;
            font-size: 1.5rem !important;
            line-height: 1.6rem !important;
            font-weight: 300 !important;
            color: rgba(0,0,0,0.5) !important;
            text-transform: uppercase;
        }
.home-page-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 2.5rem !important;
    line-height:2.6rem !important;
    font-weight: 900 !important;
    color: #000 !important;
}

.home-page-area-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.1rem !important;
    line-height:1.2rem !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
    color: rgba(0,0,0,0.5) !important;
}
.home-page-area-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 2rem !important;
    line-height:2.1rem !important;
    font-weight: 900;
}
    .home-page-area-title.restaurantes {
        color: #F97316;
    }
    .home-page-area-title.produtos {
        color: #15A8D6;
    }
    .home-page-area-title.servicos {
        color: #FFB900;
    }



.categorias-anchor-action {
    background: #F97316;
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
    font-size: 1.1rem;
}
.swiper-scrollbar{
    opacity:0;
}
.swiper-slide {
    width: 250px;
}
.categorias-text-title {
    font-size: 2.4rem;
}
@media screen and (max-width:761px) {
    .categorias-gerais{
        padding: 0 0.05rem;
    }
    .home-page-title {
        font-size: 2rem !important;
        line-height: 2.2rem !important;
    }
        .home-page-subtitle{
            font-size:1.1rem !important;
        }
    .categorias-text-title {        
        font-size: 2rem;
        text-align:center;
    }
    .categorias-text-descricao {
        font-size: 1rem;
        margin: 0;
        padding:0;
        text-align: center !important;
    }
    .wrapper-categorias{
        margin-bottom:3rem;
    }
    .categorias-anchor-action{
        font-size:1rem;
    }
    .card-vantagens{
        height:165px;
    }    
    .card-vantagens img{
        width:100%;
        height:100%;
        object-fit:cover;
    }
    .swiper-slide {
        width: calc((100% / 2) + 3rem);
    }
}



.swiper {
    width: 100%;
}

.swiper-categorias-slide-anchor {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.swiper-categorias-slide-img {
    width: 100%;
    height:auto;
    z-index: 1;
    transition: transform 250ms ease-in;
}

    .swiper-categorias-slide-img:hover {
        transform: scale(1.1);
    }

.swiper-categorias-slide-text {
    position: absolute;
    left: 0;
    bottom:0;
    z-index: 2;
    color: #fff;
    font-size: 1rem;
    font-weight: 100 !important;
    padding: 1rem;
    text-align:center;
    display:flex;
    justify-content:center;
    -webkit-backdrop-filter:blur(7px);
    backdrop-filter: blur(7px);
    background:rgba(0,0,0,0.75);
    width: 100%;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
    bottom: 0;
}

.categorias-text-descricao {    
    line-height:1.3rem;
    font-weight:400;
    color: rgba(0,0,0,0.5);
}

.categorias-anchor-action {
    padding: 0.75rem 1.5rem;
    background: var(--color--main-restauracao);
    color: #fff;    
    font-weight: 500;
    border-radius: 12px;
    width: fit-content;
    text-decoration: none;
    cursor: pointer;
    box-shadow: rgba(236,100,33, 0.15) 1.95px 1.95px 2.6px;
    position: relative;
    display: flex;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

    .categorias-anchor-action:hover {
        color: #fff;
        transform: scale(1.1);
    }

    .categorias-anchor-action.produtos {
        background: var(--color--main);
        box-shadow: rgba(0,146,255, 0.15) 1.95px 1.95px 2.6px;
    }

    .categorias-anchor-action.servicos {
        background: rgb(255, 185, 0);
        box-shadow: rgba(255, 185, 0, 0.1) 0px 10px 15px -3px, rgba(255, 185, 0, 0.05) 0px 4px 6px -2px;
    }
        .categorias-anchor-action.servicos:hover {
            background: rgb(255, 196, 39);
            box-shadow: rgba(255, 196, 39, 0.25) 0px 25px 50px -12px;
        }

    .categoria-page-container {
        display:block;
        position:relative;
    }
.categoria-page-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    /*min-height: 100vh;*/
    width: 100%;
    z-index: 5;
}
.categoria-blur {
    width: 600px;
    height: 600px;
    position: absolute;
    border-radius: 100%;
    filter:blur(48px);
    opacity: 0.25;
    pointer-events:none;
    z-index: 0;
}
    .categoria-blur.blur-restaurantes {
        background: #F97316;
        top: 1rem;
        right: 1rem;
    }
    .categoria-blur.blur-vendas {
        background: #15A8D6;
        top: 1rem;
        left: 1rem;
    }
    .categoria-blur.blur-vendas:last-child{
        top:40%;
        right:1rem;
        left:auto;
    }
    .categoria-blur.blur-servicos {
        background: #FFB900;
        top: 1rem;
        right: 1rem;
    }

.card.categoria-page-header {
    padding: 0.75rem;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #f5f5f5;
    box-shadow: rgba(0, 0, 0, 0.025) 0px 20px 25px -5px, rgba(0, 0, 0, 0.02) 0px 10px 10px -5px;
}
.card.categoria-page-header p{
    margin:0;
    text-transform:uppercase;
}
.card.categoria-page-header .home-page-area-subtitle{
    font-weight:400;
}

.wrapper-categorias {
    width: 100%;
    height: auto;
    padding: 0 0.05rem;
    position: relative;
    z-index: 1;    
    overflow:hidden;
}

.categorias-text-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 900 !important;
    color: #000;
    text-transform: uppercase;
    letter-spacing:0;
}

.swiper-area{
    position:relative;
    width:100vw;
    overflow-x:hidden;
}


    .container-qualidades {
        background: #132133;
        position:relative;
        overflow-x:hidden;
    }
        .container-qualidades .home-page-subtitle,
        .container-qualidades .home-page-title {
            color: #fff !important;
        }
        .container-qualidades .container {
            position: relative;
            min-height: 600px;
            z-index: 5;
        }
        .container-qualidades .card {
            font-family: 'Inter', sans-serif;
            background: rgb(31, 44, 61);
            border-color: rgb(31, 44, 61);
            border-radius: 1rem;
            color:#fff;
            text-align: center;
            height: 100%;
            margin-top:1rem;
            box-shadow: rgba(31, 44, 61, 0.1) 0px 4px 12px
        }
        .container-qualidades .card img{
            filter:invert();
        }
        .container-qualidades .card-title {
            font-size: 1.1rem !important;
            font-weight: 600 !important;
            letter-spacing: 0;
            text-transform: uppercase;
            color: #fff !important;
        }
        .container-qualidades p{
            color:rgba(255,255,255,0.75);
            font-weight:300;
            font-size:1rem;
        }
        .container-qualidades .image-header{
            height:150px;
            position:relative;
        }
        .container-qualidades .icon-container {
            position: relative;
            width: 150px;
            height: 150px;
            border: 2px solid rgb(42, 55, 71);
            background: rgb(42, 55, 71);
            border-radius: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -2.5rem auto 1rem auto;
            padding: 1rem;
        }
        .container-qualidades .icon-container img.img-fluid{
            margin:0;
        }

        .container-qualidades .imagem-footer {
            position: absolute;
            bottom: 0;
            width: 100vw;
            height: 250px;
            overflow: hidden;
            z-index: 0;
        }
            .container-qualidades .imagem-footer svg {
                width: 100vw !important;
            }

.imagem-footer-bg {
    display: flex;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1920' height='250' preserveAspectRatio='none' viewBox='0 0 1920 250'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1146%26quot%3b)' fill='none'%3e%3crect width='1920' height='250' x='0' y='0' fill='rgba(19%2c 33%2c 51%2c 1)'%3e%3c/rect%3e%3cpath d='M1984 250L0 250 L0 140.51Q82.92 127.43%2c 96 210.34Q155.06 109.41%2c 256 168.47Q341.77 94.25%2c 416 180.02Q450.81 118.84%2c 512 153.65Q589.82 135.47%2c 608 213.28Q668.1 113.38%2c 768 173.48Q803.63 113.1%2c 864 148.73Q932.42 121.16%2c 960 189.58Q1020.18 153.76%2c 1056 213.95Q1069.83 131.78%2c 1152 145.61Q1205.31 102.92%2c 1248 156.23Q1353.46 101.7%2c 1408 207.16Q1450.39 153.55%2c 1504 195.94Q1565.99 97.94%2c 1664 159.93Q1769.76 105.69%2c 1824 211.45Q1887.86 115.31%2c 1984 179.16z' fill='rgba(255%2c 255%2c 255%2c 0.05)'%3e%3c/path%3e%3cpath d='M2016 250L0 250 L0 218.26Q78.76 137.02%2c 160 215.78Q261.22 157%2c 320 258.22Q389.55 167.77%2c 480 237.32Q511.69 173%2c 576 204.69Q629.12 161.81%2c 672 214.93Q730.31 177.24%2c 768 235.55Q833.17 204.72%2c 864 269.89Q886.19 196.07%2c 960 218.26Q996.44 158.7%2c 1056 195.14Q1123.01 166.15%2c 1152 233.16Q1218.44 203.61%2c 1248 270.05Q1287.48 213.53%2c 1344 253.01Q1410.7 159.71%2c 1504 226.41Q1541.13 167.55%2c 1600 204.68Q1699.86 144.54%2c 1760 244.4Q1793.66 182.06%2c 1856 215.73Q1943.06 142.79%2c 2016 229.84z' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1146'%3e%3crect width='1920' height='250' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
}



@media screen and (max-width:761px) {
    .imagem-footer-bg {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='761' height='250' preserveAspectRatio='none' viewBox='0 0 761 250'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1163%26quot%3b)' fill='none'%3e%3crect width='761' height='250' x='0' y='0' fill='rgba(19%2c 33%2c 51%2c 1)'%3e%3c/rect%3e%3cpath d='M811.7333333333332 250L0 250 L0 226.67Q14.05 202.66%2c 38.05 216.71Q50.68 191.29%2c 76.1 203.93Q122.14 186.56%2c 139.51666666666665 232.6Q171.33 226.36%2c 177.56666666666666 258.18Q191.09 233.65%2c 215.61666666666667 247.17Q227.89 196.03%2c 279.03333333333336 208.3Q305.91 197.13%2c 317.08333333333337 224.01Q356.65 200.16%2c 380.50000000000006 239.72Q410.31 231.48%2c 418.55000000000007 261.29Q432.26 236.95%2c 456.6000000000001 250.66Q471.08 201.72%2c 520.0166666666668 216.2Q558.79 191.56%2c 583.4333333333334 230.33Q602.15 185.63%2c 646.85 204.34Q672.29 191.74%2c 684.9 217.18Q739 207.86%2c 748.3166666666666 261.96Q767.25 217.48%2c 811.7333333333332 236.41z' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1163'%3e%3crect width='761' height='250' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
    }
    .page-header {
        min-height: 0px !important;
    }
    .container-qualidades .image-header {
        height: 50px;
    }
    .container-qualidades{
        padding-bottom:50px;
    }
        .container-qualidades .imagem-footer{
            bottom:-1px;
        }
        .container-qualidades .imagem-footer svg {
            width: 1920px !important;
        }
    .categoria-blur {
        width: 90%;
        height: 250px;
    }
}


.categoria-home {
    height: 150px;
    border: 0;
    border-radius: 0.5rem;
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}
    .categoria-home:hover {
        --shadow-hover-color-rgb: 0,0,0;
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
        box-shadow: rgba(0,0,0, 0.35) 0px 20px 25px -5px, rgba(0,0,0, 0.05) 0px 10px 10px -5px;
    }
.categoria-home span{
    font-size:1.25rem;
    text-transform:uppercase;
    font-weight:700;
}
.categoria-home.restaurantes{
    background-color:rgb(235,109,21);
    color:#fff;
}
    .categoria-home.restaurantes:hover {
        box-shadow: rgba(235,109,21, 0.35) 0px 20px 25px -5px, rgba(235,109,21, 0.05) 0px 10px 10px -5px;
    }
    .categoria-home.servicos {
        background-color: rgb(245,175,0);
        color: #fff;
    }
        .categoria-home.servicos:hover {
            box-shadow: rgba(245,175,0, 0.35) 0px 20px 25px -5px, rgba(245,175,0, 0.05) 0px 10px 10px -5px;
        }
    .categoria-home.produtos,
    .categoria-home.autos,
    .categoria-home.imo {
        background-color: #0069b7;
        color: #fff;
    }
        .categoria-home.produtos:hover,
        .categoria-home.autos:hover,
        .categoria-home.imo:hover {
            box-shadow: rgba(21,168,214, 0.35) 0px 20px 25px -5px, rgba(21,168,214, 0.05) 0px 10px 10px -5px;
        }
    .categoria-home.eventos {
        background-color: rgb(197, 51, 59);
        color: #fff;
    }
        .categoria-home.eventos:hover {
            box-shadow: rgba(197, 51, 59, 0.35) 0px 20px 25px -5px, rgba(197, 51, 59, 0.05) 0px 10px 10px -5px;
        }
    .categoria-home.vouchers {
        background-color: rgb(46, 183, 87);
        color: #fff;
    }

        .categoria-home.vouchers:hover {
            box-shadow: rgba(46, 183, 87, 0.35) 0px 20px 25px -5px, rgba(46, 183, 87, 0.05) 0px 10px 10px -5px;
        }

    .categoria-home.anuncios {
        color: #fff;
        background-color: rgb(4, 120, 87);
    }
        .categoria-home.anuncios:hover {
            box-shadow: rgba(4, 120, 87, 0.35) 0px 20px 25px -5px, rgba(4, 120, 87, 0.05) 0px 10px 10px -5px;
        }

        .categoria-home .imagem {
            position: absolute;
            bottom: 0;
            right: 0;
            max-width: 200px;
        }

@media screen and (max-width:761px){
    .categoria-home{
        padding:0.5rem;
    }
    .categoria-home span {
        font-size: 0.9rem;
    }
    .categoria-home .imagem {
        max-width:165px;
    }
        .categoria-home .imagem {
            position: absolute;
            bottom: 0;
            right: 0;
            max-width: 150px;
        }
}
