/* ===== ROOT ===== */
:root {
  --bg: #0D0000;
  --bg-alt: #1A0500;
  --red: #CC0000;
  --orange: #FF6600;
  --gold: #FFB800;
  --cream: #F5E6D3;
  --dark-card: #1A0500;
  --text: #E8D5C0;
  --nav-h: 70px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Poppins', sans-serif; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font-family: inherit; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  background: rgba(13,0,0,0.95); backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--red); transition: all 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(204,0,0,0.3); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; gap: 1.5rem; height: var(--nav-h);
}
.nav-logo img { height: 50px; width: auto; object-fit: contain; }
.nav-menu {
  display: flex; list-style: none; gap: 1.5rem; margin: 0; padding: 0; flex: 1;
}
.nav-link {
  font-family: 'Oswald', sans-serif; font-size: 0.95rem; font-weight: 500;
  color: var(--cream); letter-spacing: 1px; text-transform: uppercase;
  transition: color 0.3s; padding: 0.25rem 0; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }
.btn-nav-call {
  background: var(--red); color: #fff; padding: 0.4rem 1rem;
  border-radius: 6px; font-family: 'Oswald', sans-serif;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
  transition: background 0.3s; white-space: nowrap;
}
.btn-nav-call:hover { background: var(--orange); }
.btn-nav-wa {
  background: #25D366; color: #fff; width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.btn-nav-wa:hover { transform: scale(1.1); }
.cart-btn {
  background: transparent; border: 2px solid var(--gold); color: var(--gold);
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  font-size: 1rem; position: relative; transition: all 0.3s; display: flex;
  align-items: center; justify-content: center;
}
.cart-btn:hover { background: var(--gold); color: #000; }
.cart-count {
  position: absolute; top: -6px; right: -6px; background: var(--red);
  color: #fff; font-size: 0.65rem; font-weight: 700; width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.cart-count.hidden { display: none; }
.lang-toggle {
  background: transparent; border: 2px solid var(--gold); color: var(--gold);
  padding: 0.3rem 0.8rem; border-radius: 6px; cursor: pointer; font-weight: 700;
  font-size: 0.85rem; transition: all 0.3s;
}
.lang-toggle:hover { background: var(--gold); color: #000; }
.hamburger { display: none; flex-direction: column; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--gold); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; margin: 5px 0; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,7px) !important; }
.hamburger.open span:nth-child(2) { opacity: 0 !important; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-7px) !important; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  justify-content: center; background: url('img/hero.png') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,0,0,0.85) 0%, rgba(26,5,0,0.7) 50%, rgba(13,0,0,0.9) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 6rem 1.25rem 3rem; max-width: 800px; margin: 0 auto;
}
.hero-logo {
  animation: heartbeat 2s ease-in-out infinite !important;
  filter: drop-shadow(0 0 20px rgba(255,184,0,0.5));
}
@keyframes heartbeat {
  0%,100%{transform:scale(1)!important;}
  14%{transform:scale(1.08)!important;}
  28%{transform:scale(1)!important;}
  42%{transform:scale(1.05)!important;}
  70%{transform:scale(1)!important;}
}
.hero-badge {
  display: inline-block; background: rgba(204,0,0,0.2); border: 1px solid var(--red);
  color: var(--gold); padding: 0.4rem 1.2rem; border-radius: 30px; font-size: 0.85rem;
  letter-spacing: 1px; margin-bottom: 1rem; font-weight: 600;
}
.hero-title {
  font-family: 'Oswald', sans-serif; font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; color: #fff; letter-spacing: 3px; text-transform: uppercase;
  text-shadow: 0 2px 15px rgba(0,0,0,0.8); line-height: 1.1; margin-bottom: 0.75rem;
}
.hero-sub {
  font-size: 1.1rem; color: var(--cream); margin-bottom: 1.5rem; opacity: 0.9;
}
.hero-cats {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
  margin-bottom: 1.5rem;
}
.cat-btn {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,184,0,0.4);
  color: var(--cream); padding: 0.5rem 1.2rem; border-radius: 30px;
  font-size: 0.9rem; font-weight: 600; transition: all 0.3s; letter-spacing: 0.5px;
}
.cat-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.btn-wa-hero {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #25D366; color: #fff; padding: 0.8rem 2rem;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  font-family: 'Oswald', sans-serif; letter-spacing: 1px; transition: all 0.3s;
  margin-bottom: 1.5rem;
}
.btn-wa-hero:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center;
  margin-top: 0.5rem;
}
.stat { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--cream); opacity: 0.85; }

