@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
*,
html,
body,
h1,
h2 {
  font-family: "Lato", sans-serif;
  scroll-behavior: smooth;
}

.container {
  padding: 0 18px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1024px) {
  .mobile {
    display: none !important;
  }
}

.desktop {
  display: none !important;
}
@media (min-width: 1024px) {
  .desktop {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.title {
  font-size: 24px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  padding-bottom: 5px;
  border-bottom: solid 3px #0049d4;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1024px) {
  .title {
    font-size: 32px;
  }
}

.navBar {
  height: 90px;
  background-color: rgba(0, 0, 0, 0.78);
  color: white;
  position: fixed;
  z-index: 9;
  width: 100vw;
}
.navBar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navBar__wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navBar__logo {
  height: 50px;
}
.navBar__cta {
  background-color: white;
  color: black;
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 18px;
  font-family: "Lato", sans-serif;
  cursor: pointer;
  text-decoration: none;
}
.navBar__cta:hover {
  background-color: rgb(185, 185, 185);
  color: white;
}
.navBar__hamburguer {
  position: relative;
  margin-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navBar__hamburguer .line {
  background-color: white;
  width: 30px;
  height: 3px;
  border-radius: 5px;
}
.navBar__hamburguer .line1 {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navBar__hamburguer .line3 {
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navBar__itens {
  font-family: "Lato", sans-serif;
}
.navBar__itens ul a {
  text-decoration: none;
  color: white;
}
.navBar__itens.mobile {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.78);
  height: calc(100vh - 89px);
  width: 100vw;
  bottom: 0;
  top: 90px;
  left: -100vw;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 9;
}
.navBar__itens.mobile ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  padding: 25px 0;
}
.navBar__itens.mobile ul li a {
  font-size: 24px;
  font-weight: 300;
  font-family: "Lato", sans-serif;
  cursor: pointer;
}
.navBar__itens.desktop ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.navBar__itens.desktop ul li a {
  font-size: 24px;
  font-weight: 300;
  font-family: "Lato", sans-serif;
  cursor: pointer;
}
.navBar__itens.desktop ul li:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.navBar__check {
  position: absolute;
  height: 40px;
  width: 40px;
  opacity: 0;
  margin: auto;
  right: 18px;
  z-index: 1;
}
.navBar__check:checked ~ .navBar__hamburguer .line1 {
  display: block;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
}
.navBar__check:checked ~ .navBar__hamburguer .line2 {
  display: none;
}
.navBar__check:checked ~ .navBar__hamburguer .line3 {
  display: block;
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
}
.navBar__check:checked ~ .navBar__itens.mobile {
  left: 0;
  right: 0;
  top: 89px;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.hero {
  background-image: url("../images/image-hero.jpg");
  background-size: cover;
  min-height: 90vh;
  position: relative;
  color: white;
}
.hero .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.hero__shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
.hero__cta {
  background-color: white;
  color: black;
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  cursor: pointer;
  margin-bottom: 50px;
  text-decoration: none;
}
.hero__cta:hover {
  background-color: rgb(185, 185, 185);
  color: white;
}
.hero h1 {
  text-align: left;
  font-size: 24px;
  bottom: 100px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  text-shadow: 1px 1px 2px black;
}
.hero h2 {
  font-size: 18px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px black;
}
@media (min-width: 1024px) {
  .hero {
    background-position: top;
    min-height: 60vh;
    background-image: url("../images/image-hero-desktop.jpg");
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 150px;
  }
  .hero__cta {
    display: none;
  }
}

.aboutUs {
  font-family: "Lato", sans-serif;
  padding-top: 60px;
  padding-bottom: 60px;
}
.aboutUs__content {
  padding-top: 60px;
}
.aboutUs__content__img {
  width: 100%;
}
.aboutUs__content__img img {
  width: 100%;
}
.aboutUs__content__text {
  padding-top: 40px;
}
.aboutUs__content__text__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  border-bottom: solid 3px #0049d4;
  font-weight: 400;
}
.aboutUs__content__text__subtitle {
  font-size: 16px;
  font-weight: 300;
  margin: 20px 0;
  line-height: 150%;
}
@media (min-width: 1024px) {
  .aboutUs__content__img, .aboutUs__content__text {
    width: 50%;
  }
  .aboutUs__content__text__title {
    font-size: 26px;
  }
  .aboutUs__content__text__subtitle {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .aboutUs__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.midBg {
  background: url("../images/image-mid.jpg");
  background-size: cover;
  height: 300px;
  position: relative;
}
.midBg__img {
  display: block;
  height: -webkit-fill-available;
  width: -webkit-fill-available;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .midBg {
    height: 450px;
  }
}

.products {
  margin: 60px 0;
}
.products__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
  gap: 20px;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.products__wrapper::-webkit-scrollbar {
  display: none;
}
.products__card {
  min-width: 300px;
  height: 300px;
  background-color: bisque;
  border-radius: 16px;
  overflow: hidden;
}
.products__card__image {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4))), url("../images/products/product_card_1.jpg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.4)), url("../images/products/product_card_1.jpg");
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.products__card__title {
  font-family: "Lato", sans-serif;
  font-size: 40px;
  color: #fff;
  text-align: center;
  line-height: 130%;
}
.products__card:hover .products__card__image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.products__card #frescos {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4))), url("../images/products/produtos_frescos.jpeg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.4)), url("../images/products/produtos_frescos.jpeg");
  background-position: center;
  background-size: cover;
}
.products__card #orientais {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4))), url("../images/products/produtos_orientais.jpeg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.4)), url("../images/products/produtos_orientais.jpeg");
  background-position: left;
  background-size: cover;
}
.products__card #empanados {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4))), url("../images/products/produtos_empanados.png");
  background-image: linear-gradient(rgba(0, 0, 0, 0.4)), url("../images/products/produtos_empanados.png");
  background-position: center;
  background-size: cover;
}
.products__card #pescados {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4))), url("../images/products/produtos_pescados.jpeg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.4)), url("../images/products/produtos_pescados.jpeg");
  background-position: center;
  background-size: cover;
}
.products__card #bebidas {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4))), url("../images/products/produtos_bebidas.jpeg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.4)), url("../images/products/produtos_bebidas.jpeg");
  background-position: center;
  background-size: cover;
}
.products__card:first-child {
  margin-left: 24px;
}
.products__card:last-child {
  margin-right: 24px;
}
@media (min-width: 1024px) {
  .products {
    max-width: 1300px;
    margin: 60px auto;
  }
  .products__card {
    width: 350px;
    height: 300px;
  }
  .products__card:first-child {
    margin-left: unset;
  }
  .products__card:last-child {
    margin-right: unset;
  }
  .products__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.recipes {
  background-image: url("../images/image-recipes.jpg");
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 60px;
  font-family: "Lato", sans-serif;
}
.recipes__title {
  font-size: 28px;
  color: #fff;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.recipes__card {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recipes__card__wrapper {
  margin: 0 auto;
  background-color: #fff;
  width: 80%;
  border-radius: 12px;
  overflow: hidden;
}
.recipes__card__image {
  width: 100%;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.recipes__card__content {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.recipes__card__title {
  font-size: 22px;
  font-weight: 600;
}
.recipes__card__text {
  font-size: 18px;
  font-weight: 600;
}
.recipes__card__list {
  list-style: disc;
  padding-left: 30px;
  color: #686868;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.recipes__card__list li {
  margin-bottom: 2px;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .recipes__card__list li {
    font-size: 18px;
  }
}
.recipes__card__description {
  color: #686868;
}
@media (min-width: 1024px) {
  .recipes__card__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1000px;
  }
  .recipes__card__image {
    height: 100%;
    max-height: unset;
    max-width: 420px !important;
  }
  .recipes__card__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
    border-bottom: solid 3px #0049d4;
  }
  .recipes__card__content {
    padding: 24px;
  }
}
.recipes .glider-prev,
.recipes .glider-next {
  font-size: 50px;
  color: #fff;
  z-index: 9;
  top: 50%;
}
.recipes .glider-prev {
  left: 5px;
}
.recipes .glider-next {
  right: 5px;
}
@media (min-width: 1024px) {
  .recipes {
    padding-bottom: 100px;
  }
  .recipes .glider-prev,
  .recipes .glider-next {
    top: 40%;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  .recipes .glider-prev {
    left: 5%;
  }
  .recipes .glider-next {
    right: 5%;
  }
  .recipes__title {
    font-size: 32px;
    padding: 50px 0;
  }
}

.map .title {
  margin: 60px auto;
}
.map iframe {
  width: 100%;
}

.footer {
  width: 100%;
  height: auto;
  background-color: #000;
}
.footer__content {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Lato", sans-serif;
}
.footer__content__logo {
  width: 150px;
  margin-bottom: 40px;
}
.footer__content__info {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 14px;
  margin-top: 10px;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__content > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__content__info {
    margin-top: 0;
  }
  .footer__content__logo {
    margin-bottom: 0;
  }
}