
:root{
  --bg:#ffffff;
  --text:#1f1f1f;
  --muted:#5b5b5b;
  --red:#d40f1a;
  --yellow:#f4b000;
  --yellow2:#ffd45a;
  --card:#ffffff;
  --soft:#f7f7f7;
  --shadow: 0 14px 40px rgba(0,0,0,.10);
  --shadow2: 0 10px 26px rgba(0,0,0,.10);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{width:min(1120px, calc(100% - 40px)); margin:0 auto}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.topbar__inner{
  display:flex; align-items:center; gap:16px;
  padding:12px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width:240px}
.brand__logo{width:48px; height:48px; object-fit:contain; border-radius:12px; background:#fff; box-shadow: 0 8px 20px rgba(0,0,0,.08)}
.brand__name{font-weight:800; letter-spacing:.2px}

.nav{display:flex; gap:14px; margin-left:auto}
.nav__link{
  font-weight:650;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  color:#2a2a2a;
}
.nav__link:hover{background:rgba(244,176,0,.14)}

.hamburger{
  display:none; margin-left:6px;
  width:44px; height:44px; border-radius:12px;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
}
.hamburger span{display:block; height:2px; background:#1f1f1f; margin:7px 10px; border-radius:10px}

.mobileMenu{border-top:1px solid rgba(0,0,0,.06); background:#fff}
.mobileMenu__inner{padding:12px 0 18px; display:grid; gap:10px}
.mobileMenu__link{padding:12px 14px; border-radius:14px; background:rgba(244,176,0,.12); font-weight:700}
.mobileMenu__link:hover{background:rgba(212,15,26,.10)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 14px 26px rgba(0,0,0,.10)}
.btn--primary{
  background: linear-gradient(135deg, var(--red), #ff3b30);
  color:#fff;
  border:none;
}
.btn--ghost{
  background: #fff;
}
.btn--lg{padding:14px 18px; border-radius:16px}
.btn--block{width:100%}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  padding: 36px 0 26px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:24px;
  align-items:stretch;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(244,176,0,.16);
  border:1px solid rgba(244,176,0,.35);
  font-weight:800;
  color:#3a2a00;
}
.dot{width:10px;height:10px;border-radius:50%; background:var(--red); box-shadow: 0 0 0 6px rgba(212,15,26,.14)}
.hero__title{
  margin:14px 0 6px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height:1.02;
  letter-spacing:-.8px;
}
.hero__subtitle{
  margin:0 0 14px;
  color:var(--muted);
  font-weight:650;
  font-size: 16px;
}
.chips{display:flex; flex-wrap:wrap; gap:10px; margin: 10px 0 18px}
.chip{
  padding:10px 12px;
  border-radius:999px;
  background: rgba(212,15,26,.06);
  border:1px solid rgba(212,15,26,.18);
  font-weight:850;
}
.chip--accent{
  background: rgba(244,176,0,.18);
  border-color: rgba(244,176,0,.40);
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap}
.hero__contact{margin-top:14px; display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.hero__phone{
  font-weight:900;
  padding:8px 12px;
  border-radius:12px;
  background: rgba(244,176,0,.14);
  border:1px solid rgba(244,176,0,.28);
}
.hero__card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(244,176,0,.18), rgba(212,15,26,.04));
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.hero__card:before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width:260px;
  height:260px;
  background: radial-gradient(circle at 30% 30%, rgba(244,176,0,.55), transparent 55%);
  transform: rotate(18deg);
}
.hero__cardTop{display:flex; gap:10px; flex-wrap:wrap; position:relative}
.badge{
  font-size:12px;
  font-weight:900;
  background: rgba(212,15,26,.12);
  border:1px solid rgba(212,15,26,.20);
  padding:8px 10px;
  border-radius:999px;
}
.badge--light{
  background: rgba(255,255,255,.7);
  border-color: rgba(0,0,0,.08);
}
.priceGrid{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  position:relative;
}
.priceCard{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
  padding:14px;
  box-shadow: var(--shadow2);
}
.priceCard--hot{border-color: rgba(212,15,26,.35)}
.priceCard h3{margin:0; font-size:14px; font-weight:900}
.price{margin-top:8px; font-size:28px; font-weight:1000; letter-spacing:-.4px; color:var(--red)}
.hero__notes{position:relative; margin-top:12px; color:#2b2b2b}
.hero__notes p{margin:8px 0; font-weight:650}
.hero__wave{
  position:absolute;
  inset:auto 0 0 0;
  height:120px;
  background:
    radial-gradient(1200px 120px at 20% 100%, rgba(244,176,0,.20), transparent 60%),
    radial-gradient(900px 120px at 80% 100%, rgba(212,15,26,.10), transparent 55%);
  pointer-events:none;
}

/* Sections */
.section{padding: 52px 0}
.section--alt{background: linear-gradient(180deg, rgba(244,176,0,.08), rgba(255,255,255,1))}
.sectionHead{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-bottom:16px}
.sectionTitle{margin:0; font-size: clamp(24px, 3vw, 34px); letter-spacing:-.4px}
.sectionSubtitle{margin:0; color:var(--muted); font-weight:650}

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:24px;
  align-items:center;
}
.split--reverse{grid-template-columns: .95fr 1.05fr}
.lead{color:var(--muted); font-weight:650; margin-top:10px; margin-bottom:0}
.listCards{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px; margin-top:18px}
.listCard{
  border-radius: 16px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow2);
  padding:14px;
}
.listCard h3{margin:0 0 10px; font-size:14px; font-weight:950; color:#2a2a2a}
.listCard ul{margin:0; padding-left:16px; color:#2f2f2f; font-weight:650}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

.mediaFrame{
  border-radius: 20px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  box-shadow: var(--shadow);
}
.mediaFrame--soft{box-shadow: 0 14px 36px rgba(0,0,0,.08)}
.mediaHint{margin-top:10px; color:var(--muted); font-weight:650; font-size:13px}

/* Mid banner */
.midBanner{padding: 8px 0 22px}
.midBanner__wrap{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow2);
  background:#fff;
  width: min(820px, 100%);
  margin: 0 auto;
}
.midBanner__wrap img{width:100%; height:auto}

/* Menu */
.menuGrid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}
.menuItem{
  border-radius: 18px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow2);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.menuItem--featured{
  border-color: rgba(212,15,26,.30);
  background: linear-gradient(180deg, rgba(212,15,26,.04), rgba(244,176,0,.12));
}
.menuItem__top{display:flex; align-items:flex-start; justify-content:space-between; gap:8px}
.menuItem h3{margin:0; font-size:14px; font-weight:950}
.tag{
  font-size:11px; font-weight:950;
  padding:7px 9px;
  border-radius:999px;
  background: rgba(244,176,0,.18);
  border:1px solid rgba(244,176,0,.35);
}
.tag--hot{background: rgba(212,15,26,.10); border-color: rgba(212,15,26,.20)}
.menuItem__price{font-size:30px; font-weight:1000; color:var(--red); letter-spacing:-.4px}
.menuItem__btn{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  font-weight:950;
  background: rgba(244,176,0,.18);
  border:1px solid rgba(244,176,0,.35);
}
.menuItem__btn:hover{background: rgba(212,15,26,.10); border-color: rgba(212,15,26,.22)}

.flyerBlock{
  margin-top:22px;
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:18px;
  align-items:center;
  border-radius: 20px;
  padding:16px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
}
.flyerBlock__copy h3{margin:0 0 6px; font-weight:1000}
.flyerBlock__copy p{margin:0 0 12px; color:var(--muted); font-weight:650}
.flyerBlock__media{
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
}

/* Video */
.videoCard{
  border-radius: 20px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.07);
  box-shadow: var(--shadow);
  background:#000;
}
.videoCard video{width:100%; height:auto; display:block}

/* Horario */
.hoursCard{
  border-radius: 18px;
  padding:16px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow2);
  width: min(520px, 100%);
}
.hoursLine{margin:0; font-weight:750; font-size:16px}
.hoursLine + .hoursLine{margin-top:6px; color:var(--muted)}

