/*
Theme Name: Klevie
Theme URI:
Author: Klevie
Author URI: https://klevie.com/
Description: Tailor-made by Klevie
Version: 1.7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* GENERAL */
:root {
  --container: 1274px;
  --limit: 1680px;
  --text-white: #F5F5F5;
  --bg-white: #FFFFFF;
  --dark: #3D3D3C;
  --blue: #3A6670;
  --terracotta: #C16E52;
  --overlay-color: rgba(196, 196, 196, 1);
  --transition: all .35s ease-out;
  --gutter: calc(100vw - var(--container));
  --gutter-half : calc(var(--gutter) / 2);
}

*, *::before, *::after { box-sizing: border-box; }

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  font-family: 'Poppins', sans-serif;
}

h1 {
  position: absolute;
  left: -9999px;
  top: -9999px;
  font-size: 1px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.round-terra-btn {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  background-color: var(--terracotta);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 23px;
  padding: 10px 20px;
  text-decoration: none;
  width: fit-content;
  transition: var(--transition);
}

/* HEADER */
header {
  width: 100vw;
  left: 0;
  top: 0;
  z-index: 9999;
  position: fixed;
  background-color: var(--bg-white);
}

header .header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header-inner .right-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 35px;
}

header .header-inner .right-col .menu {
  display: flex;
  flex-direction: row;
  column-gap: 40px;
  align-items: center;
  list-style: none;
  padding-inline-start: 0;
  margin: 0 5px 0 0;
}

header .header-inner .right-col .menu li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 300;
  font-size: 16px;
  transition: var(--transition);
}

header .header-inner .right-col .menu li.current_page_item a {
  color: var(--terracotta);
  font-weight: 700;
}

header .header-inner .right-col .menu li.current_page_item.hover-azul a {
  color: var(--blue);
}

header .header-inner .right-col .menu li:hover a {
  color: var(--terracotta);
}

header .header-inner .right-col .menu li.hover-azul:hover a {
  color: var(--blue);
}

header .header-inner .right-col .actions {
  display: flex;
  flex-direction: row;
  column-gap: 40px;
  align-self: center;
}

header .header-inner .right-col .actions a.book-a-table {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-white);
  background-color: var(--terracotta);
  border-radius: 18px;
  padding: 1px 10px;
  text-decoration: none;
}

header .header-inner .right-col .actions a.delivery {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-white);
  background-color: var(--dark);
  border-radius: 18px;
  padding: 1px 10px;
  text-decoration: none;
}

header .header-inner .right-col>a {
  height: 18px;
}

header .header-inner .right-col #mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

header .mobile-menu {
  position: absolute;
  height: 100dvh;
  width: 100vw;
  left: 110vw;
  top: 0;
  transition: var(--transition);
  background-color: var(--bg-white);
  padding: 80px 40px;
  pointer-events: none;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}
header .mobile-menu.active {
  left: 0;
  pointer-events: auto;
}
header .mobile-menu ul.menu {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  list-style: none;
  padding-inline-start: 0;
  margin: 0;
  align-items: flex-end;
  padding: 0 10px;
}
header .mobile-menu ul.menu li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 400;
  font-size: 24px;
}
header .mobile-menu .actions>a {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-white);
  background-color: var(--terracotta);
  border-radius: 18px;
  padding: 4px 20px;
  text-decoration: none;
  width: fit-content;
}

/* FOOTER */
footer {
  background-color: var(--dark);
  padding: 40px 0;
}

footer .footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

footer .footer-inner .top {
  display: grid;
  grid-template-columns: 134px 170px 356px 101px 96px 1fr;
  grid-template-rows: auto;
  gap: 57px;
}
footer .footer-inner .top>* {
  min-width: 0;
}
footer .footer-inner .bottom {
  display: grid;
  grid-template-columns: 180px 380px;
  gap: 57px;
  margin-left: 191px;
}

footer .footer-inner>img.footer-logo {
  margin-right: 19px;
}

footer .footer-inner h2 {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
}

footer .footer-inner p {
  white-space: pre-wrap;
  word-wrap: break-word;
  color: var(--text-white);
  font-size: 15px;
  font-weight: 300;
  margin: 0;
}

