/* ================================================
   CHOFO'S TEMPTATIONS v2 — styles.css
   Paleta: Naranja + Blanco | Estilo: App Premium
   ================================================ */

/* ---- RESET & TOKENS ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colores */
  --orange:       #ff6b00;
  --orange-light: #ff8c35;
  --orange-pale:  #fff4ec;
  --orange-deep:  #d45800;
  --white:        #ffffff;
  --off-white:    #faf8f5;
  --gray-100:     #f5f2ee;
  --gray-200:     #ede9e3;
  --gray-400:     #b0a898;
  --gray-600:     #7a7060;
  --gray-900:     #1c1814;
  --wa:           #25d366;

  /* Tipografía */
  --font-disp: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  /* Espaciado y radio */
  --radius:    16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --nav-h:     72px;

  /* Sombras */
  --shadow-sm: 0 2px 12px rgba(28,24,20,.07);
  --shadow:    0 8px 32px rgba(28,24,20,.10);
  --shadow-lg: 0 20px 60px rgba(28,24,20,.13);
  --shadow-or: 0 12px 36px rgba(255,107,0,.22);

  /* Transición */
  --t: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--gray-900);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---- SHARED ---- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
}
.section-title em { font-style: italic; color: var(--orange); }
.section-sub { color: var(--gray-600); margin-top: 10px; font-size: 1.05rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
}
.btn--orange {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-or);
}
.btn--orange:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255,107,0,.32);
}
.btn--outline {
  background: transparent;
  color: var(--gray-900);
  border: 1.5px solid var(--gray-200);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn--white {
  background: #fff;
  color: var(--orange);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,.2);
}
.btn--full { width: 100%; font-size: 1rem; padding: 16px; }


/* ================================================
   NAVBAR
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 999;
  transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--gray-200);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-disp);
  font-size: 1.2rem;
  font-weight: 900;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name  { font-family: var(--font-disp); font-size: 1.1rem; font-weight: 900; color: var(--gray-900); }
.logo-sub   { font-size: .68rem; font-weight: 500; letter-spacing: .08em; color: var(--orange); text-transform: uppercase; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color .2s;
}
.nav__links a:hover { color: var(--orange); }
.nav__wa-btn {
  display: flex !important;
  align-items: center;
  gap: 6px;
  background: var(--orange) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: .85rem !important;
  transition: var(--t) !important;
}
.nav__wa-btn:hover {
  background: var(--orange-light) !important;
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: var(--t);
}


/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

/* Fondo decorativo geométrico */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, #fff8f2 0%, #ffe8d4 100%);
  z-index: 0;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero__left {
  position: relative;
  z-index: 1;
  padding: 60px 24px 60px 8vw;
  max-width: 580px;
}
.hero__right {
  position: relative;
  z-index: 1;
  padding: 60px 6vw 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Tag */
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: dotPulse 2s ease infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; } 50% { opacity: .4; }
}

/* Titulo */
.hero__title {
  font-family: var(--font-disp);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--gray-900);
  margin-bottom: 18px;
}
.hero__title em { font-style: italic; color: var(--orange); }

.hero__sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero__delivery {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--gray-400);
  margin-bottom: 36px;
}

/* Stat cards */
.hero__stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  min-width: 90px;
  transition: var(--t);
}
.stat-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-or);
}
.stat-n {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-l {
  font-size: .72rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-top: 2px;
}

/* Hero image area */
.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero__img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* Food badges */
.food-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow);
  animation: floatBadge 5s ease-in-out infinite;
  min-width: 160px;
}
.food-badge img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.food-badge div { display: flex; flex-direction: column; }
.food-badge strong { font-size: .82rem; font-weight: 700; color: var(--gray-900); }
.food-badge span   { font-size: .75rem; font-weight: 600; color: var(--orange); }
.food-badge--tl { top: 20px; left: -30px; animation-delay: 0s; }
.food-badge--br { bottom: 24px; right: -20px; animation-delay: 2.5s; }

@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Pill */
.hero__pill {
  display: flex;
  align-items: center;
  gap: -8px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 8px 16px 8px 8px;
  box-shadow: var(--shadow-sm);
}
.hero__pill img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -6px;
}
.hero__pill img:first-child { margin-left: 0; }
.hero__pill span {
  margin-left: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-600);
}


/* ================================================
   HISTORIA
   ================================================ */
.historia {
  padding: 100px 0;
  background: var(--white);
}
.historia__head {
  margin-bottom: 56px;
}
.historia__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

/* Bloque texto */
.historia__main {
  padding: 40px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.historia__lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.7;
}
.historia__lead strong { color: var(--orange); }
.historia__body { color: var(--gray-600); margin-bottom: 28px; }

