/* Font Face */
@font-face {
  font-family: 'Futura';
  src: url('futura-font.ttc') format('truetype-collection');
  font-weight: normal;
  font-style: normal;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Futura', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

h1,
h2 {
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* Hamburger Menu */
.hamburger {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.hamburger:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active {
  background: transparent;
  box-shadow: none;
}

.hamburger.active span {
  background: #fff;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 260px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 3rem 2rem 2rem;
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.menu-overlay.active {
  transform: translateX(0);
  pointer-events: all;
}

.menu-overlay-header {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}

.menu-overlay-logo {
  width: 100px;
  height: auto;
}

.menu-overlay-nav {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
}

.menu-overlay ul {
  list-style: none;
  text-align: center;
}

.menu-overlay li {
  margin: 0.8rem 0;
}



.menu-overlay a {
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  font-weight: 600;
  white-space: nowrap;
}

.menu-overlay a:hover {
  color: #999;
}

.menu-overlay-footer {
  text-align: left;
  flex-shrink: 0;
  margin-top: auto;
}

.menu-overlay-footer p {
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.menu-overlay-footer .instagram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.menu-overlay-footer .instagram-icon:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-overlay-footer .instagram-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}


.menu-overlay-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 0;
  flex-shrink: 0;
}

.menu-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.menu-icon-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-icon-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Language Selector */
.language-selector {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.language-selector span {
  color: #999;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.2rem;
  transition: all 0.3s ease;
  opacity: 0.4;
  position: relative;
}

.lang-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.lang-btn:hover {
  opacity: 0.7;
}

.lang-btn:hover::after {
  width: 60%;
}

.lang-btn.active {
  opacity: 1;
}

.lang-btn.active::after {
  width: 80%;
}

.lang-btn .flag-icon {
  font-size: 1.5rem;
  display: block;
  line-height: 1;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.lang-btn:hover .flag-icon,
.lang-btn.active .flag-icon {
  filter: grayscale(0%);
}
/* Hero Section */
.hero {
  background: #000;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  height: 100vh;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero .parallax-bg {
  height: 100%;
  background-attachment: fixed;
  background-position: center center;
}

.hero .parallax-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 25%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 75%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.hero-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-logo-img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-btn {
  background: #fff;
  color: #333;
  padding: 0.75rem 3rem;
  border: none;
  border-radius: 30px;
  font-family: 'Futura', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-top: -55px;
}

.hero-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.reservations-btn {
  margin-top: 1rem;
  display: inline-block;
  color: #fff;
  background-color: #000;
}

.reservations-btn:hover {
  background-color: #333;
  color: #fff;  
}

/* Reservations Section */
.reservations {
  background: #fff;
  color: #000;
  min-height: auto;
  padding: 6rem 2rem;
}

.reservations .section-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.reservations-text {
  flex: 1;
  text-align: left;
}

.reservations-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reservations-image img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
}

.reservations h2 {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.reservations-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.reservations-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-weight: 500;
  color: #333;
}

.reservations .contact-info .phone {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.reservations .contact-info .phone a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.reservations .contact-info .phone a:hover {
  opacity: 0.6;
}

.reservations .contact-info .hours {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #333;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: auto;
  height: 100vh;
}

.about .parallax-bg {
  z-index: 1;
  height: 100%;
}

.about .parallax-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.about-content {
  width: 100%;
  max-width: 700px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 2rem;
}

.about-box {
  background: #fff;
  padding: 1.8rem 2.5rem;
  max-width: 700px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.about-box h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.about-box .tagline {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-box p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
  text-align: justify;
}

/* Gallery Section */
.gallery {
  background: #f5f5f5;
  flex-direction: column;
  padding: 60px 0;
  min-height: auto;
  overflow: hidden;
}

.gallery h2 {
  display: none;
}

.gallery-slider {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-container {
  width: 100%;
  overflow: visible;
  position: relative;
}

.gallery-images {
  display: flex;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.gallery-slide {
  flex-shrink: 0;
  width: 850px;
  max-width: 55%;
  padding: 0 1%;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  filter: grayscale(100%);
  opacity: 0.4;
  transform: scale(0.95);
}

.gallery-slide.active {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1);
}

.gallery-slide img {
  width: 850px;
  max-width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-prev {
  left: 15%;
}

.gallery-next {
  right: 15%;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #c7c7c7;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: #222;
}

/* Contacts Section */
.contacts {
  position: relative;
  background: url('images/contacts.jpg') center/cover no-repeat;
  color: #fff;
  text-align: left;
  min-height: 100vh;
}

.contacts-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.contacts .section-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contacts h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-align: left;
}

.contacts .hours-header {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-align: left;
}

.contacts .hours-bold {
  font-weight: 700;
  text-transform: uppercase;
}

.contact-details {
  margin-bottom: 2.5rem;
  text-align: left;
}

.contact-details .phone {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.contact-details .phone a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}

.contact-details .phone a:hover {
  opacity: 0.7;
}

.contact-details .phone .phone-separator {
  margin: 0 0.3rem;
}

.contact-details .hours {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.contact-details .address {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.contact-details .address a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}

.contact-details .address a:hover {
  opacity: 0.7;
}

.contact-details .address .map-icon {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

.contact-details .email {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.contact-details .email a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}

.contact-details .email a:hover {
  opacity: 0.7;
}

.contact-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

/* Contacts Bottom Links - Square Cards */
.contacts-bottom-links {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.link-group {
  display: flex;
  align-items: flex-end;
  gap: 0;
  position: relative;
}

.link-group-single {
  gap: 0;
}

.link-group-triple {
  gap: 0;
}

.link-group-double {
  gap: 0;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.link-group-double .group-label {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  text-transform: lowercase;
  letter-spacing: 0.03em;
  margin-top: 0.4rem;
  color: #fff;
}

.bottom-link-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.bottom-link-box:hover {
  opacity: 0.8;
}

.box-square {
  width: 90px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.box-square.big img {
  height: 100px;
  width: 60px;
}

.bottom-link-box:hover .box-square {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.box-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.bottom-link-box > span {
  font-size: 0.75rem;
  text-transform: lowercase;
  letter-spacing: 0.03em;
  margin-top: 0.4rem;
  text-align: center;
}

.saiba-mais {
  font-size: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.social-link {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  opacity: 0.7;
}

.social-link.instagram svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.social-link.text-link {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    width: 45px;
    height: 45px;
    top: 1rem;
    right: 1rem;
  }

  .hamburger span {
    width: 18px;
  }

  .hero-logo-img {
    max-width: 200px;
  }

  .hero-btn {
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
  }

  .reservations .section-content {
    flex-direction: column;
    text-align: center;
  }

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

  .reservations-image {
    order: -1;
    margin-bottom: 2rem;
  }

  .reservations h2,
  .contacts h2,
  .gallery h2 {
    font-size: 1.2rem;
  }

  .reservations-title {
    font-size: 1.2rem;
  }

  .reservations .contact-info .phone,
  .contact-details .phone {
    font-size: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .social-link.text-link {
    font-size: 0.9rem;
  }

  .about-box {
    padding: 1.5rem 2rem;
    margin: 0 1rem;
  }

  .about-box h2 {
    font-size: 1.5rem;
  }

  .about-box .tagline {
    font-size: 1rem;
  }

  .about-content {
    bottom: 2rem;
    padding: 1rem;
  }

  .gallery-slide {
    max-width: 70%;
  }

  .gallery-slide img {
    height: 350px;
  }

  .gallery-prev {
    left: 5%;
  }

  .gallery-next {
    right: 5%;
  }

  .gallery-prev,
  .gallery-next {
    width: 38px;
    height: 38px;
  }

  .menu-overlay {
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .menu-overlay a {
    font-size: 1rem;
  }

  .menu-overlay-logo {
    width: 80px;
  }

  .menu-overlay li {
    margin: 0.6rem 0;
  }

  .menu-overlay-icons {
    gap: 0.6rem;
    padding: 1rem 0;
  }

  .menu-icon-link {
    width: 40px;
    height: 40px;
  }

  .menu-icon-link img {
    width: 24px;
    height: 24px;
  }

  .related-links .links {
    flex-direction: column;
    gap: 1rem;
  }

  .contacts-bottom-links {
    gap: 1.5rem;
    justify-content: center;
  }

  .box-square {
    width: 60px;
    height: 60px;
  }

  .box-icon {
    width: 30px;
    height: 30px;
  }

  .bottom-link-box > span,
  .link-group-double .group-label {
    font-size: 0.7rem;
  }

  .contacts .section-content {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .hamburger {
    width: 42px;
    height: 42px;
  }

  .hamburger span {
    width: 16px;
  }

  .hero-logo-img {
    max-width: 160px;
  }

  .hero-btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
  }

  section {
    padding: 1.5rem;
  }

  .about-box {
    padding: 1.2rem 1.5rem;
  }

  .about-content {
    bottom: 1.5rem;
    padding: 0.5rem;
  }

  .about-box .tagline {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .about-box p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .gallery-slide {
    max-width: 85%;
  }

  .gallery-slide img {
    height: 280px;
  }

  .gallery-prev,
  .gallery-next {
    width: 32px;
    height: 32px;
  }

  .gallery-prev {
    left: 2%;
  }

  .gallery-next {
    right: 2%;
  }

  .reservations {
    padding: 4rem 1.5rem;
  }

  .reservations h2 {
    font-size: 1.1rem;
  }

  .reservations-title {
    font-size: 1.1rem;
  }

  .reservations .contact-info .phone {
    font-size: 1.1rem;
  }
}
