/* ============================================
   El Tío Fito v2 — Estilo Casual Playero
   Colors: Naranja #f0660a | Verde #035257
   Dark: #0d3b45 | Blanco: #ffffff
   Fonts: Permanent Marker (titles) | Nunito 300 (body)
   ============================================ */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --naranja: #f0660a;
  --verde: #035257;
  --dark: #0d3b45;
  --blanco: #ffffff;
  --verde-claro: #e6f3f4;
  --naranja-claro: #fff3eb;
  --font-title: 'Permanent Marker', cursive;
  --font-body: 'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--blanco);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 72px;
  z-index: 1000;
  transition: all .35s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(13,59,69,0.08);
}
.nav.scrolled .nav-logo { color: var(--naranja); }
.nav.scrolled .nav-link { color: var(--dark); }
.nav.scrolled .nav-hamburger span { background: var(--dark); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 26px;
  color: var(--blanco);
  transition: color .35s ease;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: color .3s ease;
  position: relative;
}
.nav-link:hover { color: var(--naranja); }

.nav-cta {
  background: var(--naranja);
  color: var(--blanco);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all .3s ease;
}
.nav-cta:hover {
  background: #d85a08;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,102,10,0.3);
}

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.nav-hamburger span { display: block; width: 26px; height: 2.5px; background: var(--blanco); border-radius: 2px; transition: all .3s ease; }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh;
  background: var(--verde);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu-links { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-menu-link {
  font-family: var(--font-title);
  font-size: 36px;
  color: var(--blanco);
  transition: color .3s ease, transform .3s ease;
}
.mobile-menu-link:hover { color: var(--naranja); transform: scale(1.05); }
.mobile-menu-cta {
  background: var(--naranja);
  color: var(--blanco);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 50px;
  margin-top: 16px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 120%;
  background: url('images/menu-bg.jpg') center center / cover no-repeat;
  z-index: 0;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(3,82,87,0.88) 0%, rgba(13,59,69,0.92) 100%);
}

/* Decorative circles */
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(240,102,10,0.08);
  animation: float 8s ease-in-out infinite;
  z-index: 1;
}
.hero > .hero-inner::before {
  content: '';
  position: absolute;
  bottom: -150px; left: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  animation: float 10s ease-in-out infinite reverse;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-inner > * { position: relative; z-index: 2; }

.hero-text { max-width: 540px; }

.hero-label {
  display: inline-block;
  background: rgba(240,102,10,0.15);
  color: var(--naranja);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(240,102,10,0.25);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(52px, 7vw, 90px);
  color: var(--naranja);
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.15);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--naranja);
  color: var(--blanco);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  transition: all .3s ease;
  display: inline-block;
}
.btn-primary:hover {
  background: #d85a08;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(240,102,10,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--blanco);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  padding: 16px 36px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all .3s ease;
  display: inline-block;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  transform: rotate(2deg);
  transition: transform .5s ease;
}
.hero-image:hover { transform: rotate(0deg) scale(1.02); }

.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Wave separator */
.wave-sep {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}
.wave-sep svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

/* ===== SECTIONS COMMON ===== */
.section { padding: 100px 32px; }
.section-container { max-width: 1200px; margin: 0 auto; }

.section-title {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--naranja);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--dark);
  opacity: 0.7;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ===== ABOUT ===== */
.about {
  background: var(--blanco);
  padding: 100px 32px;
}
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(13,59,69,0.12);
  grid-row: span 2;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.about-img-small {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(13,59,69,0.1);
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }

.about-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--naranja);
  color: var(--blanco);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(240,102,10,0.3);
  white-space: nowrap;
}

.about-text .section-desc {
  color: var(--dark);
  opacity: 0.8;
  margin-bottom: 8px;
}
.about-body { font-size: 17px; font-weight: 300; color: var(--dark); opacity: 0.75; line-height: 1.8; margin-bottom: 24px; }
.about-signature { font-family: var(--font-title); font-size: 20px; color: var(--verde); margin-bottom: 32px; }

/* ===== SPECIALTIES ===== */
.specialties { background: var(--verde-claro); padding: 100px 32px; }
.specialties-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 24px; }

