@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Inter:wght@400;600;800;900&display=swap');

:root {
  --black: #030303;
  --dark: #090909;
  --card: #101010;
  --yellow: #ffd400;
  --orange: #ff7a00;
  --white: #ffffff;
  --muted: #c8c8c8;
  --border: rgba(255, 212, 0, .35);
  --glow: 0 0 10px #ffd400, 0 0 25px rgba(255, 212, 0, .8), 0 0 50px rgba(255, 122, 0, .55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 212, 0, .18), transparent 28%),
    radial-gradient(circle at 20% 30%, rgba(255, 122, 0, .10), transparent 22%),
    linear-gradient(180deg, #050505, #0a0a0a 45%, #030303);
  color: var(--white);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: -1;
}

a { text-decoration: none; color: inherit; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  height: 88px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3,3,3,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 1px;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255,212,0,.9));
}

.brand span {
  text-shadow: var(--glow);
}

nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

nav a {
  position: relative;
  opacity: .9;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  background: var(--yellow);
  box-shadow: var(--glow);
  transition: .3s;
}

nav a:hover {
  color: var(--yellow);
}

nav a:hover::after {
  width: 100%;
}

.whatsapp-btn,
.main-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
  transition: .28s ease;
}

.whatsapp-btn,
.main-btn {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #111;
  box-shadow: 0 0 22px rgba(255,212,0,.55);
}

.whatsapp-btn:hover,
.main-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 38px rgba(255,212,0,.85);
}

.ghost-btn {
  color: var(--yellow);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.025);
}

.ghost-btn:hover {
  box-shadow: var(--glow);
}

.hero {
  min-height: calc(100vh - 88px);
  padding: 72px 6%;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 54px;
  position: relative;
}

.hero::after {
  content: "LA RICA RICA";
  position: absolute;
  right: -90px;
  top: 70px;
  font-family: 'Anton', sans-serif;
  font-size: 150px;
  color: rgba(255,255,255,.025);
  pointer-events: none;
}

.tag {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  margin-bottom: 20px;
  text-shadow: 0 0 12px rgba(255,212,0,.65);
}

.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 7.5vw, 108px);
  line-height: .89;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--yellow);
  font-style: italic;
  text-shadow: var(--glow);
}

.hero-text {
  color: var(--muted);
  max-width: 560px;
  margin: 28px 0;
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: var(--yellow);
  filter: blur(110px);
  opacity: .28;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid var(--border);
  box-shadow:
    0 0 70px rgba(255,212,0,.23),
    inset 0 0 40px rgba(255,212,0,.2);
  position: relative;
  z-index: 2;
  transition: .4s ease;
}

.hero-image img:hover {
  transform: scale(1.025) rotate(-.4deg);
  box-shadow: 0 0 100px rgba(255,212,0,.42);
}

.glow { display: none; }

.section {
  padding: 86px 6%;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title p {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.section-title h2 {
  margin-top: 8px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(46px, 5vw, 78px);
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(255,212,0,.45);
}

.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.018)),
    #090909;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 0 28px rgba(255,212,0,.09);
  transition: .3s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,212,0,.12), transparent);
  transform: translateX(-100%);
  transition: .55s;
}

.card:hover::before {
  transform: translateX(100%);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 44px rgba(255,212,0,.25);
}

.card img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  display: block;
  filter: contrast(1.08) saturate(1.08);
}

.menu-grid .card img {
  height: 215px;
}

.card-body {
  padding: 24px;
}

.card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--yellow);
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(255,212,0,.45);
}

.card p {
  color: var(--muted);
  line-height: 1.6;
  min-height: 78px;
  font-size: 15px;
}

.price {
  display: block;
  margin: 18px 0;
  color: var(--yellow);
  font-size: 34px;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(255,212,0,.55);
}

.card a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  transition: .25s;
}

.card a:hover {
  background: var(--yellow);
  color: #111;
  box-shadow: var(--glow);
}