/* ===== INFO BAR ===== */
.info-bar {
  background: linear-gradient(90deg, var(--red), #8B0000);
  padding: 0.75rem 1.25rem; border-bottom: 2px solid var(--gold);
}
.info-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: center;
}
.info-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: #fff; font-weight: 500; }
.info-item a { color: #fff; }
.info-item a:hover { color: var(--gold); }

/* ===== SHARED SECTION STRUCTURE ===== */
.taqueria-section, .catering-section, .eventos-section, .animales-section {
  position: relative; padding: 5rem 1.25rem;
}
.section-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-repeat: no-repeat; background-attachment: fixed;
}
.section-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.87); }
.section-overlay.light { background: rgba(0,0,0,0.80); }
.section-content { position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
  font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-badge {
  display: inline-block; background: rgba(204,0,0,0.2); border: 1px solid var(--red);
  color: var(--cream); padding: 0.4rem 1.2rem; border-radius: 30px; font-size: 0.85rem;
}
.section-sub { font-size: 1rem; color: var(--cream); opacity: 0.85; }
.section-sub-header { text-align: center; margin: 3rem 0 1.5rem; }
.sub-title {
  font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 600;
  color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 2px solid var(--red); display: inline-block; padding-bottom: 0.5rem;
}
.text-center { text-align: center; }

/* ===== MENU GRID ===== */
.menu-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  margin-bottom: 2rem;
}
.menu-card {
  background: var(--dark-card); border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(204,0,0,0.3); transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.menu-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 8px 25px rgba(255,184,0,0.2); }
.menu-card img {
  width: 100%; height: 180px; object-fit: cover; transition: transform 0.3s;
}
.menu-card:hover img { transform: scale(1.05); }
.card-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.card-body h3 {
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600;
  color: #fff; letter-spacing: 0.5px;
}
.card-price {
  font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--gold);
}
.card-price small { font-size: 0.75rem; color: var(--cream); opacity: 0.7; }
.card-desc { font-size: 0.78rem; color: var(--cream); opacity: 0.75; flex: 1; }
.btn-add-cart {
  background: var(--red); color: #fff; border: none; padding: 0.55rem 0.75rem;
  border-radius: 8px; font-weight: 700; font-size: 0.82rem; cursor: pointer;
  transition: all 0.3s; margin-top: auto; letter-spacing: 0.5px;
}
.btn-add-cart:hover { background: var(--orange); transform: scale(1.02); }

/* ===== VIDEO GRID ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 177.77%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,184,0,0.2);
  background: #111;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

@media(max-width:1024px){ .video-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .video-grid{ grid-template-columns:1fr; } }

/* ===== CART PANEL ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1998;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-panel {
  position: fixed; right: -420px; top: 0; width: 400px; height: 100vh;
  background: var(--bg); border-left: 2px solid var(--gold); z-index: 1999;
  display: flex; flex-direction: column; transition: right 0.35s ease;
  box-shadow: -5px 0 30px rgba(0,0,0,0.6);
}
.cart-panel.active { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,184,0,0.3);
}
.cart-header h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 700;
  color: var(--gold); letter-spacing: 1px;
}
.close-cart {
  background: transparent; border: none; color: var(--cream);
  font-size: 1.4rem; cursor: pointer; transition: color 0.3s; padding: 0.25rem;
}
.close-cart:hover { color: var(--red); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; opacity: 0.6; }
.cart-empty span { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.cart-row {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,184,0,0.1);
}
.cart-row-name { flex: 1; font-size: 0.9rem; color: var(--cream); }
.cart-row-qty {
  display: flex; align-items: center; gap: 0.4rem;
}
.qty-btn {
  background: rgba(204,0,0,0.3); border: 1px solid var(--red); color: #fff;
  width: 26px; height: 26px; border-radius: 4px; cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.qty-btn:hover { background: var(--red); }
.qty-num { font-weight: 700; color: var(--gold); min-width: 20px; text-align: center; font-size: 0.9rem; }
.cart-row-price { font-weight: 700; color: var(--gold); font-size: 0.9rem; min-width: 55px; text-align: right; }
.cart-row-del { background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; font-size: 1rem; padding: 0.25rem; transition: color 0.3s; }
.cart-row-del:hover { color: var(--red); }
.cart-footer { padding: 1.25rem 1.5rem; border-top: 1px solid rgba(255,184,0,0.3); }
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; font-family: 'Oswald', sans-serif; font-size: 1.3rem;
  font-weight: 700; color: #fff;
}
.cart-total span:last-child { color: var(--gold); }
.btn-fire {
  display: inline-block; background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff; padding: 0.75rem 2rem; border-radius: 50px; font-weight: 700;
  font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 1.5px;
  transition: all 0.3s; border: none; cursor: pointer; text-align: center;
}
.btn-fire:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(204,0,0,0.5); filter: brightness(1.1); }
.btn-fire.btn-lg { font-size: 1.1rem; padding: 0.9rem 2.5rem; }
.w-full { width: 100%; }

/* ===== PACKAGES ===== */
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-bottom: 3rem;
}
.package-card {
  background: var(--dark-card); border-radius: 16px; padding: 2rem 1.5rem;
  border: 1px solid rgba(204,0,0,0.3); transition: all 0.3s; position: relative; overflow: hidden;
}
.package-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 12px 35px rgba(255,184,0,0.2); }
.package-card.featured { border-color: var(--gold); background: rgba(255,184,0,0.06); }
.package-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.pkg-badge-top {
  display: inline-block; background: var(--gold); color: #000;
  padding: 0.25rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 800;
  letter-spacing: 1px; margin-bottom: 0.75rem;
}
.pkg-persons {
  font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700;
  color: var(--red); margin-bottom: 0.25rem;
}
.package-card h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.2rem; color: var(--gold);
  letter-spacing: 1px; margin-bottom: 1rem; text-transform: uppercase;
}
.package-card ul { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.package-card li { font-size: 0.88rem; color: var(--cream); display: flex; align-items: flex-start; gap: 0.4rem; }
.package-card li ✓ { color: var(--gold); }

/* ===== SERVICES ICONS ===== */
.services-icons {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-bottom: 3rem;
}
.svc-icon {
  text-align: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,184,0,0.2);
  border-radius: 12px; padding: 1rem 1.5rem; min-width: 100px; transition: all 0.3s;
}
.svc-icon:hover { border-color: var(--gold); background: rgba(255,184,0,0.08); }
.svc-icon span { font-size: 1.8rem; display: block; margin-bottom: 0.4rem; }
.svc-icon p { font-size: 0.78rem; color: var(--cream); font-weight: 600; }

