@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,700&display=swap');

:root {
  --bg:        #060504;
  --surface:   #0d0a07;
  --surface2:  #141009;
  --border:    #201810;
  --text:      #f0e4cc;
  --muted:     #5a4e3e;
  --muted2:    #8c7a65;
  --gold:      #c49a38;
  --gold-bright: #ddb550;
  --gold-dim:  #1e1606;
  --red:       #a83030;
  --red-dim:   #1a0808;
  --radius:    6px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── GRAIN OVERLAY ── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── FLOATING ACTIONS ── */
.float-actions {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s;
}
.float-actions.visible { opacity: 1; transform: none; pointer-events: auto; }
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.6);
}
.float-btn:hover { transform: translateY(-2px); }
.float-reserve {
  padding: 13px 22px;
  background: var(--gold);
  color: var(--bg);
}
.float-wpp {
  width: 50px; height: 50px;
  padding: 0;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 6%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(6,5,4,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}
.nav-logo img { height: 36px; object-fit: contain; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: 3px;
  color: var(--bg);
}
.nav-links .nav-cta:hover { background: var(--gold-bright); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 201;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); transition: 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 7% 80px;
  position: relative;
  z-index: 1;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-photo-wrap {
  position: absolute;
  inset: 0;
  animation: heroIn 1.6s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes heroIn {
  from { transform: scale(1.08); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.hero-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 25%),
              linear-gradient(180deg, rgba(6,5,4,0.3) 0%, rgba(6,5,4,0.5) 100%);
}
.hero-badge {
  position: absolute;
  bottom: 48px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeUp 1s 0.9s both;
}
.hb-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  opacity: 0.7;
}
.hb-line { width: 1px; height: 32px; background: var(--gold); opacity: 0.4; }
.hb-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted2);
  text-align: center;
  line-height: 1.7;
}

.hero-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0s both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.6rem, 5.5vw, 6.8rem);
  font-weight: 300;
  line-height: 0.92;
  color: var(--text);
  margin-bottom: 32px;
}
.ht-wrap {
  display: block;
  overflow: hidden;
}
.ht-italic { font-style: italic; color: var(--gold); }
.ht-inner {
  display: block;
  transform: translateY(105%);
  animation: titleIn 1.1s cubic-bezier(0.16,1,0.3,1) both;
}
.ht-wrap:nth-child(1) .ht-inner { animation-delay: 0.1s; }
.ht-wrap:nth-child(2) .ht-inner { animation-delay: 0.22s; }
.ht-wrap:nth-child(3) .ht-inner { animation-delay: 0.34s; }
@keyframes titleIn {
  to { transform: translateY(0); }
}
.hero-sub {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.55s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.7s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: fadeUp 1s 1s both;
}
.hs-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity:1; }
  55%  { transform: scaleY(1); transform-origin: top; opacity:1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity:0; }
}
.hero-scroll span {
  font-size: 0.56rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 15px 36px;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text);
  padding: 14px 36px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.18);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.04); }
.btn-full { width: 100%; text-align: center; margin-top: 8px; }

/* ── SECTION COMMONS ── */
.section-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
}
.section-line {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto 0;
}
.section-header { text-align: center; margin-bottom: 64px; }

/* ── STATS STRIP ── */
.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 6%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 48px;
  gap: 4px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted2);
}
.stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── STORY SECTION ── */
.story-section {
  padding: 110px 7%;
  background: var(--bg);
}
.story-inner { max-width: 1100px; margin: 0 auto; }
.story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  text-align: center;
  margin: 20px 0 72px;
  font-style: normal;
}
.story-quote em { font-style: italic; color: var(--gold); }
.story-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.story-col { text-align: center; }
.story-ornament {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
  opacity: 0.7;
}
.story-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.story-col p {
  font-size: 0.85rem;
  color: var(--muted2);
  line-height: 1.75;
}

/* ── DESTAQUES ── */
.destaques-section {
  padding: 100px 7%;
  background: var(--surface);
}
.destaques-header { text-align: center; margin-bottom: 80px; }