footer .footer-inner ul {
  list-style: none;
  padding-inline-start: 0;
  margin: 0;
}

footer .footer-inner .bottom>a {
  text-decoration: none;
  color: var(--text-white);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition)
}

footer .footer-inner ul li a {
  text-decoration: none;
  color: var(--text-white);
  font-size: 15px;
  font-weight: 300;
  transition: var(--transition)
}

footer .footer-inner ul li:hover a,
footer .footer-inner>a:hover {
  color: var(--terracotta);
}

footer .footer-inner .socials {
  display: flex;
  flex-direction: row;
  column-gap: 15px;
}

/* SECÇÕES */
section.video-banner,
section.image-banner {
  max-width: var(--limit);
  margin: 0 auto;
  position: relative;
  line-height: 0;
  background-color: var(--dark);
}
section.video-banner video,
section.image-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
section.image-banner img {
  max-height: 748px;
}
section.video-banner .content,
section.image-banner .content {
  position: absolute;
  bottom: 92px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container);
  display: flex;
  line-height: normal;
  flex-direction: column;
  align-items: start;
  gap: 40px;
  z-index: 3;
}
section.video-banner .content h2,
section.image-banner .content h2 {
  font-size: 96px;
  line-height: 1;
  font-weight: 600;
  color: var(--text-white);
  margin: 0;
  text-transform: uppercase;
  max-width: 700px;
  text-shadow: 4px 8px 5px #00000040;
}
section.video-banner .content p,
section.image-banner .content p {
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
  color: var(--text-white);
  margin: 0; 
  max-width: 700px;
}
section.video-banner .overlay,
section.image-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}
section.video-banner .overlay-gradient,
section.image-banner .overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60.23%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: multiply;
}

section.content-half {
  display: flex;
  align-items: stretch;
  max-width: var(--limit);
  margin: 0 auto;
  background-color: var(--dark);
  overflow: hidden;
  height: clamp(500px, 35vw, 500px);
}
section.content-half img.image-col {
  width: auto;
  min-width: 0;
  flex: 0 0 50%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
section.content-half .content-col {
  width: auto;
  flex: 0 0 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 70px 80px 70px 44px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
section.content-half .content-col h2 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
  text-transform: uppercase;
}
section.content-half .content-col p,
section.content-half .content-col li {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  color: var(--text-white);
  margin: 0;
}
section.content-half .content-col a {
  font-size: 16px;
  line-height: 96px;
  font-weight: 700;
  border: none;
  outline: none;
  color: var(--text-white);
  background-repeat: no-repeat;
  text-decoration: none;
  text-align: center;
  padding: 6px 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

section.content-full {
  position: relative;
  background-color: var(--dark);
  max-width: var(--limit);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-repeat: no-repeat;
  background-size: cover;
}
section.content-full .overlay {
  background-color: #C4C4C4;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
section.content-full .content {
  max-width: var(--container);
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
section.content-full .content h2 {
  font-size: 48px;
  line-height: 57px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
  text-transform: uppercase;
}
section.content-full .content p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  color: var(--text-white);
  margin: 0;
}
section.content-full .content p>a {
  color: var(--text-white);
  text-decoration: underline;
  font-weight: 500;
}
section.content-full .content>a {
  font-size: 16px;
  line-height: 96px;
  font-weight: 700;
  border: none;
  outline: none;
  color: var(--text-white);
  background-repeat: no-repeat;
  background-size: cover;
  width: 227px;
  text-decoration: none;
  text-align: center;
  background-position: center;
  padding: 6px 36px;
}

section.slider {
  position: relative;
  max-width: var(--limit);
  margin: 55px auto 60px;
  background-color: var(--bg-white);
}
section.slider .top {
  display: grid;
  grid-template-columns: 49% 45.5%;
  gap: 5.37%;
  max-width: var(--container);
  margin: 0 auto 56px;
  justify-content: space-between;
}
section.slider .top h2 {
  font-size: 48px;
  line-height: 57px;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0;
  text-transform: uppercase;
}
section.slider .top p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  color: var(--dark);
  margin: 0;
}
section.slider .slider-content {
  max-width: calc(100vw - var(--gutter-half));
  margin-left: auto;
}
section.slider .slider-content .glide__slide img {
  width: 100%;
  object-fit: cover;
}
section.slider .slider-content .glide__arrows {
  position: absolute;
  top: -44px;
  right: 100px;
  display: flex;
  flex-direction: row;
  column-gap: 11px;
}
section.slider .slider-content .glide__arrows .glide__arrow {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
section.slider .slider-content .glide__arrows .glide__arrow--left img {
  transform: rotate(180deg);
}

section.banner-cta {
  position: relative;
  max-width: var(--limit);
  margin: 0 auto;
}
section.banner-cta .banner-cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  align-items: end;
  padding: 77px 0 101px;
  gap: 30px;
}
section.banner-cta.flex-variant .banner-cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: end;
  padding: 77px 0 101px;
  justify-content: space-between;
}
section.banner-cta h2 {
  font-size: 48px;
  line-height: 57px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
  text-transform: uppercase;
}
section.banner-cta.white-bg h2 {
  color: var(--text-dark);
}
section.banner-cta p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  color: var(--text-white);
  margin: 0;
}
section.banner-cta.flex-variant h2,
section.banner-cta.flex-variant p,
section.banner-cta.flex-variant a {
  color: inherit;
}
section.banner-cta.white-bg p {
  color: var(--text-dark);
}
section.banner-cta a {
  font-size: 16px;
  line-height: 96px;
  font-weight: 700;
  color: var(--text-white);
  border: none;
  outline: none;
  background-repeat: no-repeat;
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 8px;
}
section.banner-cta.white-bg a {
  color: var(--text-dark);
}

