/* ══════════════════════════════════════════
   DISTRITO 87 — HOME CSS v2
   ══════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 50% 88%, rgba(192,57,11,.55) 0%, transparent 68%),
    radial-gradient(ellipse 90% 50% at 50% 100%, rgba(232,93,18,.15) 0%, transparent 55%),
    var(--negro);
}
/* Grain texture */
.hero-grain {
  position: absolute; inset: 0; opacity: .04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-eyebrow {
  position: relative; z-index: 2;
  font-size: .72rem; font-weight: 700; letter-spacing: .4em;
  text-transform: uppercase; color: var(--naranja); margin-bottom: 1.2rem;
  animation: fade-in .8s ease both;
}
.hero-title {
  position: relative; z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 13rem);
  line-height: .86; letter-spacing: .03em; color: var(--crema);
  animation: slide-up .9s cubic-bezier(.16,1,.3,1) .1s both;
  will-change: transform;
}
.hero-title span { display: block; color: var(--fuego); -webkit-text-stroke: 1.5px var(--brasas); }
.hero-sub {
  position: relative; z-index: 2;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(.95rem, 2.5vw, 1.35rem);
  color: var(--crema); opacity: .7; margin-top: 1.5rem;
  animation: fade-in 1s ease .45s both;
}
.hero-cta {
  position: relative; z-index: 2;
  display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; justify-content: center;
  animation: fade-in 1s ease .7s both;
}
.hero-badges {
  position: relative; z-index: 2;
  display: flex; gap: 2rem; margin-top: 3.5rem; justify-content: center;
  animation: fade-in 1s ease .9s both;
}
.hero-badge {
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
}
.hero-badge-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  color: var(--naranja); line-height: 1;
}
.hero-badge-label { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; opacity: .5; }
.hero-badge-sep { width: 1px; height: 40px; background: var(--humo); align-self: center; }
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  animation: bounce 2.2s ease infinite;
}
.scroll-hint span { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; opacity: .4; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--naranja), transparent); }
.chili-float { position: absolute; font-size: 1.5rem; opacity: .05; animation: drift linear infinite; pointer-events: none; user-select: none; }

/* ── SALSA SECTION ── */
.salsa-section {
  position: relative; padding: 9rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.salsa-visual { position: relative; display: flex; justify-content: center; }
.sauce-bottle {
  width: 100%; max-width: 300px; position: relative; z-index: 2;
  filter: drop-shadow(0 24px 64px rgba(232,93,18,.28));
  animation: bottle-float 4s ease-in-out infinite;
}
.bottle-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 240px; height: 440px;
  background: radial-gradient(ellipse, rgba(232,93,18,.32) 0%, transparent 68%);
  animation: pulse-glow 3s ease-in-out infinite; z-index: 1;
}
.salsa-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.salsa-feat {
  background: var(--carbon); border: 1px solid var(--humo);
  padding: 1rem; border-radius: 5px; transition: border-color .3s;
}
.salsa-feat:hover { border-color: var(--brasas); }
.salsa-feat-icon { font-size: 1.4rem; margin-bottom: .4rem; display: block; }
.salsa-feat-name { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: .08em; color: var(--crema); }
.salsa-feat-desc { font-size: .75rem; opacity: .5; margin-top: .2rem; line-height: 1.5; }

/* ── STATS ── */
.stats-section { padding: 5rem 3rem; display: flex; justify-content: center; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: 1000px; width: 100%;
  border: 1px solid var(--humo); border-radius: 6px; overflow: hidden;
}
.stat {
  padding: 2.5rem 2rem; text-align: center; border-right: 1px solid var(--humo);
  background: var(--carbon); transition: background .3s;
  position: relative; overflow: hidden;
}
.stat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(to right, transparent, var(--fuego), transparent);
  transform: scaleX(0); transition: transform .4s;
}
.stat:hover::before { transform: scaleX(1); }
.stat:hover { background: var(--humo); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem,5vw,4.5rem); color: var(--naranja); line-height: 1; display: block; }
.stat-label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; opacity: .45; margin-top: .5rem; }

