/* ================================================
   LA TRIBUNA 90 — Gastrobar Futbolero
   Paleta: #36130E (café) | #314B36 (verde) | #C5452E (rojo)
   ================================================ */

:root {
  --brown:        #36130E;
  --brown-dark:   #1a0a08;
  --brown-light:  #4a1c16;
  --green:        #314B36;
  --green-light:  #3d5e43;
  --red:          #C5452E;
  --red-dark:     #a33824;
  --gold:         #D4AF37;
  --cream:        #F5F0E8;
  --white:        #FFFFFF;
  --text-muted:   rgba(245,240,232,0.55);
  --border:       rgba(197,69,46,0.2);
  --card-bg:      rgba(54,19,14,0.45);

  --ff-title:     'Bebas Neue', sans-serif;
  --ff-sub:       'Oswald', sans-serif;
  --ff-body:      'Lato', sans-serif;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--ff-body);
  background: var(--brown-dark);
  color: var(--cream);
  overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { font-family: var(--ff-body); }

/* ── Helpers ────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-sub);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}

.section-title {
  font-family: var(--ff-title);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: .02em;
}

.section-title .highlight,
.section-title em.highlight {
  color: var(--red);
  font-style: normal;
}

.section-sub {
  margin-top: .6rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.section-header { text-align:center; margin-bottom: 3rem; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .85rem 2rem;
  font-family: var(--ff-sub);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(197,69,46,.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-block { width:100%; justify-content:center; }

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background .4s, padding .4s, border-color .4s;
}

.navbar.scrolled {
  background: rgba(13,6,4,.97);
  backdrop-filter: blur(12px);
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 52px;
  width: auto;
  transition: height .3s;
  filter: drop-shadow(0 0 8px rgba(197,69,46,.3));
}
.navbar.scrolled .logo-img { height: 40px; }

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--ff-sub);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,240,232,.8);
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(49,75,54,.35) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(197,69,46,.2) 0%, transparent 55%),
    linear-gradient(180deg, #071007 0%, #1a0a08 45%, #0b1508 100%);
}

/* Stripes */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to right,
    transparent, transparent 70px,
    rgba(49,75,54,.07) 70px, rgba(49,75,54,.07) 140px
  );
  pointer-events: none;
}

/* Pitch lines */
.hero-bg-lines {
  position: absolute; inset: 0;
  pointer-events: none;
}
.pitch-vline {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 1px;
  background: rgba(255,255,255,.05);
}
.pitch-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: min(420px,62vw);
  height: min(420px,62vw);
  border: 1px solid rgba(255,255,255,.045);
  border-radius: 50%;
}
.pitch-spot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 7px; height: 7px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
}
.pitch-arc {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: min(160px,28vw);
  height: min(80px,14vw);
  border: 1px solid rgba(255,255,255,.04);
}
.pitch-arc-top {
  top: 0;
  border-radius: 0 0 9999px 9999px;
  border-top: none;
}
.pitch-arc-bottom {
  bottom: 0;
  border-radius: 9999px 9999px 0 0;
  border-bottom: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--ff-sub);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,.4);
  padding: .38rem 1.1rem;
  margin-bottom: 2rem;
}

.hero-logo {
  max-width: min(440px, 82vw);
  margin: 0 auto 2rem;
  animation: logoGlow 3.5s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from { filter: drop-shadow(0 0 18px rgba(197,69,46,.35)); }
  to   { filter: drop-shadow(0 0 52px rgba(197,69,46,.65)) drop-shadow(0 0 20px rgba(49,75,54,.4)); }
}

.hero-tagline {
  font-family: var(--ff-sub);
  font-size: clamp(.95rem, 2.4vw, 1.35rem);
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,240,232,.75);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scoreboard */
.hero-scoreboard {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(0,0,0,.7);
  border: 1px solid var(--border);
  padding: .7rem 2rem;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  font-family: var(--ff-sub);
}
.score-item { text-align: center; }
.score-label {
  display: block;
  font-size: .55rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.score-value {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--red);
}
.score-sep { color: rgba(255,255,255,.18); font-size: 1.4rem; }

.blink { animation: blink 2.2s infinite; }
@keyframes blink {
  0%,100% { opacity:1; }
  50%      { opacity:.5; }
}

