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

:root {
  --rojo: #C0392B;
  --oscuro: #1a1a1a;
  --gris: #2a2a2a;
  --gris-claro: #3a3a3a;
  --texto: #e0e0e0;
  --texto-suave: #999;
  --dorado: #f0a500;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--oscuro);
  color: var(--texto);
}

/* NAV */
nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 2rem;
  background: #111;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 2px solid var(--rojo);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; color: var(--rojo); letter-spacing: 3px;
}
.logo-img {
  display: block;
  height: 48px; width: auto;
  border-radius: 6px;
}
footer .logo-img { height: 40px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--texto-suave); text-decoration: none; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s; }
.nav-links a:hover, .active-link { color: #fff !important; }
.nav-cta { background: var(--rojo); color: #fff; padding: 0.5rem 1.2rem; font-size: 0.8rem; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; border-radius: 3px; }

/* HERO */
.hero {
  min-height: 85vh; display: grid; grid-template-columns: 1fr 1.5fr; align-items: center;
  padding: 0; gap: 0;
  background: linear-gradient(135deg, #111 0%, #1f1010 100%);
  border-bottom: 3px solid var(--rojo);
}
.hero-content { max-width: 650px; padding: 4rem 2rem; }
.hero-imagen { display: flex; align-self: stretch; }
.hero-imagen img { width: 100%; height: 100%; object-fit: cover; }
.hero-tag { font-size: 0.8rem; color: var(--texto-suave); letter-spacing: 2px; display: flex; align-items: center; gap: 6px; margin-bottom: 1.5rem; }
.hero-tag svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1; color: #fff; margin-bottom: 1.5rem; letter-spacing: 2px;
}
.highlight { color: var(--rojo); }
.hero p { color: var(--texto-suave); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; font-weight: 300; max-width: 480px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--rojo); color: #fff; padding: 0.9rem 2rem; text-decoration: none; font-weight: 500; font-size: 0.9rem; border-radius: 3px; text-transform: uppercase; letter-spacing: 1px; }
.btn-wa { background: #25D366; color: #fff; padding: 0.9rem 2rem; text-decoration: none; font-weight: 500; font-size: 0.9rem; border-radius: 3px; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-wa svg, .whatsapp-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* STATS BAR */
.stats-bar { background: var(--rojo); display: flex; justify-content: center; flex-wrap: wrap; }
.stat { padding: 1rem 2.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); }
.stat:last-child { border-right: none; }
.stat strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: #fff; letter-spacing: 1px; }
.stat span { font-size: 0.7rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; }

/* PROMO CARDS */
.promo-section { padding: 4rem 2rem; background: var(--oscuro); }
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.promo-card {
  background: var(--gris); border: 1px solid #333;
  padding: 2rem; text-decoration: none; color: var(--texto);
  border-radius: 4px; transition: border-color 0.2s, transform 0.2s;
  position: relative; display: block;
}
.promo-card:hover { border-color: var(--rojo); transform: translateY(-3px); }
.promo-card.destacado { border-color: var(--rojo); }
.promo-badge {
  position: absolute; top: -10px; left: 1.5rem;
  background: var(--dorado); color: #111;
  font-size: 0.65rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 3px;
}
.promo-emoji { display: block; margin-bottom: 1rem; }
.promo-emoji svg { width: 2.2rem; height: 2.2rem; color: var(--rojo); }
.promo-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 2px; margin-bottom: 0.7rem; color: #fff; }
.promo-card p { font-size: 0.85rem; color: var(--texto-suave); line-height: 1.6; margin-bottom: 1rem; font-weight: 300; }
.promo-desde { font-size: 0.8rem; color: var(--rojo); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* PAGE HEADER */
.page-header { background: #111; padding: 3.5rem 2rem 2.5rem; text-align: center; border-bottom: 2px solid var(--rojo); }
.page-header h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: 3px; color: #fff; margin-bottom: 0.5rem; }
.page-header p { color: var(--texto-suave); font-size: 0.9rem; font-weight: 300; }

/* MENU */
.menu-section { padding: 2rem; background: var(--oscuro); max-width: 1100px; margin: 0 auto; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1px; background: #333; }
.menu-grid.hidden { display: none; }
.menu-item { background: var(--gris); padding: 1rem 1.2rem; }
.menu-item.destacado-item { background: #2f1f1f; }
.menu-item-header { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.menu-item h4 { font-size: 0.9rem; color: #fff; font-weight: 400; }
.menu-item p { font-size: 0.78rem; color: var(--texto-suave); margin-top: 0.3rem; font-weight: 300; }
.price { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--rojo); letter-spacing: 1px; white-space: nowrap; }

/* NOSOTROS */
.nosotros-section { padding: 4rem 2rem; max-width: 900px; margin: 0 auto; }
.nosotros-texto h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: 2px; color: #fff; margin-bottom: 1.5rem; }
.nosotros-texto p { color: var(--texto-suave); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; font-weight: 300; }
.valores-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.valor-item { background: var(--gris); padding: 1.5rem; border-top: 2px solid var(--rojo); border-radius: 3px; }
.valor-icon { display: block; margin-bottom: 0.8rem; }
.valor-icon svg { width: 1.6rem; height: 1.6rem; color: var(--rojo); }
.valor-item h4 { font-size: 0.9rem; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.valor-item p { font-size: 0.82rem; color: var(--texto-suave); line-height: 1.6; font-weight: 300; }

/* CONTACTO */
.contacto-section { padding: 4rem 2rem; }
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1000px; margin: 0 auto; }
.contacto-info { display: flex; flex-direction: column; gap: 1rem; }
.info-card { background: var(--gris); padding: 1.5rem; border-radius: 3px; border-left: 3px solid #444; }
.info-card.destacado-card { border-left-color: var(--rojo); }
.info-icon { display: block; margin-bottom: 0.5rem; }
.info-icon svg { width: 1.3rem; height: 1.3rem; color: var(--rojo); }
.info-card h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--texto-suave); margin-bottom: 0.5rem; }
.info-card p { font-size: 0.9rem; color: var(--texto); line-height: 1.7; font-weight: 300; }
.info-card strong { color: #fff; font-weight: 500; }
.contact-link { display: block; color: #fff; text-decoration: none; font-size: 1rem; font-weight: 500; margin-top: 0.3rem; }
.horarios-detalle { background: var(--gris); padding: 2rem; border-radius: 3px; }
.horarios-detalle h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 2px; color: #fff; margin-bottom: 1.5rem; }
.horarios-tabla { width: 100%; border-collapse: collapse; }
.horarios-tabla tr { border-bottom: 1px solid #333; }
.horarios-tabla td { padding: 0.7rem 0; font-size: 0.9rem; color: var(--texto); }
.horarios-tabla td:last-child { text-align: right; color: var(--dorado); font-weight: 500; }
.horarios-tabla .cerrado { color: #666 !important; }
.horario-nota { font-size: 0.75rem; color: var(--texto-suave); margin-top: 1rem; font-weight: 300; }

/* MAPA CONTACTO */
.mapa-wrapper { max-width: 1000px; margin: 3rem auto 0; }
.mapa-wrapper h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 2px; color: #fff; margin-bottom: 1.5rem; }
.mapa-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid #333;
  border-radius: 3px;
  overflow: hidden;
}
.mapa-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}
@media (max-width: 640px) {
  .mapa-wrapper { margin-top: 2rem; }
  .mapa-embed { aspect-ratio: 4 / 3; }
}

/* CTA */
.cta-section { background: #111; text-align: center; padding: 4rem 2rem; border-top: 2px solid #222; }
.cta-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: 3px; color: #fff; margin-bottom: 0.8rem; }
.cta-section p { color: var(--texto-suave); font-size: 0.9rem; margin-bottom: 2rem; font-weight: 300; }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: #25D366; color: #fff; padding: 1rem 2rem; text-decoration: none; font-weight: 500; font-size: 0.95rem; border-radius: 3px; }

/* WHATSAPP FLOTANTE */
.wa-flotante {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  background: #25D366; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-flotante:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* FOOTER */
footer { background: #0a0a0a; padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; border-top: 1px solid #222; }
footer p { font-size: 0.78rem; color: #555; }

/* RESPONSIVE */
@media (max-width: 640px) {
  nav { padding: 0.8rem 1rem; }
  .nav-links { display: none; }
  .hero { padding: 0; min-height: 70vh; grid-template-columns: 1fr; }
  .hero-content { padding: 3rem 1rem; }
  .hero-imagen { min-height: 260px; }
  .hero-imagen img { border: none; }
  .promo-section, .menu-section, .nosotros-section, .contacto-section { padding: 2rem 1rem; }
  .contacto-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat { padding: 0.8rem 1.2rem; }
  footer { flex-direction: column; text-align: center; }
  .resenas-section { padding: 2rem 1rem; }
  .resenas-grid { grid-template-columns: 1fr; }
}

/* LISTA DE SERVICIOS */
.servicios-lista {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.servicios-lista li { font-size: 0.85rem; color: var(--texto); font-weight: 300; display: flex; align-items: center; gap: 0.5rem; }
.servicios-lista li svg { width: 1rem; height: 1rem; color: var(--dorado); flex-shrink: 0; }

/* TABS */
.menu-tabs {
  display: flex;
  background: #111;
  border-bottom: 2px solid var(--rojo);
  margin-bottom: 0;
}
.tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.2rem 0.5rem;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: background 0.2s, border-color 0.2s;
  background: #111;
  user-select: none;
}
.tab:hover { background: #1f1f1f; }
.tab.active { border-bottom-color: var(--rojo); background: #1f1f1f; }
.tab-emoji { line-height: 1; }
.tab-emoji svg { width: 1.6rem; height: 1.6rem; color: var(--texto-suave); }
.tab.active .tab-emoji svg { color: var(--rojo); }
.tab-label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--texto-suave); font-weight: 500; }
.tab.active .tab-label { color: #fff; }

/* RESEÑAS */
.resenas-section {
  padding: 4rem 2rem;
  background: #111;
  border-top: 2px solid #222;
}
.resenas-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.resenas-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 0.8rem;
}
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gris);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--texto);
}
.google-rating .stars { color: var(--dorado); font-size: 1rem; }
.rating-label { color: var(--texto-suave); }
.resenas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.resena-card {
  background: var(--gris);
  border: 1px solid #333;
  border-radius: 4px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.resena-card:hover { border-color: var(--rojo); }
.resena-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.resena-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rojo);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.resena-nombre { font-size: 0.88rem; color: #fff; font-weight: 500; }
.resena-fecha { font-size: 0.72rem; color: var(--texto-suave); margin-top: 2px; }
.resena-stars { color: var(--dorado); font-size: 0.85rem; margin-bottom: 0.6rem; }
.resena-texto { font-size: 0.85rem; color: var(--texto-suave); line-height: 1.7; font-weight: 300; }
.resenas-cta { text-align: center; margin-top: 2rem; }
.resenas-cta a {
  font-size: 0.8rem;
  color: var(--texto-suave);
  text-decoration: none;
  border-bottom: 1px solid #444;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.resenas-cta a:hover { color: #fff; }