:root{
  --bg:#14120F;
  --bg-2:#1B1815;
  --card:#211D18;
  --line:#332E27;
  --ink:#F2ECE0;
  --ink-soft:#B3A996;
  --ink-faint:#7C7565;
  --gold:#E25822;
  --gold-dark:#B33600;
  --gold-tint:#2B1206;
  --terracotta:#C6552E;
  --white:#FFFDF9;
  --safe-top: max(env(safe-area-inset-top), 0px);
  --safe-left: max(env(safe-area-inset-left), 0px);
  --safe-right: max(env(safe-area-inset-right), 0px);
  --safe-bottom: max(env(safe-area-inset-bottom), 0px);
}
*{box-sizing:border-box}

.coupon-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 16px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--white);
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.coupon-bar .code {
  display: inline-block;
  cursor: pointer;
  touch-action: manipulation;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.25);
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  padding: 2px 10px;
  transition: background 150ms ease;
}
.coupon-bar .code:active,
.coupon-bar .code.copied {
  background: rgba(0, 0, 0, 0.45);
}
@media (max-width: 480px) {
  .coupon-bar { font-size: 12.5px; padding: 8px 12px; }
}

.badge-off {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--gold);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.badge-off-inline {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 2px;
  margin-left: 8px;
}
body{padding-top:var(--safe-top);padding-left:var(--safe-left);padding-right:var(--safe-right);padding-bottom:var(--safe-bottom)}
body{margin:0;background:var(--bg);color:var(--ink);font-family:'Work Sans',sans-serif;line-height:1.6}
body.doodle-bg {
  position: relative;
}
body.doodle-bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url('../assets/fast-food-set-icons-fastfood-background-doodle-fast-food-icons.jpg');
  background-size: 380px;
  background-repeat: repeat;
  opacity: 0.07; /* Very subtle so it does not distract or reduce readability */
  pointer-events: none;
  mix-blend-mode: screen;
}
h1,h2,h3,.serif{font-family:'Fraunces',serif;font-weight:500;margin:0;line-height:1.25}
a{color:inherit;text-decoration:none}
.skip-link {
  position: absolute;
  top: 16px;
  left: 16px;
  transform: translateY(-150%);
  background: var(--chapa-orange, #E25822);
  color: var(--white);
  padding: 10px 20px;
  z-index: 9999;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
  border: 1px solid var(--line);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
img{max-width:100%;display:block}
.wrap{max-width:1140px;margin:0 auto;padding:0 24px}

/* placeholder de imagem — trocar por foto real */
.ph{
  background:linear-gradient(135deg,#2A2419,#1B1815 60%);
  border:1px dashed #4A4235;
  display:flex;align-items:center;justify-content:center;
  color:var(--ink-faint);font-size:12px;text-align:center;letter-spacing:.03em;
}
.ph::before{content:"◐ foto do prato";}

header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #120202; /* Deep dark theme color */
  padding-top: max(env(safe-area-inset-top), 0px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

header::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 8px;
  background-image: 
    linear-gradient(135deg, #120202 25%, transparent 25%), 
    linear-gradient(225deg, #120202 25%, transparent 25%);
  background-position: 0 0;
  background-size: 16px 16px;
  background-repeat: repeat-x;
  z-index: 5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  touch-action: manipulation;
  cursor: pointer;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #f41e1e;
}

nav a:active {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .header-inner {
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  header {
    padding-bottom: 16px;
  }
  .header-inner {
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px 8px;
    text-align: center;
  }
  nav {
    gap: 16px;
    width: 100%;
    justify-content: center;
  }
  nav a {
    font-size: 14px;
  }
}

/* partner-header custom definitions */
.partner-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #0c0b0a; /* Solid dark color to prevent transparency issues */
  border-bottom: none; /* Removed to allow clean flags transition */
  padding-top: max(env(safe-area-inset-top), 0px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Override flag colors for partner page header to match its background */
.partner-header::after {
  background-image: 
    linear-gradient(135deg, #0c0b0a 25%, transparent 25%), 
    linear-gradient(225deg, #0c0b0a 25%, transparent 25%);
}

.partner-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.header-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  transition: color 0.2s ease, transform 0.2s var(--spring-ease);
}

.header-back-btn:hover {
  color: var(--chapa-orange);
  transform: translateX(-2px);
}

.header-back-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.partner-header .small-logo {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 480px) {
  .partner-header .header-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 16px;
  }
}

/* hero slider */
.slider{position:relative;height:78dvh;min-height:520px;overflow:hidden}
.slide{position:absolute;inset:0;opacity:0;transition:opacity .8s ease;display:flex;align-items:flex-end}
.slide.active{opacity:1}
.slide .ph{position:absolute;inset:0;border:none;border-radius:0}
.bg-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;border:none;border-radius:0}
.slide::after{content:"";position:absolute;inset:0;background:linear-gradient(to top, var(--bg) 0%, transparent 60%);pointer-events:none}
.slide-content{position:relative;z-index:2;padding:0 24px 64px;max-width:1140px;margin:0 auto;width:100%}
.slide-content-inner{max-width:640px}
.eyebrow{font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);margin-bottom:14px}
.slide-content h2{font-size:clamp(34px,5vw,58px);line-height:1.12;color:var(--white);margin-bottom:16px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.consent-banner{position:fixed;left:0;right:0;bottom:0;z-index:200;background:var(--bg-2);border-top:1px solid var(--line);padding:16px 24px;padding-bottom:calc(16px + var(--safe-bottom));display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:16px;box-shadow:0 -4px 20px rgba(0,0,0,0.4)}
.consent-banner p{margin:0;color:var(--ink-soft);font-size:13px;line-height:1.5;max-width:520px;flex:1 1 260px}
.consent-banner a{color:var(--gold)}
.consent-banner .consent-actions{display:flex;gap:10px;flex-shrink:0}
.consent-banner .btn{border-radius:8px}
@media (max-width:480px){.consent-banner{padding:14px 16px;padding-bottom:calc(14px + var(--safe-bottom));justify-content:flex-start}}
.slide-content p{color:var(--ink-soft);font-size:16px;max-width:460px;margin-bottom:26px}
.btn{display:inline-flex;align-items:center;font-size:13.5px;font-weight:500;padding:13px 26px;border-radius:8px;border:1px solid var(--line);touch-action:manipulation;cursor:pointer;transition:all 150ms ease}
.btn.solid{background:var(--gold);color:#1B1815;border-color:var(--gold)}
.btn.solid:hover{background:#EFB84F}
.btn.solid:active{opacity:0.85;transform:scale(0.98)}
.btn.ghost{color:var(--ink);border-color:#4A4235}
.btn.ghost:hover{border-color:var(--gold);color:var(--gold)}
.btn.ghost:active{opacity:0.8;transform:scale(0.98)}
.slide-actions{display:flex;gap:12px}
.contact-actions{display:flex;gap:12px;justify-content:center}
.dots{position:absolute;z-index:2;bottom:28px;right:32px;display:flex;gap:8px}
.dot{width:12px;height:12px;border-radius:50%;background:#4A4235;cursor:pointer;padding:6px;margin:-6px;touch-action:manipulation;transition:background 150ms ease}
.dot:active{opacity:0.8}
.dot.active{background:var(--gold)}

/* destaques */
.section-title{display:flex;align-items:baseline;gap:14px;margin:0 0 26px}
.section-title h2{font-size:24px;color:var(--white)}
.section-title .rule{flex:1;height:1px;background:var(--line)}
.destaques{padding:80px 24px}
.dest-grid{display:grid;grid-template-columns:repeat(3, 1fr);gap:22px}
@media (max-width:860px){.dest-grid{grid-template-columns:1fr}}
.dest-card{position:relative;background:var(--card);border:1px solid var(--line);border-radius:14px;overflow:hidden;display:flex;flex-direction:column;touch-action:manipulation;transition:border-color 150ms ease;height:100%}
.dest-card:active{border-color:var(--gold)}
.dest-card img, .dest-card .ph{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:0;display:block}
.dest-body{padding:20px 22px 24px;display:flex;flex-direction:column;gap:8px;flex:1}
.badge{align-self:flex-start;font-size:11px;background:var(--gold-tint);color:var(--gold);padding:4px 11px;border-radius:20px;letter-spacing:.02em}
.dest-body h3{font-size:20px;color:var(--white)}
.meta{font-size:13px;color:var(--ink-soft)}
.dest-actions{margin-top:auto;display:flex;gap:10px;padding-top:12px}

/* diretorio simples */
.directory{padding:0 24px 80px}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media (max-width:860px){.grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.grid{grid-template-columns:1fr}}
.card{background:var(--card);border:1px solid var(--line);border-radius:12px;padding:16px;display:flex;flex-direction:column;gap:6px;touch-action:manipulation}
.card h4{font-size:14.5px;font-weight:500;color:var(--white);margin:0}
.card .meta{font-size:12.5px}
.card .rating{font-size:12.5px;color:var(--gold)}
.card .link{margin-top:8px;font-size:12px;color:var(--gold-dark);border-top:1px dashed var(--line);padding-top:8px}
.cats{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;padding:56px 24px 0}
.cat-btn{border:1px solid var(--line);background:var(--card);color:var(--ink-soft);padding:12px 16px;min-height:44px;min-width:44px;border-radius:30px;font-family:inherit;font-size:13px;cursor:pointer;touch-action:manipulation;transition:all 150ms ease}
.cat-btn:hover{border-color:var(--gold);color:var(--gold)}
.cat-btn:active{opacity:0.8;transform:scale(0.98)}
.cat-btn.active{background:var(--gold);color:#1B1815;border-color:var(--gold)}

.cta-band{background:var(--gold-tint);padding:64px 24px;text-align:center}
.cta-band h2{font-size:27px;color:var(--white);margin-bottom:12px}
.cta-band p{color:var(--ink-soft);max-width:460px;margin:0 auto 24px;font-size:15px}
footer {
  padding: 30px 24px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-faint);
  border-top: none;
  position: relative;
  margin-top: 0; /* Glued/flush to the CTA band */
  background: #14120f; /* Solid dark color to prevent transparency issues */
}

footer::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 8px;
  background-image: 
    linear-gradient(45deg, #14120f 25%, transparent 25%), 
    linear-gradient(315deg, #14120f 25%, transparent 25%);
  background-position: 0 100%;
  background-size: 16px 16px;
  background-repeat: repeat-x;
  z-index: 5;
}

/* pagina do estabelecimento (Lucas) - Premium Redesign */
:root {
  --amber-glow: #F5A623;
  --chapa-orange: var(--gold);
  --coal-dark: #0C0B0A;
  --spring-ease: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-in {
  animation: revealUp 0.7s var(--spring-ease) both;
}

.est-hero {
  position: relative;
  height: 82dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: transparent;
}

.est-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
}

.est-hero .bg-video {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: calc(100% + 2px);
  object-fit: cover;
  z-index: 0;
}

.est-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 24px 48px;
  max-width: 1140px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(12, 11, 10, 0.9), 0 1px 4px rgba(12, 11, 10, 0.95);
}

.est-about {
  padding: 56px 24px 32px;
}

.est-hero-content h1 {
  font-size: clamp(38px, 6vw, 64px);
  color: var(--white);
  line-height: 1.05;
  margin-top: 8px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.est-section {
  padding: 56px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.est-section h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}

.est-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 32px;
  height: 2px;
  background: var(--chapa-orange);
}

.est-section p {
  color: var(--ink-soft);
  max-width: 680px;
  line-height: 1.7;
  font-size: 16px;
}

/* Lucas Highlight Card - Premium Chapa Quente */
.lucas-highlight {
  background: var(--bg-2);
  padding: 24px;
  border-radius: 2px;
  font-size: 14.5px;
  margin: 32px 0;
  color: var(--ink);
  line-height: 1.7;
  border: 1px solid var(--line);
  border-left: 4px solid var(--chapa-orange);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.03);
}

.lucas-highlight strong {
  color: var(--white);
  font-weight: 600;
}

.lucas-highlight .info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.lucas-highlight .info-item:last-child {
  margin-bottom: 0;
}

.lucas-highlight .info-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.lucas-highlight .info-item a:hover {
  color: var(--chapa-orange);
  text-decoration: underline;
}

.lucas-highlight img {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* Premium Buttons & Interactive States */
.btn {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border-radius: 2px;
  border: 1px solid var(--line);
  touch-action: manipulation;
  cursor: pointer;
  transition: transform 0.3s var(--spring-ease), background-color 0.3s var(--spring-ease), border-color 0.3s var(--spring-ease), color 0.3s var(--spring-ease), box-shadow 0.3s var(--spring-ease);
}

.btn.solid {
  background: var(--chapa-orange);
  color: var(--white);
  border-color: var(--chapa-orange);
}

.btn.solid:hover {
  background: var(--amber-glow);
  border-color: var(--amber-glow);
  color: var(--coal-dark);
  transform: translateY(-2px) scale(1.02);
}

.btn.solid:active {
  transform: translateY(1px) scale(0.98);
}

.btn.ghost {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.btn.ghost:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.03);
}

.btn.ghost:active {
  transform: translateY(1px);
}

/* Gallery - Aspect-Ratio grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.gallery img {
  aspect-ratio: 1/1;
  border-radius: 2px;
  display: block;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--spring-ease), border-color 0.4s var(--spring-ease), box-shadow 0.4s var(--spring-ease);
}

.gallery img:hover {
  transform: scale(1.04);
  border-color: var(--amber-glow);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Menu Items Highlights */
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.menu-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  height: 200px;
  transition: transform 0.3s var(--spring-ease), border-color 0.3s var(--spring-ease), box-shadow 0.3s var(--spring-ease);
}

.menu-item:hover {
  border-color: var(--chapa-orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.menu-item img {
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-right: 1px solid var(--line);
  flex-shrink: 0;
}

.menu-item-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-item-body h3 {
  font-size: 16px;
  color: var(--white);
  margin: 0 0 6px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.menu-item-body span {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Bastidores Stories Slider */
.stories-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px 4px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-top: 24px;
}

.stories-slider::-webkit-scrollbar {
  display: none;
}

.story-card {
  flex: 0 0 240px;
  aspect-ratio: 9/16;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--coal-dark);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s var(--spring-ease), border-color 0.3s var(--spring-ease), box-shadow 0.3s var(--spring-ease);
}

.story-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--amber-glow);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.story-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.story-play-btn {
  width: 56px;
  height: 56px;
  z-index: 3;
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.story-play-btn svg {
  width: 24px;
  height: 24px;
}

.story-card.playing .story-play-btn {
  opacity: 0;
  pointer-events: none;
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 11, 10, 0.95) 0%, transparent 50%),
              linear-gradient(to bottom, rgba(12, 11, 10, 0.5) 0%, transparent 30%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.story-badge {
  align-self: flex-start;
  font-size: 9px;
  background: var(--chapa-orange);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.story-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.story-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  font-family: 'Fraunces', serif;
}

.story-action-hint {
  font-size: 11px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-feature {
  margin-top: 32px;
}

.contact-band {
  background: var(--coal-dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.contact-band video {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: calc(100% + 2px);
  object-fit: cover;
  z-index: 0;
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 10, 0.75);
  z-index: 1;
}

.contact-band-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-band h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(32px, 5vw, 42px);
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
  font-family: 'Fraunces', serif;
}

.contact-band .meta {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin: 28px 24px 0;
  font-size: 13px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--chapa-orange);
}

/* Mobile-First Adaptations */
@media (max-width: 768px) {
  .menu-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 16px;
  }
  
  .back-link {
    margin: 20px 16px 0;
  }

  .est-hero {
    height: 52dvh;
    min-height: 360px;
  }

  .est-hero-content {
    bottom: 24px;
    padding: 0 16px;
  }

  .est-about {
    padding: 40px 16px 24px;
  }

  .est-section {
    padding: 40px 16px;
  }

  .lucas-highlight {
    padding: 20px;
    margin: 24px 0;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .menu-item {
    height: auto;
    flex-direction: column;
  }

  .menu-item img {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .menu-item-body {
    padding: 16px;
  }

  .story-card {
    flex: 0 0 190px;
  }

  .contact-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .contact-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Reviews / Feedback Section */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 32px;
  background: var(--bg-2);
  padding: 16px 24px;
  border-radius: 2px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--chapa-orange);
  width: fit-content;
}

.rating-huge {
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.rating-stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rating-stars-wrap .stars {
  color: var(--amber-glow);
  font-size: 18px;
  letter-spacing: 0.05em;
}

.reviews-count {
  font-size: 12px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.reviews-count:hover {
  color: var(--chapa-orange);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.review-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--spring-ease), border-color 0.3s var(--spring-ease);
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: var(--chapa-orange);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--line);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid var(--line);
}

.user-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.user-meta {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.review-rating {
  margin-left: auto;
  color: var(--amber-glow);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.review-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  font-style: italic;
  flex: 1;
}

.review-details {
  font-size: 11.5px;
  color: var(--ink-faint);
  border-top: 1px dashed var(--line);
  padding-top: 12px;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Rating no Hero do Estabelecimento */
.est-hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.est-hero-rating .stars {
  color: var(--amber-glow);
  letter-spacing: 0.05em;
}
.est-hero-rating .rating-val {
  color: var(--white);
  font-weight: 600;
}
.est-hero-rating .rating-count {
  color: var(--ink-soft);
  font-size: 13px;
}

/* Divisor de seção em formato de banner panorâmico - proporção completa */
.section-divider {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.section-divider img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Opening Hours Premium Section */
.opening-hours-container {
  background: #161412; /* Deep solid charcoal matching the dark brand palette */
  border: 1px solid rgba(226, 88, 34, 0.2); /* Soft brand orange outline */
  border-radius: 8px; /* Clean crisp rectangular styling */
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 56px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.oh-video-col {
  width: 100%;
}

.oh-video-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 4px; /* Matches the crisp look */
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.oh-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.oh-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(226, 88, 34, 0.95); /* Brand Orange-Red */
  border: 2px solid #ffffff;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(226, 88, 34, 0.5);
  z-index: 2;
}

.oh-play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.oh-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #ffffff;
  color: var(--chapa-orange);
  box-shadow: 0 6px 20px rgba(226, 88, 34, 0.4);
}

.oh-info-col {
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.oh-tag {
  color: var(--chapa-orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.oh-title {
  font-size: 36px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
}

.oh-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 80%;
  margin-bottom: 24px;
}

.oh-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
}

.oh-diamond {
  color: var(--chapa-orange);
  font-size: 14px;
}

.oh-schedule-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 24px;
  display: flex;
  width: 100%;
  max-width: 440px;
  justify-content: space-around;
  margin-bottom: 32px;
}

.oh-sched-col {
  flex: 1;
}

.oh-sched-col h3 {
  font-size: 13px;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}

.oh-sched-col .time {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
}

.oh-sched-col .timeClosed {
  font-size: 20px;
  font-weight: 700;
  color: #f41e1e;
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
}

.oh-sched-col-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 15px;
}

.oh-action .gold-btn {
  background: var(--chapa-orange);
  color: #0c0b0a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(226, 88, 34, 0.3);
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.oh-action .gold-btn:hover {
  background: #ffffff;
  color: var(--chapa-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
  .opening-hours-container {
    grid-template-columns: 1fr;
    padding: 30px;
    border-radius: 8px;
    gap: 30px;
  }
  .oh-video-wrapper {
    border-radius: 4px;
  }
  .oh-video-col {
    min-height: auto;
  }
}