/* ===== PHOTOS GRID ===== */
.photos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 3rem;
}
.photos-grid img { height: 200px; object-fit: cover; border-radius: 12px; transition: transform 0.3s; }
.photos-grid img:hover { transform: scale(1.03); }

/* ===== CATERING FORM ===== */
.catering-form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,184,0,0.2);
  border-radius: 16px; padding: 2rem;
}
.form-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; color: var(--gold); font-weight: 600; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,184,0,0.25);
  color: var(--cream); border-radius: 8px; padding: 0.65rem 0.85rem; font-size: 0.9rem;
  transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option { background: var(--bg-alt); }
.form-group textarea { resize: vertical; }

/* ===== EVENTOS GRID ===== */
.eventos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem;
}
.evento-card {
  background: var(--dark-card); border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(204,0,0,0.3); transition: all 0.3s;
}
.evento-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(255,184,0,0.2); }
.evento-card img { width: 100%; height: 200px; object-fit: cover; }
.evento-body { padding: 1.25rem; }
.evento-body h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: var(--gold);
  letter-spacing: 0.5px; margin-bottom: 0.4rem; text-transform: uppercase;
}
.evento-body p { font-size: 0.85rem; color: var(--cream); opacity: 0.85; }
.evento-precio { color: var(--gold) !important; opacity: 1 !important; font-weight: 700; font-size: 0.95rem !important; margin-top: 0.5rem; }

