/* ====================================================
   DULCE TENTACIÓN — style.css
   Paleta: crema cálida · borgoña profundo · rojo fresa
   Fuentes: Cormorant Garamond (display) + Nunito (body)
==================================================== */

/* ── TOKENS ── */
:root {
  --cream:       #f5f0e8;
  --cream-light: #fdf9f4;
  --cream-dark:  #e8e0d0;
  --burgundy:    #7a1c1c;
  --burgundy-dk: #5c1212;
  --strawberry:  #c0392b;
  --green:       #4a6741;
  --text:        #2d1a1a;
  --text-mid:    #6b4a4a;
  --text-light:  #a08080;
  --white:       #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-xl:  40px;

  --shadow-sm: 0 2px 12px rgba(122,28,28,.08);
  --shadow-md: 0 8px 32px rgba(122,28,28,.14);
  --shadow-lg: 0 20px 60px rgba(122,28,28,.18);

  --transition: .3s cubic-bezier(.4,0,.2,1);

  --container: min(1140px, 90vw);
  --header-h:  72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream-light);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TIPOGRAFÍA ── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

/* ── CONTAINER ── */
.container { width: var(--container); margin-inline: auto; }

/* ── SECTION TAGS ── */
.section-tag {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--strawberry);
  margin-bottom: .75rem;
}
.section-tag.light { color: rgba(255,248,240,.75); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--burgundy);
  margin-bottom: 2.5rem;
  font-weight: 600;
}
.section-title.left { text-align: left; margin-bottom: 1.25rem; }

/* ── BOTONES ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  background: var(--burgundy);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: var(--transition);
  border: 2px solid var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-dk);
  border-color: var(--burgundy-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary.btn-sm   { padding: .6rem 1.4rem; font-size: .85rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: .85rem 2rem;
  border: 2px solid var(--burgundy);
  color: var(--burgundy);
  border-radius: var(--radius-xl);
  font-size: .9rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: .85rem 2rem;
  border: 2px solid rgba(255,248,240,.6);
  color: var(--cream-light);
  border-radius: var(--radius-xl);
  font-size: .9rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-light:hover {
  background: rgba(255,248,240,.15);
  border-color: var(--cream-light);
}

.btn-nav {
  padding: .55rem 1.5rem;
  background: var(--burgundy);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--burgundy-dk);
  transform: translateY(-1px);
}

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--header-h);
  background: rgba(253,249,244,.92);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(122,28,28,.08);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  width: var(--container);
  margin-inline: auto;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 48px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--burgundy); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.55) saturate(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,10,10,.72) 0%,
    rgba(122,28,28,.45) 50%,
    rgba(20,8,8,.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
  padding-block: 5rem;
  max-width: 680px;
}

.hero-kicker {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,220,200,.8);
  margin-bottom: 1.25rem;
  animation: fadeUp .8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .15s ease both;
}
.hero-title em {
  font-style: italic;
  color: #f5c6c6;
  font-weight: 300;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,245,240,.85);
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp .8s .3s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .8s .45s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  margin: 0 auto;
  animation: scrollAnim 2s ease-in-out infinite;
}

/* ════════════════════════════════
   VALORES
════════════════════════════════ */
.valores {
  padding: 7rem 0;
  background: var(--cream-light);
  text-align: center;
}
.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.valor-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.valor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--strawberry));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.valor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.valor-card:hover::before { transform: scaleX(1); }

.valor-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: .75rem;
}
.valor-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--burgundy);
  margin-bottom: .5rem;
}
.valor-card p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ════════════════════════════════
   MENÚ