.scroll-hint {
  position: absolute;
  right: 2rem; bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  font-family: var(--ff-sub);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,240,232,.35);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(197,69,46,.6), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:1; transform: scaleY(1); }
  50%      { opacity:.3; transform: scaleY(.5); }
}

/* ── STATS BAR ──────────────────────────────────── */
.stats-bar {
  background: var(--red);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 10px,
    rgba(0,0,0,.06) 10px, rgba(0,0,0,.06) 20px
  );
}
.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
  position: relative;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .2rem;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  height: 55%; width: 1px;
  background: rgba(255,255,255,.22);
}
.stat i {
  font-size: 1.4rem;
  color: rgba(255,255,255,.8);
  margin-bottom: .2rem;
}
.stat strong {
  font-family: var(--ff-title);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}
.stat span {
  font-family: var(--ff-sub);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

/* ── ABOUT ──────────────────────────────────────── */
.about {
  padding: 7rem 0 5rem;
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(49,75,54,.12) 0%, transparent 60%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
}
.about-img {
  width: 100%;
  border: 1px solid rgba(197,69,46,.2);
  border-radius: 2px;
}
.about-icon-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 76px; height: 76px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .9rem;
  box-shadow: 0 8px 30px rgba(197,69,46,.45);
}
.about-icon-badge img { width: 100%; }

.about-corner-tag {
  position: absolute;
  top: 1.2rem; left: -1rem;
  font-family: var(--ff-sub);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--brown-dark);
  border: 1px solid rgba(212,175,55,.35);
  padding: .3rem .8rem;
}

.about-text p {
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.about-text p strong { color: var(--cream); }

.about-values {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.8rem 0 2rem;
}
.value-pill {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--ff-sub);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(49,75,54,.3);
  border: 1px solid rgba(49,75,54,.6);
  padding: .45rem .9rem;
}
.value-pill i { color: var(--red); }

.grass-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    to right,
    var(--green), var(--green) 22px,
    var(--green-light) 22px, var(--green-light) 44px
  );
}

/* ── MENU SECTION ───────────────────────────────── */
.menu-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, #1a0a08 0%, #100e0e 50%, #1a0a08 100%);
  position: relative;
}
.menu-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}

/* Tabs */
.menu-tabs {
  display: flex;
  gap: .45rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.menu-tab {
  font-family: var(--ff-sub);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .55rem 1.4rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(245,240,232,.15);
  cursor: pointer;
  transition: all .3s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.menu-tab:hover { color: var(--cream); border-color: rgba(245,240,232,.4); }
.menu-tab.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* Grid */
.menu-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(330px,1fr));
  gap: 1.25rem;
}
.menu-grid.active { display: grid; }

/* Card */
.menu-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.4rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: all .3s ease;
  overflow: hidden;
}
.menu-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--red);
  transition: width .4s ease;
}
.menu-card:hover {
  background: rgba(54,19,14,.7);
  border-color: rgba(197,69,46,.4);
  transform: translateY(-3px);
}
.menu-card:hover::after { width: 100%; }

.menu-card.featured {
  border-color: rgba(212,175,55,.4);
}
.menu-card.featured::after { background: var(--gold); }

.star-badge {
  position: absolute;
  top: .65rem; right: .65rem;
  font-family: var(--ff-sub);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.35);
  padding: .2rem .55rem;
}

.card-num {
  font-family: var(--ff-title);
  font-size: 1.9rem;
  color: rgba(197,69,46,.28);
  line-height: 1;
  min-width: 2.2rem;
  flex-shrink: 0;
}

.card-body { flex: 1; }
.card-body h3 {
  font-family: var(--ff-sub);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .3rem;
  letter-spacing: .02em;
}
.card-body p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: .55rem;
}

.card-tags {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
}
.card-tags span {
  font-family: var(--ff-sub);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .18rem .5rem;
  background: rgba(49,75,54,.35);
  border: 1px solid rgba(49,75,54,.55);
  color: rgba(245,240,232,.65);
}

.card-price {
  font-family: var(--ff-title);
  font-size: 1.35rem;
  color: var(--red);
  white-space: nowrap;
  align-self: center;
}

/* ── GALLERY ────────────────────────────────────── */
.gallery-section {
  padding: 7rem 0;
  background: var(--brown-dark);
  position: relative;
}
.gallery-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 70%, rgba(49,75,54,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 30%, rgba(197,69,46,.07) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: auto auto;
  gap: .9rem;
}

