/* ============================================
   JUGADOR NRO. 12 — BODEGÓN ARGENTINO
   Paleta oficial Boca Juniors
   Azul:     #023F86 (Pantone 287C)
   Amarillo: #F7A600 (Pantone 7409C)
   ============================================ */

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

:root {
  --azul:       #023F86;
  --azul-dark:  #011E44;
  --azul-mid:   #02306A;
  --amarillo:   #F7A600;
  --oro-light:  #FFD04D;
  --turquesa:   #1C7E9B;
  --turquesa-light: #3EAABF;
  --blanco:     #FFFFFF;
  --crema:      #FFF8E8;
  --negro:      #0A0A0A;
  --gris-sec:   #0f1f3d;
  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body:  'Inter', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --shadow-gold: 0 8px 40px rgba(247,166,0,0.25);
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--azul-dark);
  color: var(--blanco);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   NOISE OVERLAY GLOBAL
   ============================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(1,30,68,0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(247,166,0,0.12);
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(1,30,68,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
  width: 46px; height: 46px;
  filter: drop-shadow(0 0 10px rgba(247,166,0,0.4));
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s;
}
.nav-logo-img:hover {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 0 20px rgba(247,166,0,0.7));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--amarillo);
  border-radius: 2px;
  transition: left 0.3s, right 0.3s;
}
.nav-link:hover { color: var(--amarillo); background: rgba(247,166,0,0.07); }
.nav-link:hover::after { left: 0.75rem; right: 0.75rem; }

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--azul-dark);
  background: linear-gradient(135deg, var(--amarillo), #C47800);
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 16px rgba(247,166,0,0.3);
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247,166,0,0.45);
  filter: brightness(1.08);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(0.8);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(1,30,68,0.75) 0%,
    rgba(2,63,134,0.5) 40%,
    rgba(0,0,0,0.6) 100%
  );
}

.hero-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 60px,
    transparent 60px,
    transparent 120px
  );
}

/* Floating stars in hero */
.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hstar {
  position: absolute;
  color: var(--amarillo);
  opacity: 0;
  animation: floatStar 10s ease-in-out infinite;
}
.hs1 { top: 10%; left: 6%;  font-size: 0.7rem; animation-delay: 0s;   animation-duration: 12s; }
.hs2 { top: 25%; left: 92%; font-size: 1.2rem; animation-delay: 2.5s; animation-duration: 9s; }
.hs3 { top: 65%; left: 5%;  font-size: 1rem;   animation-delay: 5s;   animation-duration: 14s; }
.hs4 { top: 80%; left: 88%; font-size: 0.6rem; animation-delay: 1s;   animation-duration: 11s; }
.hs5 { top: 40%; left: 97%; font-size: 0.8rem; animation-delay: 7s;   animation-duration: 10s; }

@keyframes floatStar {
  0%   { opacity: 0; transform: translateY(10px) scale(0.8); }
  30%  { opacity: 0.55; }
  70%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-25px) scale(1.2); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  max-width: 760px;
  margin: 0 auto;
}

.hero-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--turquesa-light);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeSlideDown 0.8s ease forwards 0.2s;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: logoEntrance 1s cubic-bezier(0.34,1.56,0.64,1) forwards 0.4s;
}
.hero-logo {
  width: clamp(160px, 30vw, 240px);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(247,166,0,0.4)) drop-shadow(0 8px 40px rgba(0,0,0,0.7));
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.4s;
}
.hero-logo:hover {
  transform: scale(1.05) rotate(-1deg);
  filter: drop-shadow(0 0 55px rgba(247,166,0,0.65)) drop-shadow(0 8px 50px rgba(0,0,0,0.8));
}
.hero-logo-glow {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(247,166,0,0.25) 0%, transparent 70%);
  filter: blur(25px);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(1.18); }
}

@keyframes logoEntrance {
  from { opacity: 0; transform: scale(0.6) translateY(30px) rotate(-5deg); }
  to   { opacity: 1; transform: scale(1) translateY(0) rotate(0deg); }
}

.hero-title {
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease forwards 0.9s;
}
.hero-title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.07em;
  color: var(--blanco);
}
.hero-title-line.gold {
  background: linear-gradient(135deg, var(--amarillo) 0%, var(--oro-light) 40%, var(--amarillo) 70%, #C47800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: fadeSlideUp 0.9s ease forwards 0.9s, shimmerText 4s ease-in-out infinite 2s;
  filter: drop-shadow(0 2px 10px rgba(247,166,0,0.3));
}

@keyframes shimmerText {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 540px;
  margin: 1rem auto 2rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards 1.2s;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards 1.4s;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s, filter 0.25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); }

