/*Autor: Eduardo Sousa
email: webx_555@hotmail.com
*/

.clearfix::before, .clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.clear {
    clear: both;
}

html, body {
    overflow-x: hidden;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: 'Titillium Web';
    font-weight: 500;
    position: relative;
    background-color: #231f20;
    color: #fff;
}

main {
    transition: filter .2s;
}

.d-none-desk {
    display: none;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1140px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

a, a:hover {
    text-decoration: none;
}

.text__center {
    text-align: center;
}

.text__right {
    text-align: right;
}

/* BUTTONS */

.btn {
    font-size: 1.6rem;
    font-weight: 700;
    transition: all .2s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(1px);
}

.btn--bg-white {
    background-color: #fff;
    border-radius: .5rem;
    padding: .5rem 2rem;
}

.btn--white, .btn--white:hover {
    color: #fff !important;
}

.btn--bg-yellow {
    background-color: #ffb400;
    padding: 1rem 2rem;
    border-radius: 0;
}

.btn--gray, .btn--gray:hover {
    color: #1a1914;
}

.btn--bg-light-blue {
    background-color: #00a2ff;
    border-radius: .5rem;
    padding: .8rem 2.5rem;
}

.btn--bg-light-gray {
    background-color: #cccccc;
    border-radius: 0;
    padding: 1rem 2.5rem;
}

.btn--bg-dark-blue {
    background-color: #000096;
    border-radius: .5rem;
    padding: .8rem 2.5rem;
}

/*SCROLL*/

/* width */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */

::-webkit-scrollbar-track {
    background: rgb(177, 177, 177);
}

/* Handle */

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: rgba(41, 37, 38, .9);
    transition: .5s;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: rgba(41, 37, 38, 1);
    transition: .5s;
}

/* Thin Scrollbar */

:root {
    scrollbar-color: rgba(41, 37, 38, .9) rgb(177, 177, 177) !important;
    scrollbar-width: thin !important;
}

/*FIM SCROLL*/

/* WHATSAPP FIXED */

.whatsapp-fixed {
    position: fixed;
    display: block;
    z-index: 9999;
    background-color: #25d366;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
}

.whatsapp-fixed i {
    font-size: 30px;
    line-height: 50px;
    color: #fff;
}

/* HEADER */

.header {
    padding: 2rem 0;
    position: relative;
    width: 100%;
}

.header__absolute {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.header__logo {}

.header__logo img {
    width: 100%;
}

.header__btn-mobile {
    font-size: 4rem;
    text-align: right;
    position: fixed;
    top: 1rem;
    right: 1.5rem;
    cursor: pointer;
    display: none;
}

.header__contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__contact-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.header__contact-item {
    color: #fff;
    margin-right: 1rem;
    margin-bottom: .5rem;
}

.header__contact-item i {
    width: 3rem;
    height: 3rem;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    color: #292526;
    margin-right: .5rem;
}

.header__contact-item span {
    color: #fff
}

.header__contact-item--delivery img {
    width: 3rem;
}

.social__item {
    margin-right: .5rem;
}

.header__contact-icons {
    display: flex;
}

.header__contact-box--delivery {
    margin-right: 5rem;
}

.header__nav {
    padding: 5rem 0;
}

.header__menu-list {
    padding-left: 0;
    display: block;
    margin-bottom: 0;
    list-style: none;
}

.header__menu-list>li {
    display: inline-block;
    position: relative;
}

.header__menu-list>li:not(:last-child) {
    margin-right: 1rem;
}

.header__menu-list>li:not(:first-child) {
    margin-left: 1rem;
}

.header__menu-list>li>a {
    color: #fff;
    font-weight: 500;
    font-size: 1.5em;
    display: block;
    position: relative;
    height: 100%;
}

.header__menu-list .current-menu-item>a {
    font-weight: 600;
}

.header__menu-list>li>a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 7px;
    bottom: 0;
    left: 0;
    right: auto;
    background-color: #fff;
    transition: all .2s;
}

.header__menu-list>li>a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: auto;
    right: 0;
    background-color: #fff;
}

.menu__sidebar {
    position: fixed;
    z-index: 11;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto;
    padding: 2rem 6rem;
    background-color: #443e3e;
    color: #fff;
    transition: all .3s ease-in;
    transform: translate(100%);
    z-index: 99;
}

.responsive__menu {
    list-style: none;
    padding: 0;
}

.responsive__menu li a {
    color: #fff;
    font-weight: 600;
    font-size: 3rem;
    margin-bottom: .5rem;
    text-align: center;
    display: block;
}

.responsive__menu .current-menu-item>a {
    color: #fff !important;
    font-weight: 700 !important;
}

.menu__close {
    margin-bottom: 2rem;
    cursor: pointer;
}

.menu__close i {
    color: #fff;
    font-size: 2rem;
    position: absolute;
    top: 10px;
    left: 10px;
    
}

.header--cardapio .header__logo img {
    width: 15rem;
}

.header--cardapio .header--cardapio-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 2rem;
}

.header--cardapio .header__btn-mobile {
    position: relative;
    text-align: center;
}

