:root{
  --bg:#f5f1ea;
  --white:#ffffff;
  --text:#171717;
  --muted:#666666;
  --primary:#d62300;
  --primary-dark:#b71d00;
  --secondary:#ffcc00;
  --secondary-dark:#e0b300;
  --dark:#1b1b1b;
  --dark-2:#2a2a2a;
  --line:#e6dfd6;
  --soft:#fff8e7;
  --shadow:0 12px 30px rgba(0,0,0,.08);
  --shadow-strong:0 18px 42px rgba(0,0,0,.18);
  --radius:24px;
  --radius-sm:18px;
  --max:1180px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(var(--max), calc(100% - 28px));
  margin:auto;
}

/* CABECERA */
.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
  box-shadow:0 4px 14px rgba(0,0,0,.04);
  width:100%;
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px; /* antes 20 */
  min-height:110px;
  padding:18px 0;
}

.brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  flex:0 0 auto;
}

.brand-logo{
  display:block;
  height:96px;
  width:auto;
  max-width:520px;
  object-fit:contain;
}

.brand-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.brand-text strong{
  font-size:1.2rem;
  line-height:1.1;
}

.brand-text span{
  color:var(--muted);
  font-size:.96rem;
}

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

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

.nav-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:900;
  font-size:1.02rem;
  background:#fff;
  border:2px solid #e7e0d7;
  color:var(--dark);
  transition:.2s ease;
}

.nav-links a:hover{
  background:var(--primary);
  color:#fff;
  border-color:var(--primary);
  transform:translateY(-1px);
}

.nav-cta{
  display:flex;
}

.nav-cta-double{
  display:flex;
  gap:10px;
  align-items:center;
}

/* BOTONES */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  border:none;
  font-weight:800;
  font-size:1rem;
  cursor:pointer;
  transition:.2s ease;
  text-align:center;
}

.btn-primary{
  background:linear-gradient(180deg,var(--primary) 0%, var(--primary-dark) 100%);
  color:#fff;
  box-shadow:0 10px 24px rgba(214,35,0,.28);
}

.btn-primary:hover{
  transform:translateY(-1px);
}

.btn-secondary{
  background:linear-gradient(180deg,var(--secondary) 0%, var(--secondary-dark) 100%);
  color:#1a1a1a;
  box-shadow:0 10px 24px rgba(255,204,0,.22);
}

.btn-secondary:hover{
  transform:translateY(-1px);
}

.btn-whatsapp{
  background:linear-gradient(180deg,#25d366 0%, #1faf57 100%);
  color:#fff;
  box-shadow:0 12px 26px rgba(37,211,102,.35);
  font-weight:900;
}

.btn-whatsapp:hover{
  transform:translateY(-1px);
}

.btn-outline{
  background:#fff;
  color:var(--primary);
  border:2px solid var(--primary);
}

/* HERO */
.hero{
  padding:34px 0 26px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:stretch;
}

.hero-card,
.panel,
.menu-card,
.contact-card,
.info-strip,
.feature-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero-card{
  position:relative;
  overflow:hidden;
  padding:42px;
  color:#fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(255,204,0,.18), transparent 18%),
    linear-gradient(180deg, #262626 0%, #111111 100%);
  box-shadow:var(--shadow-strong);
}

.hero-card-photo{
  position:relative;
  min-height:560px;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.75)),
    url('hero-burguer.jpg') center center / cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.40) 52%, rgba(0,0,0,.58) 100%);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:720px;
  margin:0 auto;
  text-align:center;
}

.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  margin:0 auto 14px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,204,0,.12);
  border:1px solid rgba(255,204,0,.22);
  color:var(--secondary);
  font-weight:800;
  font-size:.95rem;
}

.menu-eyebrow{
  margin-bottom:16px;
}

h1,h2,h3{
  margin:0 0 14px;
}

h1{
  font-size:clamp(2.2rem,4vw,4rem);
  line-height:1.02;
  letter-spacing:-1px;
}

h2{
  font-size:clamp(1.7rem,2.5vw,2.4rem);
  line-height:1.08;
}