section.agenda {
  position: relative;
  max-width: var(--limit);
  margin: 64px auto 104px;
}
section.agenda h2 {
  font-size: 48px;
  line-height: 57px;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0 0 58px;
  text-align: center;
  text-transform: uppercase;
}
section.agenda .agenda-slider {
  max-width: calc(100vw - var(--gutter-half));
  margin-left: auto;
}
section.agenda .agenda-slider .glide__slide {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
section.agenda .agenda-slider .glide__slide img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}
section.agenda .agenda-slider .glide__slide h3 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  text-transform: uppercase;
}
section.agenda .agenda-slider .glide__slide p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  color: var(--dark);
  margin: 0;
}
section.agenda .agenda-slider .glide__slide span.date {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: var(--terracotta);
}
section.agenda .agenda-slider .glide__slide span.time {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: var(--terracotta);
}
section.agenda .agenda-slider .glide__arrows {
  position: absolute;
  bottom: -58px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  flex-direction: row;
  column-gap: 11px;
}
section.agenda .agenda-slider .glide__arrows .glide__arrow {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
section.agenda .agenda-slider .glide__arrows .glide__arrow--left img {
  transform: rotate(180deg);
}
section.agenda .agenda-slider--single .glide__slides {
  width: 100% !important;
  transform: none !important;
}
section.agenda .agenda-slider--single .glide__slide {
  flex: 0 0 calc((100% - 40px) / 3);
  width: calc((100% - 40px) / 3) !important;
}
@media (min-width: 1025px) {
  section.agenda .agenda-slider[data-event-count="2"] .glide__arrows,
  section.agenda .agenda-slider[data-event-count="3"] .glide__arrows {
    display: none;
  }
}

section.grelha-4 {
  position: relative;
  max-width: var(--container);
  margin: 80px auto;
}
section.grelha-4 h2 {
  font-size: 48px;
  line-height: 57px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 58px;
  text-align: left;
  text-transform: uppercase;
}
section.grelha-4 .grelha-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
section.grelha-4 .grelha-content .grelha-card {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
section.grelha-4 .grelha-content .grelha-card img {
  width: auto;
  height: 300px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
section.grelha-4 .grelha-content .grelha-card h3 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  text-transform: uppercase;
}
section.grelha-4 .grelha-content .grelha-card p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--dark);
  margin: 0;
}

section.banner-cta-vertical {
  position: relative;
  max-width: var(--limit);
  margin: 0 auto;
  padding: 70px 0;
  background-size: cover;
  display: flex;
  background-position: center;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
section.banner-cta-vertical h2 {
  font-size: 48px;
  line-height: 57px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
  text-transform: uppercase;
  max-width: 860px;
  text-align: center;
}
section.banner-cta-vertical p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  text-align: center;
  color: var(--text-white);
  max-width: 860px;
}
section.banner-cta-vertical a {
  font-size: 16px;
  line-height: 96px;
  font-weight: 700;
  color: var(--text-white);
  border: none;
  outline: none;
  background-repeat: no-repeat;
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 6px 36px;
}

