
/* ============================================================
   TACOS ESTILO CHAPALA — style.css
   ============================================================ */
 
/* CURSOR CHILE */
* {
  cursor: url('img/chile-cursor.png') 8 8, auto !important;
}
a, button { cursor: url('img/chile-cursor.png') 8 8, pointer !important; }
 
/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
:root {
  --negro:      #0D0D0D;
  --rojo:       #CC0000;
  --dorado:     #FFB800;
  --verde:      #2D6A2D;
  --gris-card:  #1A1A1A;
  --blanco:     #FFFFFF;
  --gris-texto: #CCCCCC;
  --verde-wa:   #25D366;
}
 
html { scroll-behavior: smooth; }
 
body {
  font-family: 'Nunito', sans-serif;
  background: var(--negro);
  color: var(--blanco);
  overflow-x: hidden;
}
 
/* ─── FADE IN ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
 
/* ─── TOP BANNER ──────────────────────────────────────────── */
.top-banner {
  position: sticky;
  top: 0;
  z-index: 1001;
  height: 36px;
  background: var(--rojo);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.banner-btn {
  background: var(--dorado);
  color: var(--negro);
  border-radius: 20px;
  padding: 3px 10px;
  text-decoration: none;
  font-family: 'Fredoka One', cursive;
  font-size: 12px;
  border: none;
}
.banner-btn:hover { background: #e0a200; }
.banner-mobile { display: none; }
.banner-desktop { display: inline; }
@media(max-width:600px) {
  .banner-mobile { display: inline; }
  .banner-desktop { display: none; }
}
 
/* ─── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  background: var(--negro);
  box-shadow: 0 2px 20px rgba(204,0,0,0.4);
  position: sticky;
  top: 36px;
  z-index: 1000;
  height: 68px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 
.nav-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}
 
#navMenu {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
 
.nav-link {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--dorado);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--rojo); }
 
.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
 
.btn-llamar {
  background: var(--rojo);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn-llamar:hover { background: #a00000; }
 
#cart-btn {
  background: var(--dorado);
  color: var(--negro);
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 25px;
  border: none;
}
#cart-btn:hover { background: #e0a200; }
 
#lang-btn {
  background: transparent;
  border: 2px solid var(--dorado);
  color: var(--dorado);
  font-family: 'Fredoka One', cursive;
  font-size: 0.85rem;
  border-radius: 20px;
  padding: 6px 12px;
}
#lang-btn:hover { background: var(--dorado); color: var(--negro); }
 
/* HAMBURGUESA */
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dorado);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin: 5px 0;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,7px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-7px); }
 
/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
 
.hero-bg {
  position: absolute;
  inset: -20px;
  background-image: url('img/hero.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: transform 0.1s ease-out;
}
 
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.3) 0%,
    rgba(13,13,13,0.65) 40%,
    rgba(204,0,0,0.45) 100%
  );
  z-index: 1;
}
 