.spec-carousel { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; margin: 0 -32px; padding: 0 32px 16px; }
.spec-carousel::-webkit-scrollbar { display: none; }

.spec-card {
  min-width: 320px;
  max-width: 320px;
  background: var(--blanco);
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(13,59,69,0.08);
  transition: all .35s ease;
  border: 1px solid rgba(3,82,87,0.06);
}
.spec-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(13,59,69,0.15); }

.spec-card-img { width: 100%; height: 220px; overflow: hidden; }
.spec-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.spec-card:hover .spec-card-img img { transform: scale(1.1); }

.spec-card-body { padding: 24px; }
.spec-card-name { font-family: var(--font-title); font-size: 20px; color: var(--naranja); margin-bottom: 6px; }
.spec-card-desc { font-size: 14px; font-weight: 300; color: var(--dark); opacity: 0.65; line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.spec-card-price { font-size: 20px; font-weight: 700; color: var(--verde); }

.spec-arrows { display: flex; gap: 12px; }
.spec-arrow {
  width: 48px; height: 48px;
  border: 2px solid var(--verde);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--verde);
  transition: all .3s ease;
}
.spec-arrow:hover { background: var(--verde); color: var(--blanco); }
.spec-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

/* ===== MENU PREVIEW CTA ===== */
.menu-cta-section {
  position: relative;
  padding: 120px 32px;
  overflow: hidden;
  text-align: center;
}
.menu-cta-bg {
  position: absolute;
  top: -20%; left: 0;
  width: 100%; height: 140%;
  background: url('images/RTF_-34.jpg') center center / cover no-repeat;
  z-index: 0;
  will-change: transform;
}
.menu-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
  135deg,
  rgba(13,59,69,0.75) 70%,
  rgba(3,82,87,0.15) 100%
);
}
.menu-cta-bg-menu {
  position: absolute;
  top: -20%; left: 0;
  width: 100%; height: 140%;
  background: url('images/RTF_-68.jpg') center center / cover no-repeat;
  z-index: 0;
  will-change: transform;
}
.menu-cta-bg-menu::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
  135deg,
  rgba(13,59,69,0.75) 70%,
  rgba(3,82,87,0.15) 100%
);
}
.menu-cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(240,102,10,0.06);
  animation: pulseCircle 6s ease-in-out infinite;
  z-index: 1;
}
@keyframes pulseCircle {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}
.menu-cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.menu-cta-title { font-family: var(--font-title); font-size: clamp(36px, 5vw, 64px); color: var(--naranja); margin-bottom: 20px; text-shadow: 2px 2px 0 rgba(0,0,0,0.15); }
.menu-cta-desc { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.8); margin-bottom: 40px; line-height: 1.7; }
.menu-cta-btn {
  display: inline-block;
  background: var(--naranja);
  color: var(--blanco);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 18px 48px;
  border-radius: 50px;
  transition: all .3s ease;
}
.menu-cta-btn:hover { background: #d85a08; transform: translateY(-3px); box-shadow: 0 12px 35px rgba(240,102,10,0.35); }
.menu-cta-hours { margin-top: 28px; font-size: 15px; color: rgba(255,255,255,0.5); }

/* ===== LOCATION ===== */
.location {
  background: var(--blanco);
  padding: 100px 32px;
}
.location-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(13,59,69,0.1);
}
.location-map iframe {
  width: 100%; height: 100%;
  min-height: 450px;
  border: none;
  filter: grayscale(30%) brightness(0.9) contrast(1.1);
}
.location-info {
  background: var(--verde-claro);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-title {
  font-family: var(--font-title);
  font-size: 36px;
  color: var(--naranja);
  margin-bottom: 8px;
}
.location-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--verde);
  margin-bottom: 32px;
}
.location-detail {
  margin-bottom: 24px;
}
.location-detail-label {
  font-family: var(--font-title);
  font-size: 14px;
  color: var(--verde);
  margin-bottom: 6px;
}
.location-detail-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--dark);
  opacity: 0.75;
  line-height: 1.7;
}
.location-social { display: flex; gap: 12px; margin-top: 8px; }
.location-social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  transition: all .3s ease;
}
.location-social a:hover { background: var(--naranja); transform: translateY(-3px); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 70px 32px 30px;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 48px; }
.footer-brand-name { font-family: var(--font-title); font-size: 28px; color: var(--naranja); margin-bottom: 6px; }
.footer-brand-tag { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-family: var(--font-title); font-size: 14px; color: var(--naranja); margin-bottom: 4px; }
.footer-link { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); transition: color .3s ease; }
.footer-link:hover { color: var(--blanco); }
.footer-bottom { margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ===== MENU PAGE ===== */
.menu-page .nav { background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(13,59,69,0.08); }
.menu-page .nav-logo { color: var(--naranja); }
.menu-page .nav-link { color: var(--dark); opacity: 0.7; }
.menu-page .nav-link:hover { color: var(--naranja); opacity: 1; }
.menu-page .nav-hamburger span { background: var(--dark); }

/*.menu-hero-v2 {
  padding: 160px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}*/
/*.menu-hero-bg {
  position: absolute;
  top: -20%; left: 0;
  width: 100%; height: 140%;
  background: url('images/specialty-3.jpg') center center / cover no-repeat;
  z-index: 0;
  will-change: transform;
}
.menu-hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(3,82,87,0.9) 0%, rgba(13,59,69,0.92) 100%);
}*/
/*.menu-hero-v2::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(240,102,10,0.07);
  animation: float 9s ease-in-out infinite;
  z-index: 1;
}*/
.menu-hero {

  position: relative;
  height: 75vh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  text-align: center;

}


/* BACKGROUND PARALLAX */

.menu-hero-bg {

  position: absolute;
  top: -15%;
  left: 0;

  width: 100%;
  height: 130%;

  background-image:
  linear-gradient(
    rgba(3,82,87,0.65),
    rgba(13,59,69,0.75)
  ),
  url("images/menu-bg.jpg");

  background-size: cover;
  background-position: center;

  transform: translateY(0);

  z-index: 1;

}


/* CONTENT */

.menu-hero-content {

  position: relative;
  z-index: 2;

}


.menu-hero-label {

  display: inline-block;

  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;

  color: rgba(255,255,255,.6);

  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 18px;
  border-radius: 40px;

  margin-bottom: 18px;

}


.menu-hero-title {

  font-size: clamp(48px,7vw,90px);

  color: #f0660a;

  line-height: 1.05;

  margin-bottom: 14px;

  text-shadow: 3px 3px 12px rgba(0,0,0,.25);

}


.menu-hero-subtitle {

  font-size: 20px;

  color: rgba(255,255,255,.75);

  font-weight: 300;

}
/*.menu-hero-v2 > * { position: relative; z-index: 2; }*/
/*.menu-hero-label { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.15); padding: 6px 18px; border-radius: 50px; }
.menu-hero-title { font-family: var(--font-title); font-size: clamp(44px, 7vw, 80px); color: var(--naranja); line-height: 1.05; margin-bottom: 12px; text-shadow: 3px 3px 0 rgba(0,0,0,0.15); }
.menu-hero-subtitle { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.65); }*/

/* Menu sticky nav */
.menu-sticky-nav-wrapper {
  position: sticky;
  top: 72px;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(3,82,87,0.08);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-sticky-nav-wrapper::-webkit-scrollbar { display: none; }
.menu-sticky-nav {
  display: flex;
  gap: 4px;
  padding: 10px 32px;
  max-width: 1200px;
  margin: 0 auto;
  white-space: nowrap;
}
.menu-sticky-nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--dark);
  opacity: 0.5;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all .3s ease;
  text-decoration: none;
  position: relative;
}
.menu-sticky-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--naranja);
  border-radius: 2px;
  transition: width .3s ease;
}
.menu-sticky-nav a:hover { opacity: 1; background: rgba(3,82,87,0.05); }
.menu-sticky-nav a:hover::after { width: 60%; }
.menu-sticky-nav a.active { opacity: 1; background: var(--naranja); color: var(--blanco); font-weight: 600; }
.menu-sticky-nav a.active::after { display: none; }

