@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --background: 0 0% 4%;
  --foreground: 42 25% 95%;
  --card: 0 0% 7%;
  --primary: 43 74% 49%;
  --primary-foreground: 0 0% 4%;
  --secondary: 0 0% 12%;
  --muted-foreground: 42 15% 75%;
  --border: 0 0% 18%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
}

/* ── Container central ── */
.max-w-7xl {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 640px) {
  .max-w-7xl {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1024px) {
  .max-w-7xl {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* ── Header ── */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border));
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 100%;
}

.logo img {
  height: 42px;
  transition: transform 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
}

nav a {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  margin-left: 40px;
  position: relative;
  transition: color 0.2s;
  font-size: 15px;
  letter-spacing: 0.05em;
}

nav a:hover,
nav a.active {
  color: hsl(var(--primary));
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: hsl(var(--primary));
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* ── Mobile menu ── */
.mobile-nav {
  display: none;
  background-color: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
  padding: 20px;
}

.mobile-nav a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 10px 0;
  font-size: 18px;
}

/* ── Hero (index.html) ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.9), rgba(10,10,10,0.6), rgba(10,10,10,0.9));
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 600px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  height: 130px;
  width: auto;
  margin-bottom: 32px;
}

.hero p {
  font-size: 22px;
  color: rgba(243, 241, 234, 0.9);
  margin-bottom: 48px;
  line-height: 1.6;
  font-weight: 300;
}

/* ── Botão primário ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s;
}

.btn-primary:hover {
  transform: scale(1.05);
  background-color: hsl(43 74% 42%);
}

/* ── Botões de categoria ── */
.category-btn {
  background-color: hsl(var(--secondary));
  color: hsl(var(--foreground));
  border: none;
  padding: 14px 28px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.category-btn.active {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.category-btn:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* ── Utilitários ── */
.py-12  { padding: 48px 0; }
.py-24  { padding: 96px 0; }
.border-b { border-bottom: 1px solid hsl(var(--border)); }

/* ── Grid 2 colunas ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-title {
  font-size: 42px;
  margin-bottom: 24px;
}

.space-y p {
  margin-bottom: 16px;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ── Cards genéricos ── */
.card-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 32px;
  border-radius: 16px;
}

.card h3 {
  font-size: 24px;
  margin: 16px 0 12px;
}

.card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.text-center { text-align: center; }
.mb-16 { margin-bottom: 64px; }

.subtitle {
  font-size: 18px;
  color: hsl(var(--muted-foreground));
}

/* ── Seção "Visite-nos" ── */
.visit-container-limit {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.visit-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 32px;
  border-radius: 16px;
  text-align: left;
}

.visit-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.visit-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.visit-card .icon {
  color: hsl(var(--primary));
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

/* ── Footer ── */
footer {
  border-top: 1px solid hsl(var(--border));
  padding: 64px 0 32px;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-grid h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.footer-info p {
  margin-bottom: 16px;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: hsl(var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  text-decoration: none;
  transition: all 0.2s;
}

.social-btn:hover {
  background-color: hsl(var(--primary));
  color: black;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  color: hsl(var(--muted-foreground));
}

/* ── Animação de entrada dos cards do cardápio ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.item-card {
  opacity: 0;
  animation: fadeInUp 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.menu-grid .item-card:nth-child(1) { animation-delay: 0.03s; }
.menu-grid .item-card:nth-child(2) { animation-delay: 0.08s; }
.menu-grid .item-card:nth-child(3) { animation-delay: 0.13s; }
.menu-grid .item-card:nth-child(4) { animation-delay: 0.18s; }
.menu-grid .item-card:nth-child(5) { animation-delay: 0.23s; }
.menu-grid .item-card:nth-child(6) { animation-delay: 0.28s; }
.menu-grid .item-card:nth-child(n+7) { animation-delay: 0.32s; }

/* ── Balão de Adicionais (cardápio) ── */
.addons-bubble {
  margin-top: 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.12), hsl(var(--card)));
  border: 1px solid hsl(var(--primary) / 0.35);
  border-radius: 18px;
  padding: 24px 28px;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.36s;
}

.addons-bubble::before {
  content: '';
  position: absolute;
  top: -9px;
  left: 36px;
  width: 18px;
  height: 18px;
  background: hsl(var(--card));
  border-left: 1px solid hsl(var(--primary) / 0.35);
  border-top: 1px solid hsl(var(--primary) / 0.35);
  transform: rotate(45deg);
}

.addons-bubble-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: hsl(var(--primary) / 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
}

.addons-bubble-icon i {
  width: 22px;
  height: 22px;
}

.addons-bubble-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: hsl(var(--foreground));
}

.addons-bubble-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  list-style: none;
}

.addons-bubble-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
}

.addons-bubble-list li strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

.addons-bubble-list .addon-price {
  color: hsl(var(--primary));
  font-weight: 700;
}

@media (max-width: 640px) {
  .addons-bubble { flex-direction: column; }
  .addons-bubble::before { left: 24px; }
}

/* ── Responsividade ── */
@media (max-width: 1023px) {
  .nav-container nav { display: none; }
  .menu-btn { display: block; }
  .grid-2,
  .visit-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
}