════════════════════════════════ */
.menu {
  padding: 7rem 0;
  background: var(--cream);
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  text-align: left;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.menu-card.featured {
  border: 2px solid var(--burgundy);
}

.menu-card-img {
  position: relative;
  height: 260px;
  background: var(--cream);
  overflow: hidden;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform .5s ease;
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  padding: .35rem .9rem;
  background: var(--burgundy);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.menu-badge.vegan {
  background: var(--green);
}

.menu-card-body {
  padding: 1.75rem;
}
.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--burgundy);
  margin-bottom: .75rem;
}
.menu-card-body p {
  font-size: .9rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.menu-card-footer { display: flex; }

/* ════════════════════════════════
   OFERTA DEL DÍA
════════════════════════════════ */
.oferta {
  background: linear-gradient(135deg, var(--burgundy-dk), var(--burgundy), #9e2a2a);
  padding: 6rem 0;
  overflow: hidden;
}

.oferta-inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}

.oferta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.oferta-sub {
  color: rgba(255,240,235,.8);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
}

.oferta-img {
  width: 220px;
  animation: floatAnim 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
}

/* ════════════════════════════════
   PEDIDO (TABS)
════════════════════════════════ */
.pedido {
  padding: 7rem 0;
  background: var(--cream-light);
  text-align: center;
}

.pedido-card {
  max-width: 560px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}

.tabs-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}

.tab-btn {
  padding: 1.1rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-mid);
  background: transparent;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  text-align: center;
}
.tab-btn.active {
  color: var(--burgundy);
  background: var(--white);
  border-bottom-color: var(--burgundy);
}
.tab-btn:hover:not(.active) {
  color: var(--text);
  background: var(--cream-dark);
}

.tab-panel {
  display: none;
  padding: 2.25rem;
  animation: fadeIn .3s ease;
}
.tab-panel.active { display: block; }

.pedido-info {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pedido-detail {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  text-align: left;
}
.detail-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.detail-value {
  font-size: .95rem;
  color: var(--text);
}

.custom-select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--cream-light);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a1c1c' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
  transition: border-color var(--transition);
  margin-top: .4rem;
}
.custom-select:focus {
  outline: none;
  border-color: var(--burgundy);
}

.pedido-sub {
  margin-top: .85rem;
  font-size: .8rem;
  color: var(--text-light);
  text-align: center;
}

/* ════════════════════════════════
   CONTACTO
════════════════════════════════ */
.contacto {
  padding: 7rem 0;
  background: var(--cream);
}

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

.contacto-sub {
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contacto-datos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.dato {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
}
.dato-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: .1rem;
}
.dato a {
  color: var(--burgundy);
  font-weight: 500;
  transition: color var(--transition);
}
.dato a:hover { color: var(--strawberry); }

.redes-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .75rem;
}
.redes-links { display: flex; gap: 1rem; }

.red-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  transition: var(--transition);
  overflow: hidden;
  padding: 8px;
}
.red-link img { width: 100%; height: 100%; object-fit: contain; }
.red-link.ig:hover {
  border-color: #e1306c;
  box-shadow: 0 4px 16px rgba(225,48,108,.25);
  transform: translateY(-2px);
}

.contacto-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.contacto-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: var(--text);
  color: rgba(255,240,235,.7);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.footer-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .8;
}
.footer-logo p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  color: rgba(255,240,235,.6);
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: .85rem;
  color: rgba(255,240,235,.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: rgba(255,240,235,1); }

.footer-copy {
  font-size: .8rem;
  color: rgba(255,240,235,.4);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  width: 100%;
  text-align: center;
}

/* ════════════════════════════════
   ANIMACIONES
════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollAnim {
  0%, 100% { opacity: .6; transform: scaleY(1); }
  50%       { opacity: .2; transform: scaleY(.4); }
}
@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

/* Entrada suave de secciones */
.valor-card, .menu-card, .pedido-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease, box-shadow var(--transition), border-color var(--transition);
}
.valor-card.visible, .menu-card.visible, .pedido-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════
   RESPONSIVE — Tablet (≤900px)
════════════════════════════════ */
@media (max-width: 900px) {
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contacto-img {
    aspect-ratio: 16/9;
    max-height: 320px;
    border-radius: var(--radius-md);
  }
  .oferta-inner { grid-template-columns: 1fr; }
  .oferta-img   { display: none; }

  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-card-img { height: 200px; }
}