.g-item {
  position: relative;
  overflow: hidden;
  background: var(--brown);
  aspect-ratio: 1;
}
.g-item.g-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.g-item:hover img { transform: scale(1.06); }

.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,10,8,.85), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.1rem 1.2rem;
  opacity: 0;
  transition: opacity .35s;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  font-family: var(--ff-sub);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ── CONTACT ────────────────────────────────────── */
.contact-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, #100e0e 0%, var(--brown-dark) 100%);
  position: relative;
  overflow: hidden;
}
.contact-bg-number {
  position: absolute;
  font-family: var(--ff-title);
  font-size: clamp(14rem, 30vw, 26rem);
  color: rgba(197,69,46,.035);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.6rem; }

.info-row {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.info-icon {
  width: 42px; height: 42px;
  background: rgba(197,69,46,.1);
  border: 1px solid rgba(197,69,46,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: .95rem;
}
.info-row h4 {
  font-family: var(--ff-sub);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.info-row p { font-size: .92rem; line-height: 1.65; }

.contact-social {
  display: flex;
  gap: .65rem;
  padding-top: .5rem;
}
.soc-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  border: 1px solid rgba(245,240,232,.18);
  color: var(--text-muted);
  transition: all .3s;
}
.soc-btn:hover { transform: translateY(-3px); }
.soc-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.soc-whatsapp:hover { background: #25D366 !important; border-color: #25D366 !important; }

/* Form */
.contact-form-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.contact-form-box h3 {
  font-family: var(--ff-title);
  font-size: 1.75rem;
  letter-spacing: .05em;
  color: var(--cream);
  margin-bottom: 1.8rem;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-family: var(--ff-sub);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(245,240,232,.1);
  color: var(--cream);
  padding: .72rem 1rem;
  font-family: var(--ff-body);
  font-size: .9rem;
  outline: none;
  appearance: none;
  transition: border-color .3s;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,232,.28); }
.form-group select option { background: var(--brown); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 78px; }

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  background: #0d0604;
  border-top: 1px solid rgba(197,69,46,.18);
}
.footer-top { padding: 4rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}

.footer-logo { height: 48px; width: auto; margin-bottom: 1rem; }
.f-brand p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.footer-social { display: flex; gap: .65rem; }
.footer-social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,240,232,.05);
  border: 1px solid rgba(245,240,232,.1);
  color: var(--text-muted);
  font-size: .85rem;
  transition: all .3s;
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.f-links h4, .f-contact h4 {
  font-family: var(--ff-sub);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.f-links ul li { margin-bottom: .55rem; }
.f-links a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color .3s, padding-left .3s;
}
.f-links a:hover { color: var(--cream); padding-left: 4px; }

.f-contact p {
  font-size: .83rem;
  color: var(--text-muted);
  margin-bottom: .55rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.f-contact i { color: var(--red); width: 14px; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(245,240,232,.05);
  padding: 1.2rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(245,240,232,.28); }

/* ── FLOATING ELEMENTS ──────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
  animation: waPulse 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.back-top {
  position: fixed;
  bottom: 2rem; right: 6.5rem;
  width: 40px; height: 40px;
  background: rgba(197,69,46,.8);
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 998;
  opacity: 0; visibility: hidden;
  transition: all .3s;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--red); }

/* ── PRODUCTS GRID ──────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
  margin-bottom: 1rem;
}

.prod-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--brown);
  border: 1px solid var(--border);
}
.prod-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.prod-item:hover img { transform: scale(1.07); }
.prod-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(197,69,46,.25), transparent 60%);
  transition: opacity .3s;
}

.gallery-brand { margin-top: 1rem; }

/* ── MAP ────────────────────────────────────────── */
.map-wrapper {
  margin-top: 3rem;
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 340px;
  filter: grayscale(30%) contrast(1.05);
}
.map-pin-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--brown-dark);
  border-top: 1px solid var(--border);
  padding: .65rem 1.25rem;
  font-family: var(--ff-sub);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.map-pin-label i { color: var(--red); }

