/* === RÓ LANCHES — STYLE.CSS === */

:root {
  --yellow: #F7C429;
  --yellow-light: #FFE066;
  --yellow-dark: #C49A10;
  --red: #D42B2B;
  --red-dark: #A01C1C;
  --green: #22C55E;
  --dark: #0C0C0C;
  --dark-2: #131313;
  --dark-3: #1A1A1A;
  --dark-4: #222222;
  --dark-5: #2C2C2C;
  --white: #FFFFFF;
  --text-muted: #666;
  --text-dim: #999;
  --border: rgba(255,255,255,0.07);
  --yellow-glow: rgba(247,196,41,0.25);
  --red-glow: rgba(212,43,43,0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.text-yellow { color: var(--yellow); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--dark-5); border-radius: 3px; }

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--yellow);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 8px;
  line-height: 1;
}
.logo-badge.small { padding: 3px 10px; }
.logo-ro { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; line-height: 1; }
.logo-lanches { font-size: 0.55rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }

.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.nav-links a:hover { color: var(--yellow); }

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

.btn-whatsapp-nav {
  display: flex; align-items: center; gap: 6px;
  background: var(--green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-whatsapp-nav:hover { opacity: 0.85; transform: translateY(-1px); }

.cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  transition: background 0.2s;
}
.cart-btn:hover { background: var(--dark-4); }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 900;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0);
  transition: all 0.2s;
}
.cart-count.visible { opacity: 1; transform: scale(1); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(12,12,12,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.mobile-menu a {
  padding: 12px 0;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,0.8);
}
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .nav-links, .btn-whatsapp-nav { display: none; }
  .hamburger { display: flex; }
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto;
}

.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #FF6B00 0%, transparent 70%);
  top: 50%; left: 40%;
  animation: orbFloat 12s ease-in-out infinite;
  opacity: 0.2;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.floating-emojis { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fe {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: floatEmoji linear infinite;
}
.fe-1 { left: 5%; top: 20%; animation-duration: 15s; animation-delay: 0s; }
.fe-2 { left: 90%; top: 30%; animation-duration: 18s; animation-delay: -5s; }
.fe-3 { left: 15%; top: 70%; animation-duration: 20s; animation-delay: -8s; }
.fe-4 { left: 80%; top: 75%; animation-duration: 16s; animation-delay: -3s; }
.fe-5 { left: 50%; top: 10%; animation-duration: 22s; animation-delay: -10s; }
@keyframes floatEmoji {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
  50% { opacity: 0.2; }
  100% { transform: translateY(-40px) rotate(15deg); opacity: 0.1; }
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}
.status-dot.open { background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite; }
.status-dot.closed { background: var(--red); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-highlight { color: var(--yellow); }

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  font-weight: 600;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 900;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--yellow-glow); }
.btn-primary.small { padding: 10px 20px; font-size: 0.85rem; }

.btn-ghost {
  display: flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat { display: flex; flex-direction: column; line-height: 1.2; }
.hero-stat strong { font-size: 1.1rem; font-weight: 900; color: var(--yellow); }
.hero-stat span { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; }
.hero-stat-divider { width: 1px; height: 32px; background: var(--border); }

.hero-visual {
  flex: 0 0 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero-card-3d {
  width: 300px; height: 300px;
  transform-style: preserve-3d;
  perspective: 800px;
  cursor: pointer;
  animation: heroCardFloat 6s ease-in-out infinite;
}
@keyframes heroCardFloat {
  0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(-8deg); }
  50% { transform: translateY(-16px) rotateX(-2deg) rotateY(5deg); }
}
.hero-card-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
  border: 1px solid rgba(247,196,41,0.2);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: visible;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px var(--yellow-glow);
}
.food-glow-ring {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,196,41,0.3) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}
.food-emoji-main { font-size: 7rem; position: relative; z-index: 1; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }

