﻿@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root{
  --rojo:#e1061f;
  --blanco:#ffffff;
  --negro:#101010;
  --tinta:#211e1c;
}

*{margin:0;padding:0;box-sizing:border-box}

body{
  font-family:'DM Sans',Arial,sans-serif;
  min-height:100vh;
  background:
    linear-gradient(rgba(245,242,237,.91), rgba(245,242,237,.96)),
    url("../img/foodtruck-bg.jpg") center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:flex-start;
}

.container{
  width:100%;
  max-width:520px;
  padding:46px 22px 54px;
  animation:fadeUp .8s ease;
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(20px)}
  to{opacity:1; transform:translateY(0)}
}

.header{
  text-align:center;
  margin-bottom:42px;
}

.header img{
  width:150px;
  height:150px;
  object-fit:cover;
  margin-bottom:20px;
  box-shadow:0 16px 30px rgba(33,30,28,.18);
}

.header h1{
  color:var(--tinta);
  font-family:'Barlow Condensed',Impact,sans-serif;
  text-transform:uppercase;
  letter-spacing:.02em;
  font-size:2.5rem;
  line-height:.95;
}

.header p{
  font-size:.78rem;
  color:#716a64;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-top:9px;
}

.btn{
  display:inline-block;
  padding:14px 18px;
  border-radius:4px;
  background:var(--rojo);
  color:#fff;
  font-size:.84rem;
  font-weight:700;
  text-decoration:none;
  transition:transform .2s,background .2s;
}

.btn:hover{transform:translateY(-2px);background:#bd0017}

.order-hero{
  position:relative;
  overflow:hidden;
  min-height:290px;
  margin:0 0 34px;
  border-radius:5px;
  background:var(--tinta);
  box-shadow:0 18px 36px rgba(33,30,28,.18);
}

.order-slides{
  display:flex;
  width:100%;
  height:290px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  overscroll-behavior-x:contain;
}

.order-slides::-webkit-scrollbar{display:none}

.order-slide{
  position:relative;
  flex:0 0 100%;
  scroll-snap-align:start;
}

.order-slide img{
  width:100%;
  height:290px;
  display:block;
  object-fit:cover;
}

.order-slide::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(16,16,16,.74),rgba(16,16,16,.08) 75%);
  pointer-events:none;
}

.order-hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(16,16,16,.74),rgba(16,16,16,.08) 75%);
}

.order-hero-copy{
  position:absolute;
  z-index:1;
  left:24px;
  top:24px;
  color:#fff;
  max-width:245px;
}

.order-hero-copy strong{
  display:block;
  font-family:'Barlow Condensed',Impact,sans-serif;
  text-transform:uppercase;
  font-size:2.15rem;
  line-height:.9;
  margin-bottom:8px;
}

.order-hero-copy span{
  display:block;
  color:rgba(255,255,255,.82);
  font-size:.78rem;
  margin-bottom:15px;
}

.order-hero-copy .btn{
  padding:12px 16px;
  font-size:.8rem;
  box-shadow:none;
}

.order-dots{
  position:absolute;
  z-index:2;
  right:20px;
  bottom:18px;
  display:flex;
  gap:7px;
}

.order-dot{
  width:7px;
  height:7px;
  padding:0;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.55);
  cursor:pointer;
}

.order-dot.is-active{background:#fff;transform:scale(1.3)}

.links{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.link-btn{
  background:var(--blanco);
  border:1px solid rgba(33,30,28,.1);
  border-radius:5px;
  padding:17px 20px;
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:var(--tinta);
  font-weight:bold;
  box-shadow:0 10px 25px rgba(33,30,28,.07);
  transition:transform .2s,box-shadow .2s,border-color .2s;
}

.link-btn:hover{
  transform:translateY(-3px);
  border-color:rgba(225,6,31,.35);
  box-shadow:0 15px 28px rgba(33,30,28,.12);
}

.icon{
  width:26px;
  height:26px;
  fill:var(--rojo);
}

img.icon{
  object-fit:contain;
  filter:invert(13%) sepia(99%) saturate(4780%) hue-rotate(347deg) brightness(89%) contrast(104%);
}

.footer{
  text-align:center;
  margin-top:48px;
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#777;
}

.link-btn{
  animation:fadeItem .6s ease forwards;
  opacity:0;
}

.link-btn:nth-child(1){animation-delay:.1s}
.link-btn:nth-child(2){animation-delay:.2s}
.link-btn:nth-child(3){animation-delay:.3s}
.link-btn:nth-child(4){animation-delay:.4s}
.link-btn:nth-child(5){animation-delay:.5s}
.link-btn:nth-child(6){animation-delay:.6s}
.link-btn:nth-child(7){animation-delay:.7s}
.link-btn:nth-child(8){animation-delay:.8s}

@keyframes fadeItem{
  to{opacity:1; transform:none}
}

/* BOTÓN WHATSAPP STICKY */
.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  box-shadow:0 10px 25px rgba(0,0,0,.3);
  z-index:999;
}

.whatsapp-float svg{
  width:30px;
  fill:white;
}

.section{
  margin-top:0;
}

.section-title{
  font-family:'Barlow Condensed',Impact,sans-serif;
  font-size:1.35rem;
  font-weight:bold;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--tinta);
  margin-bottom:13px;
  padding-left:2px;
}