/* Pagos */
.payGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:10px;
}
.payCard{
  border-radius: 18px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow2);
  padding:16px;
  display:flex;
  align-items:center;
  gap:12px;
}
.payIcon{font-size:22px}
.payCard h3{margin:0; font-weight:950}

.finalCta{
  margin-top:22px;
  border-radius: 22px;
  padding:18px;
  background: linear-gradient(135deg, rgba(244,176,0,.22), rgba(212,15,26,.08));
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  text-align:center;
}
.finalCta h3{margin:0 0 8px; font-weight:1000}
.finalPhone{margin:0 0 14px; font-weight:800}
.finalPhone a{
  padding:6px 10px;
  border-radius:12px;
  background: rgba(255,255,255,.8);
  border:1px solid rgba(0,0,0,.08);
}



/* Delivery apps */
.deliveryApps{
  margin-top:18px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow2);
  padding:14px;
}
.deliveryApps__title{margin:0 0 10px; font-weight:900}
.deliveryApps__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.deliveryApp{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  background:linear-gradient(180deg, #fff, #fafafa);
}
.deliveryApp__icon{
  width:34px; height:34px; border-radius:10px;
  display:grid; place-items:center;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  flex:0 0 34px;
}
.deliveryApp__icon svg{width:20px;height:20px; fill:currentColor}
.deliveryApp__name{font-weight:900; letter-spacing:.2px}
.deliveryApp--rappi .deliveryApp__icon{color:#ff3b30; background:rgba(255,59,48,.08)}
.deliveryApp--uber .deliveryApp__icon{color:#111; background:#f1f1f1}
.deliveryApp--didi .deliveryApp__icon{color:#ff6a00; background:rgba(255,106,0,.08)}

/* Footer */
.footer{padding:18px 0; border-top:1px solid rgba(0,0,0,.06); background:#fff}
.footer__inner{display:flex; gap:10px; align-items:center; justify-content:center; color:#2a2a2a; font-weight:750}
.footer__sep{opacity:.55}

/* Floating WhatsApp */
.waFloat{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  color:#fff;
  padding:12px 14px;
  border-radius: 999px;
  font-weight:950;
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.waFloat__dot{
  width:10px; height:10px; border-radius:50%;
  background:#fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,.22);
}

/* Responsive */
@media (max-width: 980px){
  .deliveryApps__grid{grid-template-columns:1fr;}
  .hero__grid, .split, .split--reverse{grid-template-columns: 1fr}
  .nav{display:none}
  .hamburger{display:inline-block}
  .listCards{grid-template-columns: 1fr}
  .menuGrid{grid-template-columns: 1fr 1fr}
  .flyerBlock{grid-template-columns: 1fr}
  .brand{min-width:unset}
}
@media (max-width: 520px){
  .menuGrid{grid-template-columns: 1fr}
  .container{width: calc(100% - 28px)}
}