.hero-content {
  position: relative;
  z-index: 3;
  padding: 30px 1.5rem;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
 
/* SPARKS */
.hero-sparks {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
}
.hero-sparks span {
  position: absolute;
  display: block;
  border-radius: 50%;
  animation: spark-up linear infinite;
}
.hero-sparks span:nth-child(1){left:5%;width:4px;height:4px;background:rgba(255,100,0,0.9);animation-duration:4s;animation-delay:0s;}
.hero-sparks span:nth-child(2){left:15%;width:3px;height:3px;background:rgba(255,184,0,0.8);animation-duration:5s;animation-delay:0.5s;}
.hero-sparks span:nth-child(3){left:28%;width:5px;height:5px;background:rgba(255,60,0,0.9);animation-duration:3.5s;animation-delay:1s;}
.hero-sparks span:nth-child(4){left:42%;width:3px;height:3px;background:rgba(255,184,0,0.7);animation-duration:4.5s;animation-delay:0.3s;}
.hero-sparks span:nth-child(5){left:55%;width:4px;height:4px;background:rgba(255,100,0,0.8);animation-duration:5s;animation-delay:1.5s;}
.hero-sparks span:nth-child(6){left:65%;width:3px;height:3px;background:rgba(255,184,0,0.9);animation-duration:3.8s;animation-delay:0.8s;}
.hero-sparks span:nth-child(7){left:75%;width:5px;height:5px;background:rgba(255,60,0,0.7);animation-duration:4.2s;animation-delay:1.2s;}
.hero-sparks span:nth-child(8){left:83%;width:3px;height:3px;background:rgba(255,184,0,0.8);animation-duration:4.8s;animation-delay:0.2s;}
.hero-sparks span:nth-child(9){left:90%;width:4px;height:4px;background:rgba(255,100,0,0.9);animation-duration:3.5s;animation-delay:1.8s;}
.hero-sparks span:nth-child(10){left:96%;width:3px;height:3px;background:rgba(255,184,0,0.7);animation-duration:5.2s;animation-delay:0.6s;}
 
@keyframes spark-up {
  0%{bottom:-5px;opacity:0;transform:translateX(0) scale(1);}
  15%{opacity:1;}
  85%{opacity:0.8;}
  100%{bottom:100%;opacity:0;transform:translateX(20px) scale(0.3);}
}
 
/* LOGO HEARTBEAT */
@keyframes heartbeat {
  0%,100%{transform:scale(1)}
  14%{transform:scale(1.12)}
  28%{transform:scale(1)}
  42%{transform:scale(1.07)}
  70%{transform:scale(1)}
}
.hero-logo { animation: heartbeat 2s ease-in-out infinite !important; }
 
.hero-badge {
  display: inline-block;
  background: rgba(204,0,0,0.9);
  color: var(--dorado);
  font-family: 'Fredoka One', cursive;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 14px;
}
 
.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 5rem;
  color: var(--dorado);
  letter-spacing: 3px;
  text-shadow: 3px 3px 15px rgba(0,0,0,0.8);
  margin-bottom: 8px;
}
 
.hero-tagline {
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
 
.hero-phone-box {
  background: rgba(0,0,0,0.65);
  border: 2px solid var(--dorado);
  border-radius: 18px;
  padding: 22px 32px;
  display: inline-block;
  margin: 16px auto;
  backdrop-filter: blur(8px);
  text-align: center;
}
.hero-phone-box p {
  color: var(--dorado);
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
 
.btn-call-hero {
  display: inline-block;
  background: var(--rojo);
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  letter-spacing: 2px;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(204,0,0,0.6);
  transition: all 0.3s;
}
.btn-call-hero:hover { background: var(--dorado); color: var(--negro); }
 
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
 
.btn-sec-hero {
  border: 2px solid var(--dorado);
  color: var(--dorado);
  padding: 10px 22px;
  border-radius: 25px;
  font-family: 'Fredoka One', cursive;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-sec-hero:hover { background: var(--dorado); color: var(--negro); }
 
.btn-wa-hero {
  background: var(--verde-wa);
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-family: 'Fredoka One', cursive;
  text-decoration: none;
}
.btn-wa-hero:hover { background: #1da851; }
 
.hero-doordash {
  margin-top: 14px;
  text-align: center;
}
.btn-doordash-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF3008;
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,48,8,0.5);
  transition: all 0.3s;
}
.btn-doordash-hero:hover {
  background: #fff;
  color: #FF3008;
}
@media(max-width:480px) {
  .btn-doordash-hero { font-size: 0.95rem; padding: 11px 22px; }
}
 
/* ─── INFO BAR ────────────────────────────────────────────── */
.info-bar {
  background: var(--rojo);
  padding: 12px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
 
/* ─── SECTION HELPERS ─────────────────────────────────────── */
.section-line {
  width: 80px;
  height: 4px;
  background: var(--rojo);
  margin: 8px auto 30px;
  border-radius: 2px;
}
 
/* ─── SLIDER ──────────────────────────────────────────────── */
#slider-section {
  background: var(--negro);
  padding: 50px 5%;
}
#slider-section h2 {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 8px;
}
 
.slider-container {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px;
}
.slide {
  min-width: calc(25% - 15px);
  background: var(--gris-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,184,0,0.2);
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.slide:hover { border-color: var(--dorado); }
.slide img { width: 100%; height: 200px; object-fit: cover; }
.slide-info { padding: 14px; text-align: center; }
.slide-info h3 { font-family: 'Bebas Neue', cursive; color: var(--dorado); font-size: 1.3rem; margin-bottom: 4px; }
.slide-price {
  display: inline-block;
  background: var(--rojo);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.slide-info p { color: #aaa; font-size: 0.8rem; margin-bottom: 10px; }
.slide-info button {
  background: var(--rojo);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 0.9rem;
  padding: 8px 20px;
  border: none;
  border-radius: 8px;
  width: 100%;
}
.slide-info button:hover { background: var(--dorado); color: var(--negro); }
 
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(204,0,0,0.8);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  z-index: 10;
  transition: background 0.2s;
}
.slider-btn:hover { background: var(--dorado); color: var(--negro); }
.slider-prev { left: 5px; }
.slider-next { right: 5px; }
 
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,184,0,0.3); transition: background 0.3s; }
.dot.active { background: var(--dorado); }
 
/* ─── MENU ────────────────────────────────────────────────── */
#menu {
  background: #111111;
  padding: 70px 5%;
}
#menu h2 {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 8px;
}
 
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
 
