body,
html {
  overflow-x: hidden;
}

.hero {
  padding: 0 0 150px 0;
}

.hero .grid-hero {
  display: grid;
  grid-template-columns: 35% 65%;
}

.hero .circle-hero {
  position: relative;
}

.hero .circle-content {
  position: absolute;
  background-color: var(--marrom);
  border-radius: 100%;
  width: 570px;
  height: 570px;
  right: -285px;
  top: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 45px;
}

.hero .circle-content h1 {
  color: #fff;
  text-align: center;
  font-family: Haboro Serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.hero .circle-content h1 strong {
  color: #fff;
  font-weight: 800;
}

.hero .circle-content span {
    font-size: 20px;
    position: absolute;
    top: 70px;
    letter-spacing: 2px;
    color: var(--color--azul);
    font-family: 'haboro-condensed';
    font-weight: 600;
}

.hero .circle-content .circle-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
}

.hero .circle-content .circle-arrow a {
  position: absolute;
  background-color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 2px solid #c0a88f;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -50px;
}

.hero .slide-hero {
  min-height: 810px;
  border-radius: 0 0 0 610px;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1365px) {
  .hero .circle-content {
    width: 570px;
    height: 570px;
    right: -235px;
    top: 180px;
  }
}

@media (max-width: 1179px) {
  .hero .circle-content {
    width: 400px;
    height: 400px;
    right: -210px;
    top: 180px;
  }
}