h3{
  font-size:1.18rem;
}

.hero p{
  font-size:1.08rem;
  color:rgba(255,255,255,.86);
  max-width:58ch;
  margin-bottom:20px;
  margin:0 auto 20px;
  text-align:center;
}

.hero p strong{
  color:#fff;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:26px 0 22px;
  margin:26px auto 22px;
  justify-content:center;
}
.hero-actions .btn{
  min-width:220px;
}

/* PANEL */
.panel{
  overflow:hidden;
}

.panel-top{
  background:linear-gradient(180deg,var(--primary) 0%, var(--primary-dark) 100%);
  color:#fff;
  padding:22px 22px 14px;
}

.panel-body{
  padding:22px;
}

/* LO MÁS PEDIDO */
.top-products{
  display:grid;
  gap:12px;
}

.top-product-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:72px;
  padding:16px 18px;
  border-radius:18px;
  background:#fff7ef;
  border:2px solid #f1dfc8;
  color:#191919;
  font-weight:800;
  font-size:1.02rem;
  transition:.2s ease;
}

.top-product-btn:hover{
  background:var(--secondary);
  border-color:var(--secondary);
  color:#111;
  transform:translateY(-1px);
}

/* HORARIO */
.schedule-strip{
  padding:0 0 26px;
}

.schedule-strip-inner{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  background:linear-gradient(180deg,#d62300 0%, #b71d00 100%);
  color:#fff;
  border-radius:24px;
  padding:22px;
  box-shadow:0 16px 34px rgba(214,35,0,.18);
}

.schedule-item{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px;
}

.schedule-item strong{
  display:block;
  margin-bottom:6px;
  font-size:1rem;
}

.schedule-item span{
  display:block;
  color:rgba(255,255,255,.92);
}

/* SECCIONES */
.section{
  padding:26px 0;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.section-head p{
  color:var(--muted);
  max-width:62ch;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.category-grid-menu{
  margin-top:18px;
}

.category-card{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:74px;
  padding:16px 18px;
  border-radius:20px;
  background:#ffffff;
  border:2px solid #eadfd2;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
  font-weight:900;
  font-size:1.04rem;
  text-align:center;
  transition:.2s ease;
}

.category-card:hover{
  background:var(--primary);
  color:#fff;
  border-color:var(--primary);
  transform:translateY(-1px);
}

/* CARTA */
.menu-card{
  padding:24px;
}

.menu-card h2,
.menu-card h3{
  color:var(--primary);
}

.menu-list{
  display:grid;
  gap:12px;
}

.menu-item{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding-bottom:12px;
  border-bottom:1px dashed #e8d8c9;
  scroll-margin-top:110px;
}

.menu-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.menu-item strong{
  display:block;
  font-size:1rem;
}

.menu-item small{
  display:block;
  color:var(--muted);
  margin-top:4px;
}

.price{
  white-space:nowrap;
  font-weight:900;
  color:var(--primary);
}

/* INFO */
.info-strip{
  padding:22px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.info-strip div{
  background:#fff9ef;
  border:1px solid #f0e1b7;
  border-radius:18px;
  padding:15px;
}

.info-strip strong{
  display:block;
  color:var(--primary);
  margin-bottom:4px;
}

/* RESEÑAS */
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.review-card{
  background:#fff;
  border:1px solid #e6dfd6;
  border-radius:24px;
  padding:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.review-stars{
  color:#ffb800;
  font-size:1.2rem;
  margin-bottom:12px;
  letter-spacing:2px;
}

.review-card p{
  color:#444;
  margin-bottom:14px;
}

/* CONTACTO */
.contact-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.contact-card{
  padding:26px;
}

.contact-card p{
  margin:0 0 14px;
  color:var(--muted);
}

.contact-card .btn{
  width:100%;
  margin-top:10px;
}

.map-embed{
  width:100%;
  min-height:100%;
  border:0;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* HERO CARTA */
.menu-hero{
  padding:34px 0 10px;
}

.menu-title{
  color:var(--text);
  margin-bottom:8px;
}

.menu-subtitle{
  color:var(--muted);
  font-size:1.05rem;
}

.full-menu-onecol{
  display:grid;
  gap:18px;
}

/* BARRA INFERIOR CARTA */
.sticky-order-bar{
  position:sticky;
  bottom:0;
  padding:16px 0 22px;
  background:linear-gradient(to top, rgba(245,241,234,1), rgba(245,241,234,.86), rgba(245,241,234,0));
}

.sticky-order-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

/* FOOTER */
footer{
  padding:34px 0 44px;
  text-align:center;
  color:var(--muted);
  font-size:.97rem;
}

.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-align:center;
}

.footer-inner p{
  margin:0;
  line-height:1.5;
  width:100%;
}

.footer-credit{
  color:var(--primary);
  font-weight:800;
  text-decoration:none;
}

/* TABLET */
@media (max-width:980px){
  .hero-grid,
  .grid-3,
  .contact-wrap,
  .info-strip,
  .schedule-strip-inner,
  .reviews-grid,
  .category-grid{
    grid-template-columns:1fr;
  }

  .badges{
    grid-template-columns:1fr;
  }

  .topbar-inner{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .nav{
    flex-direction:column;
    width:100%;
  }

  .nav-links{
    justify-content:center;
    flex-wrap:wrap;
    width:100%;
  }

  .nav-cta{
    width:100%;
    justify-content:center;
  }
}

/* MÓVIL */
@media screen and (max-width: 640px){
.nav-cta-double{
  display:none !important;
}
  .topbar{
    position: relative !important;
    top: auto !important;
    box-shadow: none !important;
    border-bottom: none !important;
    backdrop-filter: none !important;
    background: #fff !important;
 .footer-inner{
  gap:6px;
}

.footer-inner p{
  font-size:.95rem;
} }

  .topbar-inner{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:14px;
    min-height:auto !important;
    padding:20px 10px 12px !important;
  }

  .brand{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
  }

  .brand-logo{
    display:block;
    width:94% !important;
    max-width:420px !important;
    height:auto !important;
    max-height:none !important;
    object-fit:contain;
    margin:0 auto 6px;
  }

  .nav{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:2px;
  }

  .nav-links{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    width:100%;
  }

  .nav-links a{
    width:100%;
    min-height:52px;
    font-size:1rem;
    border-radius:16px;
    padding:0 10px;
  }

  .nav-cta-double{
    display:flex;
    flex-direction:column;
    width:100%;
    gap:12px;
  }

  .nav-cta-double .btn{
    width:100%;
    min-height:58px;
    font-size:1.02rem;
    border-radius:20px;
  }

  .hero{
    padding-top:18px;
  }

  .hero-card,
  .menu-card,
  .contact-card,
  .panel{
    border-radius:22px;
  }

  .hero-card{
    padding:24px 18px;
  }

  .hero-card-photo{
    min-height:auto;
  }

  h1{
    font-size:clamp(1.9rem,8vw,3rem);
    line-height:1.05;
  }

  .hero-actions{
    flex-direction:column;
  }

  .hero-actions .btn{
    width:100%;
    min-height:54px;
    font-size:1rem;
  }

  .top-product-btn,
  .category-card{
    min-height:68px;
    font-size:.98rem;
    padding:14px 16px;
  }

  .schedule-strip-inner,
  .category-grid,
  .contact-wrap,
  .sticky-order-inner{
    grid-template-columns:1fr;
  }

  .section-head{
    flex-direction:column;
    align-items:flex-start;
  }
}
@media screen and (max-width: 640px){
  .topbar .nav-cta,
  .topbar .nav-cta-double,
  .topbar .nav-cta-double .btn{
    display:none !important;
  }
}
.footer-link {
  color: #744c95;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(116, 76, 149, 0.08);
  transition: 0.3s;
}

.footer-link:hover {
  background: #744c95;
  color: #fff;
  transform: scale(1.05);
}
.footer-link {
  color: #fff;
  background: linear-gradient(135deg, #e63946, #c1121f);
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  transition: 0.3s;
}

.footer-link:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(225, 57, 70, 0.4);
}