.header--cardapio .header__btn-mobile span {
    line-height: 1px;
}

.header--cardapio ~ .menu__sidebar .header__contact-box--delivery {
    margin-right: 0px !important;
}

.header--cardapio ~ .menu__sidebar .header__contact-box--delivery .header__contact-item {
    margin-right: 0;
    margin: 0 5px;
}

.header--cardapio ~ .menu__sidebar .social .social__item {
    margin-right: 0;
    margin: 0 5px;
}

.header--cardapio ~ .menu__sidebar .social .social__item i{
    margin-right: 0;
}

.header--cardapio ~ .menu__sidebar{
    max-height: 100%;
    bottom: unset;
    overflow: auto;
}

/* HOME */

.banner {
    min-height: 100vh;
    position: relative;
    background-color: #292526;
}

.banner__item {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.banner__layer {
    position: absolute;
    width: 100%;
    min-height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(41, 37, 38, .8);
    z-index: 2;
}

.banner__item img {
    position: absolute;
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
    z-index: 1;
}

.banner .owl-item {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.banner__text {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 10rem 15rem 0;
}

.banner__text span {
    text-transform: uppercase;
    letter-spacing: 2rem;
    display: block;
    font-size: 10rem;
    color: #fff;
    font-weight: 600;
}

.banner__text span strong {
    color: #ffb400;
    font-weight: 600;
}

.banner .owl-dots {
    position: absolute;
    right: 0;
    bottom: 20%;
    transform: rotate(90deg) translateY(-50%);
}

.banner.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: -40px 20px;
    background: transparent;
    border: 2px solid #fff;
    opacity: 1;
    transition: all .2s;
}

.banner.owl-theme .owl-dots .owl-dot.active span {
    background-color: #fff;
    margin: -40px 30px;
}

.bg--default {
    background-color: #322c2c;
}

.bg--darker {
    background-color: #1f1919;
}

.home__reserve {
    padding: 8rem 0;
}

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

.title {
    text-transform: uppercase;
    margin-bottom: 4rem;
    position: relative;
}

.title span {
    display: block;
    font-size: 7rem;
    color: rgba(255, 255, 255, .1);
    font-weight: 700;
    line-height: 1;
}

.title h2, .title h1 {
    font-size: 3rem;
    color: #fff;
    font-weight: 600;
    line-height: 1;
    margin-top: -3rem;
}

.btn__box {
    position: relative;
}

.home__reserve-form {}

.home__reserve-form input, .home__reserve-form select {
    width: 100%;
    background-color: #443e3e;
    border: none;
    padding: 1.5rem 1rem 1.5rem 5rem;
    color: #fff;
}

.home__reserve-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    position: absolute;
    font-size: 3rem;
    top: 50%;
    left: -1rem;
    transform: translate(0, -50%);
}

.home__reserve-form>form>.row>[class^="col-"] {
    position: relative;
}

.home__reserve-form i {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(50%, -50%);
    font-size: 3rem;
}

.home__reserve-btn-box {
    margin-top: 2rem;
}

.home__about-text {
    color: #fff;
    font-size: 2rem;
}

.home__about {
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.bg--layer {
    background-color: rgba(41, 37, 38, .8);
    background-blend-mode: multiply;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
}

.home__menu {
    padding: 8rem 0 0 0;
}

.subtitle {
    font-size: 2rem;
    margin-bottom: 4rem;
    color: #fff;
    position: relative;
}

.home__menu-items {}

.home__menu-carousel.owl-theme .owl-nav .owl-prev,
.home__menu-carousel.owl-theme .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    font-size: 4rem;
    color: #fff;
    opacity: .8;
    transition: all .2s;
}

.home__menu-carousel.owl-theme .owl-nav .owl-prev{
    position: absolute;
    left: 1%;
}
.home__menu-carousel.owl-theme .owl-nav .owl-next{
    position: absolute;
    right: 1%;
}

.home__menu-carousel.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: transparent;
    opacity: 1;
}

.home__menu-item {
    min-height: 40rem;
    /* border: .2rem solid #ffb400; */
    padding: 2rem;
    position: relative;
    border-bottom: none;
    height: 40rem;
}

.home_menu-item-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.home__menu-item-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(41, 37, 38, .8);
}

