/* ========================================
   LA CARRETA DE PIZZAS — Styles
   Paleta: Negro #0D0D0D | Rojo fuego #E8341A | Crema #FFF8F0 | Ámbar #FF8C00
======================================== */

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

:root {
  --negro: #0D0D0D;
  --rojo: #E8341A;
  --rojo-dark: #C02B14;
  --ambar: #FF8C00;
  --crema: #FFF8F0;
  --crema-dark: #F5E6D3;
  --gris: #888;
  --gris-claro: #F0EDE8;
  --blanco: #FFFFFF;
  --verde-wa: #25D366;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-strong: 0 8px 40px rgba(0,0,0,0.22);
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--crema);
  color: var(--negro);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(13,13,13,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blanco);
}
.logo-icon { font-size: 28px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blanco);
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--ambar);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ambar); }
.nav-cta {
  background: var(--rojo) !important;
  color: var(--blanco) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--rojo-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: all 0.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;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: slowZoom 12s ease-out forwards;
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.55) 0%,
    rgba(13,13,13,0.70) 50%,
    rgba(13,13,13,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--blanco);
  padding: 0 24px;
  max-width: 700px;
  animation: fadeUp 1s ease 0.2s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ambar);
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--rojo);
  font-weight: 400;
  font-size: 0.95em;
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-phone a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: color 0.2s;
}
.hero-phone a:hover { color: var(--ambar); }

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  font-size: 22px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--verde-wa);
  color: var(--blanco);
  border-color: var(--verde-wa);
}
.btn-primary:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--blanco);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--blanco);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== INFO STRIP ===== */
.info-strip {
  background: var(--negro);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blanco);
}
.info-icon { font-size: 22px; }
.info-item div { display: flex; flex-direction: column; }
.info-item strong { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--ambar); }
.info-item span { font-size: 14px; color: rgba(255,255,255,0.75); }
.info-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--rojo);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--negro);
  margin-bottom: 14px;
}
.section-title.left { text-align: left; }
.section-subtitle { font-size: 16px; color: var(--gris); max-width: 500px; margin: 0 auto; }

/* ===== MENÚ ===== */
.menu-section { background: var(--crema); }

.menu-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 32px;
  border: 2px solid rgba(13,13,13,0.15);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: var(--negro);
  transition: all 0.25s;
  font-family: 'Lato', sans-serif;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--negro);
  color: var(--blanco);
  border-color: var(--negro);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.menu-category-label {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--rojo);
  margin-bottom: 20px;
  margin-top: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(232,52,26,0.2);
}
.menu-category-label:first-of-type { margin-top: 0; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 8px;
}
.menu-card {
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 20px;
  border: 1.5px solid rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.menu-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.menu-card.featured {
  border-color: rgba(232,52,26,0.25);
  background: linear-gradient(135deg, #fff, #fff9f7);
}
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}
.menu-name {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.menu-price {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--rojo);
  white-space: nowrap;
}
.menu-desc {
  font-size: 13px;
  color: var(--gris);
  line-height: 1.5;
}
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(255,140,0,0.12);
  color: var(--ambar);
  margin-top: 8px;
}
.badge.spicy {
  background: rgba(232,52,26,0.1);
  color: var(--rojo);
}

/* Empanadas */
.empanadas-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--negro);
  color: var(--blanco);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.empanadas-intro h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ambar);
  margin-bottom: 8px;
}
.empanadas-intro p { color: rgba(255,255,255,0.75); font-size: 16px; }
.empanadas-prices { display: flex; gap: 20px; }
.price-card {
  text-align: center;
  padding: 20px 28px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.price-card.highlight {
  background: var(--rojo);
  border-color: var(--rojo);
}
.price-amount {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--blanco);
}
.price-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.empanadas-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.empanadas-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(255,140,0,0.08);
  border-left: 4px solid var(--ambar);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  color: #5a4a00;
}