.destaque-item {
  display: grid;
  grid-template-columns: 55fr 45fr;
  max-width: 1180px;
  margin: 0 auto 100px;
  align-items: center;
  gap: 0;
}
.destaque-item:last-child { margin-bottom: 0; }
.destaque-item.reverse { grid-template-columns: 45fr 55fr; }
.destaque-item.reverse .dest-photo { order: 2; }
.destaque-item.reverse .dest-content { order: 1; }

.dest-photo {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.dest-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
}
.destaque-item:hover .dest-photo img {
  transform: scale(1.04);
  filter: brightness(1);
}
.dest-content {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.destaque-item.reverse .dest-content { padding: 56px 64px 56px 0; }
.destaque-item:not(.reverse) .dest-content { padding: 56px 0 56px 64px; }

.dest-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.dest-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
}
.dest-desc {
  font-size: 0.88rem;
  color: var(--muted2);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 400px;
}
.dest-from {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.dest-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 28px;
}

/* ── CARDÁPIO ── */
.cardapio-section {
  padding: 100px 7%;
  background: var(--bg);
}
.tabs-wrap {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
  padding-bottom: 2px;
}
.tabs-wrap::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0;
  padding: 9px 20px;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted2);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text); border-color: var(--muted); }
.tab-btn.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.tab-panel { display: none; max-width: 1100px; margin: 0 auto; }
.tab-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  column-gap: 56px;
}
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.menu-row:last-child { border-bottom: none; }
.menu-name { font-size: 0.87rem; color: var(--text); flex: 1; }
.menu-desc { font-size: 0.72rem; color: var(--muted); display: block; margin-top: 2px; }
.menu-price { font-size: 0.82rem; color: var(--gold); font-weight: 700; white-space: nowrap; }
.menu-note {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 36px;
  text-align: center;
  border: 1px solid var(--border);
  padding: 20px 24px;
  border-radius: var(--radius);
}
.menu-section-title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 36px 0 10px;
  grid-column: 1 / -1;
}
.menu-section-title:first-child { margin-top: 0; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.menu-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.menu-card:hover { border-color: rgba(196,154,56,0.3); transform: translateY(-2px); }
.menu-card.featured { border-color: rgba(196,154,56,0.35); background: var(--gold-dim); }
.card-tag {
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.festival-tag { color: var(--red); }
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 5px;
}
.card-sub { font-size: 0.76rem; color: var(--muted2); }
.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  margin: 14px 0 16px;
  line-height: 1;
}
.card-cta {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}
.card-cta:hover { color: var(--text); }
.festival-card { background: var(--red-dim); border-color: rgba(168,48,48,0.2); }
.festival-card .card-price { color: var(--text); }
.festival-card .card-cta { color: #c87070; }
.festival-card.featured-fest { border-color: rgba(168,48,48,0.5); }

/* ── GALERIA ── */
.galeria-section {
  padding: 100px 7%;
  background: var(--surface);
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
}
.gal-item { overflow: hidden; cursor: zoom-in; }
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: transform 0.6s ease, filter 0.35s;
}
.gal-item:hover img { transform: scale(1.06); filter: brightness(1); }
.gal-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gal-item:nth-child(8) { grid-column: span 2; grid-row: span 2; }
.gal-item:nth-child(11) { grid-column: span 2; }
.gal-item:nth-child(12) { grid-column: span 2; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}
.lb-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none; border: none;
  color: var(--muted2); font-size: 2.4rem;
  cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.lb-close:hover { color: var(--text); }
