/* =============================================
   BAFORA — CSS Principal
   Conceito: Churrasco raiz com presença moderna
   Paleta: Preto carvão + Vermelho brasa + Laranja fogo
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:     #0a0a0a;
  --black-2:   #111111;
  --black-3:   #1a1a1a;
  --black-4:   #222222;
  --red:       #e63000;
  --red-dark:  #b32200;
  --orange:    #ff6a00;
  --amber:     #ffb300;
  --white:     #f5f5f5;
  --grey:      #888888;
  --grey-2:    #555555;
  --font-title: 'Bebas Neue', sans-serif;
  --font-head:  'Oswald', sans-serif;
  --font-body:  'Inter', sans-serif;
  --transition: 0.3s ease;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ---- Typography ---- */
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--grey);
  max-width: 560px;
}

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

.section-header .section-sub {
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 20px rgba(230, 48, 0, 0.3);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(230, 48, 0, 0.5);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,106,0,0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-fire { font-size: 1.4rem; }

.logo-text {
  font-family: var(--font-title);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #ff6a00, #e63000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--grey);
  transition: color var(--transition);
}

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

.btn-nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 16px rgba(230,48,0,0.25);
}

.btn-nav-whatsapp:hover {
  background: var(--red-dark);
  box-shadow: 0 0 28px rgba(230,48,0,0.45);
}

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

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

/* =============================================
   HERO / SLIDER
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Smoke overlay */
.smoke-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(10,10,10,0.9) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(230,48,0,0.03) 0%, transparent 60%);
}

/* Embers particle container */
.embers {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.ember {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb300, #ff6a00, transparent);
  animation: floatEmber linear infinite;
  opacity: 0;
}

@keyframes floatEmber {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0.8; }
  50%  { opacity: 0.5; transform: translateY(-45vh) translateX(var(--drift)) scale(0.6); }
  100% { transform: translateY(-90vh) translateX(calc(var(--drift) * 1.5)) scale(0.2); opacity: 0; }
}

/* Slider */
.slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a0a00;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}

.slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 10%;
  max-width: 700px;
  animation: slideIn 0.8s ease both;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.slide-tag {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.slide-title {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

.slide-sub {
  font-size: 1.1rem;
  color: rgba(245,245,245,0.7);
  margin-bottom: 32px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px 40px;
  border-radius: 6px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 30px rgba(230,48,0,0.5);
  animation: glowPulse 2.5s ease-in-out infinite;
}

.btn-hero:hover {
  background: var(--red-dark);
  transform: scale(1.04);
  box-shadow: 0 0 50px rgba(230,48,0,0.7);
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(230,48,0,0.5); }
  50%       { box-shadow: 0 0 50px rgba(230,48,0,0.8); }
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 80px;
  left: 10%;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(245,245,245,0.3);
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}

.dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--orange);
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(230,48,0,0.25);
  border: 1px solid rgba(230,48,0,0.4);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}

.slider-arrow:hover { background: var(--red); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  right: 10%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(245,245,245,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* =============================================
   SOBRE
   ============================================= */
.sobre {
  padding: 120px 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.sobre::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,48,0,0.05), transparent 70%);
  pointer-events: none;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(255,106,0,0.2);
}

.img-frame img { border-radius: var(--radius); }

/* Placeholder when image not found */
.img-frame.img-placeholder {
  background: linear-gradient(135deg, #1a0a00, #2d1000);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-frame.img-placeholder::after {
  content: '🔥';
  font-size: 6rem;
  opacity: 0.3;
}

.img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--red);
  color: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(230,48,0,0.4);
}

.badge-num {
  display: block;
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
}