/* ── INFO LINK STYLE ────────────────────────────── */
.info-row a {
  color: var(--cream);
  transition: color .25s;
}
.info-row a:hover { color: var(--red); }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 460px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .f-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 280px;
    background: rgba(10,4,3,.98);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right .4s ease;
    border-left: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.15rem; }

  .hero-scoreboard { display: none; }
  .scroll-hint { display: none; }

  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2)::after { display: none; }

  .menu-tabs { gap: .35rem; }
  .menu-tab { font-size: .72rem; padding: .5rem .95rem; }
  .menu-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .g-item.g-large { grid-column: span 2; aspect-ratio: 16/7; }
  .products-grid { grid-template-columns: repeat(2,1fr); }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row-2 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .f-brand { grid-column: auto; }
  .footer-bottom .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; justify-content: center; }

  .stats-inner { grid-template-columns: repeat(2,1fr); gap: .8rem; }
  .stat::after { display: none !important; }

  .about-values { justify-content: center; }
  .about-icon-badge { width: 60px; height: 60px; }

  .gallery-grid { grid-template-columns: 1fr; gap: .65rem; }
  .g-item.g-large { grid-column: auto; aspect-ratio: 4/3; }
  .products-grid { grid-template-columns: repeat(2,1fr); }

  .contact-form-box { padding: 1.5rem; }

  .wa-float { bottom: 1.5rem; right: 1.5rem; }
  .back-top { bottom: 1.5rem; right: 5.5rem; }
}

/* ================================================
   GAMING SECTION – PlayStation & FIFA
   ================================================ */
.gaming-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--brown-dark) 0%, #0d1a10 50%, var(--brown-dark) 100%);
  position: relative;
  overflow: hidden;
}
.gaming-section::before {
  content: '🎮';
  position: absolute;
  font-size: 22rem;
  opacity: .03;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.gaming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.gaming-feature {
  background: rgba(49, 75, 54, 0.2);
  border: 1px solid rgba(49, 75, 54, 0.5);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform .3s, border-color .3s, background .3s;
}
.gaming-feature:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(49, 75, 54, 0.35);
}

.gaming-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--gold);
  box-shadow: 0 0 30px rgba(49, 75, 54, 0.5);
}

.gaming-feature h3 {
  font-family: var(--ff-sub);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.gaming-feature p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
}

.gaming-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.gaming-scoreboard {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--green);
  border-radius: .75rem;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.gscore-label {
  font-family: var(--ff-sub);
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.gscore-val {
  font-family: var(--ff-title);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: .05em;
}

/* ================================================
   CAFÉ SECTION – Herencia de mi Madre
   ================================================ */
.cafe-section {
  padding: 6rem 0;
  background: linear-gradient(160deg, var(--brown) 0%, var(--brown-dark) 60%, #1a0a08 100%);
  position: relative;
  overflow: hidden;
}
.cafe-section::before {
  content: '☕';
  position: absolute;
  font-size: 22rem;
  opacity: .04;
  bottom: -4rem;
  right: -4rem;
  pointer-events: none;
}

.cafe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cafe-brand {
  font-family: var(--ff-title);
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: .08em;
  margin: .5rem 0 1.5rem;
  text-shadow: 0 0 20px rgba(212,175,55,.3);
}

.cafe-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.cafe-values {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}
.cafe-pill {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.3);
  color: var(--gold);
  font-family: var(--ff-sub);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .4rem 1rem;
  border-radius: 2rem;
}

/* Visual side */
.cafe-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cafe-img-frame {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cafe-badge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(212,175,55,.08) 0%, rgba(54,19,14,.9) 70%);
  font-family: var(--ff-title);
  font-size: 1.6rem;
  color: var(--gold);
  text-align: center;
  line-height: 1.2;
  letter-spacing: .06em;
  box-shadow: 0 0 60px rgba(212,175,55,.2), inset 0 0 40px rgba(212,175,55,.05);
  animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 40px rgba(212,175,55,.2), inset 0 0 30px rgba(212,175,55,.05); }
  50%       { box-shadow: 0 0 80px rgba(212,175,55,.4), inset 0 0 60px rgba(212,175,55,.1); }
}

.cafe-cup-icon {
  font-size: 5rem;
  color: var(--gold);
  opacity: .15;
  position: absolute;
}

/* Steam animation */
.cafe-steam {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
}
.steam {
  width: 4px;
  border-radius: 2px;
  background: var(--gold);
  opacity: 0;
  animation: rise 2.5s ease-in-out infinite;
}
.steam.s1 { height: 20px; animation-delay: 0s; }
.steam.s2 { height: 28px; animation-delay: .4s; }
.steam.s3 { height: 16px; animation-delay: .8s; }
@keyframes rise {
  0%   { opacity: 0; transform: translateY(0) scaleX(1); }
  30%  { opacity: .6; }
  100% { opacity: 0; transform: translateY(-40px) scaleX(2); }
}

