body{
  margin:0;
  font-family:system-ui;
  background:#0b0f14;
  color:white;
  padding-bottom:100px;
  }
  
  .container{
  max-width:1000px;
  margin:auto;
  padding:20px;
  }
  
  .header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
  background:#101827;
  border-bottom:1px solid #222;
  gap:16px;
  flex-wrap:wrap;
  }
  
  .brand{
  display:flex;
  gap:12px;
  align-items:center;
  }
  
  .logo{
  width:44px;
  height:44px;
  border-radius:10px;
  background:#0f2d1f;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  }
  
  .logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:6px;
  }
  
  h1{
  margin:0;
  font-size:26px;
  }
  
  .subtitle{
  font-size:13px;
  opacity:.7;
  margin:0;
  }
  
  .cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  }
  
  .btn{
  padding:10px 14px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  }
  
  .btn-whatsapp{
  background:#25D366;
  color:black;
  }
  
  .btn-map{
  background:#1f2937;
  color:white;
  }
  
  .btn-fb{
  background:#1f2937;
  color:white;
  }
  
  .big{
  display:block;
  margin-top:12px;
  text-align:center;
  }
  
  .card{
  background:#111827;
  padding:20px;
  border-radius:12px;
  margin-bottom:18px;
  }
  
  .grid2{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:10px;
  }
  
  .pill{
  background:#1f2937;
  padding:6px 10px;
  border-radius:20px;
  font-size:12px;
  }
  
  .promos{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:16px;
  }
  
  .promo{
  background:#1f2937;
  padding:12px;
  border-radius:10px;
  }
  
  .promoTop{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  margin-bottom:6px;
  }
  
  .menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:16px;
  }
  
  .menu-card{
  background:#1f2937;
  padding:14px;
  border-radius:10px;
  }
  
  .menu-card p{
  opacity:.85;
  font-size:14px;
  }
  
  .menu-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:10px;
  }
  
  .menu-footer a{
  background:#25D366;
  padding:6px 10px;
  border-radius:6px;
  color:black;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  }
  
  .badge{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  padding:4px 8px;
  border-radius:6px;
  margin-bottom:6px;
  }
  
  .badge-popular{
  background:#25D366;
  color:black;
  }
  
  .badge-special{
  background:#f59e0b;
  color:black;
  }
  
  .footer{
  text-align:center;
  padding:30px 0 50px;
  opacity:.6;
  }
  
  .whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  padding:14px 18px;
  border-radius:30px;
  color:black;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 6px 16px rgba(0,0,0,.4);
  }
  
  .carousel{
  margin-top:12px;
  display:grid;
  grid-template-columns:40px 1fr 40px;
  gap:10px;
  align-items:center;
  }
  
  .car-viewport{
  overflow:hidden;
  border-radius:12px;
  background:#0b0f14;
  }
  
  .car-track{
  display:flex;
  transition:transform .35s ease;
  }
  
  .car-track img{
  width:100%;
  flex:0 0 100%;
  height:320px;
  object-fit:contain;
  background:#0b0f14;
  }
  
  .car-btn{
  width:40px;
  height:40px;
  border-radius:10px;
  background:#1f2937;
  color:white;
  font-size:22px;
  border:none;
  cursor:pointer;
  }
  
  .car-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:10px;
  }
  
  .dot{
  width:9px;
  height:9px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.4);
  background:transparent;
  cursor:pointer;
  }
  
  .dot.active{
  background:#25D366;
  border-color:#25D366;
  }
  
  /* RESPONSIVE */
  
  @media (max-width:700px){
  
  .header{
  align-items:flex-start;
  }
  
  .brand{
  width:100%;
  }
  
  .cta{
  width:100%;
  }
  
  .cta .btn{
  flex:1 1 140px;
  text-align:center;
  }
  
  h1{
  font-size:22px;
  }
  
  }
  
  @media (max-width:430px){
  
  .cta .btn{
  flex:1 1 100%;
  }
  
  .car-track img{
  height:240px;
  }
  
  }