/* ── Variáveis ─────────────────────────────────────────────────────── */
:root {
  --gold:     #c8973a;
  --gold2:    #e0ac50;
  --dark:     #1a1208;
  --dark2:    #2a1e0f;
  --cream:    #faf6f0;
  --cream2:   #f0e8d8;
  --text:     #2a1e0f;
  --text2:    #6b5a3e;
  --white:    #ffffff;
  --green:    #25d366;
  --radius:   10px;
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Lato', system-ui, sans-serif;
  --shadow:   0 4px 24px rgba(42,30,15,.12);
  --shadow-lg:0 12px 48px rgba(42,30,15,.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; }

/* ── Topbar ────────────────────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  padding: 8px 0;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-right { display: flex; gap: 20px; }

.topbar a, .topbar span {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.topbar a:hover { color: var(--gold2); }

/* ── Nav ───────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(200,151,58,.15);
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand { text-decoration: none; }

.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  display: block;
  line-height: 1.1;
}

.brand-tipo {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn-delivery {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
}

.btn-delivery:hover { background: var(--gold2); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--cream2);
  padding: 16px 24px;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 10px 0;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--cream2);
}

/* ── Botões ────────────────────────────────────────────────────────── */
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s;
}

.btn-gold:hover { background: var(--gold2); transform: translateY(-1px); }

.btn-outline {
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-outline-dark {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.btn-outline-dark:hover { background: var(--gold); color: var(--dark); }

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,18,8,.85) 0%, rgba(26,18,8,.5) 100%);
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hero-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  color: var(--white);
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  font-weight: 300;
  margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  background: var(--white);
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.hero-badge i { color: var(--gold); font-size: 16px; }
.hero-badge span { font-family: var(--serif); font-size: 20px; font-weight: 700; line-height: 1.1; }
.hero-badge small { font-size: 9px; color: var(--text2); line-height: 1.2; }

/* ── Destaques ─────────────────────────────────────────────────────── */
.destaques { background: var(--dark); padding: 0; }

.destaques-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.destaque-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  color: var(--white);
}

.destaque-item:last-child { border-right: none; }

.destaque-item i {
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.destaque-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}

.destaque-item span { font-size: 13px; color: rgba(255,255,255,.5); }

/* ── Seções ────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-dark  { background: var(--dark2); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 48px; }

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.section-tag::before, .section-tag::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-tag.light { color: var(--gold2); }
.section-tag.light::before, .section-tag.light::after { background: var(--gold2); }

h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--dark);
}

h2.light { color: var(--white); }
h2 em { font-style: italic; color: var(--gold); }

/* ── Cardápio ──────────────────────────────────────────────────────── */
.cardapio-filtros {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.filtro-btn {
  background: none;
  border: 2px solid var(--cream2);
  color: var(--text2);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--sans);
}

.filtro-btn:hover  { border-color: var(--gold); color: var(--gold); }
.filtro-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.cardapio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.cardapio-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}

.cardapio-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.cardapio-item-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.cardapio-item-img img { width: 100%; height: 100%; object-fit: cover; }

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

.cardapio-item-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.cardapio-item-nome {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.cardapio-item-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 12px;
}

.cardapio-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cardapio-item-preco {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.badge-destaque {
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.badge-novo { background: #2a7a2a; color: white; }

.cardapio-loading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.skeleton {
  height: 280px;
  background: linear-gradient(90deg, var(--cream2) 25%, var(--cream) 50%, var(--cream2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 12px;
}

@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.cardapio-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cardapio-vazio { grid-column: 1/-1; text-align: center; padding: 48px; color: var(--text2); }

/* ── Sobre ─────────────────────────────────────────────────────────── */
.sobre-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sobre-imgs {
  position: relative;
  height: 480px;
}

.sobre-img-1 {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 72%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.sobre-img-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 60%;
  height: 60%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--dark2);
}

.sobre-badge {
  position: absolute;
  bottom: 28%;
  left: 28%;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow);
  z-index: 2;
}

.sobre-badge strong { font-family: var(--serif); font-size: 18px; line-height: 1; }
.sobre-badge span   { font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }

.sobre-texto { color: var(--white); }
.sobre-texto p { color: rgba(255,255,255,.65); font-weight: 300; line-height: 1.8; margin: 20px 0 32px; font-size: 16px; }

.sobre-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.sobre-stat strong {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold2);
  display: block;
}

.sobre-stat span { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }

/* ── Galeria ───────────────────────────────────────────────────────── */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gal-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.gal-item:hover img { transform: scale(1.06); }

.skeleton-img {
  background: linear-gradient(90deg, var(--cream2) 25%, var(--cream) 50%, var(--cream2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ── Horários ──────────────────────────────────────────────────────── */
.horarios-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.horarios-lista { margin-top: 28px; }

.horario-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
}

.horario-row:last-child { border-bottom: none; }
.horario-dia   { color: rgba(255,255,255,.6); }
.horario-hora  { color: var(--white); font-weight: 700; }
.horario-hoje  { color: var(--gold2); }
.horario-hoje .horario-dia { color: var(--gold2); }

.endereco-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 12px;
}

.endereco-box i { color: var(--gold); font-size: 20px; flex-shrink: 0; }
.endereco-box strong { display: block; color: var(--white); font-size: 14px; }
.endereco-box span   { font-size: 12px; color: rgba(255,255,255,.5); }

.btn-maps {
  margin-left: auto;
  background: var(--gold);
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Contato / Reservas ────────────────────────────────────────────── */
.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contato-info h2 { margin-bottom: 16px; }
.contato-info p  { color: var(--text2); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }

.contato-cards { display: flex; flex-direction: column; gap: 12px; }

.contato-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}

.contato-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }

.contato-card.whatsapp i { color: var(--green); }
.contato-card i { font-size: 20px; flex-shrink: 0; }
.contato-card strong { display: block; font-size: 13px; font-weight: 700; }
.contato-card span   { font-size: 12px; color: var(--text2); }
.contato-card .bi-arrow-right { margin-left: auto; color: var(--text2); }

/* Formulário */
.reserva-form {
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.reserva-form h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--dark);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }

label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text2); margin-bottom: 6px; }

input, select, textarea {
  background: var(--cream);
  border: 1px solid var(--cream2);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 80px; }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  transition: background .2s, transform .15s;
}

.btn-submit:hover { background: var(--gold2); transform: translateY(-1px); }

/* ── Footer ────────────────────────────────────────────────────────── */
.footer { background: var(--dark); color: var(--white); }

.footer-top { padding: 60px 0; }

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand strong { font-family: var(--serif); font-size: 22px; display: block; margin-bottom: 8px; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: 14px; margin-bottom: 20px; font-weight: 300; }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: 15px;
  transition: all .2s;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}

.footer-bottom .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

/* ── WhatsApp flutuante ────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 200;
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* ── Scroll top ────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--text2);
  box-shadow: var(--shadow);
  z-index: 199;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}

.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }

/* ── Fade in ────────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsivo ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links   { display: none; }
  .nav-toggle  { display: flex; }
  .topbar-right .btn-delivery { display: none; }

  .destaques-grid { grid-template-columns: 1fr 1fr; }
  .destaque-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }

  .sobre-layout   { grid-template-columns: 1fr; }
  .sobre-imgs     { height: 280px; }
  .horarios-layout{ grid-template-columns: 1fr; }
  .contato-layout { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .galeria-grid   { grid-template-columns: 1fr 1fr; }
  .hero-content   { padding: 0 24px; }
  .hero-badge     { bottom: 24px; right: 24px; width: 72px; height: 72px; }
}
