/* ═══════════════════════════════════
   TOKENS
═══════════════════════════════════ */
:root {
  --cream:  #f5ecd7;
  --orange: #e8590c;
  --gold:   #f5a623;
  --dark:   #1c1c1c;
  --teal:   #4ab3c9;
  --green:  #2d6a4f;
  --blue:   #2563a8;
  --red:    #c0392b;
  --white:  #ffffff;
  --text-dark: #2a1a00;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
@keyframes marquee    { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }
@keyframes sway       { from { transform: rotate(-5deg); }    to { transform: rotate(5deg); } }
@keyframes spin-pulse { 0%,100% { transform: rotate(-6deg) scale(1); } 50% { transform: rotate(6deg) scale(1.08); } }
@keyframes floatUD    { from { transform: translateY(-8px); } to { transform: translateY(8px); } }
@keyframes waBounce   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes starPulse  { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.7; transform:scale(1.15); } }

/* ═══════════════════════════════════
   REVEAL ON SCROLL
═══════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .15s !important; }
.delay-2 { transition-delay: .3s  !important; }
.delay-3 { transition-delay: .45s !important; }

/* ═══════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════ */
.announcement-bar {
  background: var(--orange); color: #fff;
  font-family: 'Bebas Neue', cursive; font-size: 1rem; letter-spacing: 3px;
  padding: 8px 0; overflow: hidden; text-align: center;
}
.announcement-bar span { display: inline-block; white-space: nowrap; animation: marquee 20s linear infinite; }

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.navbar-nayarita {
  background: #1c1c1c !important;
  padding: 6px 0; position: sticky; top: 0; z-index: 1050;
  box-shadow: 0 2px 14px rgba(0,0,0,.6); transition: padding .3s;
}
.navbar-brand { padding: 0; }
.navbar-nayarita .nav-link {
  color: #ddd !important; font-family: 'Bebas Neue', cursive;
  font-size: 1rem; letter-spacing: 2px; padding: 6px 14px !important;
  position: relative; transition: color .2s;
}
.navbar-nayarita .nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .25s;
}
.navbar-nayarita .nav-link.nav-active,
.navbar-nayarita .nav-link:hover { color: #fff !important; }
.navbar-nayarita .nav-link.nav-active::after,
.navbar-nayarita .nav-link:hover::after { transform: scaleX(1); }
.btn-reserva-grupos {
  border: 2px solid #4caf50; color: #fff;
  font-family: 'Bebas Neue', cursive; letter-spacing: 2px;
  padding: 8px 20px; border-radius: 6px; font-size: 1rem;
  text-decoration: none; transition: all .25s; white-space: nowrap;
}
.btn-reserva-grupos:hover { background: #4caf50; color: #fff; }
.navbar-toggler { border-color: var(--gold); }
.navbar-toggler-icon { filter: invert(1); }

/* ═══════════════════════════════════
   HERO SPLIT
═══════════════════════════════════ */
.hero-split { display: flex; min-height: 78vh; }
.hero-left { flex: 1; position: relative; overflow: hidden; min-height: 360px; }
.hero-food-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-cactus {
  position: absolute; bottom: 8%; font-size: 4rem; opacity: .8;
  animation: sway 5s ease-in-out infinite alternate;
}
.hero-cactus.left  { left: 2%; transform-origin: bottom center; }
.hero-cactus.right { right: 2%; transform-origin: bottom center; animation-delay: -2.5s; }
.hero-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); border: 2px solid #fff; }
.dot.active { background: #fff; }
.hero-right {
  flex: 1; background: var(--gold); padding: 40px 36px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-price-badge {
  width: 110px; position: absolute; top: 18px; right: 18px;
  animation: spin-pulse 5s ease-in-out infinite;
}
.hero-right-title {
  font-family: 'Bebas Neue', cursive; font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.1; color: var(--text-dark); letter-spacing: 1px;
}
.hero-input {
  width: 100%; padding: 10px 14px; margin-bottom: 10px;
  border: none; border-radius: 4px; font-size: .95rem; background: rgba(255,255,255,.85);
}
.hero-input:focus { outline: 2px solid var(--orange); background: #fff; }
.hero-check { font-size: .85rem; color: var(--text-dark); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.btn-contactar {
  width: 100%; background: var(--orange); color: #fff; border: none;
  font-family: 'Bebas Neue', cursive; font-size: 1.1rem; letter-spacing: 3px;
  padding: 12px; border-radius: 4px; cursor: pointer; transition: all .25s;
}
.btn-contactar:hover { background: #c04500; transform: scale(1.02); }

/* ═══════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════ */
.about-section { background: var(--cream); padding: 60px 0 0; position: relative; overflow: hidden; }
.about-side-l, .about-side-r {
  position: absolute; font-size: 3rem; top: 55%; opacity: .15;
  animation: floatUD 5s ease-in-out infinite alternate;
}
.about-side-l { left: 1%; }
.about-side-r { right: 1%; animation-delay: -2.5s; }
.about-logo { height: 100px; width: auto; }
.about-subtitle { font-family: 'Bebas Neue', cursive; font-size: .85rem; letter-spacing: 3px; color: #888; margin-top: 4px; }
.about-text { max-width: 680px; margin: 16px auto 0; font-size: .95rem; line-height: 1.75; color: #444; }
.about-address { font-family: 'Bebas Neue', cursive; font-size: 1.1rem; letter-spacing: 2px; margin-top: 16px; color: var(--text-dark); }
.map-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 2px solid #ccc; color: var(--text-dark);
  font-family: 'Bebas Neue', cursive; letter-spacing: 2px;
  padding: 8px 20px; border-radius: 6px; text-decoration: none; transition: all .25s;
}
.map-btn:hover { border-color: var(--orange); color: var(--orange); }
.menu-btn {
  width: 100%; background: var(--gold); border: 2px solid var(--orange);
  color: var(--text-dark); font-family: 'Bebas Neue', cursive;
  font-size: 1.05rem; letter-spacing: 2px; padding: 14px 20px;
  border-radius: 10px; cursor: pointer; transition: all .25s;
}
.menu-btn:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }
.wave-divider { margin: 32px 0 16px; width: 100%; }
.wave-divider svg { width: 100%; height: 30px; }
.promo-block { padding: 16px 0 40px; }
.promo-title {
  font-family: 'Bebas Neue', cursive; font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.05; color: var(--text-dark); letter-spacing: 1px;
}
.btn-reserva-orange {
  background: var(--orange); color: #fff; border: none;
  font-family: 'Bebas Neue', cursive; font-size: 1rem; letter-spacing: 2px;
  padding: 12px 28px; border-radius: 6px; text-decoration: none; cursor: pointer; transition: all .25s;
}
.btn-reserva-orange:hover { background: #c04500; transform: scale(1.04); }
.promo-cactus-l, .promo-cactus-r {
  position: absolute; font-size: 2.8rem; opacity: .7;
  animation: sway 5s ease-in-out infinite alternate;
}
.promo-cactus-l { left: -40px; bottom: 0; transform-origin: bottom center; }
.promo-cactus-r { right: -10px; bottom: 0; animation-delay: -2s; }
.promo-arch-bg {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 260px; height: 260px;
  background: var(--gold); border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  opacity: .5; z-index: 0;
}
.promo-plate { width: 70%; max-width: 300px; position: relative; z-index: 1; filter: drop-shadow(0 8px 20px rgba(0,0,0,.2)); }
.promo-price-badge { width: 90px; position: absolute; left: 10%; top: 10%; z-index: 2; animation: spin-pulse 5s ease-in-out infinite; }
.promo-star { position: absolute; color: var(--red); font-size: 1.2rem; opacity: .7; animation: starPulse 3s ease-in-out infinite; }
.promo-star.s1 { top: 12%; right: 12%; }
.promo-star.s2 { bottom: 18%; left: 12%; animation-delay: -1.5s; }
.green-bar { height: 10px; background: #3d9142; margin-top: 40px; }

/* ═══════════════════════════════════
   CATEGORIES
═══════════════════════════════════ */
.categories-section { background: var(--cream); padding: 60px 0; }
.section-title {
  font-family: 'Bebas Neue', cursive; font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 3px; color: var(--text-dark); display: inline-block; vertical-align: middle;
}
.section-title.light { color: #f0e8d8; }
.cactus-icon { font-size: 1.8rem; vertical-align: middle; }
.green-cactus { color: var(--green); }
.cat-card {
  background: #fff; border: 1.5px solid #e0cfa8; border-radius: 14px;
  padding: 30px 20px 20px; text-align: center; height: 100%;
  border-bottom: 5px solid var(--gold); transition: transform .3s, box-shadow .3s;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: 0 14px 36px rgba(0,0,0,.12); }
.cat-icon-wrap { margin-bottom: 14px; }
.cat-card h5 { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; letter-spacing: 2px; margin-bottom: 12px; }
.cat-btn {
  background: var(--gold); border: 2px solid var(--orange); color: var(--text-dark);
  font-family: 'Bebas Neue', cursive; font-size: .95rem; letter-spacing: 2px;
  padding: 8px 22px; border-radius: 20px; cursor: pointer; transition: all .25s;
}
.cat-btn:hover { background: var(--orange); color: #fff; }

/* ═══════════════════════════════════
   EVENT SECTION
═══════════════════════════════════ */
.event-section { background: var(--cream); padding: 50px 0; position: relative; overflow: hidden; }
.event-deco-l, .event-deco-r {
  position: absolute; top: 12%; width: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.event-deco-l { left: 2%; }
.event-deco-r { right: 2%; }
.deco-dot  { width: 14px; height: 14px; border-radius: 50%; background: var(--green); display: block; }
.deco-dot.red-dot { background: var(--red); }
.deco-star { color: var(--gold); font-size: 1.5rem; animation: starPulse 3s ease-in-out infinite; display: block; text-align: center; }
.deco-wave { color: var(--teal); font-size: 2rem; display: block; text-align: center; }
.event-slider-wrap { max-width: 760px; margin: 0 auto; }
.event-slide-box { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/8; }
.event-bg-img    { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-singer-img {
  position: absolute; right: 2%; bottom: 0; height: 100%; width: auto; object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.5));
}
.event-logo-img {
  position: absolute; left: 4%; top: 50%; transform: translateY(-50%);
  width: 38%; object-fit: contain;
}
.slide-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.sdot { width: 10px; height: 10px; border-radius: 50%; background: #ccc; border: 2px solid #aaa; }
.sdot.active { background: var(--text-dark); border-color: var(--text-dark); }
.event-text-block { max-width: 760px; margin: 28px auto 0; }
.event-text-block h3 { font-family: 'Bebas Neue', cursive; font-size: 1.6rem; letter-spacing: 2px; margin-bottom: 12px; }
.event-text-block p { font-size: .95rem; line-height: 1.75; color: #555; }

/* ═══════════════════════════════════
   SPECIALS — parallax dark
═══════════════════════════════════ */
.specials-section {
  position: relative; padding: 70px 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.parallax-bg { background-attachment: fixed; background-size: cover; background-position: center 50%; }
.specials-overlay { position: absolute; inset: 0; background: rgba(12,8,4,.84); }
.special-slider-wrap { max-width: 760px; margin: 0 auto; position: relative; }
.special-slide-box { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/8; }
.special-food-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.special-label-img {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  width: 38%; object-fit: contain; filter: drop-shadow(0 4px 16px rgba(0,0,0,.4));
}
.special-desc { max-width: 760px; margin: 24px auto 0; color: #ccc; font-size: .95rem; line-height: 1.75; }

/* ═══════════════════════════════════
   RECOMMENDATIONS
═══════════════════════════════════ */
.recs-section { background: #1a1a1a; padding: 70px 0; }
.rec-card {
  border-radius: 14px; overflow: hidden; background: var(--cream);
  box-shadow: 0 4px 18px rgba(0,0,0,.3); transition: transform .3s, box-shadow .3s;
}
.rec-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,.4); }
.rec-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.rec-body { padding: 18px; text-align: center; }
.rec-body h6 { font-family: 'Bebas Neue', cursive; font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 6px; }
.rec-body p { font-size: .88rem; color: #555; }

/* ═══════════════════════════════════
   REVIEW — split blue + photo
═══════════════════════════════════ */
.review-section { display: flex; min-height: 320px; }
.review-left {
  flex: 1; padding: 50px 44px; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2563a8 0%, #1a4a8a 100%);
}
.review-left::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: .5;
}
.review-content { position: relative; color: #fff; }
.review-star-big { font-size: 3rem; color: var(--gold); animation: starPulse 2s ease-in-out infinite; margin-bottom: 10px; }
.review-content h2 { font-family: 'Bebas Neue', cursive; font-size: clamp(1.4rem, 2.4vw, 2rem); letter-spacing: 2px; line-height: 1.2; }
.review-sparkles { display: flex; gap: 12px; margin: 14px 0; }
.review-sparkles span { color: var(--gold); font-size: 1.2rem; animation: starPulse 2.5s ease-in-out infinite; }
.review-sparkles span:nth-child(2) { animation-delay: -.8s; }
.review-sparkles span:nth-child(3) { animation-delay: -1.6s; }
.btn-opinion {
  display: inline-block; background: transparent; border: 2px solid var(--gold); color: var(--gold);
  font-family: 'Bebas Neue', cursive; letter-spacing: 3px;
  padding: 10px 26px; border-radius: 6px; text-decoration: none; transition: all .25s; font-size: 1rem;
}
.btn-opinion:hover { background: var(--gold); color: var(--dark); }
.review-right { flex: 1; position: relative; overflow: hidden; min-height: 300px; }
.review-right img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-right-logo {
  position: absolute; bottom: 20px; right: 20px;
  font-family: 'Bebas Neue', cursive; font-size: 2.5rem; color: #fff;
  letter-spacing: 4px; text-shadow: 2px 2px 8px rgba(0,0,0,.6);
}

/* ═══════════════════════════════════
   SOCIAL — gold bg
═══════════════════════════════════ */
.social-section { background: var(--gold); padding: 50px 0; position: relative; overflow: hidden; }
.social-mascot-l, .social-mascot-r {
  position: absolute; top: 50%; transform: translateY(-50%);
  animation: floatUD 4s ease-in-out infinite alternate;
}
.social-mascot-l { left: 2%; }
.social-mascot-l img { height: 90px; object-fit: contain; opacity: .85; }
.social-mascot-r { right: 2%; font-size: 3.5rem; animation-delay: -2s; }
.social-decos { display: flex; justify-content: center; gap: 14px; margin-bottom: 10px; font-size: 1.2rem; }
.sd.red { color: var(--red); }
.social-title { font-family: 'Bebas Neue', cursive; font-size: 2rem; letter-spacing: 4px; color: var(--text-dark); }
.social-icons { display: flex; justify-content: center; gap: 18px; }
.social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--text-dark); color: var(--text-dark);
  text-decoration: none; transition: all .25s;
}
.social-icons a:hover { background: var(--text-dark); color: var(--gold); transform: scale(1.15); }

/* ═══════════════════════════════════
   MAP / SUBSCRIBE — parallax bg
═══════════════════════════════════ */
.map-section {
  position: relative; min-height: 400px;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.map-overlay { position: absolute; inset: 0; background: rgba(240,228,200,.55); }
.subscribe-card {
  background: var(--cream); border: 1.5px solid #cbbf9a;
  border-radius: 12px; padding: 32px 28px; box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.subscribe-card h3 { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; letter-spacing: 2px; margin-bottom: 8px; }
.subscribe-card p { font-size: .88rem; color: #666; margin-bottom: 14px; }
.sub-input {
  width: 100%; padding: 10px 12px; margin-bottom: 10px;
  border: 1.5px solid #cbbf9a; border-radius: 6px; background: #fff; font-size: .95rem;
}
.sub-input:focus { outline: 2px solid var(--orange); border-color: var(--orange); }
.btn-ubicacion {
  display: inline-block; background: var(--gold); border: 2px solid var(--orange); color: var(--text-dark);
  font-family: 'Bebas Neue', cursive; font-size: 1.2rem; letter-spacing: 3px;
  padding: 14px 40px; border-radius: 8px; text-decoration: none; transition: all .25s;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.btn-ubicacion:hover { background: var(--orange); color: #fff; transform: scale(1.04); }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer { background: var(--cream); border-top: 3px solid #d4c49a; padding: 36px 0 0; }
.footer-tagline { font-family: 'Bebas Neue', cursive; font-size: .8rem; letter-spacing: 2px; color: #888; margin-top: 4px; }
.footer-link { color: #555; text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-link:hover { color: var(--orange); }
.footer-wa { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-dark); text-decoration: none; transition: color .2s; }
.footer-wa:hover { color: #25d366; }
.footer-wa small { font-family: 'Bebas Neue', cursive; letter-spacing: 1px; font-size: .8rem; }
.footer-bottom { background: var(--dark); color: #777; text-align: center; padding: 12px 20px; margin-top: 24px; font-size: .78rem; }
.footer-bottom a { color: #777; text-decoration: none; margin: 0 4px; }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: #25d366; color: #fff; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.3);
  animation: waBounce 2.5s ease-in-out infinite;
  text-decoration: none; transition: transform .2s;
}
.wa-float:hover { transform: scale(1.12); color: #fff; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 767px) {
  .hero-split { flex-direction: column; }
  .hero-left  { min-height: 260px; }
  .hero-right { padding: 28px 20px; }
  .hero-price-badge { width: 80px; }
  .review-section { flex-direction: column; }
  .review-right { min-height: 220px; }
  .event-deco-l, .event-deco-r { display: none; }
  .social-mascot-l, .social-mascot-r { display: none; }
  .promo-cactus-l, .promo-cactus-r { display: none; }
  .specials-section, .map-section, .parallax-bg { background-attachment: scroll; }
}

/* ═══════════════════════════════════
   INNER PAGES — Shared
═══════════════════════════════════ */
.page-hero {
  position: relative; min-height: 340px; display: flex; align-items: center;
  background-size: cover; background-position: center; background-attachment: fixed;
}
.page-hero-overlay { position: absolute; inset: 0; background: rgba(10,5,0,.68); }
.page-hero .container { padding: 80px 0 60px; }
.page-hero-title {
  font-family: 'Bebas Neue', cursive; font-size: clamp(2.8rem, 7vw, 5rem);
  color: #fff; letter-spacing: 4px; line-height: 1; margin: 0;
}
.page-hero-sub { color: var(--gold); font-family: 'Bebas Neue', cursive; font-size: 1.2rem; letter-spacing: 3px; margin-top: 8px; }

.inner-section { padding: 70px 0; }
.section-label { font-family: 'Bebas Neue', cursive; font-size: .9rem; letter-spacing: 4px; color: var(--orange); }
.inner-title { font-family: 'Bebas Neue', cursive; font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: 2px; margin: 8px 0 16px; }
.inner-text { font-size: 1rem; line-height: 1.8; color: #444; }
.inner-img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
.inner-img { width: 100%; height: 420px; object-fit: cover; display: block; border-radius: 16px; }
.inner-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--dark); border-radius: 50%; padding: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.inner-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.stat-box { background: var(--cream); border: 2px solid var(--gold); border-radius: 10px; padding: 14px 20px; text-align: center; min-width: 100px; }
.stat-num { display: block; font-family: 'Bebas Neue', cursive; font-size: 2.2rem; color: var(--orange); line-height: 1; }
.stat-label { display: block; font-size: .8rem; color: #666; letter-spacing: 1px; margin-top: 2px; }

/* Valores */
.valor-card {
  background: #242424; border: 1px solid #333; border-radius: 14px;
  padding: 28px 20px; text-align: center; height: 100%;
  border-bottom: 4px solid var(--orange); transition: transform .3s;
}
.valor-card:hover { transform: translateY(-6px); }
.valor-icon { font-size: 2.5rem; margin-bottom: 12px; }
.valor-card h5 { font-family: 'Bebas Neue', cursive; font-size: 1.3rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 8px; }
.valor-card p { font-size: .9rem; color: #aaa; line-height: 1.6; }

/* Equipo */
.team-card { background: #fff; border-radius: 14px; padding: 28px 20px; box-shadow: 0 4px 18px rgba(0,0,0,.08); transition: transform .3s; }
.team-card:hover { transform: translateY(-5px); }
.team-avatar { font-size: 3.5rem; margin-bottom: 12px; }
.team-name { font-family: 'Bebas Neue', cursive; font-size: 1.2rem; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 2px; }
.team-role { font-size: .8rem; color: var(--orange); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.team-bio { font-size: .88rem; color: #666; line-height: 1.5; }

/* CTA Section */
.cta-section {
  position: relative; padding: 80px 0;
  background-size: cover; background-position: center; background-attachment: fixed;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(10,5,0,.75); }
.cta-title { font-family: 'Bebas Neue', cursive; font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; letter-spacing: 3px; }
.cta-sub { color: #ccc; font-size: 1.05rem; margin: 10px 0 24px; }
.btn-cta {
  display: inline-block; background: var(--orange); color: #fff;
  font-family: 'Bebas Neue', cursive; font-size: 1.2rem; letter-spacing: 3px;
  padding: 14px 44px; border-radius: 8px; text-decoration: none; transition: all .25s;
  box-shadow: 0 4px 18px rgba(232,89,12,.4);
}
.btn-cta:hover { background: var(--gold); color: var(--dark); transform: scale(1.04); }

/* ═══════════════════════════════════
   MENÚ PAGE
═══════════════════════════════════ */
.menu-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding-bottom: 10px; }
.filter-btn {
  background: transparent; border: 2px solid #cbbf9a; color: var(--text-dark);
  font-family: 'Bebas Neue', cursive; letter-spacing: 2px; padding: 8px 22px;
  border-radius: 30px; cursor: pointer; transition: all .25s; font-size: .9rem;
}
.filter-btn:hover, .filter-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.menu-section { padding: 50px 0; }
.menu-cat-header { text-align: center; margin-bottom: 10px; }
.menu-card {
  background: #fff; border: 1.5px solid #e0cfa8; border-radius: 12px;
  padding: 24px 18px; text-align: center; height: 100%;
  border-bottom: 4px solid var(--gold); transition: transform .3s, box-shadow .3s;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.menu-card.coctail { border-bottom-color: var(--red); }
.menu-card-icon { font-size: 2.8rem; margin-bottom: 10px; }
.menu-card h5 { font-family: 'Bebas Neue', cursive; font-size: 1.2rem; letter-spacing: 1px; margin-bottom: 8px; }
.menu-card p { font-size: .85rem; color: #666; line-height: 1.6; margin-bottom: 12px; }
.menu-price {
  display: inline-block; background: var(--orange); color: #fff;
  font-family: 'Bebas Neue', cursive; font-size: 1rem; letter-spacing: 1px;
  padding: 4px 16px; border-radius: 20px;
}
.menu-card.especial { padding: 0; overflow: hidden; }
.menu-card-img { position: relative; }
.menu-card-img img { width: 100%; height: 200px; object-fit: cover; display: block; }
.menu-card-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--orange); color: #fff;
  font-family: 'Bebas Neue', cursive; font-size: .8rem; letter-spacing: 1px;
  padding: 3px 12px; border-radius: 20px;
}
.menu-card-body { padding: 18px; }
.soft-card {
  background: #fff; border: 1.5px solid #e0cfa8; border-radius: 8px;
  padding: 12px 16px; display: flex; justify-content: space-between; align-items: center;
  transition: all .25s;
}
.soft-card:hover { border-color: var(--orange); transform: translateX(4px); }
.soft-name { font-size: .9rem; color: var(--text-dark); }
.soft-price { font-family: 'Bebas Neue', cursive; font-size: 1rem; color: var(--orange); }

/* ═══════════════════════════════════
   BLOG PAGE
═══════════════════════════════════ */
.blog-featured-img { position: relative; border-radius: 16px; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.blog-cat-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--orange); color: #fff;
  font-family: 'Bebas Neue', cursive; font-size: .85rem; letter-spacing: 2px;
  padding: 4px 14px; border-radius: 20px;
}
.blog-cat-badge.sm { font-size: .75rem; padding: 3px 10px; }
.blog-meta { font-size: .85rem; color: var(--orange); letter-spacing: 1px; margin-bottom: 8px; }
.blog-featured-title { font-family: 'Bebas Neue', cursive; font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: 2px; line-height: 1.1; margin-bottom: 14px; }
.blog-featured-text { font-size: 1rem; line-height: 1.75; color: #555; }
.blog-card { border-radius: 14px; overflow: hidden; background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,.08); transition: transform .3s, box-shadow .3s; height: 100%; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.15); }
.blog-card-img { position: relative; }
.blog-card-img img { width: 100%; height: 180px; object-fit: cover; display: block; }
.blog-card-body { padding: 18px; }
.blog-card-body h5 { font-family: 'Bebas Neue', cursive; font-size: 1.2rem; letter-spacing: 1px; margin-bottom: 8px; }
.blog-card-body p { font-size: .88rem; color: #666; line-height: 1.6; margin-bottom: 12px; }
.blog-read-more { color: var(--orange); font-weight: 700; text-decoration: none; font-size: .9rem; transition: color .2s; }
.blog-read-more:hover { color: var(--text-dark); }

/* ═══════════════════════════════════
   CONTACTO PAGE
═══════════════════════════════════ */
.contact-info-card {
  background: #fff; border-radius: 16px; padding: 32px 28px; height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,.08); border-top: 5px solid var(--orange);
}
.contact-info-card h3 { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; letter-spacing: 2px; margin-bottom: 24px; color: var(--text-dark); }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; color: var(--orange); font-size: .85rem; letter-spacing: 1px; margin-bottom: 2px; }
.contact-info-item a { color: var(--text-dark); text-decoration: none; }
.contact-info-item a:hover { color: var(--orange); }
.contact-form-card { background: #242424; border-radius: 16px; padding: 36px; }
.form-label-inner { font-family: 'Bebas Neue', cursive; font-size: .9rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 6px; display: block; }
.inner-input {
  width: 100%; padding: 11px 14px; border: 1.5px solid #333;
  border-radius: 8px; background: #1a1a1a; color: #f0e8d8; font-size: .95rem;
  transition: border-color .2s;
}
.inner-input:focus { outline: none; border-color: var(--orange); }
.inner-input option { background: #1a1a1a; }
textarea.inner-input { resize: vertical; min-height: 100px; }
.inner-check { color: #bbb; font-size: .85rem; display: flex; align-items: center; gap: 8px; cursor: pointer; }
.contact-form-card .btn-contactar { background: var(--orange); }
.footer-section-title { font-family: 'Bebas Neue', cursive; font-size: .85rem; letter-spacing: 2px; color: var(--orange); margin-bottom: 10px; }
.footer-social { display: flex; gap: 10px; justify-content: flex-end; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid #cbbf9a; color: var(--text-dark); transition: all .2s; }
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* Form feedback */
.form-alert { padding: 12px 16px; border-radius: 8px; font-size: .92rem; font-weight: 600; }
.alert-ok  { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-err { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.btn-sub {
  width: 100%; background: var(--orange); border: none; color: #fff;
  font-family: 'Bebas Neue', cursive; font-size: 1rem; letter-spacing: 2px;
  padding: 11px; border-radius: 8px; cursor: pointer; margin-top: 4px; transition: all .25s;
}
.btn-sub:hover { background: var(--dark); }

@media (max-width:767px) {
  .page-hero { min-height: 220px; background-attachment: scroll; }
  .cta-section { background-attachment: scroll; }
  .inner-img { height: 260px; }
  .blog-featured-img img { height: 240px; }
  .contact-form-card { padding: 22px 16px; }
}

/* ═══════════════════════════════════
   REAL SVG ICON OVERRIDES
═══════════════════════════════════ */

/* Cactus en títulos de sección */
.cactus-icon, span.cactus-icon {
  display: inline-block;
  font-size: 0;           /* elimina espacio residual de emoji */
  vertical-align: middle;
  line-height: 1;
}
.cactus-icon img, .deco-cactus-img {
  height: 52px;
  width: auto;
  vertical-align: middle;
}

/* Cactus en costados del hero */
.hero-cactus { font-size: 0; }
.hero-cactus .hero-cactus-img,
.hero-cactus img { height: 80px; width: auto; }

/* Cactus decorativos de sección */
.deco-cactus-side { height: 90px; width: auto; }

/* Shrimp / fish sides */
.about-side-l, .about-side-r {
  font-size: 0;
}
.about-side-l img, .about-side-r img {
  height: 80px;
  width: auto;
  opacity: .75;
}

/* Promo cactus */
.promo-cactus-l, .promo-cactus-r { font-size: 0; }
.promo-cactus-l img, .promo-cactus-r img {
  height: 65px; width: auto; opacity: .8;
}

/* Promo stars */
.promo-star { font-size: 0; }
.promo-star img { height: 22px; width: auto; }

/* Event deco dots / stars / waves */
.deco-dot  { font-size: 0; }
.deco-star { font-size: 0; }
.deco-wave { font-size: 0; }
.deco-dot img  { height: 14px; width: 14px; }
.deco-star img { height: 22px; width: auto; }
.deco-wave img { height: 44px; width: auto; }

/* Social mascots */
.social-mascot-l img, .social-mascot-r img {
  height: 100px; width: auto; opacity: .9;
}

/* Social decos row */
.social-decos { font-size: 0; display: flex; justify-content: center; gap: 14px; margin-bottom: 10px; align-items: center; }
.social-decos img { height: 20px; width: auto; }

/* Announcement bar mini cactus */
.announcement-bar img {
  height: 18px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}

/* green-bar separator */
.green-bar { height: 10px; background: #3d9142; margin-top: 40px; }

/* ═══ HERO NEW CTAs (observations) ═══ */
.hero-right-sub {
  color: rgba(30,15,0,.75); font-size:.95rem; margin:4px 0 14px; line-height:1.4;
}
.hero-cta-btns { display:flex; flex-direction:column; gap:10px; margin-top:8px; }
.btn-wa-hero {
  display:block; width:100%; background:#25d366; color:#fff;
  font-family:'Bebas Neue',cursive; font-size:1.1rem; letter-spacing:2px;
  padding:13px 20px; border-radius:6px; text-decoration:none; text-align:center;
  transition:all .25s;
}
.btn-wa-hero:hover { background:#1da851; color:#fff; transform:scale(1.02); }
.btn-ver-menu {
  display:block; width:100%; background:transparent;
  border:2px solid rgba(30,15,0,.5); color:var(--text-dark);
  font-family:'Bebas Neue',cursive; font-size:1.1rem; letter-spacing:2px;
  padding:11px 20px; border-radius:6px; text-decoration:none; text-align:center;
  transition:all .25s;
}
.btn-ver-menu:hover { background:var(--text-dark); color:var(--gold); }

/* 4 category cards fix */
#menu .section-title { font-size:clamp(1.6rem,3.5vw,2.4rem); }
.cat-btn { text-decoration:none; }

@media (max-width:767px){
  .hero-cta-btns { flex-direction:column; }
}

/* ═══════════════════════════════════
   LANGUAGE TOGGLE
═══════════════════════════════════ */
.btn-lang {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  color: #ddd;
  font-family: 'Bebas Neue', cursive;
  font-size: .95rem;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn-lang:hover { background: rgba(255,255,255,.1); border-color: var(--gold); color: var(--gold); }
.lang-flag { font-size: 1rem; }

/* ═══════════════════════════════════
   MENU FILTER BAR
═══════════════════════════════════ */
.menu-filter-bar {
  background: var(--cream);
  padding: 20px 0 12px;
  position: sticky;
  top: 66px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.filter-btn {
  background: transparent;
  border: 1.5px solid #cbbf9a;
  color: var(--text-dark);
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
  cursor: pointer;
  font-size: .82rem;
  transition: all .2s;
  white-space: nowrap;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ═══════════════════════════════════
   MENU CARDS — enhancements
═══════════════════════════════════ */
.menu-section { padding: 50px 0; }
.menu-cat-header { text-align: center; margin-bottom: 8px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; }
.menu-section-sub { text-align: center; font-size: .88rem; max-width: 640px; margin: 0 auto 16px; }
.menu-card {
  background: #fff;
  border: 1.5px solid #e0cfa8;
  border-radius: 12px;
  padding: 20px 18px;
  height: 100%;
  border-bottom: 3px solid var(--gold);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.menu-card h5 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.05rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.menu-card p {
  font-size: .83rem;
  color: #666;
  line-height: 1.55;
  margin: 0;
}
.menu-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: .72rem;
  letter-spacing: 1px;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.menu-tag.market { background: #2d6a4f; }
.menu-size-tag {
  display: inline-block;
  margin-top: 8px;
  background: #f5ecd7;
  border: 1px solid #e0cfa8;
  color: #666;
  font-size: .75rem;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 1px;
  padding: 2px 10px;
  border-radius: 20px;
}
.menu-subname {
  display: block;
  font-size: .75rem;
  color: #999;
  font-style: italic;
  margin-bottom: 4px;
}
.menu-price {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 3px 14px;
  border-radius: 20px;
  margin-top: 8px;
}
.menu-sub-heading {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--orange);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e0cfa8;
}
.menu-market-banner {
  background: rgba(255,255,255,.04);
  border: 1px solid #333;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 16px;
}
.market-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  letter-spacing: 4px;
  color: #2d6a4f;
  text-align: center;
  margin-bottom: 4px;
}
.menu-soft-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.soft-pill {
  background: #242424;
  color: #ddd;
  border: 1px solid #444;
  font-size: .82rem;
  padding: 4px 14px;
  border-radius: 20px;
  font-family: 'Lato', sans-serif;
}
.soft-card {
  background: #fff;
  border: 1.5px solid #e0cfa8;
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .2s;
}
.soft-card:hover { border-color: var(--orange); }
.soft-name { font-size: .88rem; }
.soft-price { font-family: 'Bebas Neue', cursive; font-size: 1rem; color: var(--orange); }

@media (max-width: 767px) {
  .menu-filter-bar { top: 56px; }
  .filter-btn { font-size: .75rem; padding: 5px 12px; }
  .menu-card { padding: 16px 14px; }
}

/* ═══════════════════════════════════
   HERO SLIDER
═══════════════════════════════════ */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════
   EVENT VERTICAL SLIDER
═══════════════════════════════════ */
.event-vertical-slider {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.event-v-track {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.event-v-slide {
  display: none;
}
.event-v-slide.active {
  display: block;
}
.event-v-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: opacity .5s ease;
}
.event-v-prev,
.event-v-next {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.55);
  color: var(--gold);
  border: 2px solid var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: all .25s;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-v-prev { top: -22px; }
.event-v-next { bottom: -22px; }
.event-v-prev:hover,
.event-v-next:hover { background: var(--gold); color: var(--dark); }
.event-v-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.evdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: 2px solid #aaa;
  cursor: pointer;
  transition: all .25s;
}
.evdot.active {
  background: var(--text-dark);
  border-color: var(--text-dark);
}

/* ═══════════════════════════════════
   ABOUT TITLE
═══════════════════════════════════ */
.about-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 2px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

/* ═══════════════════════════════════
   MENU CARD PHOTOS
═══════════════════════════════════ */
.menu-card-photo {
  width: calc(100% + 36px);
  margin: -20px -18px 14px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  height: 160px;
}
.menu-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.menu-card:hover .menu-card-photo img { transform: scale(1.05); }

/* ═══════════════════════════════════
   GALLERY CARDS
═══════════════════════════════════ */
.gallery-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  transition: transform .3s, box-shadow .3s;
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.25); }
.gallery-card img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s ease; }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 12px;
  opacity: 0; transition: opacity .3s;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff; font-family: 'Bebas Neue', cursive;
  font-size: 1rem; letter-spacing: 2px;
}

@media (max-width: 767px) {
  .event-vertical-slider { max-width: 100%; }
  .event-v-prev { top: -18px; }
  .event-v-next { bottom: -18px; }
}

/* ═══════════════════════════════════
   HERO SLIDER — reduced height fix
═══════════════════════════════════ */
.hero-left {
  max-height: 520px !important;
}
.hero-split {
  min-height: unset !important;
}
.hero-food-img {
  height: 520px !important;
  object-fit: cover;
  object-position: center;
}
.hero-slider,
.hero-slide { max-height: 520px; }

/* ═══════════════════════════════════
   NAVBAR — compact to fit all items
═══════════════════════════════════ */
.navbar-nayarita .nav-link {
  font-size: .82rem !important;
  letter-spacing: 1.2px !important;
  padding: 6px 9px !important;
}
.btn-reserva-grupos {
  font-size: .82rem !important;
  letter-spacing: 1.2px !important;
  padding: 7px 14px !important;
}
.btn-lang {
  font-size: .82rem !important;
  padding: 5px 10px !important;
}

/* ═══════════════════════════════════
   PROMO SLIDER — dark background
═══════════════════════════════════ */
.promo-slider {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 1/1;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}
.promo-slide.active { opacity: 1; }
.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .navbar-nayarita .nav-link {
    font-size: .95rem !important;
    letter-spacing: 1.5px !important;
    padding: 8px 14px !important;
  }
}

/* ═══════════════════════════════════
   FIX: Hero — form not overflowing slider
═══════════════════════════════════ */
.hero-split {
  display: flex !important;
  align-items: stretch !important;
  min-height: unset !important;
}
.hero-left {
  flex: 0 0 55% !important;
  max-width: 55% !important;
  max-height: 520px !important;
  overflow: hidden !important;
}
.hero-right {
  flex: 0 0 45% !important;
  max-width: 45% !important;
  overflow-y: auto;
}
.hero-slider, .hero-slide { height: 520px; max-height: 520px; }
.hero-slide img { height: 520px !important; max-height: 520px; object-fit: cover; }

/* ═══════════════════════════════════
   FIX: Promo slider — less tall
═══════════════════════════════════ */
.promo-slider {
  aspect-ratio: unset !important;
  height: 360px !important;
  max-height: 360px !important;
}
.promo-slide img {
  height: 360px !important;
  object-fit: cover;
}

/* ═══════════════════════════════════
   FIX: Event vertical slider — less tall
═══════════════════════════════════ */
.event-v-slide img {
  max-height: 480px !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 auto;
  display: block;
}
.event-vertical-slider { max-width: 340px !important; }

/* ═══════════════════════════════════
   FIX: Category card buttons — aligned
═══════════════════════════════════ */
.cat-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
.cat-card h5 { flex: 1; display: flex; align-items: center; justify-content: center; text-align: center; margin: 10px 0; }
.cat-btn {
  margin-top: auto !important;
  white-space: nowrap;
}

/* ═══════════════════════════════════
   FIX: Menu button as link
═══════════════════════════════════ */
a.menu-btn {
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
a.menu-btn:hover { color: inherit; opacity: .85; }

/* ═══════════════════════════════════
   FIX: Recommendations — consistent card height
═══════════════════════════════════ */
.rec-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.rec-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  flex-shrink: 0;
}
.rec-body {
  flex: 1;
  padding: 14px 16px;
}
.rec-body h6 {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 2px;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.rec-body p {
  font-size: .85rem;
  color: #555 !important;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 767px) {
  .hero-left, .hero-right { flex: 0 0 100% !important; max-width: 100% !important; }
  .hero-left { max-height: 260px !important; }
  .hero-slide img { height: 260px !important; max-height: 260px; }
}

/* ═══════════════════════════════════
   EVENT SECTION — 2-col desktop layout
═══════════════════════════════════ */
.event-section .container { max-width: 1100px; }

/* Hide side deco elements — no longer needed with 2-col */
.event-deco-l,
.event-deco-r { display: none !important; }

/* Text block aligned left on desktop */
.event-text-block {
  padding: 20px 0 20px 32px;
}
.event-text-block h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 3px;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.event-text-block p {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
}

/* Slider fills column width */
.event-section .event-vertical-slider {
  max-width: 100% !important;
  width: 100%;
}
.event-section .event-v-track {
  width: 100%;
}
.event-section .event-v-slide img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

/* Mobile — stack vertically */
@media (max-width: 767px) {
  .event-text-block { padding: 16px 0 0; }
  .event-section .event-v-slide img { max-height: 380px; }
}

/* ═══════════════════════════════════
   EVENT SLIDER — flechas laterales
═══════════════════════════════════ */
.event-vertical-slider { position: relative; }

.event-v-prev,
.event-v-next {
  position: absolute !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  left: auto !important;
}
.event-v-prev {
  left: -22px !important;
  right: auto !important;
}
.event-v-next {
  right: -22px !important;
  left: auto !important;
}

/* Cambiar símbolo de flecha vertical a horizontal */
.event-v-prev::after { content: '‹'; font-size: 1.6rem; line-height: 1; }
.event-v-next::after { content: '›'; font-size: 1.6rem; line-height: 1; }

/* Ocultar el contenido HTML original de las flechas (↑↓) */
.event-v-prev, .event-v-next { font-size: 0 !important; }
.event-v-prev::after, .event-v-next::after { font-size: 1.6rem !important; }

@media (max-width: 767px) {
  .event-v-prev { left: 4px !important; }
  .event-v-next { right: 4px !important; }
}

/* ═══════════════════════════════════
   I18N — spans bilingües
═══════════════════════════════════ */
.t-en { display: none; }

/* ═══════════════════════════════════
   BLOG DESACTIVADO (reactivar quitando estas reglas)
═══════════════════════════════════ */
.blog-disabled { display: none !important; }
.blog-post-card,
.blog-grid,
#blog-articles { display: none !important; }

/* ═══════════════════════════════════
   TRABAJA CON NOSOTROS — texto justificado
═══════════════════════════════════ */
#trabaja-page .inner-text,
.trabaja-justify .inner-text,
.trabaja-justify p { text-align: justify; text-justify: inter-word; }
.trabaja-justify .valor-card p,
.trabaja-justify .cat-card p { text-align: center; }

/* Cards de posiciones/beneficios — misma altura */
.trabaja-justify .valor-card,
.trabaja-justify .cat-card { height: 100%; }