.food-label-tag {
  position: absolute;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 50px;
}
.top-tag { top: -10px; right: 20px; transform: rotate(3deg); }
.bot-tag { bottom: -10px; left: 20px; transform: rotate(-3deg); background: var(--red); color: #fff; }

@media (max-width: 900px) {
  .hero { flex-direction: column; align-items: flex-start; gap: 40px; text-align: left; }
  .hero-visual { display: none; }
}

/* ===================== SECTIONS ===================== */
.section { padding: 90px 0; }
.section-alt { background: var(--dark-2); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(247,196,41,0.1);
  border: 1px solid rgba(247,196,41,0.2);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
}
.section-sub { color: var(--text-dim); font-size: 0.95rem; max-width: 480px; margin: 0 auto; }

/* ===================== CATEGORY TABS ===================== */
.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  position: sticky;
  top: 68px;
  z-index: 100;
  background: var(--dark);
  padding: 12px 0;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  border-bottom: 1px solid var(--border);
}
.cat-tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-dim);
  background: var(--dark-3);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.cat-tab.active, .cat-tab:hover {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}

/* ===================== MENU GRID ===================== */
.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* ---- CATEGORY SECTION ---- */
.cat-section { }

.cat-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.cat-section-header::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 60px; height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.cat-section-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cat-section-emoji {
  font-size: 2.2rem;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
.cat-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--white);
  margin: 0 0 3px;
}
.cat-section-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}
.cat-section-count {
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--yellow);
  background: rgba(247,196,41,0.1);
  border: 1px solid rgba(247,196,41,0.2);
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.cat-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.menu-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  position: relative;
}
.menu-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px var(--yellow-glow);
  border-color: rgba(247,196,41,0.3);
}
.menu-card.unavailable { opacity: 0.5; pointer-events: none; }

.menu-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
  background: var(--dark-4);
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.menu-card-img-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(247,196,41,0.1) 0%, transparent 70%);
}

.menu-card-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.menu-card-body { padding: 16px; }
.menu-card-name {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--white);
}
.menu-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  min-height: 36px;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-card-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--yellow);
}
.menu-card-add {
  background: var(--yellow);
  color: var(--dark);
  width: 36px; height: 36px;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.menu-card-add:hover { transform: scale(1.1); box-shadow: 0 4px 12px var(--yellow-glow); }

/* ===================== STEPS ===================== */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
}
.step {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  max-width: 220px;
  transition: border-color 0.3s, transform 0.3s;
}
.step:hover { border-color: rgba(247,196,41,0.3); transform: translateY(-4px); }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(247,196,41,0.15);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 2.2rem; margin-bottom: 12px; }
.step h3 { font-size: 1rem; font-weight: 900; margin-bottom: 8px; }
.step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.step-arr {
  font-size: 2rem;
  color: var(--dark-5);
  align-self: center;
  flex-shrink: 0;
  font-weight: 900;
}

@media (max-width: 768px) {
  .steps-row { flex-direction: column; align-items: center; }
  .step-arr { transform: rotate(90deg); }
  .step { max-width: 100%; width: 100%; }
}

