/* ===========================
   Novo Hamburger — Theme CSS
   =========================== */

:root {
  --brand-red: #c8102e;
  --brand-orange: #f59e0b;
  --brand-cream: #fdf6ec;
  --foreground: #1a1a1a;
  --white: #ffffff;
  --border: #e5e5e5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--foreground);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--brand-red); color: #fff;
  padding: .5rem 1rem; border-radius: 4px; z-index: 100;
}
.skip-link:focus { left: .5rem; top: .5rem; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.site-nav {
  max-width: 1280px; margin: 0 auto;
  padding: .75rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.site-logo img { height: 48px; width: auto; }
.nav-menu { list-style: none; display: flex; gap: .25rem; padding: 0; margin: 0; }
.nav-menu a {
  padding: .5rem .75rem; border-radius: 6px;
  font-weight: 700; text-transform: uppercase; font-size: .9rem;
  letter-spacing: .05em; transition: color .2s;
}
.nav-menu a:hover { color: var(--brand-red); }

/* Hero carousel */
.hero {
  position: relative; width: 100%; height: 100vh; overflow: hidden;
}
.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.3) 50%, rgba(0,0,0,.4));
}
.hero-content {
  position: relative; z-index: 10;
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 0 1rem;
}
.hero-content h1 {
  color: #fff; font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; text-transform: uppercase; line-height: 1;
  margin: 0; text-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.hero-content h1 span { color: var(--brand-orange); }
.hero-content p {
  color: rgba(255,255,255,.9); font-size: 1.25rem;
  margin-top: 1.5rem; max-width: 42rem;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 20; padding: .75rem; border-radius: 9999px;
  background: rgba(0,0,0,.4); color: #fff; border: 0; cursor: pointer;
  transition: background .2s;
}
.carousel-btn:hover { background: var(--brand-red); }
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }
.carousel-btn svg { width: 24px; height: 24px; display: block; }
.dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; gap: .5rem;
}
.dots button {
  height: 8px; width: 8px; border-radius: 9999px;
  background: rgba(255,255,255,.6); border: 0; cursor: pointer;
  transition: all .3s;
}
.dots button.active { width: 32px; background: var(--brand-orange); }

/* Sections */
.section { padding: 6rem 0rem; }
.section-inner { max-width: 64rem; margin: 0 auto; text-align: center; }
.eyebrow {
  color: var(--brand-red); font-weight: 700;
  letter-spacing: .3em; font-size: .85rem; margin-bottom: 1rem;
}
.section h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900; text-transform: uppercase; margin: 0 0 2rem;
}
.divider {
  width: 96px; height: 4px; background: var(--brand-orange);
  margin: 0 auto 2.5rem;
}
.section p {
  font-size: 1.125rem; line-height: 1.8; margin-bottom: 1.5rem;
}

.bg-cream { background: var(--brand-cream); }
.sobre h2 span { color: var(--brand-red); }

/* Cardápio */
.cardapio { background: var(--brand-red); color: #fff; }
.cardapio .eyebrow { color: var(--brand-orange); }
.cardapio h2 span { color: var(--brand-orange); }
.btn-cardapio {
  display: inline-flex; align-items: center; gap: .75rem;
  background: var(--brand-orange); color: var(--foreground);
  font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 1.25rem 2rem; border-radius: 9999px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.5);
  transition: transform .2s;
}
.btn-cardapio:hover { transform: scale(1.05); }

/* Local */
.local { background: var(--foreground); color: #fff; padding-bottom: 0; }
.local .eyebrow { color: var(--brand-orange); }
.local h2 span { color: var(--brand-orange); }
.local address {
  font-style: normal; display: inline-flex; align-items: center; gap: .75rem;
  color: rgba(255,255,255,.9); font-size: 1.125rem;
}
.local .map { width: 100%; height: 500px; margin-top: 2rem; }
.local iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Footer */
.site-footer {
  background: var(--foreground); color: rgba(255,255,255,.6);
  padding: 2rem 1rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.socials { display: flex; gap: 1rem; }
.socials a {
  padding: .5rem; border-radius: 9999px;
  background: rgba(255,255,255,.1); color: #fff;
  display: inline-flex; transition: background .2s, color .2s;
}
.socials a:hover { background: var(--brand-orange); color: var(--foreground); }
.socials svg { width: 20px; height: 20px; }

/* Floating CTAs */
.floating {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  display: flex; flex-direction: column; gap: .75rem; align-items: flex-end;
}
.floating a {
  background: #fff; border-radius: 9999px; padding: .5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.4);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.floating a:hover { transform: scale(1.1); }
.floating img { width: 40px; height: 40px; object-fit: contain; }
.floating .ifood img { width: 40px; height: 40px; padding: 0; }

@media (max-width: 640px) {
  .section { padding: 4rem 1rem; }
  .nav-menu a { padding: .4rem .5rem; font-size: .8rem; }
}