@media (max-width: 992px) {
  .hero .grid-hero {
    display: grid;
    grid-template-columns: 100%;
  }

  .hero .circle-content {
    width: 270px;
    height: 270px;
    left: 0;
    right: initial;
    top: 360px;
    left: 15px;
  }

  .hero .circle-content h1 {
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
  }

  .hero .circle-content .circle-arrow a {
    width: 50px;
    height: 50px;
    bottom: -25px;
  }

  .hero .circle-content .circle-arrow svg {
    max-width: 8px;
  }

  .hero .slide-hero {
    min-height: 600px;
    border-radius: 0 0 0 290px;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

/* MENU */
.restaurant-menu-inner {
  display: grid;
  width: 1220px;
  max-width: 90%;
  margin: 0 auto;
}

.restaurant-menu-categories {
  margin: 0;
  padding: 0;
  top: 0;
  z-index: 105;
}

.restaurant-menu-categories>li {
  list-style: none;
  display: block;
  width: 100%;
  white-space: nowrap;
}

.restaurant-menu-categories>li>button {
  border: none;
  border-radius: 0;
  appearance: none;
  background: transparent;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  width: 100%;
  font-family: 'Barlow Condensed';
  letter-spacing: 0.1em;
}

.restaurant-menu-categories>li>button:hover,
.restaurant-menu-categories>li>button:focus,
.restaurant-menu-categories>li>button:active {
  outline: none;
}

.restaurant-menu-categories>li:last-child>button {
  border-right: none;
}

.restaurant-menu-categories>li.active>button {
  color: #fff;
}

.restaurant-menu-subcategories {
  padding: 0;
  margin: 0;
}

.restaurant-menu-categories li:not(.active) .restaurant-menu-subcategories {
  display: none !important;
}

.restaurant-menu-subcategories>li {
  list-style: none;
  display: block;
}

.restaurant-menu-subcategories>li>button {
  border: none;
  border-radius: 0;
  appearance: none;
  background: transparent;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  padding: 10px 27px;
  cursor: pointer;
  color: #fff;
  text-align: left;
  font-family: 'Barlow Condensed';
  font-weight: 500;
}

.restaurant-menu-subcategories>li>button.active,
.restaurant-menu-subcategories>li>button:hover,
.restaurant-menu-subcategories>li>button:focus,
.restaurant-menu-subcategories>li>button:active {
  outline: none;
}

.restaurant-menu-subcategories>li>button.active {
  font-weight: 700;
}

.restaurant-menu-tabs {
  background-color: #fff;
  background-size: cover;
  padding: 2rem;
}

.restaurant-menu-tabs-outer {
  background: var(--primary-gradient);
  padding: 0;
  /* overflow: scroll; */
}

.restaurant-menu-tabs-inner {
  padding: 2rem;
  display: flex;
  justify-content: center;
  height: 100%;
}

.restaurant-menu-tab {
  display: none;
  width: 100%;
}

.restaurant-menu-tab.active {
  display: block;
}

.restaurant-menu-items {
  display: grid;
  gap: 25px;
  width: 100%;
  grid-template-columns: 1fr 1fr;
}

.page-template-page-menu .restaurant-menu-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.page-template-page-menu .restaurant-menu-item {
  width: 100%;
}

.restaurant-menu-inner h2 {
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 9px 0;
  text-transform: uppercase;
  color: var(--azul);
  line-height: 1.5;
  text-align: left;
  font-family: 'Barlow Condensed';
  letter-spacing: 2;
}

.restaurant-menu-inner p {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  color: #c0a88f;
  text-align: left;
  font-family: 'Barlow Condensed';
}

.restaurant-menu-inner p+p {
  margin-top: .5rem;
}

.restaurant-menu-item h2 span,
.restaurant-menu-item p span {
  float: right;
  margin-left: 0.5rem;
  font-weight: 700;
  color: var(--primary-background);
}

.restaurant-menu-tab-title {
  padding: 1rem 0;
  margin: -1rem 0 0;
  border-bottom: 0.2rem solid #ededed;
  background: var(--primary-background);
  position: sticky;
  top: 0;
}

.restaurant-menu-tab-title h2 {
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
  .restaurant-menu-inner {
    max-width: 100%;
  }

  .restaurant-menu-categories {
    display: flex;
    padding-bottom: 47px;
    background: var(--azul);
    position: sticky;
    z-index: 2;
    overflow: scroll;
    width: 100%;
  }

  .restaurant-menu-categories>li>button {
    border-right: 0.2rem solid var(--creme);
    font-size: 20px !important;
    padding: 0 25px;
  }

  .restaurant-menu-categories>li:last-child>button {
    border-right: none;
  }

  .restaurant-menu-subcategories {
    position: absolute;
    top: 58px;
    left: 0;
    /* width: 100%; */
    overflow: auto;
    display: flex;
    scroll-behavior: smooth;
    background: var(--creme);
  }

  .restaurant-menu-subcategories>li {
    white-space: nowrap;
  }

  .restaurant-menu-inner h2.empty {
    margin: -3rem 0 0 0;
  }

  .restaurant-menu-tab-title {
    top: 9rem;
  }

  .restaurant-menu:after {
    width: 100vw !important;
    height: 100% !important;
    bottom: 0 !important;
    top: unset !important;
  }

  section#restaurant-menu {
    position: relative;
    min-height: 900px;
  }

  .restaurant-menu-tabs {
    margin: 50px 18px !important;
    z-index: 2;
    overflow: scroll;
    height: 469px;
  }

  .restaurant-menu-inner {
    max-width: 100%;
  }

  .restaurant-menu-subcategories>li>button {
    color: var(--azul);
  }

  .restaurant-menu-tabs-inner {
    padding: 0;
  }

  .restaurant-menu-items {
    width: 100%;
  }

  .restaurant-menu-items:last-child {
    padding: 0 0 30px 0;
  }
}

@media (min-width: 768px) {
  .restaurant-menu {
    padding: 60px 0 400px 0;
    position: relative;
    z-index: 1;
    height: 1120px;
    margin: 0 0 80px 0;
  }

  .restaurant-menu::before {
    content: "";
    background: url(../images/peixesnew.png);
    position: absolute;
    left: 5vw;
    width: 409px;
    height: 526px;
    background-size: cover;
    background-position: center;
    top: 85%;
    z-index: 2;
  }

  .restaurant-menu-inner {
    grid-template-columns: 2fr 4fr;
    gap: 40px;
    min-height: 596px;
  }

  .restaurant-menu-categories {
    top: 2rem;
    align-self: start;
  }

  .restaurant-menu-categories>li {
    margin-bottom: 1rem;
  }

  .restaurant-menu-categories>li>button {
    text-align: left;
  }

  .restaurant-menu-tabs {
    min-height: 76vh;
    padding: 4rem 2rem;
    z-index: 2;
    overflow: auto;
    max-height: 76vh;
  }

  .restaurant-menu-tabs-inner {
    padding: 0;
  }

  .restaurant-menu-inner h2.empty {
    min-height: 4.2rem;
  }
}

@media (min-width: 992px) {
  .page-template-page-menu .restaurant-menu-item {
    width: calc(50% - 1.5rem);
  }
}

@media (min-width: 1200px) {
  .page-template-page-menu .restaurant-menu-item {
    width: calc(33.33% - 2rem);
  }
}

button.restaurant-menu-category-button {
  font-size: 40px !important;
  line-height: 60px;
  text-transform: uppercase;
  color: #c0a88f !important;
}

.restaurant-menu:after {
  background: url(../images/box-menu.jpg);
  content: "";
  position: absolute;
  width: 84vw;
  height: 1120px;
  right: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  top: 0;
}

@media (max-width: 1700px) {
  .restaurant-menu:after {
    width: 95vw;
  }
}

.title__content a {
  background-color: #c0a88f;
  width: 300px;
  height: 300px;
  display: flex;
  border-radius: 100%;
  font-size: 35px;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: 0.05em;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Haboro Serif;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}

.title__content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  bottom: -18vh;
}

.title__content h2 b {
  color: #fff;
}

@media (max-width: 767px) {
  .title__content a {
    width: 206px;
    height: 206px;
  }

  .title__content h2 a {
    font-size: 22px;
    line-height: 27px;
  }

  .title__content {
    bottom: -12vh;
  }
  .hero .circle-content span {
    font-family: 'Barlow Condensed';
    top: 13px;
    font-size: 15px;
}
}