.menu-card {
  background: var(--gris-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,184,0,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--dorado);
  box-shadow: 0 12px 30px rgba(204,0,0,0.3);
}
.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}
.menu-card:hover img { transform: scale(1.05); }
 
.img-ref {
  font-size: 0.62rem;
  color: #555;
  text-align: center;
  font-style: italic;
  padding: 2px 0;
  background: #111;
}
 
.card-body {
  padding: 14px;
  text-align: center;
}
.card-body h3 {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.card-price {
  font-family: 'Fredoka One', cursive;
  color: var(--rojo);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.card-desc {
  color: #888;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.btn-add {
  width: 100%;
  background: var(--rojo);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 0.9rem;
  padding: 9px;
  border-radius: 8px;
  border: none;
}
.btn-add:hover { background: var(--dorado); color: var(--negro); }
 
/* ─── DOORDASH ────────────────────────────────────────────── */
.doordash-section {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: #1A1A1A;
  border-radius: 16px;
  border: 1px solid rgba(255,184,0,0.2);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.doordash-text {
  color: #ccc;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
}
.btn-doordash {
  display: inline-flex;
  align-items: center;
  background: #FF3008;
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,48,8,0.4);
  transition: all 0.3s;
}
.btn-doordash:hover {
  background: #fff;
  color: #FF3008;
  box-shadow: 0 4px 25px rgba(255,48,8,0.6);
}
 
/* ─── MEATS ───────────────────────────────────────────────── */
#meats {
  background: var(--negro);
  padding: 40px 5%;
}
#meats h3 {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
}
.meats-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--gris-card);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255,184,0,0.2);
}
.meats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.meat-item {
  font-family: 'Fredoka One', cursive;
  color: #fff;
  font-size: 1rem;
}
.fire { color: var(--rojo); }
 