section.contact {
  position: relative;
  max-width: var(--limit);
  margin: 0 auto;
}
section.contact .contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  max-width: var(--container);
  padding: 80px 0;
  margin: 0 auto;
}
section.contact .contact-inner .col-left {
  position: relative;
  margin-right: 20px;
}
section.contact .contact-inner .col-left img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 22% center;
}
section.contact .contact-inner .col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 40px;
}
section.contact .contact-inner .col-right h2 {
  font-size: 48px;
  line-height: 57px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  text-transform: uppercase;
}
section.contact .contact-inner .col-right .wysiwyg {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  color: var(--dark);
}
section.contact .contact-inner .col-right .wysiwyg strong {
  font-weight: 700;
}
section.contact .contact-inner .col-right a {
  font-size: 16px;
  line-height: 96px;
  font-weight: 700;
  color: var(--terracotta);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 1px 10px;
  text-decoration: none;
  width: fit-content;
  padding: 0px 40px;
}

section.grelha-2 {
  position: relative;
  max-width: var(--limit);
  margin: 80px auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
section.grelha-2 h2 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}
section.grelha-2 .grelha {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 24px;
}
section.grelha-2 .grelha .grelha-item {
  max-width: 295px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.grelha-2 .grelha .grelha-item img {
  width: 81px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 23px;
}
section.grelha-2 .grelha .grelha-item h3,
section.grelha-2 .grelha .grelha-item p {
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  color: var(--dark);
  margin: 0;
}
section.grelha-2 .grelha .grelha-item h3 {
  font-weight: 700;
}
section.grelha-2 .grelha .grelha-item p {
  font-weight: 300;
}

section.blog-grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 0 90px;
}
section.blog-grid .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 90px;
}
section.blog-grid .blog-post {
  min-width: 0;
}
section.blog-grid .blog-post a {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  height: 100%;
}
section.blog-grid .blog-post a>img {
  object-fit: cover;
  margin-bottom: 24px;
  width: 100%;
  height: auto;
}
section.blog-grid .blog-post a>span {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: var(--terracotta);
  text-decoration: none;
}
section.blog-grid .blog-post a>h3 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  text-decoration: none;
}
section.blog-grid .blog-post a>p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: var(--dark);
  margin: 0;
  text-decoration: none;
  margin-top: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
section.blog-grid .pagination {
  display: flex;
  justify-content: center;
  margin-top: 74px;
}
section.blog-grid .pagination ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  padding-inline-start: 0;
}
section.blog-grid .pagination ul li a {
  text-decoration: none;
  color: var(--dark);
  font-size: 16px;
  font-weight: 300;
  transition: var(--transition);
  padding: 16px;
}
section.blog-grid .pagination ul li a:hover {
  color: var(--terracotta);
}
section.blog-grid .pagination ul li.current span {
  color: var(--terracotta);
  font-weight: 700;
  background-image: url('./assets/img/Vector.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 16px;
}

section.items-em-grelha {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: var(--container);
  margin: 50px auto;
}
section.items-em-grelha h2 {
  font-size: 48px;
  line-height: 57px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 6px;
  text-align: center;
  text-transform: uppercase;
}
section.items-em-grelha p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  color: var(--dark);
  margin: 0;
  text-align: center;
}
section.items-em-grelha .items-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(24px, 32px, 32px);
  margin-top: 48px;
}
section.items-em-grelha .items-grid .item-da-grelha {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
section.items-em-grelha .items-grid .item-da-grelha img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}
section.items-em-grelha .items-grid .item-da-grelha p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  color: var(--dark);
  margin: 0;
}