/* Menu sections */
.menu-content-v2 { max-width: 1200px; margin: 0 auto; padding: 50px 32px 80px; }
.menu-section-v2 { margin-bottom: 48px; scroll-margin-top: 140px; }
.menu-section-header-v2 { margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid rgba(240,102,10,0.15); }
.menu-section-title-v2 { font-family: var(--font-title); font-size: clamp(26px, 4vw, 38px); color: var(--naranja); }
.menu-section-note-v2 { font-size: 14px; font-weight: 300; color: var(--verde); margin-top: 6px; font-style: italic; }
.menu-subsection-title-v2 { font-family: var(--font-title); font-size: 20px; color: var(--verde); margin: 24px 0 14px; }

.menu-items-grid-v2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.menu-item-v2 {
  background: var(--blanco);
  border: 1px solid rgba(3,82,87,0.08);
  border-radius: 14px;
  padding: 20px 22px;
  transition: all .3s ease;
}
.menu-item-v2:hover { border-color: rgba(240,102,10,0.25); box-shadow: 0 6px 20px rgba(13,59,69,0.08); transform: translateY(-2px); }
.menu-item-header-v2 { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; margin-bottom: 4px; }
.menu-item-name-v2 { font-family: var(--font-title); font-size: 17px; color: var(--dark); line-height: 1.3; flex: 1; }
.menu-item-gram-v2 { font-size: 12px; font-weight: 300; color: var(--verde); opacity: 0.6; margin-left: 4px; }
.menu-item-price-v2 { font-size: 18px; font-weight: 700; color: var(--naranja); white-space: nowrap; }
.menu-item-desc-v2 { font-size: 14px; font-weight: 300; color: var(--dark); opacity: 0.6; line-height: 1.5; }
.menu-item-prices-v2 { color: var(--verde); opacity: 0.85; font-weight: 400; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-image { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-grid { grid-template-columns: 1fr; }
  .menu-items-grid-v2 { grid-template-columns: 1fr; }
  .footer-links { gap: 40px; }
  .spec-card { min-width: 300px; max-width: 300px; }
  .menu-cta-content{
padding-top:clamp(60px, 10vw, 120px);
padding-bottom:clamp(15px, 6vw, 80px);
}
}

@media (max-width: 768px) {
  .section { padding: 70px 20px; }
  .about { padding: 70px 20px; }
  .specialties { padding: 70px 20px; }
  .menu-cta-section { padding: 80px 20px; }
  .location { padding: 70px 20px; }
  .nav-container { padding: 0 20px; }
  .hero { min-height: auto; padding: 120px 20px 80px; }
  .about-images { grid-template-columns: 1fr; }
  .about-img-main { grid-row: span 1; }
  .about-img-main img { min-height: 250px; }
  .spec-carousel { margin: 0 -20px; padding: 0 20px 16px; }
  .spec-card { min-width: 85vw; max-width: 85vw; }
  .location-info { padding: 36px 28px; }
  .footer { padding: 50px 20px 25px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .menu-content-v2 { padding: 36px 20px 60px; }
  .menu-sticky-nav { padding: 10px 16px; }
  .menu-item-v2 { padding: 16px 18px; }
  .footer-links{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
justify-items:center; /* centra cada columna */
text-align:center;
max-width:420px; /* controla ancho del bloque */
margin:auto; /* centra el grid completo */
}

.footer-col{
text-align:center;
}

.footer-col-title{
text-align:center;
}
  .specialties-header {
  margin-bottom: 28px;
}

.spec-carousel {
  margin: 0;
  padding: 0 20px 16px;
}

.section-desc {
  margin-bottom: 18px;
}

.footer-links{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
text-align:center;
}

.footer-col{
text-align:center;
}

.footer-top{
flex-direction:column;
align-items:center;
text-align:center;
}

.footer-top > div:first-child{
text-align:center;
}

.footer-top img{
margin:auto;
}

.footer-brand-tag{
text-align:center;
margin-left:auto;
margin-right:auto;
}

.footer-links{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
justify-items:center;
text-align:center;
max-width:420px;
margin:auto;
}

.footer-col{
text-align:center;
}

.footer-bottom{
text-align:center;
}

}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero::before, .hero::after, .menu-cta-section::before { animation: none; }
}
