/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #F5A623;
  --orange-dark: #E08B0A;
  --orange-light: #FBBF47;
  --brown: #8B4513;
  --brown-dark: #6B3410;
  --brown-light: #A0522D;
  --yellow: #FFD700;
  --yellow-light: #FFF3B0;
  --cream: #FFF8EE;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-400: #A3A3A3;
  --gray-600: #525252;
  --gray-800: #262626;
  --gray-900: #171717;
  --text-primary: #1A0A00;
  --text-secondary: #5C3A1E;
  --shadow-sm: 0 2px 8px rgba(139,69,19,0.1);
  --shadow-md: 0 8px 24px rgba(139,69,19,0.15);
  --shadow-lg: 0 16px 48px rgba(139,69,19,0.2);
  --shadow-xl: 0 24px 64px rgba(139,69,19,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.1) rotate(5deg); }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.02em;
}
.navbar.scrolled .nav-logo-text { color: var(--brown); }
.navbar:not(.scrolled) .nav-logo-text { color: var(--white); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  color: var(--white);
}
.navbar.scrolled .nav-links a { color: var(--text-secondary); }
.nav-links a:hover { background: rgba(245,166,35,0.15); color: var(--orange-dark); }
.nav-cta {
  text-decoration: none;
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,166,35,0.4); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--brown); }

/* === HERO === */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 35%, var(--orange-dark) 70%, var(--orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('images/site/hero-buffet.webp') center 38%/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,215,0,0.15);
  animation: float var(--duration, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.hero > .container { display: none; }
.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding: 120px 80px 80px;
}
.hero-content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,215,0,0.2);
  border: 1px solid rgba(255,215,0,0.4);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.hero-title-line { color: var(--white); }
.hero-title-accent { color: var(--yellow); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-logo-wrapper {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}
.hero-logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
.hero-logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,215,0,0.3);
  animation: pulse-ring 3s ease-out infinite;
}
.ring-1 { width: 300px; height: 300px; animation-delay: 0s; }
.ring-2 { width: 330px; height: 330px; animation-delay: 1s; }
.ring-3 { width: 360px; height: 360px; animation-delay: 2s; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  z-index: 1;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: scroll-bounce 1.5s ease-in-out infinite;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn.large { padding: 16px 36px; font-size: 1rem; }

/* === SECTION COMMON === */
.section-badge {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--brown);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-badge.light {
  background: rgba(255,215,0,0.2);
  color: var(--yellow);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-primary);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-title { color: var(--text-primary); }

/* === SOBRE === */
.sobre {
  padding: 112px 0;
  background: var(--cream);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-visual { position: relative; }
.sobre-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.sobre-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sobre-img-frame:hover img { transform: scale(1.04); }
.sobre-img-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sobre-img-tag strong { color: var(--brown); font-size: 0.9rem; }
.sobre-img-tag span { color: var(--gray-600); font-size: 0.78rem; }
.sobre-accent-card {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}
.sobre-accent-card .accent-icon { font-size: 1.5rem; flex-shrink: 0; }
.sobre-accent-card strong { display: block; font-size: 1rem; font-weight: 700; }
.sobre-accent-card span { font-size: 0.78rem; opacity: 0.9; }
.sobre-text { display: flex; flex-direction: column; gap: 20px; }
.sobre-desc { color: var(--text-secondary); line-height: 1.7; font-size: 1.02rem; }
.sobre-desc strong { color: var(--brown); }
.sobre-features { display: flex; flex-direction: column; gap: 12px; }
.sobre-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* === CARDÁPIO === */
.cardapio {
  padding: 112px 0;
  background: var(--white);
}
.cardapio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.card-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.card-item.card-featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px var(--orange-light), var(--shadow-md);
}
.card-icon {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card-item:hover .card-icon img { transform: scale(1.08); }
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(139,69,19,0.5) 0%, transparent 50%);
}
.card-body {
  padding: 20px 24px 24px;
  position: relative;
}
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.card-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.card-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === GALERIA === */
.galeria {
  padding: 112px 0;
  background: var(--cream);
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}
.galeria-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: var(--brown-dark);
}
.galeria-wide { grid-column: span 2; }
.galeria-tall { grid-row: span 2; }
.galeria-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s ease;
}
.galeria-item:hover img { transform: scale(1.05); }
.galeria-item::after {
  content: '';
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(45, 20, 5, .9));
  pointer-events: none;
}
.galeria-item figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--white);
}
.galeria-item figcaption strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
}
.galeria-item figcaption span {
  color: rgba(255,255,255,.78);
  font-size: .8rem;
}

/* === DIFERENCIAIS === */
.diferenciais {
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}
.diferenciais-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 50%, var(--orange-dark) 100%);
  z-index: 0;
}
.diferenciais .container { position: relative; z-index: 1; }
.diferenciais .section-title.light { color: var(--white); }
.diferenciais .section-header .section-title { color: var(--white); }
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.diferencial-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.diferencial-item:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.diferencial-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: rgba(255,215,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-bottom: 20px;
  transition: var(--transition);
}
.diferencial-item:hover .diferencial-icon { background: rgba(255,215,0,0.25); }
.diferencial-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.diferencial-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* === CTA BANNER === */
.cta-banner {
  padding: 80px 0;
  background: var(--yellow-light);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.cta-quote { flex: 1; }
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: -12px;
}
.cta-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.3;
}
.cta-quote cite {
  display: block;
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: normal;
}
.cta-action {
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-action h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}
.cta-action p { color: var(--text-secondary); font-size: 0.9rem; }

/* === CONTATO === */
.contato {
  padding: 112px 0;
  background: var(--gray-50);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contato-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.info-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-dark);
  flex-shrink: 0;
}
.info-card h4 { font-weight: 600; color: var(--text-primary); margin-bottom: 4px; font-size: 0.9rem; }
.info-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.5; }
.info-card a { color: var(--orange-dark); text-decoration: none; font-size: 0.88rem; font-weight: 500; }
.info-card a:hover { color: var(--brown); }
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--text-secondary);
  border: 1px solid var(--gray-200);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.social-btn:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.contato-map { height: 100%; }
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  border: 1px solid var(--gray-200);
}
.map-wrapper iframe { display: block; }

/* === FOOTER === */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.6; max-width: 260px; }
.footer-slogan {
  font-style: italic;
  color: var(--yellow) !important;
  font-family: 'Playfair Display', serif;
  font-size: 1rem !important;
}
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact p { font-size: 0.875rem; line-height: 1.5; }
.footer-contact a {
  color: var(--orange-light);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}
.footer-contact a:hover { color: var(--yellow); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 40px 80px;
    gap: 32px;
  }
  .hero-content { max-width: 100%; align-items: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-badge { align-self: center; }
  .hero-image { justify-content: center; }
  .hero-logo-wrapper { width: 240px; height: 240px; }
  .hero-logo { width: 200px; height: 200px; }
  .ring-1 { width: 220px; height: 220px; }
  .ring-2 { width: 245px; height: 245px; }
  .ring-3 { width: 265px; height: 265px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-accent-card { top: auto; bottom: -20px; right: 20px; }
  .cardapio-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-tall { grid-row: span 1; }
  .contato-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; padding: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107,52,16,0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.4rem; color: var(--white); padding: 12px 32px; }
  .hero { padding: 80px 24px 60px; }
  .cardapio-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .galeria-wide { grid-column: span 1; }
  .cta-inner { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 16px; }
  .stat-number { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { justify-content: center; }
  .map-wrapper { height: 280px; }
}