.cafe-quote {
  background: rgba(212,175,55,.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 .75rem .75rem 0;
  padding: 1.25rem 1.5rem;
  max-width: 340px;
}
.cafe-quote i { color: var(--gold); margin-bottom: .5rem; display: block; }
.cafe-quote p {
  font-style: italic;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .gaming-grid { grid-template-columns: 1fr; }
  .cafe-grid { grid-template-columns: 1fr; }
  .cafe-visual { order: -1; }
}
@media (max-width: 600px) {
  .cafe-img-frame { width: 220px; height: 220px; }
  .cafe-brand { font-size: 1.7rem; }
  .gaming-scoreboard { flex-direction: column; gap: .5rem; }
}

/* ================================================
   PLATO ESTRELLA - Banner Mini Hamburguesas
   ================================================ */
.star-dish-banner {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(212,175,55,.14), rgba(212,175,55,.03));
  border: 2px solid var(--gold);
  border-radius: .75rem;
  padding: 1.75rem 2rem;
  margin-bottom: .25rem;
  box-shadow: 0 0 40px rgba(212,175,55,.12);
}
.star-dish-icon {
  font-size: 2.6rem;
  flex-shrink: 0;
  line-height: 1;
}
.star-dish-text .star-dish-tag {
  display: inline-block;
  font-family: var(--ff-sub);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brown-dark);
  background: var(--gold);
  padding: .3rem .85rem;
  border-radius: 2rem;
  margin-bottom: .65rem;
}
.star-dish-text h3 {
  font-family: var(--ff-title);
  font-size: 1.6rem;
  letter-spacing: .04em;
  color: var(--gold);
  margin-bottom: .4rem;
}
.star-dish-text p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 720px;
}

@media (max-width: 700px) {
  .star-dish-banner { flex-direction: column; text-align: center; }
  .star-dish-text p { max-width: 100%; }
}

/* ================================================
   COMBOS SECTION
   ================================================ */
.combos-section {
  margin-bottom: 3.5rem;
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid rgba(212,175,55,.2);
}

.combos-header {
  text-align: center;
  margin-bottom: 2rem;
}
.combos-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #b8960c);
  color: var(--brown-dark);
  font-family: var(--ff-sub);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 2rem;
  margin-bottom: .75rem;
  animation: pulse-ring 3s ease-in-out infinite;
}
.combos-title {
  font-family: var(--ff-title);
  font-size: 2rem;
  color: var(--text-primary);
  letter-spacing: .04em;
  margin-bottom: .4rem;
}
.combos-title em { color: var(--gold); font-style: normal; }
.combos-sub {
  color: var(--text-muted);
  font-size: .95rem;
}

.combos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.combo-card {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.combo-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212,175,55,.15);
}
.combo-card.combo-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(212,175,55,.08), rgba(212,175,55,.02));
  box-shadow: 0 0 30px rgba(212,175,55,.1);
}

.combo-hot {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--gold), #b8960c);
  color: var(--brown-dark);
  font-family: var(--ff-sub);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .5rem;
  text-align: center;
}

.combo-badge {
  font-family: var(--ff-sub);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
  margin-top: .25rem;
}
.combo-card.combo-featured .combo-badge {
  margin-top: 1.2rem;
}

.combo-emoji {
  font-size: 2.2rem;
  margin-bottom: .75rem;
  line-height: 1;
}

.combo-card h4 {
  font-family: var(--ff-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
  line-height: 1.3;
}

.combo-desc {
  color: var(--text-muted);
  font-size: .83rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.combo-items {
  list-style: none;
  width: 100%;
  margin-bottom: 1.25rem;
  text-align: left;
}
.combo-items li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .83rem;
  color: var(--text-secondary);
  padding: .25rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.combo-items li:last-child { border-bottom: none; }
.combo-items i { color: var(--green-light); margin-top: .15rem; flex-shrink: 0; font-size: .75rem; }

.combo-price {
  font-family: var(--ff-title);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: .04em;
  text-shadow: 0 0 20px rgba(212,175,55,.3);
}

@media (max-width: 900px) {
  .combos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .combos-grid { grid-template-columns: 1fr; }
  .combos-title { font-size: 1.5rem; }
}