/* ── MENU PREVIEW ── */
.menu-preview-section { padding: 8rem 3rem; background: var(--carbon); }
.menu-preview-header { text-align: center; margin-bottom: 5rem; }
.menu-preview-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.8rem; max-width: 1200px; margin: 0 auto 3.5rem;
}
.menu-card {
  background: var(--negro); border: 1px solid var(--humo);
  border-radius: 8px; overflow: hidden;
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .4s;
}
.menu-card:hover { transform: translateY(-10px); border-color: var(--brasas); box-shadow: 0 28px 60px rgba(192,57,11,.25); }
.menu-card-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--humo) 0%, var(--carbon) 100%);
}
.menu-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,10,7,.7) 0%, transparent 55%); }
.menu-card-img .badge {
  position: absolute; top: .8rem; right: .8rem; z-index: 2;
  background: var(--brasas); color: #fff;
  font-size: .6rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .25rem .65rem; border-radius: 2px;
}
.menu-card-body { padding: 1.5rem; }
.menu-card-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .06em; color: var(--crema); margin-bottom: .4rem; }
.menu-card-desc { font-size: .83rem; opacity: .58; line-height: 1.65; }
.menu-card-footer { margin-top: 1rem; display: flex; align-items: center; justify-content: space-between; }
.menu-card-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--naranja); }
.menu-card-tag { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--fuego); opacity: .75; }
.menu-cta { text-align: center; }

/* ── REVIEWS ── */
.reviews-section { padding: 8rem 3rem; overflow: hidden; }
.reviews-header { text-align: center; margin-bottom: 4rem; }

/* ── INFO ── */
.info-section { padding: 8rem 3rem; background: var(--carbon); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; }
.info-block-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--crema);
  margin-bottom: 2rem; border-bottom: 2px solid var(--brasas); padding-bottom: .75rem;
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: .72rem 0; border-bottom: 1px solid rgba(58,49,40,.45); font-size: .9rem;
}
.hours-list .day { text-transform: uppercase; font-weight: 600; letter-spacing: .1em; opacity: .85; }
.hours-list .time { color: var(--naranja); font-weight: 600; }
.promo-day .day { color: var(--naranja); }
.location-info p { font-size: .95rem; line-height: 1.85; opacity: .7; margin-bottom: 1rem; }
.phone-big { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--fuego); display: block; margin: 1rem 0; text-decoration: none; letter-spacing: .05em; transition: color .2s; }
.phone-big:hover { color: var(--naranja); }
.promo-note { margin-top: 1.5rem; padding: 1rem 1.2rem; background: rgba(232,93,18,.08); border-left: 3px solid var(--fuego); border-radius: 0 4px 4px 0; font-size: .82rem; line-height: 1.7; opacity: .8; }
.precio-rango { margin-top: 1rem; display: inline-flex; align-items: center; gap: .5rem; background: var(--carbon); border: 1px solid var(--humo); padding: .5rem 1rem; border-radius: 4px; font-size: .82rem; opacity: .75; }

/* ── KEYFRAMES ── */
@keyframes bounce   { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(8px); } }
@keyframes bottle-float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-14px); } }
@keyframes pulse-glow   { 0%,100% { transform:translate(-50%,-50%) scale(1); opacity:.6; } 50% { transform:translate(-50%,-50%) scale(1.22); opacity:1; } }
@keyframes drift { from { transform:translateY(0) rotate(0deg); } to { transform:translateY(-120vh) rotate(360deg); } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .salsa-section { grid-template-columns:1fr; gap:2rem; padding:5rem 1.5rem; }
  .salsa-visual { display:none; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .stat { border-bottom:1px solid var(--humo); }
  .info-grid { grid-template-columns:1fr; }
  .menu-preview-section, .reviews-section, .info-section { padding:5rem 1.5rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns:1fr; }
  .hero-badges { gap:1rem; flex-wrap:wrap; }
}