/* ════════════════════════════════
   RESPONSIVE — Móvil (≤700px)
════════════════════════════════ */
@media (max-width: 700px) {
  :root {
    --header-h: 60px;
    --container: 92vw;
  }

  /* ── NAV MÓVIL ── */
  .nav {
    padding-inline: 1.25rem;
    gap: 0;
  }
  .nav-logo img { height: 40px; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(253,249,244,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 0 1.5rem 2rem;
    gap: 0;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: 0 12px 40px rgba(44,10,10,.12);
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 900;
  }
  .nav-links.open { transform: translateY(0); }

  .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-dark);
    color: var(--text);
  }
  .nav-links li:last-child .nav-link { border-bottom: none; }
  .nav-link::after { display: none; }

  .btn-nav   { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  /* ── HERO MÓVIL ── */
  .hero { min-height: 100svh; }
  .hero-content {
    padding-block: 3rem 4rem;
    padding-inline: 1.5rem;
    text-align: center;
    max-width: 100%;
  }
  .hero-kicker { justify-content: center; }
  .hero-title  { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero-sub    { font-size: 1rem; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: .85rem;
  }
  .btn-primary,
  .btn-outline {
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  .hero-scroll { display: none; }

  /* ── VALORES ── */
  .valores { padding: 4rem 0; }
  .valores-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .valor-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }
  .valor-card::before { display: none; }
  .valor-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-bottom: 0;
    margin-top: .1rem;
  }
  .valor-card h3 { font-size: 1.1rem; margin-bottom: .25rem; }

  /* ── MENÚ ── */
  .menu { padding: 4rem 0; }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .menu-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    border-radius: var(--radius-md);
  }
  .menu-card-img {
    height: auto;
    aspect-ratio: 1;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
  }
  .menu-card-img img { padding: .75rem; }
  .menu-badge {
    top: .6rem; right: .6rem;
    font-size: .65rem;
    padding: .25rem .6rem;
  }
  .menu-card-body {
    padding: 1.25rem 1.25rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .menu-card-body h3 { font-size: 1.3rem; margin-bottom: .4rem; }
  .menu-card-body p  { font-size: .83rem; margin-bottom: 1rem; }

  /* ── OFERTA ── */
  .oferta { padding: 4rem 0; }
  .oferta-inner { padding-inline: 1.5rem; }
  .oferta-text h2 { font-size: 2rem; }
  .oferta-sub { font-size: .9rem; }
  .btn-outline-light {
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }

  /* ── PEDIDO ── */
  .pedido { padding: 4rem 0; }
  .pedido-card {
    margin: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }
  .tab-btn { font-size: .85rem; padding: .9rem .5rem; }
  .tab-panel { padding: 1.75rem 1.25rem; }
  .btn-primary.btn-full {
    padding: 1.1rem;
    font-size: 1rem;
  }

  /* ── CONTACTO ── */
  .contacto { padding: 4rem 0; }
  .contacto-datos { gap: .85rem; }
  .dato { font-size: .9rem; }
  .contacto-img { display: none; } /* en móvil, foto ocupa mucho sin aportar */

  /* ── FOOTER ── */
  .footer { padding: 2.5rem 0 1.5rem; }
  .footer-nav {
    gap: 1.25rem;
    font-size: .85rem;
  }

  /* ── SECTION TITLES ── */
  .section-title { font-size: clamp(1.75rem, 7vw, 2.5rem); margin-bottom: 1.75rem; }
}

/* ════════════════════════════════
   RESPONSIVE — Móvil pequeño (≤420px)
════════════════════════════════ */
@media (max-width: 420px) {
  :root { --container: 94vw; }

  .hero-title { font-size: 2rem; }

  .menu-card {
    grid-template-columns: 1fr;
  }
  .menu-card-img {
    aspect-ratio: 4/3;
    height: 180px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
  .menu-card-body { padding: 1.25rem; }

  .tab-btn { font-size: .8rem; }
  .pedido-card { border-radius: var(--radius-sm); }

  .valor-card { flex-direction: column; gap: .5rem; }
  .valor-icon { font-size: 1.5rem; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