.historia__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.historia__checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: .95rem;
}
.check-icon {
  width: 26px;
  height: 26px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

/* Cards de valores */
.historia__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.val-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--t);
}
.val-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-or);
  transform: translateY(-3px);
}
.val-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.val-card h4 {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.val-card p {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.val-card--wide {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
  position: relative;
  border: none;
  height: 180px;
}
.val-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.val-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,107,0,.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.val-card__overlay span {
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
}


/* ================================================
   MENÚ
   ================================================ */
.menu {
  padding: 100px 0;
  background: var(--off-white);
}
.menu__head { margin-bottom: 48px; }

/* Filtros */
.menu__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.filter {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--t);
}
.filter:hover { border-color: var(--orange); color: var(--orange); }
.filter.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-or);
}

/* Grid */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* Cards */
.mcard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.mcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-100);
}
.mcard--featured {
  border-color: rgba(255,107,0,.2);
  box-shadow: 0 4px 20px rgba(255,107,0,.08);
}
.mcard.hidden { display: none; }

.mcard__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.mcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.mcard:hover .mcard__img img { transform: scale(1.06); }

.mcard__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  color: var(--gray-900);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.mcard__badge--gold {
  background: var(--orange);
  color: #fff;
}

.mcard__body { padding: 22px; }
.mcard__body h3 {
  font-family: var(--font-disp);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.mcard__body p {
  font-size: .84rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.5;
}

.mcard__prices {
  background: var(--off-white);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
}
.price-row span { color: var(--gray-600); }
.price-row strong { color: var(--orange); font-size: 1rem; font-weight: 700; }

.mcard__btn {
  display: block;
  text-align: center;
  background: transparent;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-900);
  border-radius: 50px;
  padding: 10px;
  font-size: .875rem;
  font-weight: 600;
  transition: var(--t);
}
.mcard__btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}


/* ================================================
   DESTACADO
   ================================================ */
.highlight {
  padding: 90px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.highlight__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  align-items: center;
}
.hl-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--t);
}
.hl-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(255,107,0,.12);
  transform: translateY(-4px);
}
.hl-card--center {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-color: var(--orange);
  transform: scale(1.03);
}
.hl-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.hl-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,107,0,.92) 0%, rgba(0,0,0,.1) 60%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
.hl-card__num {
  font-family: var(--font-disp);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.hl-card h3 {
  font-family: var(--font-disp);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.25;
}
.hl-card p {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 0;
}


/* ================================================
   CONTACTO
   ================================================ */
.contacto {
  padding: 100px 0;
  background: var(--off-white);
}
.contacto__head { margin-bottom: 56px; }
.contacto__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contacto__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cinfo-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px;
  transition: var(--t);
}
.cinfo-card:hover { border-color: var(--orange); }
.cinfo-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.cinfo-card strong {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3px;
}
.cinfo-card p { font-size: .92rem; color: var(--gray-900); }
.cinfo-card a { color: var(--orange); transition: color .2s; }
.cinfo-card a:hover { color: var(--orange-deep); }

.delivery-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--gray-400);
  margin-top: -4px;
}

.contacto__map {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.contacto__map iframe { display: block; }


/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--gray-900);
  color: #fff;
  padding: 60px 0 28px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__brand .logo-mark { width: 44px; height: 44px; font-size: 1.3rem; }
.footer__brand h3 {
  font-family: var(--font-disp);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
}
.footer__brand p { font-size: .82rem; color: rgba(255,255,255,.45); margin-top: 2px; }

.footer__cols {
  display: flex;
  gap: 48px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer__col a:hover { color: var(--orange); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer__love { color: var(--orange); font-weight: 500; }


/* ================================================
   WhatsApp FAB
   ================================================ */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 58px;
  height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transition: transform var(--t), box-shadow var(--t), opacity var(--t);
  opacity: 0;
  pointer-events: none;
}
.wa-fab.visible {
  opacity: 1;
  pointer-events: auto;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(37,211,102,.65);
}
.wa-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa);
  opacity: .35;
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .35; }
  100% { transform: scale(1.9); opacity: 0; }
}


/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero::before { display: none; }
  .hero__left { padding: 80px 24px 40px; max-width: 100%; }
  .hero__right { padding: 0 24px 60px; }
  .food-badge--tl { left: -10px; }
  .food-badge--br { right: -10px; }
  .historia__grid { grid-template-columns: 1fr; }
  .highlight__grid { grid-template-columns: 1fr; }
  .hl-card--center { transform: none; }
  .contacto__grid { grid-template-columns: 1fr; }
  .contacto__map { height: 300px; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 28px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    transition: transform var(--t);
    z-index: 997;
    box-shadow: var(--shadow);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { font-size: 1rem; color: var(--gray-900); }
  .nav__burger { display: flex; }

  .historia__cards { grid-template-columns: 1fr; }
  .val-card--wide { height: 150px; }

  .footer__top { flex-direction: column; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__btns { flex-direction: column; }
  .btn { justify-content: center; }
  .hero__img { height: 320px; }
  .food-badge { display: none; }
  .menu__grid { grid-template-columns: 1fr; }
  .footer__cols { flex-direction: column; gap: 24px; }
}