.banner {
  margin: 34px 6%;
  padding: 48px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(255,212,0,.13), rgba(255,122,0,.07)),
    radial-gradient(circle at right, rgba(255,212,0,.18), transparent 28%),
    #080808;
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: center;
}

.banner h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 4vw, 62px);
  line-height: .95;
}

.banner h2 span {
  color: var(--yellow);
  text-shadow: var(--glow);
}

.banner p {
  color: var(--muted);
  margin-top: 15px;
  font-size: 17px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.badges span {
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--yellow);
  font-weight: 900;
  background: rgba(255,255,255,.03);
}

.local-section {
  padding: 90px 6%;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 38px;
  align-items: center;
}

.local-img img {
  width: 100%;
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 0 45px rgba(255,212,0,.18);
}

.local-info {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.02)),
    #090909;
}

.local-info h2 {
  font-family: 'Anton', sans-serif;
  font-size: 64px;
  color: var(--yellow);
  text-shadow: var(--glow);
}

.local-info p {
  color: var(--muted);
  margin: 14px 0 26px;
  line-height: 1.7;
}

.info-card {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.info-card strong {
  color: var(--yellow);
}

.info-card span {
  color: var(--muted);
  text-align: right;
}

footer {
  padding: 45px 6%;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

footer img {
  width: 82px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 14px rgba(255,212,0,.9));
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  padding: 15px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #111;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(255,212,0,.75);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@media (max-width: 1000px) {
  nav { display: none; }

  .hero,
  .local-section {
    grid-template-columns: 1fr;
  }

  .combo-grid,
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .navbar {
    height: auto;
    padding: 14px 5%;
  }

  .brand span { display: none; }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .whatsapp-btn {
    font-size: 12px;
    padding: 12px 14px;
  }

  .hero {
    padding: 42px 5%;
  }

  .hero h1 {
    font-size: 54px;
  }

  .combo-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .card img,
  .menu-grid .card img {
    height: 250px;
  }

  .banner {
    margin: 25px 5%;
    padding: 28px;
  }

  .local-info {
    padding: 28px;
  }

  .local-info h2 {
    font-size: 48px;
  }

  .info-card {
    flex-direction: column;
  }

  .info-card span {
    text-align: left;
  }
}
.reviews-section {
  margin: 80px auto;
  max-width: 1200px;
  padding: 60px 40px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: radial-gradient(circle at top, rgba(255,204,0,0.08), transparent 60%);
  backdrop-filter: blur(12px);
}

.reviews-header {
  margin-bottom: 50px;
}

.reviews-header span {
  color: #ffcc00;
  font-size: 14px;
  letter-spacing: 2px;
}

.reviews-header h2 {
  font-size: 44px;
  margin: 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews-header p {
  color: #aaa;
  font-size: 14px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.review-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,0,0,0.6));
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  border: 1px solid #ffcc00;
  box-shadow: 0 0 25px rgba(255,204,0,0.2);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar {
  width: 42px;
  height: 42px;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255,204,0,0.4);
}

.review-top strong {
  font-size: 15px;
}

.review-top span {
  font-size: 12px;
  color: #aaa;
}

.review-rate {
  color: #ffcc00;
  font-size: 14px;
  margin: 6px 0;
}

.review-text {
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
}

.reviews-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 28px;
  border-radius: 10px;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.reviews-btn:hover {
  background: #ffd633;
  transform: scale(1.05);
}

/* 🔥 ANIMACIÓN DE ENTRADA */
.review-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-section {
    padding: 40px 20px;
  }

  .reviews-header h2 {
    font-size: 32px;
  }
  
  }
  /* ===== UPGRADE FINAL 10/10 - LA RICA RICA ===== */

/* Mejor lectura general */
body {
  background:
    radial-gradient(circle at top right, rgba(255, 212, 0, .10), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(255, 122, 0, .06), transparent 25%),
    linear-gradient(180deg, #050505, #090909 45%, #030303);
}

/* Header más premium */
.navbar {
  box-shadow: 0 8px 35px rgba(0,0,0,.35);
}

/* Hero imagen más fina */
.hero-image {
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,212,0,.08), rgba(255,212,0,.015));
  box-shadow:
    0 0 45px rgba(255,212,0,.16),
    0 0 120px rgba(255,212,0,.08);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  filter: contrast(1.06) saturate(1.08) brightness(.96);
}