.section-title span{
  color:var(--rojo);
}

.section-icon{
  width:19px;
  height:19px;
  margin-right:7px;
  vertical-align:-4px;
  fill:none;
  stroke:var(--rojo);
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.section-highlight .section-icon{stroke:#ff5968}
.section-highlight img.section-icon{
  filter:brightness(0) saturate(100%) invert(13%) sepia(99%) saturate(4780%) hue-rotate(347deg) brightness(89%) contrast(104%);
}

.section .link-btn{
  margin-bottom:12px;
}

.section .link-btn:last-child{
  margin-bottom:0;
}

.section-highlight{
  background:var(--tinta);
  padding:25px 20px 20px;
  border-radius:5px;
  box-shadow:0 18px 40px rgba(0,0,0,.16);
}

.section-highlight .section-title{color:#fff}

.section-highlight .link-btn{
  background:#E1061F;
  color:#fff;
  border:none;
}

.section-highlight .icon{
  fill:#fff;
}

.section-highlight .link-btn:hover{
  background:#c80019;
}

.section-highlight .link-btn:first-child{
  animation:pulse 1.5s infinite;
}

.menu-notice{
  position:fixed;
  inset:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:rgba(16,16,16,.78);
  opacity:0;
  visibility:hidden;
  transition:opacity .25s,visibility .25s;
}

.menu-notice.is-open{opacity:1;visibility:visible}

.menu-notice-card{
  width:min(100%,420px);
  padding:42px 30px 30px;
  border-radius:5px;
  background:#fff;
  color:var(--tinta);
  text-align:center;
  box-shadow:0 24px 60px rgba(0,0,0,.28);
  transform:translateY(12px);
  transition:transform .25s;
}

.menu-notice.is-open .menu-notice-card{transform:translateY(0)}
.menu-notice-mark{font-size:2.8rem;line-height:1;margin-bottom:14px}
.menu-notice-card h2{font-family:'Barlow Condensed',Impact,sans-serif;text-transform:uppercase;font-size:2.4rem;line-height:.95;margin-bottom:14px}
.menu-notice-card p{color:#716a64;font-size:.95rem;line-height:1.55;margin-bottom:24px}
.menu-notice-card .btn{width:100%;margin-bottom:12px}
.menu-close{border:0;background:none;color:#716a64;cursor:pointer;font:600 .82rem 'DM Sans',Arial,sans-serif;padding:7px 12px}
.menu-close:hover{color:var(--rojo)}

body.modal-open{overflow:hidden}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(255,255,255,.6)}
  70%{box-shadow:0 0 0 14px rgba(255,255,255,0)}
  100%{box-shadow:0 0 0 0 rgba(255,255,255,0)}
}

a[href*="tiktok"] .icon{
  transform:scale(1.05);
}

.brand-logo{
  height:26px;
  width:auto;
  filter:brightness(0) invert(1); /* blanco sobre rojo */
}

img[src="../icons/didi-food.svg"]{
  filter:none;
  background:transparent;
}

.brand-icon{
  width:26px;
  height:26px;
  object-fit:contain;
  filter:brightness(0); /* blanco sobre rojo */
}

.social-links .section-title{text-align:center}
.social-links .link-btn{
  width:58px;
  height:58px;
  padding:0;
  margin:0;
  justify-content:center;
  border-radius:50%;
  box-shadow:0 10px 22px rgba(33,30,28,.1);
  font-size:0;
}

.social-links .link-btn:hover{transform:translateY(-4px) scale(1.04)}

.social-links .brand-icon{
  width:27px;
  height:27px;
}

.social-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}

.social-links .section-title{width:100%;margin-bottom:2px}

@media(max-width:520px){
  .container{padding-top:30px}
  .header{margin-bottom:34px}
  .header img{width:132px;height:132px}
  .header h1{font-size:2.25rem}
  .order-hero{min-height:300px;margin-bottom:30px}
  .order-slides{height:300px}
  .order-slide img{height:300px}
  .order-hero-copy{left:19px;top:20px}
}

/* APP DE PEDIDOS */
body{
  background:#f4f4f4;
  color:#171717;
}

body::before{
  content:'';
  position:fixed;
  inset:0 0 auto;
  height:250px;
  background:linear-gradient(135deg,#171717 0%,#2b2724 100%);
  z-index:-1;
}

.container{
  max-width:560px;
  padding:22px 16px 110px;
}

.header{
  position:relative;
  display:grid;
  grid-template-columns:58px 1fr;
  align-items:center;
  gap:14px;
  margin-bottom:22px;
  text-align:left;
  color:#fff;
}

.header img{
  width:58px;
  height:58px;
  margin:0;
  border:0;
  box-shadow:none;
}

.header h1{
  color:#fff;
  font-size:1.9rem;
  line-height:.9;
}

.header p{
  grid-column:2;
  color:rgba(255,255,255,.64);
  font-size:.64rem;
  letter-spacing:.12em;
  margin-top:7px;
}

.order-hero{
  min-height:330px;
  margin-bottom:18px;
  border-radius:12px;
  box-shadow:0 16px 35px rgba(0,0,0,.2);
}

.order-slides,.order-slide img{height:330px}
.order-slide::after{background:linear-gradient(90deg,rgba(8,8,8,.86),rgba(8,8,8,.15) 85%)}
.order-hero::after{display:none}
.order-hero-copy{left:22px;top:25px;max-width:260px}
.order-hero-copy strong{font-size:2.5rem}
.order-hero-copy span{font-size:.82rem;margin-bottom:18px}
.order-hero-copy .btn{padding:13px 17px}
.order-dots{left:22px;right:auto;bottom:18px}

.links{gap:20px}
.section{background:#fff;border:1px solid #e5e5e5;border-radius:10px;padding:16px;box-shadow:0 4px 14px rgba(0,0,0,.04)}
.section-title{font-size:1.05rem;margin-bottom:12px;padding:0}
.section .link-btn{margin-bottom:8px}
.section .link-btn:last-child{margin-bottom:0}
.link-btn{min-height:54px;padding:14px 15px;border-radius:7px;box-shadow:none;background:#fafafa}
.link-btn:hover{transform:translateY(-2px);box-shadow:0 7px 15px rgba(0,0,0,.09)}

.section:first-child .link-btn,.section:nth-child(2) .link-btn{background:#fff;border-color:#dedede}
.section-highlight{padding:18px 16px 16px;background:#171717;border-color:#171717;box-shadow:0 10px 24px rgba(0,0,0,.18)}
.section-highlight .section-title{color:#fff}
.section-highlight .link-btn{background:var(--rojo);min-height:56px}
.section-highlight .link-btn + .link-btn{background:#272321}
.section-highlight .link-btn:hover{background:#bd0017}
.section-highlight .link-btn + .link-btn:hover{background:#3b3531}

.social-links{padding-top:18px;padding-bottom:18px}
.social-links .section-title{margin-bottom:14px}
.social-links .link-btn{background:#f7f7f7}

.section:last-child .link-btn{background:#fff}
.footer{margin-top:30px;color:#8b8b8b}

.whatsapp-float{width:54px;height:54px;right:16px;bottom:18px;box-shadow:0 8px 20px rgba(0,0,0,.25)}

@media(max-width:520px){
  .container{padding:18px 12px 100px}
  .header{margin-bottom:18px}
  .header h1{font-size:1.75rem}
  .order-hero{min-height:320px}
  .order-slides,.order-slide img{height:320px}
  .order-hero-copy{left:20px;top:21px}
  .order-hero-copy strong{font-size:2.25rem}
  .section{padding:14px}
}

.section-highlight .link-btn:first-child{
  animation:pulse 1.5s infinite;
}