.home__menu-item-content {
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.home__menu-item-name {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.home__menu-item-desc {
    font-size: 2rem;
    display: block;
    margin-bottom: 2rem;
}

.home__menu-item-price {
    font-size: 5rem;
    font-weight: 700;
    position: relative;
}

.home__menu-item-price span {
    font-size: 3rem;
    font-weight: 500;
    position: relative;
    top: -2rem;
}

.home__menu-item .btn {
    background-color: #ffb400;
}

.border-none {
    border: none;
}

.home__menu-carousel .owl-dots {
    margin-top: 0 !important;
    padding-top: 4rem;
}

.home__menu-carousel.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 10px 20px;
    background: transparent;
    border: 2px solid #fff;
    opacity: 1;
    transition: all .2s;
}

.home__menu-carousel.owl-theme .owl-dots .owl-dot.active span {
    background-color: #fff;
    margin: 10px 30px;
}

.home__events {
    padding: 15rem 0 10rem 0;
}

.home__events-text {
    color: #fff;
    padding-right: 20rem;
}

.home__events-text p {
    font-size: 2rem;
}

.home__events-carousel {
    position: relative;
}

.home__events-carousel .owl-stage-outer {
    margin-left: -15rem;
}

.home__events-carousel .owl-item.active {
    transform: scale(1);
}

.home__events-carousel .owl-item {
    transform: scale(.8);
    transition: all .5s;
}

.home__events-carousel::after {
    position: absolute;
    content: '';
    top: 50%;
    left: -10rem;
    transform: translateY(-50%);
    width: calc(100% + 11rem);
    height: 110%;
    border: 2px solid #ffb400;
    border-right: none;
    z-index: -1;
}

.home__rodizio {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.home__rodizio-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home__rodizio-content {
    border: 3px solid #ffb400;
    background-color: #322c2c;
    color: #fff;
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
}

.home__rodizio-content-title {
    text-transform: uppercase;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.home__rodizio-content-item {
    font-size: 2rem;
}

.home__rodizio-content-item:not(:last-child) {
    margin-bottom: 2rem;
}

.home__rodizio-content-day {
    font-weight: 600;
    display: block;
}

.home__rodizio-content-hour {
    font-weight: 500;
    display: block;
}

.home__social {
    padding: 8rem 0;
}

.home__social-icons {
    display: flex;
    justify-content: space-evenly;
    margin-top: 4rem;
}

.home__social__icons-item {
    color: #fff;
    display: flex;
    align-items: center;
}

.home__social-icons-item i {
    color: #1f1919;
    background-color: #fff;
    font-size: 3rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
}

.home__social-icons-item span {
    color: #fff;
    font-size: 2rem;
}

.home__delivery {
    padding-bottom: 8rem;
}

.home__delivery-items {
    background-color: #444041;
}

.home__delivery-items .btn--delivery {
    display: block;
    border-radius: 0;
    padding: 2rem 2rem;
    text-align: center;
    font-size: 2rem;
}

.delivery__list {
    padding: 0;
    list-style: none;
}

.delivery__list-item:not(:last-child) {
    margin-bottom: 1rem;
}

.delivery__list-item a {
    color: #fff;
    display: block;
    text-align: center;
    background-color: #534f50;
    padding: 1rem 2rem;
    font-size: 2rem;
    font-weight: 500;
    min-height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery__list-item a img{
    height: 3rem;
    margin-left: 1rem;
    
}

.btn-white, .btn--white:hover {
    color: #fff;
}

.btn--bg-gray, .btn--bg-gray:hover {
    background-color: #444041;
}

/*FOOTER*/

.footer {
    padding: 4rem 0 0 0;
    text-align: center;
}

.footer__item {
    margin-bottom: 4rem;
}

.footer__item-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.footer__item-title--uppercase {
    text-transform: uppercase;
}

.footer__item-info {
    color: #fff;
    margin-bottom: 1rem;
}

.footer__item-info a {
    color: #fff;
}

.footer__item-info span {
    display: block;
}

.footer__item-info img {
    max-width: 30rem;
    width: 100%;
}

.footer__newsletter input {
    font-weight: 600;
    color: #1a1914;
    background-color: #fff;
    border: none;
    padding: 1rem;
    max-width: 20rem;
    width: 100%;
}

.footer__newsletter input:focus {
    outline: none;
    background-color: #eee;
}

.footer__newsletter input::placeholder {
    font-weight: 600;
    color: #1a1914;
}

.footer__newsletter [class^="btn-"] {
    display: inline-block;
    border: none;
    font-weight: 700;
    font-size: 1.6rem;
    position: relative;
    left: -.5rem;
}

.copyright {
    padding: 2rem;
    margin-top: 4rem;
    font-weight: 600;
    color: #fff;
}

/*PRELOADER*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1f1919;
    z-index: 9999;
}

#loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    margin: -3px 0 0 -3px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 50px;
    left: 50px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 54px;
    left: 45px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 57px;
    left: 39px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 58px;
    left: 32px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 57px;
    left: 25px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 54px;
    left: 19px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 50px;
    left: 14px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 45px;
    left: 10px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ABOUT */

.banner__intern {
    width: 100%;
    height: 45rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 5rem;
}

.banner__intern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
}

.section-mb {
    margin-bottom: 10rem;
}

.f-20 {
    font-size: 2rem;
}

.about__menu .home__menu-carousel .owl-dots {
    background-color: transparent;
}

/* AT CROCO */

.lunch {}

.lunch__item {
    min-height: 35rem;
    overflow: hidden;
    position: relative;
}

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

/* RODIZIO */

.f-22 {
    font-size: 2.2rem;
}

/* EVENTS */

.events__item {
    width: 100%;
    min-height: 35rem;
    height: 35rem;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
}

.events__item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.rodizio__text a, .rodizio__text a:hover{
    color: #fff;
    font-weight: 700;
}

/* MENU */

.df-container.df-floating>.df-ui-next, .df-container.df-floating>.df-ui-prev {
    color: #fff;
}