.btn-gold {
  background: linear-gradient(135deg, var(--amarillo), #C47800);
  color: var(--azul-dark);
  box-shadow: 0 6px 20px rgba(247,166,0,0.3);
}
.btn-gold:hover {
  box-shadow: 0 10px 30px rgba(247,166,0,0.5);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--blanco);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--amarillo);
  color: var(--amarillo);
  background: rgba(247,166,0,0.07);
}

.btn-lg { padding: 1rem 2rem; font-size: 0.92rem; }
.btn-xl { padding: 1.1rem 2.4rem; font-size: 1rem; }

/* Scroll chevron */
.hero-scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 2s;
}
.scroll-chevron {
  width: 28px; height: 28px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounceDown 1.6s ease-in-out infinite;
}
@keyframes bounceDown {
  0%,100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50%     { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ============================================
   SECTIONS BASE
   ============================================ */
.section {
  padding: 7rem 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--turquesa-light);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--turquesa-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  color: var(--blanco);
}
.section-title.light { color: var(--blanco); }
.gold { color: var(--amarillo); }

/* Divider star */
.divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 220px;
  margin: 0 0 2rem;
}
.divider.center { margin: 0 auto 2rem; }
.divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--amarillo), transparent);
}
.divider-star {
  color: var(--amarillo);
  font-size: 0.9rem;
  animation: rotateStar 8s linear infinite;
}
@keyframes rotateStar {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

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

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.nosotros-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}
.nosotros-body strong { color: var(--amarillo); font-weight: 600; }

.nosotros-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(247,166,0,0.25);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.badge:hover { background: rgba(247,166,0,0.1); border-color: var(--amarillo); transform: translateY(-2px); }
.badge-icon { font-size: 1rem; }

.nosotros-img-wrap {
  position: relative;
}
.nosotros-img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.4s, transform 0.4s;
}
.nosotros-img:hover { filter: brightness(1); transform: scale(1.01); }

.nosotros-img-frame {
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(247,166,0,0.3);
  border-radius: calc(var(--radius) + 6px);
  pointer-events: none;
  animation: frameGlow 4s ease-in-out infinite;
}
@keyframes frameGlow {
  0%,100% { border-color: rgba(247,166,0,0.2); box-shadow: none; }
  50%     { border-color: rgba(247,166,0,0.5); box-shadow: 0 0 20px rgba(247,166,0,0.1); }
}

.nosotros-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--azul), var(--azul-mid));
  border: 2px solid var(--amarillo);
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 20px rgba(247,166,0,0.2);
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
.float-star { color: var(--amarillo); font-size: 0.9rem; }
.float-num  { font-family: var(--font-display); font-size: 2rem; color: var(--amarillo); line-height: 1; }
.float-text { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.15em; color: rgba(255,255,255,0.6); text-transform: uppercase; }

/* ============================================
   MENU SECTION
   ============================================ */
.menu-sec {
  background: var(--gris-sec);
  text-align: center;
  overflow: hidden;
}

.menu-bg-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 80px,
    transparent 80px,
    transparent 160px
  );
  pointer-events: none;
}

.menu-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.menu-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(247,166,0,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.03);
  transition: box-shadow 0.4s, transform 0.4s;
  max-width: 860px;
  margin: 0 auto;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(247,166,0,0.1);
}

.menu-card-img-wrap {
  position: relative;
  overflow: hidden;
}
.menu-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.6s;
}
.menu-card:hover .menu-card-img { transform: scale(1.05); }
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--gris-sec));
}

.menu-card-body {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.menu-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.menu-card-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--blanco);
}
.menu-card-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ============================================
   HISTORIA
   ============================================ */
.historia {
  background: var(--azul-dark);
  overflow: hidden;
}

.historia-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(247,166,0,0.05) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px,
      transparent 1px, transparent 40px
    );
  pointer-events: none;
}

.historia-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}

.historia-badge-wrap { display: flex; justify-content: center; }
.historia-badge {
  width: 140px; height: 140px;
  background: linear-gradient(135deg, var(--azul), var(--azul-mid));
  border: 3px solid var(--amarillo);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 40px rgba(247,166,0,0.2), inset 0 0 30px rgba(247,166,0,0.05);
  animation: floatBadge 5s ease-in-out infinite;
}
.historia-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--amarillo);
  line-height: 1;
}
.historia-badge-text {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}

.historia-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}

/* ============================================
   GALERÍA
   ============================================ */
.galeria {
  background: var(--gris-sec);
  text-align: center;
}

.galeria-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
}