.lb-nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.07);
  border: none; color: var(--text);
  font-size: 1.8rem; padding: 18px 14px;
  cursor: pointer; transition: background 0.2s;
  border-radius: 4px;
}
.lb-nav:hover { background: rgba(255,255,255,0.14); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ── RESERVAS ── */
.reservas-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.reservas-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.reservas-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.22);
}
.reservas-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6,5,4,0.85) 40%, rgba(6,5,4,0.5) 100%);
}
.reservas-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 7%;
  width: 100%;
}
.reservas-left { display: flex; flex-direction: column; justify-content: center; }
.reservas-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin: 14px 0 40px;
}
.reservas-title em { font-style: italic; color: var(--gold); display: block; }
.reservas-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.reservas-info li { display: flex; align-items: center; gap: 14px; }
.ri-dot { color: var(--gold); font-size: 0.5rem; flex-shrink: 0; }
.reservas-info span:last-child { font-size: 0.87rem; color: var(--muted2); }
.reservas-note {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.reservas-right { display: flex; align-items: center; }
.form-card {
  width: 100%;
  background: rgba(13,10,7,0.9);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(196,154,56,0.15);
  border-radius: 8px;
  padding: 44px 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 8px;
}
.label-opt { font-weight: 300; text-transform: none; letter-spacing: 0; }
.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238c7a65' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255,255,255,0.04);
}
.form-group select option { background: #141009; }
.form-msg {
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 0.83rem;
  margin-bottom: 18px;
  display: none;
}
.form-msg.ok  { display: block; background: rgba(41,173,125,0.1); border: 1px solid rgba(41,173,125,0.3); color: #4ecba0; }
.form-msg.err { display: block; background: var(--red-dim); border: 1px solid rgba(168,48,48,0.35); color: #e07070; }

/* ── CONTATO ── */
.contato-section { padding: 100px 7%; background: var(--bg); }
.contato-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto 60px;
}
.contato-block h3 {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.contato-block p { font-size: 0.87rem; color: var(--muted2); line-height: 2.2; }
.contato-block .big { font-size: 1.05rem; color: var(--text); }
.contato-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--gold);
  transition: color 0.2s;
}
.contato-link:hover { color: var(--text); }
.social-row { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 4px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s;
}
.social-link.wpp  { background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.2); color: #25d366; }
.social-link.wpp:hover  { background: rgba(37,211,102,0.15); }
.social-link.insta { background: rgba(225,48,108,0.08); border: 1px solid rgba(225,48,108,0.2); color: #e1306c; }
.social-link.insta:hover { background: rgba(225,48,108,0.15); }
.mapa-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}
.mapa-embed iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.5) brightness(0.6); }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 36px 7%;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-logo img { height: 28px; opacity: 0.4; }
.footer-center { text-align: center; }
.footer-center p { font-size: 0.72rem; color: var(--muted); line-height: 1.9; }
.footer-email { font-size: 0.72rem; color: var(--muted); transition: color 0.2s; }
.footer-email:hover { color: var(--muted2); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .destaque-item,
  .destaque-item.reverse { grid-template-columns: 1fr; }
  .destaque-item .dest-photo,
  .destaque-item.reverse .dest-photo { order: 1; aspect-ratio: 16/9; }
  .destaque-item .dest-content,
  .destaque-item.reverse .dest-content { order: 2; padding: 40px 0 !important; }
  .reservas-inner { grid-template-columns: 1fr; gap: 48px; }
  .reservas-title { font-size: clamp(2.4rem, 6vw, 3.4rem); }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 130px 6% 50px; }
  .hero-right { height: 340px; }
  .hero-photo-overlay {
    background: linear-gradient(0deg, var(--bg) 0%, transparent 50%),
                linear-gradient(180deg, rgba(6,5,4,0.6) 0%, transparent 50%);
  }
  .hero-badge { bottom: 20px; right: 20px; }
  .story-cols { grid-template-columns: 1fr; gap: 40px; }
  .contato-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-strip { gap: 0; }
  .stat-item { padding: 10px 24px; }
  .stat-div { height: 28px; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg);
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 200;
  }
  .nav-links.open a { font-size: 1rem; }
  .galeria-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 160px; }
  .gal-item:nth-child(1)  { grid-column: span 2; grid-row: span 1; }
  .gal-item:nth-child(8)  { grid-column: span 2; grid-row: span 1; }
  .gal-item:nth-child(11) { grid-column: span 1; }
  .gal-item:nth-child(12) { grid-column: span 1; }
  .contato-cols { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-strip { flex-direction: column; gap: 4px; }
  .stat-div { width: 40px; height: 1px; }
  .stat-item { padding: 8px 0; }
  footer .footer-inner { flex-direction: column; text-align: center; }
  .float-reserve { display: none; }
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .reservas-inner { padding: 80px 5%; }
}