/* ===== NOSOTROS ===== */
.nosotros-section { background: var(--blanco); }
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nosotros-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.8;
}
.nosotros-text .section-eyebrow { text-align: left; }
.nosotros-text .section-title { margin-bottom: 24px; }
.stats-row {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--rojo);
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--gris); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.nosotros-images {
  position: relative;
  height: 450px;
}
.nosotros-img {
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-strong);
}
.main-img {
  width: 75%;
  height: 380px;
  position: absolute;
  top: 0; right: 0;
}
.secondary-img {
  width: 55%;
  height: 220px;
  position: absolute;
  bottom: 0; left: 0;
  border: 4px solid var(--crema);
}

/* ===== GALERÍA ===== */
.galeria-section { background: var(--gris-claro); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 28px; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--blanco);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--negro); }
.reviews-section .section-eyebrow { color: var(--ambar); }
.reviews-section .section-title { color: var(--blanco); }

.reviews-carousel { overflow: hidden; position: relative; }
.review-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.review-card {
  min-width: 320px;
  flex: 0 0 320px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--blanco);
}
.stars { color: var(--ambar); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rojo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--blanco);
  flex-shrink: 0;
}
.review-author span { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9); }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active {
  background: var(--rojo);
  transform: scale(1.3);
}

/* ===== CONTACTO ===== */
.contacto-section { background: var(--crema); }
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--negro);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gris-claro);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.2s;
  border-radius: var(--radius-sm);
}
a.contact-item:hover { opacity: 0.8; }
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: var(--gris-claro);
}
.contact-item.whatsapp .contact-icon { background: rgba(37,211,102,0.12); color: var(--verde-wa); }
.contact-item.phone .contact-icon { background: rgba(232,52,26,0.1); }
.contact-text { display: flex; flex-direction: column; }
.contact-text strong { font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-text span { font-size: 14px; color: var(--gris); line-height: 1.5; }
.contact-card .btn { margin-top: 24px; }

.mapa-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow);
}
.mapa-container iframe { border-radius: var(--radius); }

/* ===== FOOTER ===== */
.footer { background: var(--negro); color: var(--blanco); }
.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 26px;
}
.footer-logo div { display: flex; flex-direction: column; }
.footer-logo strong {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
}
.footer-logo small { font-size: 10px; letter-spacing: 3px; color: var(--ambar); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 20px; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ambar);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--blanco); }
.footer-address { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 12px; }
.footer-phone { display: block; font-size: 16px; color: var(--ambar); font-weight: 700; margin-bottom: 16px; }
.footer-maps-btn {
  display: inline-block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-maps-btn:hover { color: var(--blanco); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--rojo); color: var(--blanco); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--verde-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulseWa 3s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7); }
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nosotros-grid { grid-template-columns: 1fr; gap: 40px; }
  .nosotros-images { height: 320px; }
  .main-img { width: 70%; height: 300px; }
  .secondary-img { width: 48%; height: 180px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-col { grid-column: 1 / -1; }
  .contacto-grid { grid-template-columns: 1fr; }
  .mapa-container { height: 350px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 22px;
    letter-spacing: 1px;
  }
  .nav-cta { padding: 14px 36px !important; font-size: 18px !important; }
  .hamburger { display: flex; z-index: 100; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 280px; justify-content: center; }

  .info-strip { flex-direction: column; gap: 16px; text-align: center; }
  .info-divider { width: 60px; height: 1px; }

  .section { padding: 60px 0; }

  .menu-grid { grid-template-columns: 1fr; }
  .empanadas-hero { flex-direction: column; text-align: center; }
  .empanadas-prices { justify-content: center; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }

  .review-card { min-width: 280px; flex: 0 0 280px; }

  .nosotros-images { height: 260px; }
  .main-img { width: 72%; height: 240px; }
  .secondary-img { width: 50%; height: 150px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.wide { grid-column: span 1; }
  .hero-title { font-size: 42px; }
  .contact-card { padding: 24px 20px; }
  .empanadas-prices { flex-direction: column; align-items: center; }
}
