@font-face {
    font-family: "Feeling Passionate";
    src: url("/assets/fonts/FeelingPassionateRegular.woff2") format("woff2");
    font-display: swap;
    font-weight: 400;
}
@font-face {
    font-family: "Londrina";
    src: url("/assets/fonts/LondrinaSolidRegular.woff2") format("woff2");
    font-display: swap;
    font-weight: 400;
}

@font-face {
    font-family: "Mont Serrat";
    src: url("/assets/fonts/MontserratRegular.woff2") format("woff2");
    font-display: swap;
    font-weight: 400;
}

@font-face {
    font-family: "Mont Serrat";
    src: url("/assets/fonts/MontserratMedium.woff2") format("woff2");
    font-display: swap;
    font-weight: 500;
}

@font-face {
    font-family: "Mont Serrat";
    src: url("/assets/fonts/MontserratBold.woff2") format("woff2");
    font-display: swap;
    font-weight: 700;
}

:root {
    --bs-primary: #e58530;
    --bs-primary-rgb: 229, 133, 48;
    --bs-secondary: #821f05;
    --bs-secondary-rgb: 130, 31, 5;
}

body {
    font-family: "Mont Serrat", sans-serif;
    font-weight: 400;
    background: url("/assets/img/desenho.svg") center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-size: 18px;
}
a{
    display: inline-block;
}

.form-control:focus {
    border-color: var(--bs-primary);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(var(--bs-primary-rgb), .25);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #e58530;
    --bs-btn-border-color: #e58530;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #da7925;
    --bs-btn-hover-border-color: #da7925;
    --bs-btn-focus-shadow-rgb: 218, 121, 37;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #da7925;
    --bs-btn-active-border-color: #da7925;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #da7925;
    --bs-btn-disabled-border-color: #da7925;
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #821f05;
    --bs-btn-border-color: #821f05;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #681804;
    --bs-btn-hover-border-color: #681804;
    --bs-btn-focus-shadow-rgb: 104, 24, 4;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #681804;
    --bs-btn-active-border-color: #681804;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #681804;
    --bs-btn-disabled-border-color: #681804;
}

.ff-cursive {
    font-family: "Feeling Passionate", cursive !important;
    font-weight: 400 !important;
}
.ff-strong {
    font-family: "Londrina", sans-serif;
    font-weight: 400 !important;
}

.tag-line {
    font-family: "Feeling Passionate", cursive;
    font-weight: 400;
    font-size: 20px;
}

.title {
    font-family: "Londrina", sans-serif;
    font-weight: 400;
}
.fs-1 {
    font-size: calc(2.5rem + 1.5vw) !important;
}

#header {
    position: relative;
    min-height: 100vh;
    background-color: #222;
    background-image:
        url("/assets/img/bg-banner.webp"), url("/assets/img/bg-section.webp");
    background-repeat: no-repeat, repeat;
    background-size:
        1920px auto,
        auto auto;
    background-position:
        top right 50%,
        top left;
    color: #fff;
}
@media (max-width: 680px) {
    #header {
        background-position:
            top 25% right 50%,
            top left;
    }
}
#header::after {
    content: "";
    background: url("/assets/img/shape-bottom-white.png") top center no-repeat;
    background-size: auto 78px;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 78px;
    display: block;
    z-index: 2;
}

#nav-header {
    padding-top: 50px;
    padding-bottom: 50px;
}
#nav-header #nav-wrap {
    background: #000;
    color: #fff;
}
#nav-header #nav-wrap a {
    position: relative;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 5px 5px 7px;
    transition: all ease-in-out 300ms;
}
#nav-header #nav-wrap a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 2px;
    background: transparent;
    transition: all ease-in-out 300ms;
}
#nav-header #nav-wrap a:hover::before {
    width: 100%;
    background: var(--bs-primary);
}
#nav-header #nav-wrap a:hover {
    color: var(--bs-primary);
}
#nav-header .img-logo {
    position: relative;
    top: 0;
    width: 150px;
    height: 150px;
    background: #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: -35px;
    margin-bottom: -35px;
}
#nav-mobile {
    position: fixed;
    top: 0;
    left: -350px;
    background-color: #000;
    width: 300px;
    height: 100vh;
    z-index: 999;
    transition: all ease-in-out 500ms;
}
#nav-mobile.active {
    left: 0;
}
#nav-mobile #nav-mobile-wrap a {
    position: relative;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 5px 5px 7px;
    transition: all ease-in-out 300ms;
}

#nav-mobile #nav-mobile-wrap a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 2px;
    background: transparent;
    transition: all ease-in-out 300ms;
}
#nav-mobile #nav-mobile-wrap a:hover::before {
    width: 100%;
    background: var(--bs-primary);
}
#nav-mobile #nav-mobile-wrap a:hover {
    color: var(--bs-primary);
}
section#diferenciais .item {
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid #fff;
    outline: 5px solid rgba(0, 0, 0, 0.8);
    transition: all ease-in-out 300ms;
}
section#diferenciais .item:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-10px);
}
section#diferenciais .item img {
    padding: 30px;
    object-fit: contain;
    object-position: center;
}
section#sobre {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    color: #fff;
    background: #222 url("/assets/img/bg-section.webp") repeat;
}
section#sobre::before {
    content: "";
    background: url("/assets/img/shape-top-white.png") top center no-repeat;
    background-size: auto 78px;
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 78px;
    display: block;
    z-index: 2;
}
section#sobre::after {
    content: "";
    background: url("/assets/img/shape-bottom-white.png") top center no-repeat;
    background-size: auto 78px;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 78px;
    display: block;
    z-index: 2;
}
section#delivery {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    background: rgba(0, 0, 0, 0.8) url("/assets/img/bg-delivery.webp") center
        no-repeat;
    background-blend-mode: multiply;
    background-size: cover;
    color: #fff;
}
section#delivery::before {
    content: "";
    background: url("/assets/img/shape-top-white.png") top center no-repeat;
    background-size: auto 78px;
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 78px;
    display: block;
    z-index: 2;
}
section#delivery::after {
    content: "";
    background: url("/assets/img/shape-bottom-white.png") top center no-repeat;
    background-size: auto 78px;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 78px;
    display: block;
    z-index: 2;
}
footer#footer {
    position: relative;
    background: #000 url("/assets/img/bg-footer.webp") bottom center no-repeat;
    background-size: cover;
    padding-top: 180px;
    padding-bottom: 100px;
}
footer#footer::before {
    content: "";
    background: url("/assets/img/shape-top-white.png") top center no-repeat;
    background-size: auto 78px;
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 78px;
    display: block;
    z-index: 2;
}

footer#footer .footer-wrap {
    color: #fff;
    background: rgba(0, 0, 0, 0.8) url("/assets/img/padrao.svg") right center
        no-repeat;
    background-blend-mode: multiply;
    background-size: cover;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

footer#footer ::placeholder {
    color: #fff;
    opacity: 0.5;
    font-size: 16px;
}

#to-top {
    position: fixed;
    right: 15px;
    bottom: 50px;
    z-index: 999;
    opacity: 0.8;
}
#to-top:hover {
    opacity: 1;
}

#bar-mobile {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (min-width:768px) {
    #bar-mobile{
        display: none;
    }
}