#slider-overflow {
  position: relative;
  max-width: var(--limit);
  margin: 0 auto 50px;
}
#slider-overflow .background {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--limit);
  height: 480px;
  background-color: var(--blue);
}
#slider-overflow .content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto 48px;
  padding: 60px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  justify-content: space-between;
}
#slider-overflow .content h2 {
  font-size: 48px;
  line-height: 57px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 24px;
  text-align: left;
  text-transform: uppercase;
}
#slider-overflow .content>div * {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  color: var(--text-white);
  margin: 0;
}
#slider-overflow .slider-overflow-glide {
  position: relative;
  z-index: 2;
  max-width: var(--limit);
}
#slider-overflow .slider-overflow-glide .glide__arrows {
  position: absolute;
  top: -44px;
  max-width: var(--container);
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
#slider-overflow .slider-overflow-glide .glide__arrows .glide__arrow {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
#slider-overflow .slider-overflow-glide .glide__arrows .glide__arrow--left img {
  transform: rotate(180deg);
}
#slider-overflow .glide__slide img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

main.page-legal {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 0;
}
main.page-legal>h2.page-title {
  font-size: 48px;
  line-height: 57px;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0 0 58px;
  text-align: center;
  text-transform: uppercase;
}

#menu-close {
  position: absolute;
  font-size: 30px;
  line-height: 20px;
  height: 20px;
  top: 7px;
  right: 40px;
  color: var(--terracotta);
  font-weight: 600;
  background: none;
  border: none;
  padding: 10px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

@media (min-width: 1679px) {
  :root {
    --gutter: calc(var(--limit) - var(--container));
  }
}