/* ─── VIDEO DESTACADO ─────────────────────────────────────── */
.video-destacado {
  background: #0D0D0D;
  padding: 50px 5% 20px;
  text-align: center;
}
.video-dest-inner {
  max-width: 600px;
  margin: 0 auto;
}
.video-dest-titulo {
  font-family: 'Bebas Neue', cursive;
  color: #FFB800;
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.video-dest-frame {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border: 3px solid #FFB800;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255,184,0,0.25);
  aspect-ratio: 16/9;
}
.video-dest-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sound-btn-dest {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.sound-btn-dest:hover { background: rgba(204,0,0,0.8); }
@media(max-width:480px) {
  .video-dest-frame { max-width: 100%; }
}
 
/* ─── REELS ───────────────────────────────────────────────── */
#reels {
  background: #111111;
  padding: 60px 5%;
}
#reels h2 {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 8px;
}
.reels-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 20px auto;
}
.reel-frame {
  border: 3px solid var(--dorado);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255,184,0,0.2);
  background: #000;
}
.reel-wrapper {
  position: relative;
  padding-bottom: 177.77%;
  height: 0;
  overflow: hidden;
}
.reel-wrapper video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.sound-btn {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 0.85rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.sound-btn:hover { background: rgba(204,0,0,0.8); }
 
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}
.social-icons a {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.2s;
}
.social-icons a:hover { color: var(--dorado); }
 
/* ─── CART ────────────────────────────────────────────────── */
#cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
}
#cart-overlay.show { display: block; }
 
#cart-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  background: #111;
  border-left: 3px solid var(--dorado);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
}
#cart-panel.open { right: 0; }
 
.cart-header {
  background: var(--rojo);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 1.4rem;
}
#close-cart {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
}
 
#cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.cart-empty { text-align: center; color: #888; padding: 40px 0; }
 
.cart-item {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}
.cart-item-name {
  display: block;
  color: var(--dorado);
  font-family: 'Fredoka One', cursive;
  margin-bottom: 6px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.qty-btn {
  background: var(--rojo);
  color: #fff;
  border: none;
  border-radius: 4px;
  width: 28px;
  height: 28px;
  font-size: 1rem;
}
 
.cart-footer {
  padding: 16px;
  border-top: 2px solid #333;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: var(--dorado);
  margin-bottom: 12px;
}
#cart-total { color: var(--rojo); font-weight: 800; }
#whatsapp-order {
  width: 100%;
  background: var(--verde-wa);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  padding: 14px;
  border: none;
  border-radius: 12px;
}
#whatsapp-order:hover { background: #1da851; }
 
/* ─── CATERING ────────────────────────────────────────────── */
#catering {
  background: var(--negro);
  padding: 70px 5%;
}
#catering h2 {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 8px;
}
.catering-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.catering-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
}
.catering-list {
  list-style: none;
  margin-bottom: 24px;
}
.catering-list li {
  color: var(--dorado);
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  padding: 6px 0;
}
.catering-form {
  background: var(--gris-card);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.catering-form input,
.catering-form textarea {
  border: 2px solid rgba(255,184,0,0.2);
  background: var(--negro);
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
}
.catering-form input:focus,
.catering-form textarea:focus { border-color: var(--dorado); }
.catering-form button {
  background: var(--verde-wa);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  padding: 14px;
  border: none;
  border-radius: 10px;
}
.catering-form button:hover { background: #1da851; }
 
/* ─── REVIEWS ─────────────────────────────────────────────── */
#resenas {
  background: #111;
  padding: 70px 5%;
}
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.google-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  background: linear-gradient(135deg,#4285F4,#EA4335,#FBBC05,#34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reviews-rating {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: var(--dorado);
}
.stars { font-size: 1.4rem; color: var(--dorado); }
.reviews-label { color: #aaa; font-family: 'Fredoka One', cursive; font-size: 1rem; }
 
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: var(--gris-card);
  border: 1px solid rgba(255,184,0,0.15);
  border-radius: 16px;
  padding: 20px;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: var(--dorado); }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.reviewer img {
  border: 3px solid var(--dorado);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  object-fit: cover;
}
.reviewer strong { color: #fff; font-family: 'Fredoka One', cursive; }
.review-stars { color: var(--dorado); font-size: 0.9rem; }
.review-card p { color: #ccc; font-size: 0.9rem; line-height: 1.5; }
 
/* ─── MAPS ────────────────────────────────────────────────── */
#mapa {
  background: var(--negro);
  padding: 40px 5%;
}
 
/* ─── ABOUT ───────────────────────────────────────────────── */
#nosotros {
  background: var(--rojo);
  padding: 60px 5%;
  text-align: center;
}
#nosotros h2 {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 2.5rem;
  margin-bottom: 20px;
}
#nosotros p {
  color: rgba(255,255,255,0.95);
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
}
 
