/* ============================================
   CHARLY SNACK BAR - CSS Principal
   Diseño: Vintage Dark & Modern
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Bebas+Neue&family=Lato:wght@300;400;700&display=swap');

:root {
  --negro: #0a0a0a;
  --negro2: #111111;
  --negro3: #1a1a1a;
  --blanco: #ffffff;
  --crema: #f5e6c8;
  --dorado: #c8960c;
  --dorado2: #e8b420;
  --rojo: #c0392b;
  --gris: #888888;
  --gris2: #333333;
  --whatsapp: #25D366;
}

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

html {
  scroll-behavior: smooth;
}

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

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--negro2); }
::-webkit-scrollbar-thumb { background: var(--dorado); border-radius: 3px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,150,12,0.2);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 40px;
  border-bottom-color: rgba(200,150,12,0.5);
}

.nav-logo img {
  height: 55px;
  filter: brightness(1.1);
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: var(--crema);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dorado);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--dorado); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--dorado);
  color: var(--negro) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 700 !important;
}

.nav-cta:hover { background: var(--dorado2); color: var(--negro) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--crema);
  transition: all 0.3s;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/06.jpg') center/cover no-repeat;
  filter: brightness(0.25);
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.7) 80%,
    rgba(10,10,10,1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dorado);
  border: 1px solid rgba(200,150,12,0.4);
  padding: 6px 20px;
  margin-bottom: 25px;
}

.hero-logo {
  width: 200px;
  margin: 0 auto 20px;
  display: block;
  filter: brightness(1.2) drop-shadow(0 0 30px rgba(200,150,12,0.3));
  animation: fadeUp 1.2s ease 0.2s both;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--blanco);
  margin-bottom: 15px;
  animation: fadeUp 1.2s ease 0.3s both;
}

.hero-tagline span { color: var(--dorado); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--crema);
  letter-spacing: 1px;
  margin-bottom: 40px;
  animation: fadeUp 1.2s ease 0.4s both;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--dorado);
  margin: 0 auto 40px;
  animation: fadeUp 1.2s ease 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.2s ease 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--blanco);
  padding: 15px 30px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-primary:hover {
  background: #1eb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--crema);
  padding: 14px 30px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--dorado);
  border-radius: 3px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--dorado);
  color: var(--negro);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  display: block;
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--dorado), transparent);
  margin: 0 auto;
}

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

/* ============================================
   SECCIONES - BASE
   ============================================ */
section {
  padding: 90px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blanco);
  margin-bottom: 15px;
}

.section-line {
  width: 50px;
  height: 2px;
  background: var(--dorado);
  margin: 0 auto 20px;
}

.section-desc {
  color: var(--gris);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   NOSOTROS
   ============================================ */
.nosotros {
  background: var(--negro2);
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.nosotros-imgs {
  position: relative;
  height: 450px;
}

.nosotros-img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  border: 3px solid var(--negro3);
}

.nosotros-img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  border: 3px solid var(--negro3);
}

.nosotros-badge {
  position: absolute;
  bottom: 30px;
  left: 20px;
  background: var(--dorado);
  color: var(--negro);
  padding: 15px 20px;
  text-align: center;
  border-radius: 3px;
  z-index: 2;
}

.nosotros-badge strong {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: 2.5rem;
  line-height: 1;
}

.nosotros-badge span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nosotros-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--blanco);
}

.nosotros-text h2 span { color: var(--dorado); }

.nosotros-text p {
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.nosotros-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--crema);
  font-size: 0.9rem;
}

.highlight-item i {
  color: var(--dorado);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================
   MENU / SERVICIOS
   ============================================ */
.menu {
  background: var(--negro);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 280px;
  cursor: pointer;
}

.menu-card:first-child,
.menu-card:nth-child(4) {
  grid-column: span 2;
  height: 320px;
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card:hover img {
  transform: scale(1.08);
}

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  transition: background 0.3s;
}

.menu-card:hover .menu-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 70%);
}

.menu-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 25px;
}

.menu-card-tag {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dorado);
  display: block;
  margin-bottom: 5px;
}

.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--blanco);
  font-weight: 700;
}

.menu-card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.menu-card:hover .menu-card-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   GALERÍA - AMBIENTE
   ============================================ */
