/* =============================================
   Variables de color (del theme original)
   ============================================= */
:root {
  --background: #ffffff;
  --foreground: #000000;
  --card: #ffffff;
  --card-foreground: #000000;
  --primary: #4C1D95;        /* Morado oscuro */
  --primary-foreground: #ffffff;
  --secondary: #000000;
  --secondary-foreground: #ffffff;
  --muted: #f3f0fa;
  --muted-foreground: #6b5f80;
  --accent: #7c3aed;         /* Morado claro */
  --accent-foreground: #ffffff;
  --destructive: #ef4444;
  --border: #e8e0f5;
  --input: #e8e0f5;
  --radius: 0.75rem;
}

/* =============================================
   Reset & Base
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'DM Sans', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* =============================================
   Layout Utilities
   ============================================= */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.flex        { display: flex; }
.flex-col    { flex-direction: column; }
.items-center   { align-items: center; }
.items-start    { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between{ justify-content: space-between; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.grid   { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.inset-0 { top:0; left:0; right:0; bottom:0; }
.overflow-hidden { overflow: hidden; }
.w-full  { width: 100%; }
.h-full  { height: 100%; }
.min-h-screen { min-height: 100vh; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* =============================================
   Typography
   ============================================= */
.text-sm   { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-3xl  { font-size: 1.875rem; }
.text-4xl  { font-size: 2.25rem; }
.text-5xl  { font-size: 3rem; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.leading-tight   { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* =============================================
   Colors
   ============================================= */
.text-white    { color: #fff; }
.text-primary  { color: var(--primary); }
.text-muted    { color: var(--muted-foreground); }
.bg-primary    { background: var(--primary); }
.bg-white      { background: #fff; }
.bg-muted      { background: var(--muted); }
.bg-card       { background: var(--card); }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--primary);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(76,29,149,0.3); }
.header nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem; max-width: 1280px; margin: 0 auto; }
.header .logo {
  color: #fff; font-weight: 700; font-size: 1.1rem;
  cursor: pointer; max-width: 60%;
}
.header .nav-links { display: flex; align-items: center; gap: 2rem; }
.header .nav-links button { color: #fff; font-size: 1rem; transition: color .2s; background: none; border: none; cursor: pointer; }
.header .nav-links button:hover { color: var(--accent); }
.header .btn-cta {
  background: #fff; color: var(--primary);
  padding: 0.5rem 1.5rem; border-radius: var(--radius);
  font-weight: 600; transition: all .3s;
}
.header .btn-cta:hover { background: var(--accent); color: #fff; }
.mobile-menu-btn { display: none; color: #fff; font-size: 1.5rem; background: none; border: none; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; gap: 1rem; padding: 1rem; }
.mobile-menu button { color: #fff; text-align: left; font-size: 1rem; background: none; border: none; cursor: pointer; }
.mobile-menu .btn-cta { background: #fff; color: var(--primary); padding: 0.5rem 1rem; border-radius: var(--radius); font-weight: 600; }
.mobile-menu.open { display: flex; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.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(135deg, rgba(76,29,149,0.95) 0%, rgba(76,29,149,0.9) 50%, rgba(0,0,0,0.8) 100%);
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 8rem 1rem 4rem;
  max-width: 900px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: #fff; font-weight: 700;
  line-height: 1.2; margin-bottom: 1.5rem;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: #fff; color: var(--primary);
  padding: 1rem 2rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1.1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all .3s; box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid #fff; padding: 1rem 2rem;
  border-radius: var(--radius); font-weight: 600; font-size: 1.1rem;
  transition: all .3s; cursor: pointer;
}
.btn-outline:hover { background: #fff; color: var(--primary); }
.hero-features { display: flex; gap: 2rem; justify-content: center; margin-top: 4rem; flex-wrap: wrap; }
.hero-feature { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.8); }
.hero-dot { width: 10px; height: 10px; background: #fff; border-radius: 50%; flex-shrink: 0; }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10;
}
.scroll-box {
  width: 1.5rem; height: 2.5rem; border: 2px solid rgba(255,255,255,0.6);
  border-radius: 999px; display: flex; justify-content: center; padding-top: 0.5rem;
}
.scroll-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: scrollBounce 2s infinite; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } }

/* =============================================
   SECTION BASE
   ============================================= */
section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.section-header p  { font-size: 1.1rem; color: var(--muted-foreground); max-width: 600px; margin: 0 auto; }

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: box-shadow .3s, transform .3s;
  overflow: hidden;
}
.card:hover { box-shadow: 0 12px 40px rgba(76,29,149,0.15); transform: translateY(-4px); }
.card-content { padding: 2rem; }

/* =============================================
   FEATURES SECTION (StandardFeaturesSection)
   ============================================= */
.features-section { background: var(--muted); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.feature-card .icon-wrap {
  width: 3rem; height: 3rem; border-radius: 0.5rem;
  background: rgba(76,29,149,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: background .3s;
}
.feature-card:hover .icon-wrap { background: rgba(76,29,149,0.2); }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.feature-card p  { color: var(--muted-foreground); font-size: 0.95rem; }
.icon { width: 1.5rem; height: 1.5rem; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section { background: var(--background); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }
.plan-card { display: flex; flex-direction: column; height: 100%; }
.plan-header { padding: 2rem; text-align: center; border-bottom: 1px solid var(--border); background: var(--muted); }
.plan-icon { width: 3rem; height: 3rem; color: var(--primary); margin: 0 auto 1rem; }
.plan-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 1rem; }
.plan-price { font-size: 3.5rem; font-weight: 700; color: var(--foreground); }
.plan-price span { font-size: 1.2rem; font-weight: 400; color: var(--muted-foreground); }
.plan-body { padding: 2rem; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; color: rgba(0,0,0,0.7); }
.check-icon { width: 1.2rem; height: 1.2rem; stroke: var(--primary); flex-shrink: 0; margin-top: 2px; }
.plan-footer { padding: 0 2rem 2rem; }
.btn-plan {
  width: 100%; background: var(--primary); color: #fff;
  padding: 1rem; border-radius: var(--radius); font-weight: 700;
  font-size: 1rem; transition: all .3s; border: none; cursor: pointer;
}
.btn-plan:hover { background: var(--accent); box-shadow: 0 8px 24px rgba(76,29,149,0.3); }

/* =============================================
   LEAD FORM SECTION
   ============================================= */
.form-section { background: #fff; }
.form-wrapper { max-width: 640px; margin: 0 auto; }
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: calc(var(--radius)*2); box-shadow: 0 12px 40px rgba(0,0,0,0.1); padding: 3rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; }
.form-group input {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--input); border-radius: var(--radius);
  font-size: 1rem; font-family: inherit;
  background: var(--background); color: var(--foreground);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(76,29,149,0.1); }
.btn-submit {
  width: 100%; background: var(--primary); color: #fff;
  padding: 1rem; border-radius: var(--radius); font-weight: 700;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all .3s; border: none; cursor: pointer;
}
.btn-submit:hover { background: var(--accent); box-shadow: 0 8px 24px rgba(76,29,149,0.3); }
.form-note { font-size: 0.85rem; color: var(--muted-foreground); text-align: center; margin-top: 1rem; }
.success-card {
  background: #f0fdf4; border: 2px solid #86efac;
  border-radius: calc(var(--radius)*2); padding: 3rem; text-align: center;
  max-width: 640px; margin: 0 auto;
}
.success-card h3 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; margin-top: 1rem; }
.success-card p { color: var(--muted-foreground); font-size: 1.1rem; }
.alert { padding: 1rem; border-radius: var(--radius); margin-bottom: 1rem; font-weight: 500; }
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fca5a5; }
.alert-success { background: #f0fdf4; color: #15803d; border: 1px solid #86efac; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--primary); color: #fff; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; padding-bottom: 3rem; }
.footer h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.footer h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.footer p  { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact .item { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.footer-contact .item svg { flex-shrink: 0; stroke: var(--accent); }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links button { color: rgba(255,255,255,0.8); text-align: left; font-size: 0.95rem; transition: color .2s; }
.footer-links button:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding: 1.5rem 1rem; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  background: #25D366; color: #fff;
  width: 4rem; height: 4rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: transform .3s, box-shadow .3s;
  animation: fadeInUp .5s ease 1s both;
  border: none; cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.whatsapp-float .pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; animation: ping 2s cubic-bezier(0,0,.2,1) infinite; opacity: 0;
}
.whatsapp-tooltip {
  position: absolute; right: calc(100% + 0.75rem); top: 50%; transform: translateY(-50%);
  background: #1f2937; color: #fff; padding: 0.5rem 1rem;
  border-radius: 0.5rem; font-size: 0.85rem; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* =============================================
   RESTAURANT PAGE – HERO
   ============================================= */
.restaurant-hero {
  position: relative; min-height: 80vh;
  display: flex; align-items: center; padding-top: 5rem;
  overflow: hidden;
}
.restaurant-hero-content { position: relative; z-index: 10; max-width: 750px; padding: 4rem 1rem; }
.restaurant-hero h1 { font-size: clamp(2rem, 5vw, 4.5rem); color: #fff; font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; }
.restaurant-hero h1 span { color: var(--accent); }
.restaurant-hero p { font-size: 1.2rem; color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; }
.restaurant-hero .back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; font-size: 0.95rem; transition: color .2s; }
.restaurant-hero .back-link:hover { color: #fff; }

/* =============================================
   MENU DIGITAL
   ============================================= */
.menu-section { background: var(--muted); }
.menu-categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.menu-cat-btn {
  padding: 0.5rem 1.5rem; border-radius: 999px; font-weight: 600;
  background: #fff; color: var(--foreground); border: 1px solid var(--border);
  transition: all .3s; cursor: pointer;
}
.menu-cat-btn.active, .menu-cat-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; max-width: 960px; margin: 0 auto; }
.menu-item { display: flex; border-radius: var(--radius); overflow: hidden; }
.menu-item-img { width: 40%; min-height: 180px; overflow: hidden; flex-shrink: 0; }
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.menu-item:hover .menu-item-img img { transform: scale(1.08); }
.menu-item-body { padding: 1.25rem; display: flex; flex-direction: column; justify-content: space-between; flex: 1; }
.menu-item-top .item-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.25rem; }
.menu-item-top .item-price { font-weight: 700; color: var(--primary); font-size: 1.1rem; }
.badge { display: inline-block; background: var(--muted); color: var(--muted-foreground); font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 999px; margin-bottom: 0.5rem; }
.menu-item-body p { color: var(--muted-foreground); font-size: 0.875rem; }
.menu-item.hidden { display: none; }

/* =============================================
   PROMOTIONS SECTION
   ============================================= */
.promos-section { background: #000; color: #fff; padding: 5rem 0; position: relative; overflow: hidden; }
.promos-section .bg-img { position: absolute; inset: 0; z-index: 0; }
.promos-section .bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.promos-section .bg-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, black, rgba(0,0,0,.8), transparent); }
.promos-section .inner { position: relative; z-index: 1; }
.promo-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--destructive); color: #fff; padding: 0.3rem 1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; }
.promos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }
.promo-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(76,29,149,0.3); border-radius: var(--radius); overflow: hidden; transition: border-color .3s; }
.promo-card:hover { border-color: var(--primary); }
.promo-img-wrap { position: relative; height: 200px; overflow: hidden; }
.promo-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.promo-card:hover .promo-img-wrap img { transform: scale(1.08); }
.promo-tag { position: absolute; top: 1rem; right: 1rem; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700; color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.promo-body { padding: 1.5rem; }
.promo-body h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.promo-body p  { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.promo-footer { display: flex; align-items: center; justify-content: space-between; }
.promo-price-old { font-size: 0.85rem; color: var(--muted-foreground); text-decoration: line-through; }
.promo-price-new { font-size: 1.4rem; font-weight: 700; color: var(--accent); }
.btn-order { background: var(--primary); color: #fff; padding: 0.6rem 1.2rem; border-radius: var(--radius); font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: background .2s; border: none; cursor: pointer; }
.btn-order:hover { background: var(--accent); }

/* =============================================
   REVIEWS SECTION
   ============================================= */
.reviews-section { background: var(--muted); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto 3rem; }
.review-card .reviewer { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.avatar { width: 3rem; height: 3rem; border-radius: 50%; background: rgba(76,29,149,0.15); color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; }
.reviewer-name { font-weight: 700; }
.stars { color: #facc15; display: flex; gap: 2px; }
.stars svg { width: 1rem; height: 1rem; fill: currentColor; }
.review-text { color: var(--muted-foreground); font-style: italic; }

/* =============================================
   GOOGLE MAPS SECTION
   ============================================= */
.maps-section { background: var(--background); }
.maps-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; max-width: 1000px; margin: 0 auto; align-items: start; }
.maps-info-card .info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.maps-info-card .info-icon { width: 3rem; height: 3rem; border-radius: 50%; background: rgba(76,29,149,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.maps-info-card h4 { font-weight: 600; margin-bottom: 0.25rem; }
.maps-info-card p  { color: var(--muted-foreground); font-size: 0.95rem; }
.maps-iframe-wrap { height: 450px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.1); border: 1px solid var(--border); }
.maps-iframe-wrap iframe { width: 100%; height: 100%; border: 0; }
.btn-maps { width: 100%; background: var(--primary); color: #fff; padding: 0.75rem; border-radius: var(--radius); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; transition: background .2s; border: none; cursor: pointer; }
.btn-maps:hover { background: var(--accent); }

/* =============================================
   ORDER NOW BUTTON (restaurantes)
   ============================================= */
.order-now-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: #fff;
  padding: 1rem 1.5rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 8px 30px rgba(76,29,149,0.4);
  transition: transform .3s, box-shadow .3s;
  animation: fadeInUp .5s ease .5s both;
  border: none; cursor: pointer;
}
.order-now-btn:hover { transform: scale(1.05); }
.order-now-btn .pulse { position: absolute; inset: 0; border-radius: 999px; background: var(--primary); animation: ping 2s cubic-bezier(0,0,.2,1) infinite; opacity: 0; }

/* =============================================
   CTA SECTION (restaurantes)
   ============================================= */
.cta-section { background: var(--primary); color: #fff; padding: 5rem 1rem; text-align: center; }
.cta-section h2 { font-size: clamp(1.8rem,4vw,3rem); font-weight: 700; margin-bottom: 1.5rem; }
.cta-section p  { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* =============================================
   TOAST NOTIFICATION
   ============================================= */
.toast-container { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 0.5rem; pointer-events: none; }
.toast {
  background: #1f2937; color: #fff; padding: 1rem 1.5rem; border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3); font-size: 0.95rem;
  animation: toastIn .3s ease; min-width: 280px; text-align: center; pointer-events: all;
}
.toast.error { background: var(--destructive); }
.toast.success { background: #16a34a; }
@keyframes toastIn { from { opacity:0; transform: translateY(10px); } to { opacity:1; transform: translateY(0); } }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes ping { 0% { transform: scale(1); opacity: .5; } 75%,100% { transform: scale(1.6); opacity: 0; } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.animate-in { animation: fadeInUp .6s ease both; }
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .header .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .maps-layout { grid-template-columns: 1fr; }
  .maps-iframe-wrap { height: 300px; }
  .form-card { padding: 2rem 1rem; }
  .menu-item { flex-direction: column; }
  .menu-item-img { width: 100%; height: 200px; }
  .promos-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  section { padding: 3rem 0; }
  .section-header h2 { font-size: 1.6rem; }
}