.badge-text {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.sobre-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sobre-content p {
  color: rgba(245,245,245,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.sobre-content strong { color: var(--white); }
.sobre-content em { color: var(--orange); font-style: normal; }

.sobre-divider {
  font-size: 1.5rem;
  margin: 12px 0;
}

.sobre-destaque {
  font-size: 1.1rem !important;
  color: rgba(245,245,245,0.9) !important;
  border-left: 3px solid var(--red);
  padding-left: 16px;
  margin-top: 8px !important;
}

.sobre-final {
  font-family: var(--font-head);
  font-size: 1.2rem !important;
  color: var(--orange) !important;
  margin-top: 12px !important;
  margin-bottom: 24px !important;
}

/* =============================================
   CARDÁPIO
   ============================================= */
.cardapio {
  padding: 120px 0;
  background: var(--black);
}

.cardapio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card-produto {
  background: var(--black-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}

.card-produto:hover {
  transform: translateY(-6px);
  border-color: rgba(230,48,0,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px rgba(230,48,0,0.1);
}

.card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0800, #2d1200);
}

.card-img.img-placeholder::after {
  content: '🥩';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.3;
}

.card-img img {
  transition: transform 0.5s ease;
}

.card-produto:hover .card-img img { transform: scale(1.05); }

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.card-badge--new { background: var(--orange); }

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.card-body p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.5;
  flex: 1;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--orange);
  border: 1px solid rgba(255,106,0,0.4);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 6px;
  margin-top: 4px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  width: fit-content;
}

.btn-card:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* =============================================
   DIFERENCIAIS
   ============================================= */
.diferenciais {
  padding: 120px 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.smoke-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(230,48,0,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(255,106,0,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
  text-align: center;
}

.diferencial-item {
  padding: 36px 24px;
  background: var(--black-3);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--transition), transform var(--transition);
}

.diferencial-item:hover {
  border-color: rgba(230,48,0,0.3);
  transform: translateY(-4px);
}

.dif-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.diferencial-item h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.diferencial-item p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
}

.diferenciais-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.diferenciais-cta p {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: rgba(245,245,245,0.7);
}

.diferenciais-cta strong { color: var(--orange); }

/* =============================================
   DEPOIMENTOS
   ============================================= */
.depoimentos {
  padding: 120px 0;
  background: var(--black);
}

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

.depoimento-card {
  background: var(--black-3);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.depoimento-card:hover {
  border-color: rgba(230,48,0,0.2);
  transform: translateY(-4px);
}

.depoimento-card.featured {
  border-color: rgba(230,48,0,0.3);
  background: linear-gradient(135deg, rgba(230,48,0,0.06), var(--black-3));
  transform: scale(1.03);
}

.dep-stars { font-size: 1rem; letter-spacing: 2px; }

.dep-text {
  font-size: 1rem;
  color: rgba(245,245,245,0.8);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.dep-text::before { content: '"'; color: var(--orange); font-size: 1.5rem; }
.dep-text::after  { content: '"'; color: var(--orange); font-size: 1.5rem; }

.dep-autor {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dep-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.dep-autor strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
}

.dep-autor span {
  font-size: 0.78rem;
  color: var(--grey);
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  padding: 120px 0;
  background: var(--black-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-content h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  color: rgba(245,245,245,0.6);
  line-height: 1.1;
}

.cta-destaque {
  color: var(--white) !important;
  margin-bottom: 16px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 20px 52px;
  border-radius: 6px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 40px rgba(230,48,0,0.45);
  animation: glowPulse 2.5s ease-in-out infinite;
}

.btn-cta:hover {
  background: var(--red-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 60px rgba(230,48,0,0.65);
}

.cta-sub {
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: 4px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--grey);
  transition: color var(--transition), border-color var(--transition);
}

.footer-social a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.footer-info h4,
.footer-cta h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--grey);
}

.footer-info li i { color: var(--orange); width: 16px; }

.footer-info a { color: var(--grey); transition: color var(--transition); }
.footer-info a:hover { color: var(--orange); }

.footer-cta p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 6px;
  transition: background var(--transition), transform var(--transition);
}

.btn-footer-whatsapp:hover {
  background: #1ea855;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--grey-2);
}

/* =============================================
   AOS — Animate on Scroll (manual)
   ============================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  .cardapio-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 20px; }
  .btn-nav-whatsapp { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 28px 24px;
    border-top: 1px solid rgba(255,106,0,0.1);
  }

  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .cardapio-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .depoimento-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .slide-title { font-size: clamp(2.8rem, 12vw, 5rem); }

  .slider-arrow { display: none; }
}

@media (max-width: 480px) {
  .section-title { font-size: 2rem; }
  .btn-hero { padding: 14px 28px; font-size: 0.9rem; }
  .btn-cta { padding: 16px 32px; font-size: 1rem; }
}