.galeria {
  background: var(--negro2);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.gal-item {
  overflow: hidden;
  border-radius: 3px;
}

.gal-item:first-child { grid-column: span 2; grid-row: span 2; }
.gal-item:nth-child(4) { grid-column: span 2; }

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gal-item:hover img { transform: scale(1.05); }

/* ============================================
   SERVICIOS CARDS
   ============================================ */
.servicios {
  background: var(--negro);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.servicio-card {
  background: var(--negro3);
  border: 1px solid rgba(200,150,12,0.15);
  padding: 35px 25px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s;
}

.servicio-card:hover {
  border-color: var(--dorado);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.servicio-icon {
  width: 60px;
  height: 60px;
  background: rgba(200,150,12,0.1);
  border: 1px solid rgba(200,150,12,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  transition: all 0.3s;
}

.servicio-card:hover .servicio-icon {
  background: var(--dorado);
  color: var(--negro);
}

.servicio-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--blanco);
}

.servicio-card p {
  font-size: 0.85rem;
  color: var(--gris);
  line-height: 1.6;
}

/* Card consultar link */
.servicio-card {
  cursor: pointer;
}

.card-consultar {
  margin-top: 18px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dorado);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  transition: gap 0.3s;
}

.servicio-card:hover .card-consultar { gap: 10px; }

/* ============================================
   MODAL SERVICIOS
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.abierto {
  display: flex;
  animation: fadeInModal 0.25s ease;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-box {
  background: var(--negro3);
  border: 1px solid rgba(200,150,12,0.35);
  border-radius: 8px;
  padding: 45px 40px 35px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: slideUpModal 0.3s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

@keyframes slideUpModal {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--gris);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--blanco); }

.modal-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.modal-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--blanco);
  margin-bottom: 12px;
}

.modal-desc {
  color: var(--gris);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.modal-hint {
  color: var(--crema);
  font-size: 0.85rem;
  margin-bottom: 28px;
  font-style: italic;
}

.modal-acciones {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.modal-btn-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--dorado);
  color: var(--negro);
  padding: 15px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all 0.3s;
}

.modal-btn-tel:hover {
  background: var(--dorado2);
  transform: translateY(-2px);
}

.modal-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--blanco);
  padding: 14px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.modal-btn-wa:hover {
  background: #1eb855;
  transform: translateY(-2px);
}

.modal-dir {
  font-size: 0.78rem;
  color: var(--gris);
  letter-spacing: 0.5px;
}

.modal-dir i { color: var(--dorado); margin-right: 5px; }

@media (max-width: 480px) {
  .modal-box { padding: 35px 22px 28px; }
  .modal-titulo { font-size: 1.3rem; }
}

/* ============================================
   STATS / NÚMEROS
   ============================================ */
.stats {
  background: var(--dorado);
  padding: 60px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 4rem;
  color: var(--negro);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(10,10,10,0.7);
}

/* ============================================
   DELIVERY / CONTACTO
   ============================================ */
.contacto {
  background: var(--negro2);
}

.contacto-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contacto-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--blanco);
}

.contacto-info h2 span { color: var(--dorado); }

.contacto-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contacto-item-icon {
  width: 45px;
  height: 45px;
  background: rgba(200,150,12,0.1);
  border: 1px solid rgba(200,150,12,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--dorado);
}

.contacto-item-text strong {
  display: block;
  color: var(--crema);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contacto-item-text span {
  color: var(--gris);
  font-size: 1rem;
}

.contacto-item-text a {
  color: var(--blanco);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: color 0.3s;
}

.contacto-item-text a:hover { color: var(--dorado); }

.contacto-ctas {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 35px;
}

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--whatsapp);
  color: var(--blanco);
  padding: 16px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}

.btn-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  color: var(--crema);
  padding: 15px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid rgba(200,150,12,0.4);
  transition: all 0.3s;
}

.btn-tel:hover {
  border-color: var(--dorado);
  background: rgba(200,150,12,0.1);
  transform: translateY(-2px);
}

.contacto-map {
  border-radius: 4px;
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(200,150,12,0.2);
}

.contacto-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(90%) contrast(80%);
}

/* ============================================
   FLOTANTE WHATSAPP
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--blanco);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: pulse 2s infinite;
  transition: transform 0.3s;
}

.wa-float:hover { transform: scale(1.1); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #050505;
  padding: 50px 20px 30px;
  border-top: 1px solid rgba(200,150,12,0.15);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand img {
  height: 60px;
  margin-bottom: 15px;
  filter: brightness(1.2);
}

.footer-brand p {
  color: var(--gris);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--gris);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--crema); }

.footer-col .horario-item {
  display: flex;
  justify-content: space-between;
  color: var(--gris);
  font-size: 0.85rem;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-col .horario-item span:last-child { color: var(--crema); }

.footer-bottom {
  max-width: 1100px;
  margin: 25px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--dorado);
  text-decoration: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-card:first-child,
  .menu-card:nth-child(4) { grid-column: span 2; }
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid rgba(200,150,12,0.2);
  }

  .nosotros-grid { grid-template-columns: 1fr; }
  .nosotros-imgs { height: 300px; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-card:first-child,
  .menu-card:nth-child(4) { grid-column: span 1; }

  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gal-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gal-item:nth-child(4) { grid-column: span 2; }

  .servicios-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .contacto-wrapper { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .stat-num { font-size: 3rem; }
  .galeria-grid { grid-template-columns: 1fr; }
  .gal-item:first-child { grid-column: span 1; }
  .gal-item:nth-child(4) { grid-column: span 1; }
}