/* ─── FOOTER ──────────────────────────────────────────────── */
footer#contacto {
  background: #0A0A0A;
  padding: 50px 5% 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 30px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-brand {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 1.3rem;
}
.footer-sub { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-col h4 {
  font-family: 'Fredoka One', cursive;
  color: var(--dorado);
  margin-bottom: 6px;
}
.footer-col a,
.footer-col p {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--dorado); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social a {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.5);
}
.footer-social a:hover { color: var(--dorado); }
.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
 
/* ─── WA FLOTANTE ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--verde-wa);
  color: #fff;
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: wa-pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
}
@keyframes wa-pulse {
  0%,100%{transform:scale(1);box-shadow:0 4px 20px rgba(37,211,102,0.5);}
  50%{transform:scale(1.1);box-shadow:0 6px 30px rgba(37,211,102,0.8);}
}
 
/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:900px){
  .menu-grid{grid-template-columns:repeat(2,1fr);}
  .reels-grid{grid-template-columns:repeat(2,1fr);}
  .catering-layout{grid-template-columns:1fr;}
  .reviews-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:repeat(2,1fr);}
  .slide{min-width:calc(50% - 10px);}
}
@media(max-width:768px){
  .hamburger{display:block;}
  #navMenu{
    display:none;
    position:fixed;
    top:104px;
    left:0;
    width:100%;
    background:var(--negro);
    flex-direction:column;
    padding:20px;
    box-shadow:0 4px 20px rgba(204,0,0,0.3);
    z-index:999;
    transform:none;
  }
  #navMenu.open{display:flex;}
  #lang-btn{display:none;}
  .hero-title{font-size:3rem;}
  .info-bar{flex-direction:column;gap:4px;}
  .footer-grid{grid-template-columns:1fr;}
  .reviews-grid{grid-template-columns:1fr;}
  .catering-img img{height:300px;}
  .hero-logo{width:140px!important;max-width:140px!important;height:140px!important;}
}
@media(max-width:600px){
  .menu-grid{grid-template-columns:repeat(2,1fr)!important;gap:10px;}
  #cart-panel{width:100%;right:-100%;}
  .slide{min-width:calc(50% - 10px);}
  .hero-title{font-size:2.4rem;}
  .btn-call-hero{font-size:1.5rem;padding:12px 24px;}
}
 
/* ─── MEAT MODAL ──────────────────────────────────────────── */
.meat-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  backdrop-filter: blur(4px);
}
.meat-modal-overlay.open {
  display: flex !important;
}
.meat-modal-box {
  background: #1A1A1A;
  border: 2px solid #FFB800;
  border-radius: 20px;
  padding: 24px 16px;
  max-width: 380px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 0 40px rgba(255,184,0,0.2);
  max-height: 85vh;
  overflow-y: auto;
  box-sizing: border-box;
}
.meat-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}
.meat-modal-title {
  font-family: 'Bebas Neue', cursive;
  color: #FFB800;
  font-size: 1.5rem;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.meat-modal-sub {
  color: #ccc;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.meat-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.meat-btn {
  background: #0D0D0D;
  color: #fff;
  border: 2px solid rgba(255,184,0,0.3);
  border-radius: 10px;
  padding: 10px 8px;
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}
.meat-btn:hover,
.meat-btn:active {
  background: #CC0000;
  border-color: #CC0000;
  color: #fff;
}
@media(max-width:480px) {
  .meat-modal-box { padding: 20px 12px; }
  .meat-btn { padding: 12px 8px; font-size: 0.9rem; }
}
@media(max-width:400px) {
  .meat-options { grid-template-columns: 1fr; }
}
 