/* ═══════════════════════════════════════════
   BÚHO CAFÉ DE CAMINO — Static Styles
   ═══════════════════════════════════════════ */

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Asap', sans-serif;
  background: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Asap Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* --- TOKENS --- */
:root {
  --primary: hsl(54, 100%, 50%);
  --primary-dark: hsl(46, 84%, 53%);
  --secondary: hsl(0, 0%, 0%);
  --bg: #fff;
  --fg: #000;
  --muted: hsl(0, 0%, 65%);
  --radius: 0.75rem;
}

/* --- UTILITIES --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-primary { color: var(--primary); }
.mt-lg { margin-top: 2.5rem; }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: 'Asap Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: transform .2s, background .2s, color .2s;
  cursor: pointer;
  text-align: center;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
}
.btn-primary:hover { transform: scale(1.05); }
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover { background: var(--primary); color: #000; }

/* --- SECTIONS --- */
.section { padding: 4rem 20px; }
.section-dark { background: var(--secondary); }
.section-light { background: var(--bg); }
.section-header { margin-bottom: 2.5rem; }
.section-eyebrow {
  font-family: 'Asap Condensed', sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .15em;
  display: block;
}
.section-eyebrow.accent { color: var(--primary); }
.section-eyebrow.muted { color: var(--muted); }
.section-header h2 {
  font-size: 2.25rem;
  margin-top: .5rem;
}
.section-dark .section-header h2 { color: #fff; }
.section-light .section-header h2 { color: #000; }

@media (min-width: 768px) {
  .section { padding: 6rem 2rem; }
  .section-header h2 { font-size: 3rem; }
}

/* --- NAVBAR --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.nav-logo img { height: 40px; }
.nav-links { display: none; gap: 1.5rem; }
.nav-links a {
  font-family: 'Asap Condensed', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  background: #000;
  padding: 1rem 20px 1.5rem;
}
.nav-mobile.open { display: flex; flex-direction: column; gap: 1rem; }
.nav-mobile a {
  font-family: 'Asap Condensed', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--primary); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* --- HERO --- */
.hero {
  position: relative;
  height: 100vh; width: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px;
}
.hero-content h1 {
  font-size: clamp(2.75rem, 8vw, 6rem);
  line-height: .95;
  color: var(--primary);
  text-shadow: 0 2px 20px rgba(0,0,0,.8);
  margin-bottom: 1rem;
}
.hero-sub {
  font-family: 'Asap', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  max-width: 28rem;
  margin: 0 auto 2rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.scroll-indicator {
  position: absolute; bottom: 2rem;
  left: 50%; transform: translateX(-50%);
  color: var(--primary);
  animation: bounce 1.5s infinite;
}
@keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(8px); } }

/* --- PROMOS --- */
.promos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.promo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.promo-card:hover .promo-img img { transform: scale(1.1); }
.promo-img { aspect-ratio: 1; overflow: hidden; }
.promo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.promo-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #000 0%, rgba(0,0,0,.4) 50%, transparent 100%);
}
.promo-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
}
.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  font-family: 'Asap Condensed', sans-serif;
  font-size: .75rem; font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 999px;
  margin-bottom: .5rem;
}
.promo-info h3 {
  font-size: 1.25rem;
  color: #fff;
}
.promo-info p {
  font-family: 'Asap', sans-serif;
  font-size: .875rem;
  color: hsl(0,0%,84%);
}
.promo-price {
  font-family: 'Asap Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: .25rem;
  display: block;
}

@media (min-width: 640px) { .promos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .promos-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- MENU --- */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 56rem;
}
.menu-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .5rem;
}
.menu-list li {
  font-family: 'Asap', sans-serif;
  font-size: .875rem;
  padding: .5rem 0;
  display: flex; align-items: center; gap: .75rem;
  transition: color .2s;
}
.menu-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .6;
  flex-shrink: 0;
}
.menu-list li:hover { color: var(--primary); }
@media (min-width: 768px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- MERCH --- */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.merch-card { cursor: default; }
.merch-card:hover .merch-img img { transform: scale(1.02); }
.merch-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  margin-bottom: .75rem;
}
.merch-img.contain {
  display: flex; align-items: center; justify-content: center;
  padding: .75rem;
}
.merch-img.contain img {
  max-height: 88%; max-width: 88%;
  object-fit: contain;
  transition: transform .3s;
}
.merch-img.cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--obj-pos, center);
  transition: transform .3s;
}
.merch-card h3 {
  font-size: .875rem;
  color: #fff;
}
@media (min-width: 768px) {
  .merch-grid { gap: 1.5rem; }
  .merch-card h3 { font-size: 1rem; }
}
@media (min-width: 1024px) {
  .merch-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- ABOUT --- */
.about-content { text-align: center; max-width: 40rem; margin: 0 auto; }
.about-content h2 { font-size: 2.25rem; margin: .5rem 0 2rem; }
.about-text { font-size: 1.125rem; color: var(--muted); line-height: 1.7; }
.about-text p + p { margin-top: 1.5rem; }
.about-text strong { color: #000; }
.about-dots {
  margin-top: 3rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  opacity: .2;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: #000; }
.arrow-right { font-family: 'Asap Condensed', sans-serif; font-size: .75rem; color: #000; }
@media (min-width: 768px) { .about-content h2 { font-size: 3rem; } }

/* --- LOCATION --- */
.location-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
}
.location-pin {
  display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.5rem;
}
.location-title {
  font-family: 'Asap Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 700; color: #fff;
}
.location-sub { font-family: 'Asap', sans-serif; font-size: .875rem; color: var(--muted); }
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.location-map iframe { width: 100%; height: 100%; border: 0; }
@media (min-width: 1024px) { .location-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- CONTACT --- */
.contact-links { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  cursor: pointer;
}
.contact-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s;
  flex-shrink: 0;
}
.contact-item:hover .contact-icon { background: var(--primary); color: #000; }
.contact-label {
  font-family: 'Asap Condensed', sans-serif;
  font-weight: 700; color: #000;
}
.contact-value {
  font-family: 'Asap', sans-serif;
  font-size: .875rem; color: var(--muted);
}

/* --- FOOTER --- */
.footer { background: #000; padding: 3rem 20px; }
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
  text-align: center;
}
.footer-brand h3 {
  font-size: 1.5rem; color: var(--primary);
}
.footer-brand p {
  font-family: 'Asap', sans-serif;
  font-size: .875rem; color: var(--muted); margin-top: .25rem;
}
.footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; align-items: center;
}
.footer-nav a {
  font-family: 'Asap Condensed', sans-serif;
  font-size: .875rem; font-weight: 700;
  color: var(--muted);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--primary); }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.footer-bottom p {
  font-family: 'Asap', sans-serif;
  font-size: .75rem; color: var(--muted);
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* --- WHATSAPP --- */
.whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 90;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