@media (max-width: 1320px) {
  :root {
    --container: 90vw;
  }
  header .header-inner .right-col .menu {
    column-gap: 28px;
    margin: 0;
  }
  header .header-inner .right-col .actions {
    column-gap: 16px;
  }
  section.banner-cta h2,
  section.slider .top h2,
  section.content-full .content h2,
  section.banner-cta-vertical h2,
  section.contact .contact-inner .col-right h2 {
    font-size: 36px;
    line-height: 48px;
  }
  section.agenda .agenda-slider .glide__slide h3 {
    font-size: 26px;
    line-height: 34px;
  }
  section.video-banner .content h2, section.image-banner .content h2 {
    font-size: 82px;
    line-height: 1;
  }
  section.video-banner .content, section.image-banner .content {
    gap: 34px;
  }
  section.video-banner .content p, section.image-banner .content p {
    font-size: 32px;
  }
  section.content-half .content-col a {
    padding: 0;
  }
  section.grelha-4 .grelha-content .grelha-card {
    gap: 18px;
    min-width: 0;
  }
  section.grelha-4 .grelha-content .grelha-card h3 {
    font-size: 24px;
    line-height: 32px;
  }
  section.grelha-4 h2 {
    font-size: 36px;
    line-height: 48px;
    margin: 0 0 44px;
  }
  section.blog-grid .blog-post a>h3 {
    font-size: 26px;
    line-height: 34px;
  }
  footer .footer-inner .top {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  footer .footer-inner .bottom {
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  section.content-half{
    flex-direction: column!important;
  }
  section.content-half > img.image-col{
    order: 1;
    flex-basis: auto;
    width: 100%;
    height: 300px;
  }
  section.content-half > .content-col{
    order: 2;
    flex-basis: auto;
    width: 100%;
    padding: 40px 24px;
  }
  header .header-inner .right-col #mobile-menu-trigger {
    display: block;
  }
  header .header-inner .right-col .menu,
  header .header-inner .right-col .actions,
  header .header-inner .right-col>a {
    display: none;
  }
  section.content-half .content-col h2 {
    font-size: 32px;
    line-height: 40px;
  }
  section.banner-cta h2, 
  section.slider .top h2, 
  section.content-full .content h2, 
  section.banner-cta-vertical h2, 
  section.contact .contact-inner .col-right h2 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }
  section.slider .top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  section.content-full {
    max-height: 360px;
  }
  section.content-half .content-col h2 {
    font-size: 26px;
    line-height: 34px;
  }
  section.content-half {
    height: unset;
  }
  .page-content {
    margin-top: 13px;
  }
  section.video-banner .content, section.image-banner .content {
    gap: 14px;
    bottom: unset;
    top: 50%;
    padding: 0 24px;
    left: 0;
    transform: translateY(-50%);
  }
  section.video-banner .content p, section.image-banner .content p {
    font-size: 18px;
  }
  .round-terra-btn {
    font-size: 14px;
    padding: 4px 18px;
  }
  section.content-half .content-col a {
    font-size: 14px;
    line-height: 74px;
    max-width: 230px;
  }
  section.content-half .content-col h2 {
    font-size: 24px;
    line-height: 32px;
  }
  section.content-half .content-col p, 
  section.content-half .content-col li,
  section.content-full .content p,
  section.slider .top p {
    font-size: 14px;
    line-height: 26px;
  }
  section.content-half .content-col a {
    padding: 6px 20px;
  }
  section.banner-cta .banner-cta-inner {
    display: flex;
    flex-direction: column;
    padding: 70px 0;
    gap: 24px;
    align-items: center;
  }
  section.banner-cta p {
    font-size: 14px;
    line-height: 26px;
    text-align: center;
  }
  section.banner-cta a {
    font-size: 14px;
    line-height: 88px;
    max-width: 240px;
    width: 100%;
  }
  section.agenda h2 {
    font-size: 28px;
    line-height: 36px;
    margin: 0 0 46px;
  }
  section.agenda .agenda-slider .glide__slide h3 {
    font-size: 22px;
    line-height: 28px;
  }
  section.agenda .agenda-slider .glide__slide span.date, 
  section.agenda .agenda-slider .glide__slide p,
  section.agenda .agenda-slider .glide__slide span.time {
    font-size: 14px;
  }
  section.video-banner .content h2, section.image-banner .content h2 {
    font-size: 42px;
    line-height: 1;
  }
  section.grelha-4 .grelha-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  section.grelha-4 h2 {
    font-size: 26px;
    line-height: 1.2;
  }
  section.banner-cta-vertical {
    padding: 70px 24px;
  }
  section.banner-cta-vertical a {
    font-size: 14px;
    line-height: 88px;
    max-width: 210px;
  }
  section.banner-cta-vertical p {
    font-size: 14px;
    line-height: 26px;
    margin: 0;
  }
  section.image-banner img {
    max-height: 378px;
  }
  section.contact .contact-inner {
    grid-template-columns: 1fr;
    padding: 40px 0;
    gap: 60px;
  }
  section.contact .contact-inner .col-left {
    margin-right: 0;
  }
  section.contact .contact-inner .col-right {
    padding-left: 0;
  }
  section.banner-cta.flex-variant .banner-cta-inner {
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
  }
  section.blog-grid .posts-grid {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }
  footer .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 44px;
  }
  footer .footer-inner .socials {
    margin-left: 0;
  }

  section.items-em-grelha h2 {
    font-size: 24px;
    line-height: 1.2;
  }
  section.items-em-grelha p {
    font-size: 14px;
    line-height: 1.4;
  }
  section.items-em-grelha .items-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
    justify-items: center;
    row-gap: 40px;
    column-gap: 24px;
  }
  section.items-em-grelha .items-grid .item-da-grelha:last-child {
    grid-column: span 2;
  }
  section.items-em-grelha .items-grid .item-da-grelha {
    max-width: 128px;
  }

  #slider-overflow .content {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 24px;
  }
  #slider-overflow .content h2 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
  }
  #slider-overflow .background {
    width: 100%;
  }
  #slider-overflow .content>div * {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 300;
    color: var(--text-white);
    margin: 0;
    width: fit-content;
    text-align: left;
  }
  #slider-overflow .content>div {
    max-width: 400px;
  }
  #slider-overflow .content>div ul {
    padding-left: 20px;
  }
  footer .footer-inner .top {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 600px) {
  section.video-banner video {
    height: 380px;
  }
  section.content-half .content-col p br, 
  section.content-half .content-col li br,
  section.content-full .content p br,
  section.slider .top p br{
    display: none;
  }
}
/* MULTILINGUAL + TYPOGRAPHY UPDATE */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900 !important;
  text-transform: none !important;
}
.language-switcher ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.language-switcher li {
  display: flex;
  align-items: center;
}
.language-switcher li + li::before {
  content: '/';
  color: var(--dark);
  font-size: 13px;
  font-weight: 300;
  margin: 0 6px;
}
.language-switcher a {
  color: var(--dark);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}