/* Botones más vendedores */
.main-btn,
.whatsapp-btn,
.reviews-btn {
  background: linear-gradient(135deg, #ffd400, #ff8a00);
  color: #111;
  box-shadow: 0 0 25px rgba(255,212,0,.45);
}

.main-btn:hover,
.whatsapp-btn:hover,
.reviews-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 40px rgba(255,212,0,.75);
}

/* Cards de productos más uniformes */
.card {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(0,0,0,.35));
  border: 1px solid rgba(255,212,0,.28);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.07) saturate(1.08);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,212,0,.65);
  box-shadow: 0 0 38px rgba(255,212,0,.20);
}

/* Precios más potentes */
.price {
  color: #ffd400;
  text-shadow: 0 0 16px rgba(255,212,0,.6);
}

/* Reseñas más balanceadas */
.reviews-section {
  background:
    radial-gradient(circle at top, rgba(255,204,0,.04), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(0,0,0,.35));
}

.review-card:last-child {
  border: 1px solid #ffcc00;
  box-shadow: 0 0 25px rgba(255,204,0,.22);
}

/* Mejor visual en celular */
@media (max-width: 768px) {
  .hero-image {
    padding: 14px;
  }

  .card img {
    height: 230px;
  }

  .hero h1 {
    font-size: 3.5rem;
line-height: 0.9;
  }
}/* ===== NEÓN FINAL GLOBAL ===== */

.neon-yellow {
  color: #FFD700;
  text-shadow:
    0 0 5px rgba(255, 200, 0, 0.9),
    0 0 10px rgba(255, 200, 0, 0.8),
    0 0 24px rgba(255, 180, 0, 0.7),
    0 0 30px rgba(255, 160, 0, 0.5);
}

.neon-white {
  color: #ffffff;
  text-shadow:
    0 0 6px rgba(255,255,255,0.9),
    0 0 12px rgba(255,255,255,0.7),
    0 0 20px rgba(255,255,255,0.5);
}/* ===== UPSELLS PRODUCTOS ===== */

.upsell-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 212, 0, 0.055);
  border: 1px solid rgba(255, 212, 0, 0.18);
}

.upsell-list li {
  color: #e8e8e8;
  font-size: 13px;
  line-height: 1.7;
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card .price {
  margin-top: auto;
}


/* ===== CARRITO / PANEL DE PEDIDO ===== */

.pedido-panel {
  position: fixed;
  right: 24px;
  top: 110px;
  width: 310px;
  background: rgba(10, 10, 10, 0.94);
  border: 1px solid rgba(255, 212, 0, 0.35);
  border-radius: 22px;
  padding: 18px;
  z-index: 99999;
  box-shadow: 0 0 35px rgba(255, 212, 0, 0.18);
}

.pedido-panel-header h3 {
  color: #ffd400;
  font-size: 20px;
  margin-bottom: 4px;
}

.pedido-panel-header p {
  color: #aaa;
  font-size: 12px;
  margin-bottom: 14px;
}

.pedido-resumen {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 280px;
  overflow-y: auto;
}

.pedido-item {
  border: 1px solid rgba(255, 212, 0, 0.2);
  background: rgba(255, 212, 0, 0.05);
  border-radius: 14px;
  padding: 10px;
}

.pedido-item strong {
  color: #fff;
  font-size: 14px;
}

.pedido-item small {
  display: block;
  color: #ccc;
  font-size: 12px;
  margin-top: 5px;
}

.remove-item {
  margin-top: 8px;
  background: transparent;
  border: none;
  color: #ffd400;
  cursor: pointer;
  font-size: 12px;
}

.pedido-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

#totalPedido {
  display: block;
  color: #ffd400;
  font-size: 24px;
  margin-bottom: 10px;
}