/* ===================== SOBRE ===================== */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sobre-texto .section-tag { display: inline-block; }
.sobre-texto p { color: var(--text-dim); margin: 20px 0 28px; font-size: 0.95rem; }
.sobre-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sobre-tag {
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dim);
}
.sobre-visual {
  display: flex;
  justify-content: center;
}
.sobre-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
}
.sobre-store-placeholder {
  padding: 40px;
  display: flex;
  justify-content: center;
}
.store-facade {
  width: 200px;
  background: var(--yellow);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.store-sign {
  background: var(--red);
  color: #fff;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.store-sign-ro { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; line-height: 1; }
.store-sign-l { display: block; font-size: 0.65rem; font-weight: 900; letter-spacing: 0.1em; }
.store-windows { display: flex; gap: 10px; justify-content: center; margin-bottom: 12px; }
.store-window { width: 50px; height: 50px; background: rgba(0,0,0,0.3); border-radius: 4px; }
.store-door { width: 40px; height: 60px; background: rgba(0,0,0,0.4); border-radius: 4px 4px 0 0; margin: 0 auto; }

@media (max-width: 768px) {
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-visual { display: none; }
}

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-card:hover { border-color: rgba(247,196,41,0.25); transform: translateY(-3px); }
.cc-icon { font-size: 2rem; margin-bottom: 12px; }
.contact-card h3 { font-size: 0.9rem; font-weight: 900; margin-bottom: 8px; color: var(--yellow); }
.contact-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 12px; }
.cc-link { font-size: 0.82rem; font-weight: 700; color: var(--yellow); transition: opacity 0.2s; }
.cc-link:hover { opacity: 0.7; }
.btn-wa-contact {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  transition: opacity 0.2s;
}
.btn-wa-contact:hover { opacity: 0.85; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer-brand p { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===================== CART SIDEBAR ===================== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 990;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.cart-overlay.visible { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--dark-2);
  border-left: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1.1rem; font-weight: 900; }

.cart-body { flex: 1; overflow-y: auto; padding: 16px; }

.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty-icon { font-size: 3rem; margin-bottom: 12px; }
.cart-empty p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.9rem; }

.cart-items { display: flex; flex-direction: column; gap: 12px; }

.cart-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  position: relative;
}
.cart-item-header { display: flex; gap: 10px; align-items: flex-start; }
.cart-item-emoji { font-size: 1.8rem; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 800; font-size: 0.9rem; margin-bottom: 2px; }
.cart-item-price { color: var(--yellow); font-size: 0.82rem; font-weight: 700; }
.cart-item-obs { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; font-style: italic; }
.cart-item-controls {
  display: flex; align-items: center; gap: 10px;
  margin-top: 10px;
}
.cart-item-qty {
  display: flex; align-items: center; gap: 8px;
  background: var(--dark-4);
  border-radius: 6px;
  padding: 4px 8px;
}
.qty-btn-sm {
  width: 22px; height: 22px;
  background: var(--dark-5);
  border-radius: 4px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.qty-btn-sm:hover { background: var(--yellow); color: var(--dark); }
.cart-item-qty span { font-size: 0.9rem; font-weight: 800; min-width: 20px; text-align: center; }
.cart-item-remove {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 700;
  margin-left: auto;
  transition: opacity 0.2s;
}
.cart-item-remove:hover { opacity: 0.7; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--dark-2);
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.cart-total-val { font-size: 1.4rem; font-weight: 900; color: var(--yellow); }
.btn-checkout {
  width: 100%;
  background: var(--yellow);
  color: var(--dark);
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 900;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--yellow-glow); }