.language-switcher a:hover,
.language-switcher li.is-current a {
  color: var(--terracotta);
}
.language-switcher li.is-current a {
  font-weight: 700;
}
.language-switcher--mobile {
  margin-top: auto;
  padding: 0 10px;
}
.language-switcher--mobile a {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .language-switcher--desktop {
    display: none;
  }
}
@media (min-width: 1025px) {
  .language-switcher--mobile {
    display: none;
  }
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* V1.4 — TRANSLATION-SAFE CTA LAYOUTS */
section.banner-cta-vertical a.menu-discover-cta {
  width: auto !important;
  min-width: 287px;
  max-width: calc(100% - 48px);
  min-height: 96px;
  line-height: 1.25;
  padding: 22px 42px;
  background-size: contain !important;
  background-position: center !important;
  white-space: normal;
}
section.banner-cta-vertical a.menu-discover-cta.button-style-botao3 {
  min-width: 236px;
}
section.meetings-proposal-cta .banner-cta-inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
}
@media (max-width: 1024px) {
  section.banner-cta-vertical a.menu-discover-cta {
    min-width: min(287px, calc(100% - 48px));
    min-height: 88px;
    line-height: 1.25;
    padding: 18px 30px;
  }
  section.meetings-proposal-cta .banner-cta-inner {
    display: flex;
  }
}

/* V1.6 — GLOBAL THEFORK RESERVATION POPUP */
body.reservation-popup-open {
  overflow: hidden;
}
.reservation-popup[hidden] {
  display: none !important;
}
.reservation-popup {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(61, 61, 60, .72);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.reservation-popup.is-open {
  opacity: 1;
  visibility: visible;
}
.reservation-popup__dialog {
  width: min(1060px, calc(100vw - 64px));
  height: min(820px, calc(100dvh - 64px));
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(58, 102, 112, .16);
  border-radius: 24px;
  background: var(--bg-white);
  box-shadow: 0 28px 90px rgba(33, 33, 32, .34);
  transform: translateY(14px) scale(.985);
  transition: transform .22s ease;
}
.reservation-popup.is-open .reservation-popup__dialog {
  transform: translateY(0) scale(1);
}
.reservation-popup__header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px 16px 26px;
  border-bottom: 1px solid rgba(58, 102, 112, .12);
  background: #F7F3EF;
}
.reservation-popup__heading {
  min-width: 0;
}
.reservation-popup__eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--terracotta);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .14em;
}
.reservation-popup__heading h2 {
  margin: 0;
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 900;
  text-transform: none;
}
.reservation-popup__close {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(58, 102, 112, .22);
  border-radius: 50%;
  background: var(--bg-white);
  color: var(--blue);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.reservation-popup__close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.reservation-popup__close:hover {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--text-white);
  transform: rotate(4deg);
}
.reservation-popup__close:focus-visible {
  outline: 3px solid rgba(193, 110, 82, .28);
  outline-offset: 3px;
}
.reservation-popup__body {
  min-height: 0;
  flex: 1;
  background: var(--bg-white);
}
.reservation-popup__body iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: var(--bg-white);
}
@media (max-width: 1024px) {
  .reservation-popup {
    padding: 20px;
  }
  .reservation-popup__dialog {
    width: 100%;
    height: calc(100dvh - 40px);
    min-height: 0;
    border-radius: 20px;
  }
}
@media (max-width: 600px) {
  .reservation-popup {
    align-items: stretch;
    padding: 0;
    background: var(--bg-white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .reservation-popup__dialog {
    width: 100vw;
    height: 100dvh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(10px);
  }
  .reservation-popup__header {
    min-height: 70px;
    padding: max(12px, env(safe-area-inset-top)) 14px 12px 18px;
  }
  .reservation-popup__eyebrow {
    font-size: 9px;
  }
  .reservation-popup__heading h2 {
    font-size: 20px;
  }
  .reservation-popup__close {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reservation-popup,
  .reservation-popup__dialog,
  .reservation-popup__close {
    transition: none;
  }
}

@media (max-width: 1024px) {
  section.agenda .agenda-slider--single .glide__slide {
    flex-basis: calc(100% - 40px);
    width: calc(100% - 40px) !important;
  }
}
@media (max-width: 768px) {
  section.agenda .agenda-slider--single .glide__slide {
    flex-basis: calc(100% - 20px);
    width: calc(100% - 20px) !important;
  }
}