.galeria-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.galeria-tab {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.galeria-tab.active,
.galeria-tab:hover {
  color: var(--azul-dark);
  background: var(--amarillo);
  border-color: var(--amarillo);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
}
.galeria-item:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 20px rgba(247,166,0,0.15);
  z-index: 1;
}
.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.galeria-item:hover img { transform: scale(1.08); }
.galeria-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1,30,68,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.galeria-item:hover .galeria-item-overlay { opacity: 1; }
.galeria-item-zoom {
  color: var(--amarillo);
  font-size: 1.5rem;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.galeria-item:hover .galeria-item-zoom { transform: translate(-50%, -50%) scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}
.lightbox[hidden] { display: none !important; }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  animation: lbIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--blanco);
  cursor: pointer;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(247,166,0,0.25);
  border-color: var(--amarillo);
  color: var(--amarillo);
  transform: scale(1.1);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover  { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover  { transform: translateY(-50%) scale(1.1); }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   RESERVAS
   ============================================ */
.reservas-sec {
  text-align: center;
  overflow: hidden;
  padding: 6rem 0;
}

.reservas-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--azul-dark), var(--azul-mid));
  overflow: hidden;
}
.reservas-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(247,166,0,0.03) 0px, rgba(247,166,0,0.03) 1px,
    transparent 1px, transparent 50px
  );
}
.reservas-bg::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(247,166,0,0.06) 0%, transparent 60%);
  animation: bgPulse 6s ease-in-out infinite;
}
@keyframes bgPulse {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(1.1); }
}

.reservas-inner {
  position: relative;
  z-index: 1;
}

.reservas-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

/* ============================================
   CONTACTO
   ============================================ */
.contacto { background: var(--azul-dark); }

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.info-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: border-color 0.3s, background 0.3s;
}
.info-block:hover { border-color: rgba(247,166,0,0.3); background: rgba(247,166,0,0.04); }

.info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }

.info-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amarillo);
  margin-bottom: 0.4rem;
}

.info-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-bottom: 0.4rem;
}

.info-link {
  font-size: 0.82rem;
  color: var(--turquesa-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.info-link:hover { color: var(--amarillo); }

.ig-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.ig-link svg { width: 14px; height: 14px; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-wa svg { width: 16px; height: 16px; }
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

.horarios-table { margin-top: 0.2rem; }
.horario-row {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}
.horario-dia {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  min-width: 70px;
}
.horario-hs {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.mapa-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(247,166,0,0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  height: 360px;
  transition: border-color 0.3s;
}
.mapa-wrap:hover { border-color: rgba(247,166,0,0.45); }
.mapa-iframe { width: 100%; height: 100%; display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--negro);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.footer-stripes {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--amarillo), var(--azul));
  background-size: 200% 100%;
  animation: shimmerBar 4s linear infinite;
}
@keyframes shimmerBar {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

.footer-inner { position: relative; z-index: 1; }

.footer-logo-wrap { margin-bottom: 1rem; }
.footer-logo {
  width: 64px; height: 64px;
  filter: drop-shadow(0 0 12px rgba(247,166,0,0.3));
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social-link svg { width: 18px; height: 18px; }
.footer-social-link:hover {
  background: rgba(247,166,0,0.15);
  border-color: var(--amarillo);
  color: var(--amarillo);
  transform: translateY(-3px) scale(1.1);
}

.footer-address {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.08em;
}

/* ============================================
   WA FLOTANTE
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; color: #fff; }
.wa-float:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 36px rgba(37,211,102,0.65);
  animation: none;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50%     { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.15); }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   KEYFRAMES BASE
   ============================================ */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nosotros-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .nosotros-img-wrap { order: -1; }
  .nosotros-badge-float { bottom: -1rem; right: -0.5rem; width: 80px; height: 80px; }
  .float-num { font-size: 1.5rem; }
  .menu-card { grid-template-columns: 1fr; }
  .menu-card-img { min-height: 240px; }
  .menu-card-overlay { background: linear-gradient(to top, var(--gris-sec) 0%, transparent 60%); }
  .menu-card-body { text-align: center; padding: 2rem 1.5rem; }
  .historia-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .historia-badge-wrap { justify-content: center; }
  .contacto-grid { grid-template-columns: 1fr; }
  .mapa-wrap { height: 280px; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(1,30,68,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem;
    gap: 0.2rem;
    border-bottom: 1px solid rgba(247,166,0,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-link, .nav-cta { width: 100%; text-align: center; padding: 0.75rem 1rem; border-radius: 8px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .section { padding: 4.5rem 0; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
}

@media (max-width: 400px) {
  .hero-title-line { font-size: 2.5rem; }
  .galeria-grid { grid-template-columns: 1fr; }
}