.close-btn {
  width: 32px; height: 32px;
  background: var(--dark-4);
  border-radius: 6px;
  color: var(--text-dim);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.close-btn:hover { background: var(--red); color: #fff; }

/* ===================== MODAL ===================== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(8px);
}
.modal-backdrop.open { display: flex; }

.modal {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: modalIn 0.25s ease;
}
.modal.modal-sm { max-width: 380px; }
@keyframes modalIn {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-weight: 900; font-size: 1.05rem; }

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 800; color: var(--text-dim); letter-spacing: 0.02em; }
.form-group input, .form-group textarea {
  background: var(--dark-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  resize: vertical;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--yellow); }

.delivery-toggle { display: flex; gap: 8px; }
.dtoggle {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--dark-3);
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 800;
  transition: all 0.2s;
}
.dtoggle.active { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }

.order-preview {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.order-preview-title {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.order-preview-item {
  display: flex; justify-content: space-between;
  font-size: 0.85rem;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.order-preview-item:last-child { border-bottom: none; }
.order-preview-total {
  display: flex; justify-content: space-between;
  font-size: 1rem;
  font-weight: 900;
  margin-top: 10px;
  color: var(--yellow);
}

.btn-confirm {
  width: 100%;
  background: var(--green);
  color: #fff;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-confirm:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,0.3); }

/* Item modal */
.item-modal-preview {
  text-align: center;
  font-size: 4rem;
  padding: 16px 0;
}
.qty-selector {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 4px;
}
.qty-selector label { font-size: 0.82rem; font-weight: 800; color: var(--text-dim); }
.qty-controls { display: flex; align-items: center; gap: 14px; }
.qty-btn {
  width: 32px; height: 32px;
  background: var(--dark-4);
  border-radius: 8px;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.qty-btn:hover { background: var(--yellow); color: var(--dark); }
#qtyVal { font-size: 1.1rem; font-weight: 900; min-width: 24px; text-align: center; }

/* ===================== ORDER TRACKING ===================== */
.tracking-screen {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.tracking-content {
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.tracking-logo { font-size: 4rem; margin-bottom: 20px; animation: bounce 1s ease; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}
.tracking-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--yellow);
  margin-bottom: 8px;
}
.tracking-content > p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 40px; }

.tracking-steps {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tr-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  opacity: 0.35;
  transition: opacity 0.5s;
}
.tr-step.active { opacity: 1; }
.tr-icon { font-size: 1.5rem; width: 40px; text-align: center; }
.tr-info { display: flex; flex-direction: column; text-align: left; }
.tr-info strong { font-size: 0.95rem; font-weight: 900; }
.tr-info span { font-size: 0.78rem; color: var(--text-muted); }
.tr-line {
  width: 2px; height: 20px;
  background: var(--border);
  margin-left: 19px;
  transition: background 0.5s;
}
.tr-line.active { background: var(--yellow); }

.tracking-note {
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.btn-wa-tracking {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 10px;
  transition: opacity 0.2s;
}
.btn-wa-tracking:hover { opacity: 0.85; }

.btn-new-order {
  background: var(--dark-3);
  border: 1.5px solid var(--border);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  transition: all 0.2s;
}
.btn-new-order:hover { border-color: var(--yellow); color: var(--yellow); }

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s, transform 0.5s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.cat-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.cat-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== PAYMENT ===================== */
.payment-opts {
  display: flex; gap: 8px;
}
.pay-opt {
  flex: 1;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--dark-3);
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 800;
  transition: all 0.2s;
  text-align: center;
}
.pay-opt:hover { border-color: rgba(247,196,41,0.4); color: var(--white); }
.pay-opt.active { background: rgba(247,196,41,0.12); border-color: var(--yellow); color: var(--yellow); }

.pix-box {
  background: rgba(0,180,80,0.06);
  border: 1.5px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.pix-header { display: flex; align-items: flex-start; gap: 12px; }
.pix-logo { font-size: 1.6rem; line-height: 1; }
.pix-header strong { font-size: 0.88rem; font-weight: 900; display: block; margin-bottom: 2px; }
.pix-header p { font-size: 0.78rem; color: var(--text-muted); }

.pix-key-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  gap: 10px;
}
.pix-key-info { display: flex; flex-direction: column; }
.pix-key-info small { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 2px; }
.pix-key-info strong { font-size: 1rem; font-weight: 900; color: var(--white); letter-spacing: 0.02em; }
.pix-copy-btn {
  background: var(--green);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.pix-copy-btn:hover { opacity: 0.8; }

.pix-total-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.85rem; color: var(--text-dim);
}
.pix-total-row strong { font-size: 1.2rem; font-weight: 900; color: var(--green); }

.pix-aviso {
  background: rgba(247,196,41,0.08);
  border: 1px solid rgba(247,196,41,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.pix-aviso strong { color: var(--yellow); }

.cartao-info {
  display: flex; align-items: center; gap: 12px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.cartao-info span { font-size: 1.5rem; }

/* ===================== TOAST ===================== */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--dark-3);
  border: 1px solid rgba(247,196,41,0.3);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  z-index: 3000;
  animation: toastIn 0.3s ease;
  display: flex; align-items: center; gap: 8px;
}
@keyframes toastIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===================== RESPONSIVE — MOBILE ===================== */

/* --- TABLET (até 768px) --- */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    min-height: 90vh;
    padding: 100px 20px 60px;
  }
  .hero-title { font-size: clamp(2.6rem, 11vw, 4rem); }
  .hero-sub { font-size: 0.85rem; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost { width: 100%; justify-content: center; padding: 15px 20px; font-size: 1rem; }
  .hero-stats { gap: 16px; }
  .hero-stat strong { font-size: 0.95rem; }
  .hero-stat span { font-size: 0.65rem; }

  /* SECTIONS */
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }

  /* CATEGORY TABS — scroll horizontal */
  .cat-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cat-tabs::-webkit-scrollbar { display: none; }
  .cat-tab { flex-shrink: 0; font-size: 0.8rem; padding: 7px 16px; }

  /* MENU GRID — 1 coluna no mobile */
  .cat-section-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* MENU CARD — layout horizontal no mobile */
  .menu-card { display: flex; flex-direction: row; align-items: stretch; }
  .menu-card-img {
    width: 100px;
    height: auto;
    min-height: 100px;
    flex-shrink: 0;
    font-size: 2.8rem;
  }
  .menu-card-body { flex: 1; padding: 12px; display: flex; flex-direction: column; justify-content: space-between; }
  .menu-card-name { font-size: 0.9rem; }
  .menu-card-desc { font-size: 0.75rem; min-height: unset; margin-bottom: 8px; }
  .menu-card-price { font-size: 1.05rem; }
  .menu-card-add { width: 32px; height: 32px; font-size: 1.1rem; }

  /* CAT SECTION HEADER */
  .cat-section-header { flex-wrap: wrap; gap: 8px; }
  .cat-section-emoji { font-size: 1.8rem; }
  .cat-section-title { font-size: 1.5rem; }

  /* STEPS */
  .step-arr { font-size: 1.5rem; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-card { padding: 20px; }
  .cc-icon { font-size: 1.5rem; margin-bottom: 8px; }
  .contact-card h3 { font-size: 0.82rem; }
  .contact-card p { font-size: 0.8rem; }

  /* FOOTER */
  .footer-content { flex-direction: column; gap: 20px; }
  .footer-links { gap: 16px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; }

  /* CART SIDEBAR — full width */
  .cart-sidebar { width: 100vw; }

  /* CHECKOUT MODAL — bottom sheet */
  .modal-backdrop { align-items: flex-end; padding: 0; }
  .modal {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
  }
  .modal-body { padding: 16px 20px; gap: 14px; }
  .modal-header { padding: 16px 20px; }
  .modal-footer { padding: 16px 20px; }

  /* PAYMENT OPTIONS — 3 botoes em linha compacta */
  .pay-opt { font-size: 0.75rem; padding: 10px 6px; }

  /* ORDER TRACKING */
  .tracking-content { padding: 0 8px; }
  .tracking-content h2 { font-size: 2rem; }
  .tracking-steps { padding: 16px; }

  /* PIX BOX */
  .pix-key-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pix-copy-btn { width: 100%; text-align: center; padding: 8px; }
}

/* --- SMARTPHONE (até 430px) --- */
@media (max-width: 430px) {

  .container { padding: 0 16px; }

  /* NAV */
  .nav-container { padding: 0 16px; }

  /* HERO */
  .hero { padding: 90px 16px 50px; min-height: unset; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 3rem); line-height: 0.95; }
  .status-badge { font-size: 0.72rem; }
  .hero-stats { gap: 12px; }
  .hero-stat strong { font-size: 0.9rem; }
  .hero-stat-divider { height: 24px; }

  /* MENU */
  .cat-section { margin-bottom: 0; }
  .menu-grid { gap: 40px; }
  .menu-card-img { width: 88px; min-height: 88px; font-size: 2.4rem; }
  .menu-card-body { padding: 10px; }
  .menu-card-name { font-size: 0.85rem; }

  /* CATEGORY TABS */
  .cat-tabs {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* SECTION TITLE */
  .section-title { font-size: 1.8rem; }

  /* CONTACT — 1 coluna */
  .contact-grid { grid-template-columns: 1fr; }

  /* CART */
  .cart-header { padding: 16px; }
  .cart-body { padding: 12px; }
  .cart-footer { padding: 16px; }
  .cart-total-val { font-size: 1.2rem; }

  /* CHECKOUT MODAL */
  .modal-body { padding: 14px 16px; gap: 12px; }
  .modal-header { padding: 14px 16px; }
  .modal-footer { padding: 14px 16px; }
  .form-group input, .form-group textarea { padding: 10px 12px; font-size: 0.85rem; }
  .delivery-toggle { gap: 6px; }
  .dtoggle { font-size: 0.8rem; padding: 9px 6px; }

  /* PAYMENT */
  .payment-opts { gap: 6px; }
  .pay-opt { font-size: 0.72rem; padding: 9px 4px; }

  /* TRACKING */
  .tracking-logo { font-size: 3rem; }
  .tracking-content h2 { font-size: 1.8rem; }
  .tr-info strong { font-size: 0.85rem; }

  /* ITEM MODAL */
  .item-modal-preview { font-size: 3rem; }
}

/* --- BOTÃO WHATSAPP FLUTUANTE (mobile) --- */
@media (max-width: 768px) {
  .fab-whatsapp {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 800;
    background: #25D366;
    color: #fff;
    width: 54px; height: 54px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    font-size: 1.5rem;
    transition: transform 0.2s;
  }
  .fab-whatsapp:hover { transform: scale(1.08); }
  .fab-whatsapp.hidden { opacity: 0; pointer-events: none; }
}
@media (min-width: 769px) {
  .fab-whatsapp { display: none; }
}
