﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --color--main-restauracao: #ec6421;
    --color--main-servicos: #FFB900;
    --color--main: #0092ff;
    --color--main-darker: #0068b2;
    --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;
    color: #67748e;
}

.section-height-85 {
    height: 85vh;
}

.cor-laranja {
    color: var(--color--main) !important;
}

.text-primary {
    color: #252F40 !important;
}

.bg-gradient-primary {
    background-image: linear-gradient(310deg, #0095ff, #5ebaff);
}
.btn.bg-gradient-primary {
    color: #fff !important;
    letter-spacing: -0.025rem;
    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;
}
    .btn.bg-gradient-primary:hover {
        color: #fff !important;
        box-shadow: 0 5px 15px rgba(94, 186, 255, 0.5);
        transform:translateY(-1px);
    } 

.shadow-blur {
    box-shadow: inset 0 0 1px 1px hsla(0,0%,100%,.9),0 20px 27px 0 rgba(0,0,0,.05) !important;
}

.blur {
    box-shadow: inset 0 0 2px #fefefed1;
    -webkit-backdrop-filter: saturate(200%) blur(16px);
    backdrop-filter: saturate(200%) blur(16px);
    background-color: hsla(0,0%,100%,0.75) !important;
    border: 1px solid rgba(209, 213, 219, 0.3);
}

hr.vertical {
    position: absolute;
    background-color: transparent;
    height: 100%;
    right: 0;
    top: 0;
    width: 1px;
}

    hr.vertical.dark {
        background-image: linear-gradient(180deg,transparent,rgba(0,0,0,.4),transparent);
    }


.titulo {
    margin-bottom: 0;
    line-height: normal;
    font-weight: 400;
}

.typed-cursor {
    color: var(--color--main);
}

.sub-titulo {
    text-transform: uppercase;
    font-weight: 800;
}

.topico-header {
    color: var(--color--main);
}

.topico {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 25px;
}

.topico-media {
    margin-right: 1rem;
}

.topico .topico-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    text-align: center;
    padding: 0;
    background-image: linear-gradient(310deg, #0095ff, #5ebaff);
    box-shadow: 0 5px 15px rgba(94, 186, 255, 0.35);
    color: #ffffff;
}

    .topico .topico-icon svg {
        padding: 0 !important;
        margin: 0 !important;
        width:2.5rem;
        height:2.5rem;

    }

.topico-body h5 {
    color: #252F40;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.05rem;
}

.topico-body p {
    font-size: 1rem;
    font-weight: 400;
    color: #334155;
    letter-spacing: -0.05rem;
}

.tipo-negocio {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    column-gap:0.5rem;
}

    .tipo-negocio input {
        display: none;
    }

        .tipo-negocio input + label {
            flex-basis: 49%;
            margin: 0;
            padding: 0;
            background: rgba(0,0,0,0.15);
            padding: 12px 18px;
            border-radius: .5rem;
            color: #ffffff;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 700;
            text-align: right;
            position: relative;
        }

        .tipo-negocio input + label:hover{
            background:rgba(0,0,0,0.3);
        }

        .tipo-negocio input:checked + label {
            background-image: linear-gradient(310deg, #0095ff, #5ebaff);
            box-shadow: 0 3px 5px -1px rgb(0 0 0 / 9%), 0 2px 3px -1px rgb(0 0 0 / 7%);
            color: #ffffff;
        }

            .tipo-negocio input:checked + label:before {
                content: '\f058';
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
                position: absolute;
                display: block;
                left: 0;
                top: 0;
                bottom: 0;
                padding: 0.5rem 10px;
                margin: auto 0;
                font-size: 1.25rem;
            }

.form-floating label {
    font-size: 1rem;
}
.form-icon {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 1rem .75rem;
    font-size: 1.2rem;
}

.vantagens-cards-group .card{
    border-radius:1rem;
    overflow:hidden;
}
.vantagens-cards-group .card {
    border: 1px solid #f2f4ff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}


    .vantagens-cards-group .card p {
        letter-spacing: 0;
        font-size: 1rem;
        font-weight: 400;
        color: #64748b;
    }


        .vantagens-cards-group .card p.titulo-vantagem {
            font-weight: 700;
            font-size: 1.25rem;
            letter-spacing: -0.05rem;
            color: #0f172a;
        }

.btn-form-submit {
    color: #fff;
    border-style: none;
    text-transform: uppercase;
    box-shadow: 0 4px 7px -1px rgba(0,0,0,.11),0 2px 4px -1px rgba(0,0,0,.07);
    background-size: 150%;
    background-position-x: 25%;
    display: inline-block;
    line-height: 1.4;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    padding: .75rem 1.5rem;
    transition: all .15s ease-in;
}

    .btn-form-submit:hover {
        color: #fff;
        box-shadow: 0 3px 5px -1px rgba(0,0,0,.09),0 2px 3px -1px rgba(0,0,0,.07);
        transform: scale(1.02);
    }
/*#region ---------------------------------WAVES ANIMATION-----------------------------------*/
img, svg {
    vertical-align: middle;
}

.waves.waves-sm {
    height: 50px;
    min-height: 50px;
}

.waves {
    position: relative;
    width: 100%;
    height: 16vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
}

.moving-waves {
}

    .moving-waves > use:first-child {
        animation-delay: -2s;
        animation-duration: 11s;
    }

    .moving-waves > use:nth-child(2) {
        animation-delay: -4s;
        animation-duration: 13s;
    }

    .moving-waves > use:nth-child(3) {
        animation-delay: -3s;
        animation-duration: 15s;
    }

    .moving-waves > use:nth-child(4) {
        animation-delay: -4s;
        animation-duration: 20s;
    }

    .moving-waves > use:nth-child(5) {
        animation-delay: -4s;
        animation-duration: 25s;
    }

    .moving-waves > use:nth-child(6) {
        animation-delay: -3s;
        animation-duration: 30s;
    }

    .moving-waves > use {
        animation: wave 40s cubic-bezier(.55,.5,.45,.5) infinite;
        animation-duration: 40s;
        animation-delay: 0s;
    }

@keyframes wave {
    0% {
        transform: translate3d(-90px,0,0);
    }

    100% {
        transform: translate3d(85px,0,0);
    }
}
/*#endregion*/
.swiper {
    width: 100%;
}

.swiper-slide {
    width: 300px;
}

.swiper-categorias-slide-anchor {
    height: 180px;
    display: block;
    position: relative;
    text-decoration: unset;
    filter: grayscale(1);
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #f5f5f5;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}
    .swiper-categorias-slide-anchor:hover {
        filter: grayscale(0);
        box-shadow: rgba(0, 0, 0, 0.075) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    }

    .swiper-categorias-slide-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        z-index: 1;
        transition: transform 0.4s ease-in;
    }

.swiper-categorias-slide-text {
    color: #000;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
    /*text-shadow: 2px 3px 5px rgba(0,0,0,0.5);*/
}

.vantagens-icon {
    width: 6rem;
}

.swal2-styled.swal2-confirm{
    background: var(--color--main) !important;
}
    .swal2-styled.swal2-confirm:focus {
        box-shadow: 0 0 0 3px rgba(0, 146, 255,.5) !important;
    }

@media screen and (max-width:580px) {
    .tipo-negocio input + label {
    flex-basis: 100%;
    margin-bottom: 10px;
}

.section-height-85 {
    height: unset;
}

.card-body {
    padding: 10px 5px;
}

.titulo {
    margin-top: 30px;
    font-size: 1.5rem;
}

.sub-titulo {
    font-size: 2.5rem;
}
}

.card.blur {
    box-shadow: inset 0 0 2px #fefefed1;
    -webkit-backdrop-filter: saturate(200%) blur(4px);
    backdrop-filter: saturate(200%) blur(4px);
    background-color: rgba(255, 255, 255, 0.75) !important;
    border: 1px solid rgba(209, 213, 219, 0.3);
    border-radius:1rem;
}



    .card.blur .form-control {
        letter-spacing: -0.05rem;
        font-weight: 600;
        outline:none !important;
        border:none !important;
        box-shadow:none !important;
    }
        .card.blur .form-floating label{
            letter-spacing:-0.05rem;
            font-weight:400;
        }
        .card.blur h3 {
            font-weight: 700;
            letter-spacing: -0.05rem;
            color: #1e293b;
        }
    .card.blur p {
        color: #475569;
        font-weight: 400;
        letter-spacing: -0.05rem;
        font-size: 1.1rem;
        margin:0;
    }
    .card.blur .custom-input-group {
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
        background-color: rgba(255,255,255,0);
        box-shadow: 5px 5px 30px rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.1);
    }
        .card.blur .custom-input-group:focus-within {
            background-color: rgba(255,255,255,0.35);
            box-shadow: 5px 5px 30px rgba(0,0,0,0.15);
            color:#000;
        }
        .card.blur .custom-input-group .form-control{
            background:transparent !important;
        }


        .btn-ver-mais {
            padding: 0.75rem 1.25rem;
            border: 0;
            color: #64748b;
            font-size: 1.25rem;
            border-radius: 50rem;
            display: flex;
            align-items: center;
            justify-content: center;
            column-gap: 0.5rem;
            flex-wrap: nowrap;
            text-decoration: none;
            -webkit-transition: all 150ms linear;
            -moz-transition: all 150ms linear;
            -o-transition: all 150ms linear;
            transition: all 150ms linear;
        }
    .btn-ver-mais:hover {
        color: #1e293b;
        background: #f1f5f9;
    }


.input-group .input-group-text{
    background:transparent;
}

.custom-checkbox-group input[type="checkbox"]:checked + label{
    letter-spacing:-0.025rem;
}
.custom-checkbox-group input[type="checkbox"]:checked + label:before {
    background: var(--color--main);
    border-color: var(--color--main);
}


.contacto-title {
    font-size:1.25rem;
    font-weight:600;
    text-transform:uppercase;
    margin-top:1rem;
    letter-spacing:-0.015rem;
}


@media screen and (max-width:761px) {
    .card.blur {
        box-shadow: none !important;
        background: #fff !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        border:none !important;
    }
        .card.blur .custom-input-group {
            -webkit-backdrop-filter: none !important;
            backdrop-filter: none !important;
            background-color: rgba(255,255,255,1) !important;
            box-shadow: none !important;
            border: 1px solid rgba(0,0,0,0.1);
        }

            .card.blur .custom-input-group:focus-within {
                background-color: rgba(255,255,255,0.35);
                color: #000;
            }

    .titulo,
    .sub-titulo {
        text-align:center;
    }

    .topico {
        flex-direction:column;
        align-items: center;
        justify-content:center;
        align-items:center;
    }

    .topico-media {
        margin-right: 0;
    }

    .topico .topico-icon {
        width: 4rem;
        height: 4rem;
        margin:0 auto;
    }

        .topico .topico-icon svg {
            padding: 0 !important;
            margin: 0 !important;
            width: 2rem;
            height: 2rem;
        }

    .topico-body h5 {
        color: #252F40;
        font-size: 1.25rem;
        font-weight: 600;
        letter-spacing: -0.05rem;
        text-align:center;
    }

    .topico-body p {
        font-size: 1rem;
        font-weight: 400;
        color: #334155;
        letter-spacing: -0.05rem;
        text-align:center;
    }
}

.alert {
    position: fixed;
    width: 100%;
    z-index: 50;
    border-radius: 0;
    background: #0E9AFF;
    border-width: 0;
    color: white;
    margin: 0;
    text-align: center;
}

    .alert .alert-link {
        color: white;
    }