/* ===== ANIMALES GRID ===== */
.animales-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.animal-card {
  background: var(--dark-card); border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(204,0,0,0.3); transition: all 0.3s;
  display: flex; flex-direction: column;
}
.animal-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 8px 25px rgba(255,184,0,0.15); }
.animal-card img { width: 100%; height: 220px; object-fit: cover; }
.animal-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.animal-body h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.3rem; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase;
}
.animal-body p { font-size: 0.88rem; color: var(--cream); opacity: 0.85; flex: 1; }
.btn-outline {
  display: inline-block; border: 2px solid var(--gold); color: var(--gold);
  padding: 0.55rem 1.2rem; border-radius: 30px; font-weight: 700;
  font-size: 0.85rem; transition: all 0.3s; text-align: center;
}
.btn-outline:hover { background: var(--gold); color: #000; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--bg-alt); padding: 5rem 1.25rem; }
.google-rating {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.rating-score { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.review-card {
  background: var(--dark-card); border-radius: 12px; padding: 1.25rem;
  border: 1px solid rgba(255,184,0,0.15); transition: all 0.3s;
}
.review-card:hover { border-color: var(--gold); box-shadow: 0 6px 20px rgba(255,184,0,0.15); }
.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.review-header img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.review-header strong { font-size: 0.9rem; color: var(--gold); }
.review-header div { display: flex; flex-direction: column; }
.review-card p { font-size: 0.85rem; color: var(--cream); opacity: 0.85; line-height: 1.5; font-style: italic; }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg); padding: 5rem 1.25rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item > span { font-size: 1.4rem; min-width: 1.8rem; }
.contact-item strong { display: block; color: var(--gold); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 0.2rem; text-transform: uppercase; }
.contact-item p, .contact-item a { font-size: 0.92rem; color: var(--cream); line-height: 1.5; }
.contact-item a:hover { color: var(--gold); }
.social-links { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center;
  justify-content: center; color: var(--cream); transition: all 0.3s;
}
.social-icon:hover { background: var(--red); border-color: var(--red); color: #fff; }
.map-wrapper iframe { width: 100%; border-radius: 16px; border: 1px solid rgba(255,184,0,0.2); }

/* ===== SOBRE NOSOTROS ===== */
.sec-nosotros {
  background:
    linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.78)),
    url('img/nosotros-bg.png') center center / cover no-repeat;
  padding: 5rem 0;
  position: relative;
}
.sec-head { text-align: center; margin-bottom: 2rem; }
.sec-title {
  font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem,4vw,2.5rem);
  font-weight: 700; color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.gold-line { width: 60px; height: 3px; background: linear-gradient(90deg,var(--red),var(--gold)); margin: 0.75rem auto; border-radius: 2px; }
.sec-subtitle { font-size: 1rem; color: var(--cream); opacity: 0.8; }
.nosotros-top { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.nosotros-card {
  background: rgba(255,102,0,0.08); border: 1px solid rgba(255,184,0,0.25);
  border-radius: 16px; padding: 2rem; text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nosotros-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(255,184,0,0.15); }
.nosotros-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.nosotros-card h3 { color: #FFB800; font-family: 'Oswald',sans-serif; font-size: 1.5rem; margin-bottom: 1rem; }
.nosotros-card p { color: rgba(255,255,255,0.8); line-height: 1.8; font-size: 0.95rem; }
.valores-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 2rem; }
.valor-card {
  background: rgba(204,0,0,0.08); border: 1px solid rgba(255,184,0,0.2);
  border-radius: 14px; padding: 1.5rem; text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.valor-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(255,184,0,0.12); border-color: #FFB800; }
.valor-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.valor-card h4 { color: #FFB800; font-family: 'Oswald',sans-serif; font-size: 1.1rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.valor-card ul { list-style: none; padding: 0; }
.valor-card ul li { color: rgba(255,255,255,0.75); font-size: 0.85rem; padding: 0.25rem 0; border-bottom: 1px solid rgba(255,184,0,0.1); }
.valor-card ul li:last-child { border-bottom: none; }
@media(max-width:768px) { .nosotros-top { grid-template-columns: 1fr; } .valores-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .valores-grid { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.footer { background: #050505; border-top: 2px solid var(--red); padding: 3rem 1.25rem 1.5rem; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { width: 60px; height: 60px; object-fit: contain; }
.footer-brand h3 { font-family: 'Oswald', sans-serif; font-size: 1rem; color: var(--gold); margin-bottom: 0.25rem; }
.footer-brand p { font-size: 0.8rem; color: var(--cream); opacity: 0.7; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a, .footer-contact p { font-size: 0.85rem; color: var(--cream); opacity: 0.8; }
.footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.75rem; align-items: flex-start; flex-wrap: wrap; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: var(--nav-h); left: 0; width: 100%; background: rgba(13,0,0,0.98);
    flex-direction: column; gap: 0; padding: 0; transform: translateY(-120%);
    opacity: 0; transition: all 0.35s ease; border-bottom: 2px solid var(--red);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; }
  .nav-link { display: block; padding: 0.9rem 1.5rem; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .btn-nav-call { display: none; }
  .menu-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .video-grid { grid-template-columns: 1fr; }
  .photos-grid { grid-template-columns: 1fr; }
  .photos-grid img { height: 180px; }
  .eventos-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-cats { gap: 0.5rem; }
  .hero-stats { flex-direction: column; gap: 0.5rem; }
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem; }
  .eventos-grid { grid-template-columns: 1fr; }
  .animales-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cart-panel { width: 100%; right: -110%; }
  .hero-cats { gap: 0.4rem; }
  .cat-btn { font-size: 0.8rem; padding: 0.4rem 0.9rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .info-container { flex-direction: column; align-items: center; gap: 0.4rem; }
}
