/* =========================================================
   Spontanea — Design tokens
========================================================= */
:root {
  --bg: #0b0b0c;
  --bg-alt: #131315;
  --surface: #19191c;
  --surface-2: #212124;
  --border: rgba(255, 255, 255, 0.09);
  --text: #f6f3ea;
  --text-muted: #b6b0a4;
  --text-faint: #8a847a;
  --gold: #cda449;
  --gold-light: #e6c876;
  --green: #3a8d43;
  --red: #c1272d;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1220px;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-script: 'Dancing Script', cursive;
  --ff-body: 'Manrope', 'Segoe UI', sans-serif;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; margin: 0 0 .5em; line-height: 1.18; letter-spacing: -0.012em; }
p { margin: 0 0 1em; color: var(--text-muted); }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: #1a1305; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 10px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 14px;
}
.kicker::before, .kicker::after { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head p { font-size: 17px; }

.deco-dots {
  position: absolute; pointer-events: none;
  width: 132px; height: 132px;
  background-image: radial-gradient(circle, rgba(205,164,73,.35) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
}
.deco-dots.top-right { top: 18px; right: 4%; }
.deco-dots.bottom-left { bottom: 10px; left: 3%; }
@media (max-width: 780px) { .deco-dots { width: 90px; height: 90px; background-size: 13px 13px; opacity: .7; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px; border-radius: 100px; border: 1px solid transparent;
  font-weight: 700; font-size: 14.5px; letter-spacing: .2px; text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
  cursor: pointer; max-width: 100%;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #201502; box-shadow: 0 4px 14px rgba(205, 164, 73, .16); }
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(205, 164, 73, .24); }
.btn-outline { border-color: rgba(255,255,255,.24); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(205,164,73,.06); }
.btn-whatsapp { background: #25D366; color: #06210f; }
.btn-whatsapp:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(37,211,102,.2); }
.btn-sm { padding: 10px 22px; font-size: 13px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* =========================================================
   Preloader
========================================================= */
body.is-loading { overflow: hidden; }
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  background: radial-gradient(ellipse at 30% 20%, rgba(205,164,73,.14), transparent 55%),
              radial-gradient(ellipse at 80% 80%, rgba(58,141,67,.12), transparent 50%),
              linear-gradient(160deg, #0b0b0c 0%, #141416 60%, #0b0b0c 100%);
  transition: opacity .6s ease, visibility .6s ease;
  animation: preloader-autohide 0s 7.5s forwards;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes preloader-autohide { to { opacity: 0; visibility: hidden; pointer-events: none; } }

.preloader-ring {
  position: relative; width: 116px; height: 116px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(205,164,73,.22);
}
.preloader-ring::before {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid transparent; border-top-color: var(--gold); border-right-color: var(--gold-light);
  animation: preloader-spin 1s linear infinite;
}
.preloader-pizza {
  width: 92px; height: 92px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 3px rgba(11,11,12,.9), 0 8px 26px rgba(205,164,73,.35);
  animation: preloader-spin 2.6s linear infinite;
}
@keyframes preloader-spin { to { transform: rotate(360deg); } }

.preloader-brand { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.preloader-brand .preloader-logo { height: 40px; width: auto; opacity: .95; }
.preloader-brand .brand-text { font-size: 26px; }

.preloader-bar { width: 140px; height: 3px; border-radius: 100px; background: rgba(255,255,255,.08); overflow: hidden; }
.preloader-bar span {
  display: block; height: 100%; width: 40%; border-radius: 100px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: preloader-bar-slide 1.1s ease-in-out infinite;
}
@keyframes preloader-bar-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}


/* =========================================================
   Header
========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  display: flex; align-items: center;
  background: linear-gradient(to bottom, rgba(11,11,12,.85), transparent);
  transition: background .35s ease, height .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(11, 11, 12, .88);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: baseline; gap: 8px; }
.brand img.brand-logo { height: 58px; width: auto; display: block; }
.footer-logo { height: 108px; width: auto; display: block; margin-bottom: 4px; }
.brand-text { font-family: var(--ff-script); font-size: 34px; line-height: 1; display: inline-flex; align-items: baseline; }
.brand-text .s-accent-top { color: var(--green); }
.brand-text .s-accent-bottom { color: var(--red); }
.brand-sub { display: block; font-family: var(--ff-body); font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-faint); margin-top: -4px; text-align: center; }

.main-nav { display: flex; align-items: center; gap: 38px; }
.main-nav a {
  font-size: 14px; font-weight: 500; letter-spacing: .3px; color: var(--text);
  position: relative; padding: 6px 0; opacity: .88;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: width .3s ease;
}
.main-nav a:hover { opacity: 1; }
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; z-index: 1001;
}
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Outdoor / Hero banner de destaque
========================================================= */
.outdoor {
  position: relative; margin-top: 0; min-height: 100vh;
  display: flex; align-items: center;
  background: radial-gradient(ellipse at 30% 20%, rgba(205,164,73,.16), transparent 55%),
              radial-gradient(ellipse at 80% 80%, rgba(58,141,67,.14), transparent 50%),
              linear-gradient(160deg, #0b0b0c 0%, #141416 60%, #0b0b0c 100%);
  overflow: hidden;
  padding-top: var(--header-h);
  animation: outdoor-ambient 16s ease-in-out infinite alternate;
}
@keyframes outdoor-ambient {
  0% { background-position: 0 0, 0 0, 0 0; filter: brightness(1); }
  100% { background-position: 4% -3%, -4% 3%, 0 0; filter: brightness(1.05); }
}
.outdoor-spotlight {
  position: absolute; z-index: 2; pointer-events: none; border-radius: 50%;
  top: 50%; left: 50%; width: min(72vw, 900px); height: min(72vw, 900px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,205,120,.32) 0%, rgba(255,205,120,.14) 32%, transparent 68%);
  filter: blur(6px); mix-blend-mode: screen;
  animation: spotlight-breathe 7s ease-in-out infinite;
}
@keyframes spotlight-breathe {
  0%, 100% { opacity: .75; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
.bokeh { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; mix-blend-mode: screen; }
.bokeh span {
  position: absolute; border-radius: 50%; filter: blur(3px);
  animation-name: bokeh-float; animation-timing-function: ease-in-out; animation-iteration-count: infinite;
}
@keyframes bokeh-float {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .35; }
  50% { transform: translate3d(var(--bx,18px), var(--by,-22px), 0) scale(1.15); opacity: .7; }
}
@keyframes outdoor-kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1%, -1%); }
}
.outdoor-doodles { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; color: rgba(205,164,73,.4); }
.doodle-ring {
  position: absolute; border-radius: 50%; border: 2px solid rgba(205,164,73,.4);
  animation: doodle-float 8s ease-in-out infinite;
}
.doodle-ring.r1 { width: 26px; height: 26px; top: 22%; left: 7%; }
.doodle-ring.r2 { width: 14px; height: 14px; top: 66%; left: 92%; border-color: rgba(58,141,67,.45); animation-delay: -3s; }
.doodle-dot { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); opacity: .55; animation: doodle-float 6s ease-in-out infinite; }
.doodle-dot.d1 { top: 16%; left: 88%; }
.doodle-dot.d2 { top: 78%; left: 10%; background: var(--red); animation-delay: -2s; }
.doodle-dot.d3 { top: 42%; left: 4%; animation-delay: -4s; }
.doodle-squiggle { position: absolute; width: 90px; height: 30px; animation: doodle-float 9s ease-in-out infinite; }
.doodle-squiggle.s1 { top: 30%; left: 90%; animation-delay: -1.5s; }
.doodle-squiggle.s2 { top: 82%; left: 6%; transform: scaleX(-1); animation-delay: -5s; }
@keyframes doodle-float {
  0%, 100% { transform: translate(0,0); opacity: .55; }
  50% { transform: translate(6px,-10px); opacity: .9; }
}
.dust-layer { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; }
.dust-layer span {
  position: absolute; top: -8%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.9), rgba(255,255,255,0) 70%);
  opacity: 0; animation-name: dust-fall; animation-timing-function: linear; animation-iteration-count: infinite;
}
@keyframes dust-fall {
  0% { transform: translate3d(0,0,0); opacity: 0; }
  8% { opacity: .75; }
  85% { opacity: .35; }
  100% { transform: translate3d(14px,118vh,0); opacity: 0; }
}
.embers { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; mix-blend-mode: screen; }
.embers span {
  position: absolute; bottom: -6%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,196,110,.95), rgba(205,164,73,0) 70%);
  opacity: 0; animation-name: ember-rise; animation-timing-function: ease-in; animation-iteration-count: infinite;
}
@keyframes ember-rise {
  0% { transform: translate3d(0,0,0); opacity: 0; }
  15% { opacity: .8; }
  100% { transform: translate3d(-18px,-105vh,0); opacity: 0; }
}
.outdoor-inner { position: relative; z-index: 3; width: 100%; padding-top: 40px; padding-bottom: 70px; }
.outdoor-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: center; }
.outdoor-copy { text-align: left; }
.outdoor-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--red), #8f1418);
  color: #fff; font-weight: 700; font-size: 12.5px; letter-spacing: 2px;
  text-transform: uppercase; padding: 9px 20px; border-radius: 100px;
  box-shadow: 0 4px 14px rgba(193,39,45,.22); margin-bottom: 26px;
  animation: pulse-badge 3s ease-in-out infinite;
}
@keyframes pulse-badge { 0%,100% { box-shadow: 0 4px 14px rgba(193,39,45,.22);} 50% { box-shadow: 0 5px 18px rgba(193,39,45,.35);} }
.outdoor h1 {
  font-size: clamp(32px, 4.6vw, 58px); margin: 0 0 20px;
  background: linear-gradient(135deg, #fff, var(--gold-light) 60%, var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.outdoor .outdoor-subtitle { font-size: clamp(15px, 1.6vw, 18px); max-width: 480px; margin: 0 0 40px; color: var(--text-muted); }
.outdoor-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.outdoor-play {
  display: inline-flex; align-items: center; gap: 12px; background: none; border: none;
  color: var(--text); font-weight: 600; font-size: 14.5px; cursor: pointer; padding: 4px 4px 4px 0;
}
.outdoor-play-icon {
  flex: none; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(205,164,73,.14); border: 1px solid rgba(205,164,73,.4); color: var(--gold-light); font-size: 13px;
  transition: background .25s ease, transform .25s ease;
}
.outdoor-play:hover .outdoor-play-icon { background: var(--gold); color: #201502; transform: scale(1.08); }

.outdoor-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.outdoor-photo-ring {
  position: relative; width: min(100%, 560px); aspect-ratio: 1/1; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.outdoor-photo-ring::before {
  content: ''; position: absolute; inset: -18px; border-radius: 50%;
  border: 1px dashed rgba(205,164,73,.35);
  animation: outdoor-ring-spin 40s linear infinite;
}
.outdoor-photo-ring::after {
  content: ''; position: absolute; inset: -34px; border-radius: 50%;
  background: radial-gradient(circle, rgba(205,164,73,.22), transparent 70%);
  filter: blur(4px); z-index: -1;
}
@keyframes outdoor-ring-spin { to { transform: rotate(360deg); } }
.outdoor-photo {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,.55), 0 0 0 6px rgba(11,11,12,.9), 0 0 0 7px rgba(205,164,73,.3);
  animation: outdoor-kenburns 20s ease-in-out infinite alternate;
}
.outdoor-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 3;
  color: var(--text-faint); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.outdoor-scroll .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: scroll-line 1.8s ease-in-out infinite; }
@keyframes scroll-line { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* =========================================================
   Carrossel
========================================================= */
.carousel-section { padding-top: 90px; padding-bottom: 100px; }
.carousel { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.carousel-track { display: flex; transition: transform .6s cubic-bezier(.65,0,.35,1); }
.carousel-slide { min-width: 100%; position: relative; aspect-ratio: 16/8; background: var(--surface); }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-slide .slide-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 50px 48px 34px;
  background: linear-gradient(to top, rgba(0,0,0,.94) 0%, rgba(0,0,0,.8) 40%, rgba(0,0,0,.25) 80%, transparent 100%);
}
.slide-caption h3 { color: #fff; font-size: clamp(20px, 3vw, 30px); margin-bottom: 6px; text-shadow: 0 2px 10px rgba(0,0,0,.7); }
.slide-caption p { color: rgba(255,255,255,.85); margin: 0; font-size: 14px; text-shadow: 0 1px 6px rgba(0,0,0,.7); }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  background: rgba(11,11,12,.5); backdrop-filter: blur(6px); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: background .25s ease, border-color .25s ease;
}
.carousel-arrow:hover { background: var(--gold); color: #201502; border-color: var(--gold); }
.carousel-arrow.prev { left: 18px; }
.carousel-arrow.next { right: 18px; }
.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.carousel-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--surface-2); padding: 0; transition: all .3s ease; }
.carousel-dots button.active { background: var(--gold); width: 26px; border-radius: 6px; }

/* =========================================================
   Sobre
========================================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media .frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/5; border: 1px solid var(--border);
}
.about-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-media .badge-float {
  position: absolute; bottom: -22px; right: -22px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 26px;
  box-shadow: var(--shadow); text-align: center;
}
.about-media .badge-float strong { display: block; font-family: var(--ff-display); font-size: 30px; color: var(--gold); }
.about-media .badge-float span { font-size: 12px; color: var(--text-faint); letter-spacing: 1px; text-transform: uppercase; }
.about-text h2 { font-size: clamp(28px, 4vw, 40px); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0 34px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: rgba(205,164,73,.12); color: var(--gold); font-size: 19px; border: 1px solid rgba(205,164,73,.25);
}
.feature-item h4 { font-size: 15px; margin: 0 0 3px; }
.feature-item p { font-size: 13.5px; margin: 0; }

/* =========================================================
   Cardápio
========================================================= */
.menu-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; flex-wrap: wrap; }
.menu-tab {
  background: var(--surface); border: 1px solid var(--border); color: var(--text-muted);
  padding: 11px 26px; border-radius: 100px; font-size: 14px; font-weight: 600; transition: all .25s ease;
}
.menu-tab:hover { color: var(--text); border-color: var(--gold); }
.menu-tab.active { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #201502; border-color: transparent; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.menu-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: none;
}
.menu-card.is-visible { display: flex; flex-direction: column; }
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(205,164,73,.35); }
.menu-card .card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.menu-card .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.menu-card:hover .card-media img { transform: scale(1.08); }
.menu-card .card-badge {
  position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  padding: 6px 13px; border-radius: 100px;
}
.menu-card .card-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.menu-card h3 { font-size: 19px; margin-bottom: 8px; }
.menu-card p { font-size: 13.5px; flex: 1; }
.card-foot { margin-top: 16px; }
.card-order {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: 12px 16px; border-radius: 100px; background: rgba(37,211,102,.12); color: #4fe08a;
  border: 1px solid rgba(37,211,102,.32); font-weight: 600; font-size: 13.5px; letter-spacing: .2px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.card-order span { transition: transform .25s ease; }
.card-order:hover { background: #25D366; color: #06210f; transform: translateY(-1px); }
.card-order:hover span { transform: translate(2px,-2px); }
.menu-empty { text-align: center; color: var(--text-faint); padding: 40px 0; grid-column: 1/-1; }

/* =========================================================
   Vídeos
========================================================= */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.video-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10;
  border: 1px solid var(--border); cursor: pointer; background: var(--surface);
}
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.video-card:hover img { transform: scale(1.06); filter: brightness(.65); }
.video-card .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 66px; height: 66px; border-radius: 50%; background: rgba(205,164,73,.92);
  display: flex; align-items: center; justify-content: center; color: #201502; font-size: 22px;
  box-shadow: 0 5px 16px rgba(0,0,0,.25); transition: transform .3s ease;
}
.video-card:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); }
.video-card .video-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,.85), transparent); }
.video-info h4 { color: #fff; font-size: 15px; margin: 0; font-family: var(--ff-body); font-weight: 600; }

.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(6,6,7,.94);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner { width: 100%; max-width: 960px; aspect-ratio: 16/9; position: relative; }
.lightbox-inner iframe, .lightbox-inner video { width: 100%; height: 100%; border: none; border-radius: 12px; background: #000; }
.lightbox-close {
  position: absolute; top: -46px; right: 0; background: none; border: none; color: #fff; font-size: 28px; line-height: 1;
}

/* =========================================================
   Modal de rotas (Como chegar)
========================================================= */
.directions-modal {
  position: fixed; inset: 0; z-index: 2000; background: rgba(6,6,7,.82); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.directions-modal.open { opacity: 1; pointer-events: auto; }
.directions-card {
  position: relative; width: 100%; max-width: 380px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); text-align: center;
  transform: translateY(14px); transition: transform .3s ease;
}
.directions-modal.open .directions-card { transform: translateY(0); }
.directions-icon-hero {
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
  width: 52px; height: 52px; border-radius: 50%; color: var(--gold);
  background: rgba(205,164,73,.14); border: 1px solid rgba(205,164,73,.35);
}
.directions-card h3 { font-size: 21px; margin-bottom: 8px; }
.directions-sub { font-size: 13.5px; line-height: 1.55; margin-bottom: 26px; padding: 0 6px; }
.directions-close {
  position: absolute; top: -14px; right: -14px; z-index: 1;
  width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-muted);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.directions-close:hover { background: var(--gold); color: #201502; transform: rotate(90deg); }
.directions-options { display: flex; flex-direction: column; gap: 10px; }
.directions-option {
  display: flex; align-items: center; gap: 14px; padding: 13px 16px; border-radius: 12px;
  background: var(--surface-2); border: 1px solid var(--border); text-align: left;
  transition: border-color .2s ease, transform .2s ease;
}
.directions-option:hover { border-color: var(--gold); transform: translateY(-1px); }
.directions-icon {
  flex: none; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff;
}
.directions-icon.gmaps { background: #4285F4; }
.directions-icon.waze { background: #33CCFF; }
.directions-icon.amaps { background: #4b4b4d; }
.directions-label { flex: 1; font-weight: 600; font-size: 14.5px; }
.directions-arrow { color: var(--text-faint); }

/* =========================================================
   Depoimentos
========================================================= */
.testi-card {
  flex: 0 0 340px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px;
}
.testi-stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-style: italic; color: var(--text-muted); }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi-avatar { flex: none; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #201502; font-family: var(--ff-display); }
.testi-author strong { display: block; font-size: 14px; }
.testi-author span { font-size: 12px; color: var(--text-faint); }

.testi-marquee-wrap {
  overflow: hidden; margin-top: 50px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testi-marquee-track {
  display: flex; gap: 26px; width: max-content;
  animation: testi-marquee-scroll 110s linear infinite;
}
.testi-marquee-wrap:hover .testi-marquee-track { animation-play-state: paused; }
@keyframes testi-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   CTA reserva
========================================================= */
.cta-band {
  background: linear-gradient(135deg, #171310, #1d1a12);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 70px 0; text-align: center;
}
.cta-band h2 { font-size: clamp(24px, 3.4vw, 36px); margin-bottom: 12px; }
.cta-band p { max-width: 520px; margin: 0 auto 30px; }

/* =========================================================
   Contato
========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .feature-icon { background: rgba(205,164,73,.1); }
.contact-item h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-faint); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 15.5px; color: var(--text); margin: 0; }
.map-directions-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--gold) !important; background: none; border: none; padding: 0; font-family: inherit; cursor: pointer; }
.map-directions-link:hover { color: var(--gold-light) !important; }
.social-row { display: flex; gap: 12px; margin-top: 10px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; transition: all .25s ease;
}
.social-row a:hover { background: var(--gold); color: #201502; border-color: var(--gold); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); min-height: 340px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.3) invert(.92) contrast(.9); }

/* =========================================================
   Footer
========================================================= */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 50px; }
.footer-about p { font-size: 14px; }
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-address-link {
  font-size: 14px; color: var(--text-muted); background: none; border: none; padding: 0;
  font-family: inherit; text-align: left; cursor: pointer; transition: color .2s ease;
}
.footer-address-link:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: var(--text-faint); }
.footer-bottom a { color: var(--text-faint); }
.footer-bottom a:hover { color: var(--gold); }

/* =========================================================
   Flutuantes
========================================================= */
.float-whatsapp {
  position: fixed; bottom: 26px; right: 26px; z-index: 800;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  box-shadow: 0 6px 18px rgba(37,211,102,.28); animation: float-bounce 3.4s ease-in-out infinite;
}
.float-whatsapp:hover { transform: scale(1.06); box-shadow: 0 8px 22px rgba(37,211,102,.35); }
@keyframes float-bounce { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-4px);} }
.back-to-top {
  position: fixed; bottom: 26px; right: 98px; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border);
  color: var(--text); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s ease;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--gold); color: #201502; }

/* =========================================================
   Mobile nav (offcanvas)
========================================================= */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: min(340px, 84vw); height: 100vh; z-index: 999;
  background: var(--bg-alt); border-left: 1px solid var(--border); padding: 110px 32px 40px;
  transition: right .4s cubic-bezier(.65,0,.35,1); box-shadow: -20px 0 50px rgba(0,0,0,.4);
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-nav.open { right: 0; }
.mobile-nav a { font-size: 18px; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 998; opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }

/* =========================================================
   Responsivo
========================================================= */
@media (max-width: 980px) {
  .main-nav, .header-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { margin-bottom: 40px; order: -1; }
  .outdoor-grid { grid-template-columns: 1fr; text-align: center; gap: 44px; }
  .outdoor-copy { text-align: center; }
  .outdoor .outdoor-subtitle { margin-left: auto; margin-right: auto; }
  .outdoor-ctas { justify-content: center; }
  .outdoor-visual { order: -1; }
  .outdoor-photo-ring { width: min(100%, 340px); }
  .menu-grid, .video-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .section { padding: 70px 0; }
  :root { --header-h: 72px; }
  .brand-text { font-size: 27px; }
  .brand img.brand-logo { height: 42px; }
  .menu-grid, .video-grid, .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .outdoor { min-height: 92vh; }
  .outdoor-ctas { flex-direction: column; align-items: stretch; }
  .outdoor-ctas .btn { width: 100%; }
  .carousel-slide { aspect-ratio: 4/3; }
  .carousel-slide .slide-caption { padding: 34px 18px 18px; }
  .slide-caption h3 { font-size: 19px; }
  .slide-caption p { font-size: 13px; }
  .about-media .badge-float { right: 12px; bottom: -18px; padding: 14px 18px; }
  .carousel-arrow { width: 38px; height: 38px; font-size: 15px; }
  .float-whatsapp { width: 54px; height: 54px; font-size: 24px; bottom: 18px; right: 18px; }
  .back-to-top { display: none; }
  .header-cta { gap: 8px; }
  .header-cta .btn-whatsapp {
    width: 40px; height: 40px; padding: 0; border-radius: 50%; flex: none;
  }
  .header-cta .btn-whatsapp span { display: none; }
  .hamburger { padding: 8px 0 8px 4px; }
}
@media (max-width: 360px) {
  .brand-text { font-size: 24px; }
}