.btn-whatsapp-final {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd400, #ff8a00);
  color: #111;
  font-weight: 900;
  cursor: pointer;
}
/* ===== CARDS + BOTÓN FINAL LIMPIO ===== */

.product-card {
  display: flex;
  flex-direction: column;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

/* ===== IMAGENES SIN ZOOM (SE VE COMPLETA) ===== */

.product-card img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: auto !important;
  min-height: 0 !important;
  padding: 22px;
}

.upsell-box {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.upsell-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #eee;
}

.price {
  margin: 10px 0;
}

.btn-comprar {
  display: block !important;
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #ffd400, #ff9f00);
  color: #111;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(255, 212, 0, 0.18);
}

.btn-comprar:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(255, 212, 0, 0.28);
}
/* ===== ORDEN FINAL CARTA DESTACADA ===== */

.menu-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 26px !important;
}

.menu-grid .product-card {
  min-height: auto !important;
}

.menu-grid .product-card img {
  height: 245px !important;
  object-fit: cover;
  object-position: center;
}

.menu-grid .card-body {
  min-height: 360px !important;
}

.menu-grid .card p {
  min-height: 72px !important;
}

.menu-grid .btn-comprar {
  margin-top: auto !important;
}
/* ===== FIX IMÁGENES CARTA DESTACADA ===== */

.menu-grid .product-card img {
  height: 230px !important;
  width: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 22px 22px 0 0;
}

.menu-grid .product-card {
  max-width: 100%;
  overflow: hidden !important;
}
/* ===== VERSION CELULAR FINAL ===== */

@media (max-width: 768px) {

  .pedido-panel {
    position: fixed !important;
    left: 45% !important;
    right: auto !important;
    bottom: 0 !important;
    top: auto !important;
    width: calc(100%-24px) !important;
    transform: translateX(-50%) !important;
    box-sizing: border-box !important;
    padding: 8px 12px 10px !important;
    border-radius: 24px 24px 0 0 !important;
    background: rgba(10, 10, 10, 0.98) !important;
    border-top: 1px solid rgba(255, 212, 0, 0.35) !important;
    z-index: 99999 !important;
    box-shadow: 0 -8px 35px rgba(255, 212, 0, 0.18) !important;
  }

  .pedido-panel-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 8px !important;
  }

  .pedido-panel-header h3 {
    font-size: 18px !important;
    margin: 0 !important;
  }

  .pedido-panel-header p {
    display: none !important;
  }

  .pedido-resumen {
    max-height: 38px !important;
    overflow-y: auto !important;
    padding: 8px 0 !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  }

  .pedido-item {
    font-size: 13px !important;
    padding: 6px 0 !important;
  }

  .pedido-footer {
    margin-top: 10px !important;
    padding-top: 0 !important;
    display: block !important;
  }

  #totalPedido {
    display: block !important;
    font-size: 20px !important;
    margin-bottom: 10px !important;
    color: #ffd400 !important;
  }

  .btn-whatsapp-final {
    width: 100% !important;
    padding: 13px !important;
    font-size: 13px !important;
    border-radius: 14px !important;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 0.9;
  }

  .combo-grid,
  .menu-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 0 18px !important;
  }

  .combo-grid .product-card,
  .menu-grid .product-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .product-card h3 {
    font-size: 32px !important;
    line-height: 1 !important;
    word-break: normal !important;
  }

  .product-card p,
  .upsell-item {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .floating-whatsapp {
    display: none !important;
  }

  body {
    padding-bottom: 145px !important;
  }
}
.neon-yellow {
  text-shadow:
    0 0 4px rgba(255, 212, 0, 0.30),
    0 0 10px rgba(255, 212, 0, 0.16) !important;
}
.banner h2 span,
.banner .neon-yellow {
  text-shadow:
    0 0 3px rgba(255, 212, 0, 0.25),
    0 0 8px rgba(255, 212, 0, 0.12) !important;
  filter: none !important;
}