:root{
 --borgona:#6D001A;
  --dorado:#D4AF37;
  --beige:#F5E6C8;
  --oscuro:#1a1a1a;
}

/* Skip Link (Accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--borgona);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 0 0 10px 10px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 100000;
  text-decoration: none;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--dorado);
  outline-offset: 2px;
}

/* Language Toggle */
.lang-toggle {
  background: transparent;
  border: 1.5px solid var(--dorado);
  color: var(--dorado);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  margin-left: 0.5rem;
}
.lang-toggle:hover {
  background: var(--dorado);
  color: var(--oscuro);
}

/* Focus visible for keyboard nav */
*:focus-visible {
  outline: 2px solid var(--dorado);
  outline-offset: 2px;
}

html{
  scroll-behavior:smooth;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

body{
  background: linear-gradient(135deg, var(--beige) 0%, #faf5f0 100%);
  color:var(--oscuro);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(109, 0, 26, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* NAVBAR */
header{
  position:fixed;
  width:100%;
  top:0;
  background: linear-gradient(135deg, var(--borgona) 0%, #4a0012 40%, #3a000e 100%);
  padding:0.9rem 5%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.35s ease,
              padding 0.35s ease,
              box-shadow 0.35s ease;
  border-bottom: 2px solid var(--dorado);
  animation: navFadeIn 0.8s ease-out both;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
}

@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header.scrolled {
  background: linear-gradient(135deg, rgba(109, 0, 26, 0.98) 0%, rgba(55, 0, 12, 0.99) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.55rem 5%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

header.nav-hidden {
  transform: translateY(-100%);
}

header .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

header .logo-img {
  height: 85px;
  width: auto;
  transition: height 0.35s ease, filter 0.35s ease;
  filter: brightness(1.8) drop-shadow(0 0 8px rgba(212,175,55,0.35));
}

header.scrolled .logo-img {
  height: 60px;
}

header h1{
  display: none;
}

header nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

nav a{
  color: rgba(255, 255, 255, 0.88);
  text-decoration:none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.55rem 1.15rem;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav a:not(.btn-app)::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

nav a:not(.btn-app):hover::after {
  width: 80%;
  left: 10%;
}

nav a:hover{
  color: var(--dorado);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

/* Botón Descargar App — Pill Dorado */
nav .btn-app {
  background: linear-gradient(135deg, var(--dorado) 0%, #c9a227 50%, #b8922a 100%);
  color: var(--borgona) !important;
  padding: 0.55rem 1.6rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(212, 175, 55, 0.3);
}

nav .btn-app::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

nav .btn-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45),
              0 0 15px rgba(212, 175, 55, 0.2);
  filter: brightness(1.1);
}

nav .btn-app:hover::before {
  left: 100%;
}

nav .btn-app:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* HERO */
.hero{
  background: linear-gradient(135deg, var(--borgona) 0%, rgba(109, 0, 26, 0.9) 100%);
  color:white;
  padding:9rem 8% 6rem 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Reservas */
.reserva-hero {
  background: linear-gradient(135deg, var(--borgona) 0%, rgba(109,0,26,0.9) 100%);
  color:#fff;
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  position: relative;
  overflow: hidden;
}

.reserva-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(30px); }
}

.reserva-hero h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  animation: slideUp 1s ease-out;
  color: white;
}

.reserva-hero p {
  font-size: 1.2rem;
  animation: slideUp 1s ease-out 0.2s both;
  color: white;
}

/* ===== RESERVA HERO – Premium Collage ===== */
.reserva-hero-premium {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1a0008;
}

.reserva-bg {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
}

.reserva-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.reserva-panel-1 {
  background:
    linear-gradient(135deg, rgba(128,0,32,0.1) 0%, transparent 50%),
    radial-gradient(circle at 30% 40%, #D4AF37 0%, #b8962e 20%, #8a6d1a 40%, #6d001a 70%, #2a000a 100%);
}

.reserva-panel-2 {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 35%, #f5e6c8 0%, #d4c4a0 20%, #a08050 40%, #6d001a 70%, #2a000a 100%);
}

.reserva-panel-3 {
  background:
    linear-gradient(135deg, rgba(212,175,55,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 40%, #c9a227 0%, #a0801a 20%, #705010 40%, #6d001a 70%, #2a000a 100%);
}

.reserva-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26,0,8,0.3) 0%,
    rgba(109,0,26,0.55) 40%,
    rgba(26,0,8,0.75) 100%
  );
  z-index: 1;
}

.reserva-panel-icon {
  font-size: 5rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 25px rgba(0,0,0,0.5));
  animation: cultureFloat 4s ease-in-out infinite;
  opacity: 0.6;
}

.reserva-panel-1 .reserva-panel-icon { animation-delay: 0s; }
.reserva-panel-2 .reserva-panel-icon { animation-delay: 0.8s; }
.reserva-panel-3 .reserva-panel-icon { animation-delay: 1.6s; }

.reserva-panel-label {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.2);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 12px;
}

.reserva-hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: 2rem;
}

.reserva-hero-content::before {
  content: '';
  position: absolute;
  inset: -30px -60px;
  background: rgba(26,0,8,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid rgba(212,175,55,0.15);
  z-index: -1;
  box-shadow: 0 25px 80px rgba(0,0,0,0.4);
}

.reserva-hero-content h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.8rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: slideUp 0.8s ease-out;
}

.reserva-hero-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--dorado), transparent);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.reserva-hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  animation: slideUp 0.8s ease-out 0.2s both;
}

/* Decorative particles for reserva panels */
.reserva-panel-1::after,
.reserva-panel-2::after,
.reserva-panel-3::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(240,230,140,0.4), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(240,230,140,0.3), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(212,175,55,0.35), transparent),
    radial-gradient(1.5px 1.5px at 10% 60%, rgba(240,230,140,0.25), transparent),
    radial-gradient(1px 1px at 90% 50%, rgba(255,255,255,0.2), transparent);
  z-index: 1;
  animation: sparkle 6s ease-in-out infinite;
  pointer-events: none;
}

.reserva-panel-2::after { animation-delay: 2s; }
.reserva-panel-3::after { animation-delay: 4s; }

@media (max-width: 768px) {
  .reserva-hero-premium {
    min-height: 40vh;
  }
  .reserva-hero-content {
    max-width: 65%;
    padding: 1.2rem;
  }
  .reserva-hero-content h2 {
    font-size: 1.4rem;
  }
  .reserva-hero-content p {
    font-size: 0.85rem;
  }
  .reserva-hero-content::before {
    inset: -12px -18px;
    border-radius: 16px;
  }
  .reserva-panel-icon {
    font-size: 2.2rem;
  }
  .reserva-panel-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
  .reserva-hero-content::before {
    inset: -15px -25px;
  }
}

/* ===== VOTACIÓN HERO – Premium Culture Collage ===== */
.votacion-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1a0008;
}

.culture-bg {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
}

.culture-img {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Japan */
.culture-japan {
  background:
    linear-gradient(135deg, rgba(128,0,32,0.1) 0%, transparent 50%),
    radial-gradient(circle at 30% 40%, #ffb7c5 0%, #e88ca5 20%, #c75b7a 40%, #6d001a 70%, #2a000a 100%);
}

/* Mexico */
.culture-mexico {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 35%, #f5c842 0%, #e8a020 20%, #c06014 40%, #6d001a 70%, #2a000a 100%);
}

/* India */
.culture-india {
  background:
    linear-gradient(135deg, rgba(212,175,55,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 40%, #ff9933 0%, #e07020 20%, #a04018 40%, #6d001a 70%, #2a000a 100%);
}

.culture-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26,0,8,0.3) 0%,
    rgba(109,0,26,0.55) 40%,
    rgba(26,0,8,0.75) 100%
  );
  z-index: 1;
}

.culture-icon {
  font-size: 5rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 25px rgba(0,0,0,0.5));
  animation: cultureFloat 4s ease-in-out infinite;
  opacity: 0.6;
}

.culture-japan .culture-icon {
  animation-delay: 0s;
}
.culture-mexico .culture-icon {
  animation-delay: 0.8s;
}
.culture-india .culture-icon {
  animation-delay: 1.6s;
}

@keyframes cultureFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.05); }
}

.culture-label {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.2);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 12px;
}

/* Hero content overlay */
.votacion-hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: 2rem;
}

.votacion-hero-content::before {
  content: '';
  position: absolute;
  inset: -30px -60px;
  background: rgba(26,0,8,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid rgba(212,175,55,0.15);
  z-index: -1;
  box-shadow: 0 25px 80px rgba(0,0,0,0.4);
}

.votacion-hero-content h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.8rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: slideUp 0.8s ease-out;
}

.votacion-hero-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--dorado), transparent);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.votacion-hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  animation: slideUp 0.8s ease-out 0.2s both;
}

/* Decorative particles */
.culture-japan::after,
.culture-mexico::after,
.culture-india::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(240,230,140,0.4), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(240,230,140,0.3), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(212,175,55,0.35), transparent),
    radial-gradient(1.5px 1.5px at 10% 60%, rgba(240,230,140,0.25), transparent),
    radial-gradient(1px 1px at 90% 50%, rgba(255,255,255,0.2), transparent);
  z-index: 1;
  animation: sparkle 6s ease-in-out infinite;
  pointer-events: none;
}

.culture-mexico::after {
  animation-delay: 2s;
}
.culture-india::after {
  animation-delay: 4s;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .votacion-hero {
    min-height: 40vh;
  }
  .votacion-hero-content {
    max-width: 65%;
    padding: 1.2rem;
  }
  .votacion-hero-content h2 {
    font-size: 1.4rem;
  }
  .votacion-hero-content p {
    font-size: 0.85rem;
  }
  .votacion-hero-content::before {
    inset: -12px -18px;
    border-radius: 16px;
  }
  .culture-icon {
    font-size: 2.2rem;
  }
  .culture-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
}

.reserva-form {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reserva-form label {
  display: block;
  font-weight: 500;
  color: var(--borgona);
}

.reserva-form input,
.reserva-form select,
.reserva-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s;
  font-size: 1rem;
}

.reserva-form input:focus,
.reserva-form select:focus,
.reserva-form textarea:focus {
  border-color: var(--dorado);
  outline: none;
}

/* ===== BOTÓN NEÓN PREMIUM ===== */
.reserva-form button {
  align-self: center;
  padding: 1.1rem 3.2rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  background: linear-gradient(135deg, #1a0a10 0%, #2a1018 50%, #1a0a10 100%);
  border: none;
  color: var(--dorado);
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15), 0 0 30px rgba(109, 0, 26, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 240px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  z-index: 1;
  cursor: pointer;
}

/* Elegant gold border glow */
.reserva-form button::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(135deg, var(--dorado), rgba(212, 175, 55, 0.3), var(--dorado));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.reserva-form button::after {
  content: none;
}

/* Text & spinner above the mask */
.reserva-form button span {
  position: relative;
  z-index: 2;
}

.reserva-form button:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.4),
    0 0 50px rgba(212, 175, 55, 0.15),
    0 0 80px rgba(109, 0, 26, 0.12);
  color: #fff;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
}

.reserva-form button:hover::before {
  opacity: 1;
}

.reserva-form button:active {
  transform: translateY(0) scale(0.97);
}

/* Loading state */
.reserva-form button.loading {
  pointer-events: none;
  opacity: 0.85;
  cursor: not-allowed;
}

.reserva-form button.loading::before {
  opacity: 0.5;
}

.reserva-form button.loading .btn-spinner {
  display: inline-block;
}

.btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(212, 175, 55, 0.25);
  border-top-color: var(--dorado);
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
  position: relative;
  z-index: 2;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* estado de envio */
.thankyou {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--beige);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.thankyou.active {
  display: block;
}

/* WhatsApp alternativa en reservar */
.reserva-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: #999;
  font-size: 0.85rem;
}
.reserva-divider::before,
.reserva-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.btn-whatsapp-reserva {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.btn-whatsapp-reserva i {
  font-size: 1.3rem;
}
.btn-whatsapp-reserva:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp-reserva:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .reserva-hero h2 {
    font-size: 1.8rem;
  }
  .reserva-form {
    padding: 1.8rem 1.5rem;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero-text{
  max-width:550px;
  position: relative;
  z-index: 2;
  animation: fadeInLeft 0.9s ease-out;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--dorado);
  margin-bottom: 1rem;
  font-weight: 600;
  opacity: 0.85;
  animation: slideUp 0.7s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-text h2{
  font-size:3.5rem;
  margin-bottom:1rem;
  color: white;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.9s ease-out;
}

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

.hero-text p{
  font-size:1.3rem;
  margin-bottom:2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  animation: slideUp 1s ease-out 0.2s both;
}

.hero-img{
  margin-right: 100px;
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.9s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-img img{
  width:350px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ===== iPHONE MOCKUP – Hero (Premium) ===== */
.iphone-mockup {
  position: relative;
  width: 290px;
  animation: floatImage 4s ease-in-out infinite;
  z-index: 2;
}

/* Ambient glow behind phone */
.iphone-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, rgba(128,0,32,0.12) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%,100% { opacity: .6; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.08); }
}

/* Titanium frame */
.iphone-frame {
  background: linear-gradient(145deg, #2c2c2e 0%, #1c1c1e 50%, #3a3a3c 100%);
  border-radius: 48px;
  padding: 10px;
  position: relative;
  border: 2.5px solid;
  border-image: linear-gradient(160deg, #555, #222 40%, #666 60%, #333) 1;
  border-image: none;
  border-color: #444;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.3),
    0 0 0 1.5px #1a1a1a,
    0 25px 70px rgba(0,0,0,0.55),
    0 8px 25px rgba(0,0,0,0.3);
  overflow: hidden;
}

/* Frame metallic reflection */
.iphone-reflection {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 45%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 55%, transparent 60%);
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 10;
  animation: shineMove 6s ease-in-out infinite;
}

@keyframes shineMove {
  0%,100% { transform: rotate(15deg) translateX(-10px); }
  50% { transform: rotate(15deg) translateX(10px); }
}

/* Dynamic Island */
.iphone-island {
  width: 95px;
  height: 26px;
  background: #000;
  border-radius: 20px;
  margin: 2px auto 6px;
  position: relative;
  z-index: 5;
  box-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.iphone-island::before {
  content: '';
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #1e3a5f 20%, #0a1628 100%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  box-shadow: inset 0 0 2px rgba(100,180,255,0.3);
}

/* Screen container */
.iphone-screen {
  background: linear-gradient(180deg, #600018 0%, var(--borgona) 30%, #4a0012 100%);
  border-radius: 38px;
  overflow: hidden;
  position: relative;
}

/* Subtle screen glass sheen */
.iphone-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

/* Status bar */
.iphone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 22px;
  font-size: .58rem;
  font-weight: 600;
  color: #F0E68C;
  position: relative;
  z-index: 4;
}

.iphone-status-bar .status-icons {
  display: flex;
  gap: 4px;
  font-size: .5rem;
}

/* App header */
.app-header {
  background: linear-gradient(135deg, rgba(128,0,32,0.95) 0%, rgba(80,0,20,0.98) 100%);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(212,175,55,0.25);
  backdrop-filter: blur(8px);
}

.app-header-left,
.app-header-right {
  width: 30px;
  display: flex;
  align-items: center;
  position: relative;
}

.app-header-right {
  justify-content: flex-end;
}

.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #F0E68C;
  color: #800020;
  font-size: .4rem;
  font-weight: 800;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-header-center {
  display: flex;
  align-items: center;
  gap: 5px;
}

.app-logo-icon {
  color: #F0E68C;
  font-size: .7rem;
}

.app-header .app-title {
  font-size: .8rem;
  font-weight: 800;
  color: #F0E68C;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.app-header .app-icon {
  color: #F0E68C;
  font-size: .75rem;
}

/* Featured banner */
.app-featured {
  position: relative;
  height: 68px;
  margin: 6px 8px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3a000e 0%, #600018 50%, #800020 100%);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
}

.app-featured-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(212,175,55,0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(240,230,140,0.08) 0%, transparent 40%);
}

.app-featured-content {
  position: relative;
  z-index: 2;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.featured-badge {
  font-size: .48rem;
  color: #F0E68C;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-title {
  font-size: .85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.featured-price {
  font-size: .72rem;
  color: #F0E68C;
  font-weight: 700;
}

/* Category tabs */
.app-categories {
  display: flex;
  gap: 5px;
  padding: 6px 8px;
  background: rgba(0,0,0,0.12);
  overflow-x: hidden;
}

.app-cat {
  padding: 4px 10px;
  border-radius: 16px;
  font-size: .5rem;
  font-weight: 600;
  white-space: nowrap;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 3px;
  backdrop-filter: blur(4px);
}

.app-cat.active {
  background: linear-gradient(135deg, #F0E68C, #D4AF37);
  color: #800020;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(212,175,55,0.35);
  font-weight: 700;
}

/* Menu items */
.app-menu-list {
  padding: 2px 0;
}

.app-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(240,230,140,0.06);
  position: relative;
}

.app-menu-item:last-child {
  border-bottom: none;
}

.app-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(240,230,140,0.1) 0%, rgba(212,175,55,0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(240,230,140,0.1);
}

.app-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.app-item-info .item-name {
  font-size: .68rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
}

.app-item-info .item-stars {
  display: flex;
  gap: 1px;
  font-size: .4rem;
  color: #F0E68C;
}

.app-item-info .item-desc {
  font-size: .5rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-item-info .item-price {
  font-size: .65rem;
  color: #F0E68C;
  font-weight: 700;
}

.app-item-cart {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F0E68C 0%, #C9A227 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #800020;
  font-size: .55rem;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(212,175,55,0.3);
  border: none;
}

/* Bottom nav */
.app-bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 0 10px;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(240,230,140,0.12);
  backdrop-filter: blur(10px);
}

.app-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: .4rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
}

.app-bottom-nav .nav-item i {
  font-size: .65rem;
}

.app-bottom-nav .nav-item.active {
  color: #F0E68C;
}

.app-bottom-nav .nav-item.active i {
  filter: drop-shadow(0 0 4px rgba(240,230,140,0.5));
}

/* Home bar */
.iphone-home-bar {
  width: 100px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
  margin: 5px auto 3px;
}

/* Side buttons – titanium */
.iphone-frame::before {
  content: '';
  position: absolute;
  right: -5px;
  top: 110px;
  width: 3px;
  height: 45px;
  background: linear-gradient(180deg, #555, #333, #555);
  border-radius: 0 3px 3px 0;
}

.iphone-frame::after {
  content: '';
  position: absolute;
  left: -5px;
  top: 85px;
  width: 3px;
  height: 24px;
  background: linear-gradient(180deg, #555, #333, #555);
  border-radius: 3px 0 0 3px;
  box-shadow: 0 30px 0 0 #444, 0 50px 0 0 #444;
}

.hero h2{
  color:white;
  text-align:left;
}

/* BOTÓN RESERVAR */
.btn{
  background: linear-gradient(135deg, var(--dorado) 0%, #e5c158 100%);
  color:black;
  padding:1rem 2.5rem;
  border-radius:50px;
  text-decoration:none;
  font-weight:bold;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-block;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.5px;
  animation: slideUp 1.1s ease-out 0.4s both;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: left 0.5s ease;
  z-index: 1;
}

.btn::after {
  content: none;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover{
  background: linear-gradient(135deg, white 0%, #f5f5f5 100%);
  color: var(--borgona);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
  border-color: var(--dorado);
}

.btn:active {
  transform: translateY(0) scale(0.97);
}

.hero-img img{
  width:350px;
}

/* SECCIONES */
section{
  padding:6rem 8%;
  position: relative;
  z-index: 2;
}

section h2{
  text-align:center;
  margin-bottom:3rem;
  font-size:2.8rem;
  font-family: 'Playfair Display', serif;
  color:var(--borgona);
  position: relative;
  font-weight: 800;
  letter-spacing: -1px;
  animation: slideUp 0.8s ease-out;
}

section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--dorado), transparent);
  margin: 1rem auto 0;
  border-radius: 2px;
  animation: expandWidth 0.8s ease-out 0.3s both;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2.5rem;
  color: #111;
}

.color-negro{
  color: #111;
}

.card{
  background:white;
  padding:2.5rem 2rem;
  border-radius:20px;
  text-align:center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  animation: scaleUp 0.8s ease-out both;
}

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

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.card i{
  font-size:2.6rem;
  color:var(--dorado);
  margin-bottom:1rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.card-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(109, 0, 26, 0.06) 0%, rgba(212, 175, 55, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.card-icon-wrap i {
  font-size: 1.8rem;
  color: var(--dorado);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-icon-wrap {
  background: linear-gradient(135deg, var(--dorado) 0%, #e5c158 100%);
  border-color: var(--dorado);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.card:hover .card-icon-wrap i {
  color: var(--borgona);
  transform: scale(1.1);
}

.card h3 {
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  color: var(--oscuro);
  transition: color 0.4s ease;
}

.card p {
  color: #666;
  line-height: 1.6;
  transition: color 0.4s ease;
}

.card:hover{
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
  border-color: var(--dorado);
}

.card:hover::before {
  opacity: 1;
}

/* SECCION OSCURA */
.dark-section{
  background: linear-gradient(135deg, var(--borgona) 0%, rgba(109, 0, 26, 0.95) 100%);
  color:white;
  text-align:center;
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.dark-section h2{
  color:white;
  position: relative;
  z-index: 2;
}

.dark-section > p {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.dark-section .cards{
  margin-top:3rem;
  position: relative;
  z-index: 2;
}

.dark-section .card{
  background: linear-gradient(135deg, var(--beige) 0%, rgba(245, 230, 200, 0.95) 100%);
  color:var(--oscuro);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.dark-section .card h3 {
  color: var(--borgona);
}

.dark-section .card i{
  color:var(--borgona);
}

.dark-section .card-icon-wrap {
  background: linear-gradient(135deg, rgba(109, 0, 26, 0.08) 0%, rgba(212, 175, 55, 0.12) 100%);
  border-color: rgba(109, 0, 26, 0.15);
}

.dark-section .card-icon-wrap i {
  color: var(--borgona);
}

.dark-section .card:hover .card-icon-wrap {
  background: linear-gradient(135deg, var(--borgona) 0%, #8a0020 100%);
}

.dark-section .card:hover .card-icon-wrap i {
  color: var(--dorado);
}

/* CONTACTO */
#contact{
  text-align:center;
  background: linear-gradient(135deg, var(--beige) 0%, #faf5f0 100%);
  position: relative;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #888;
  font-style: italic;
  margin-top: -2rem;
  margin-bottom: 2.5rem;
  animation: slideUp 0.8s ease-out 0.15s both;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.contact-item {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideUp 0.8s ease-out 0.2s both;
}

.contact-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
  border-color: var(--dorado);
}

.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--borgona) 0%, #8a0020 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.4s ease;
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--dorado);
}

.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, var(--dorado) 0%, #e5c158 100%);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.contact-item:hover .contact-icon i {
  color: var(--borgona);
}

.contact-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--borgona);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0.15rem 0;
}

.contact-item a {
  color: var(--borgona);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

#contact > p {
  animation: slideUp 0.8s ease-out 0.1s both;
}

#contact h2 {
  animation: slideUp 0.8s ease-out;
}

#contact h3 {
  animation: slideUp 0.8s ease-out 0.1s both;
}

/* ===== SECCION VOTACIONES — MODERN ===== */
.voting-section {
  padding: 5rem 5%;
  background: linear-gradient(180deg, var(--beige) 0%, #faf5f0 50%, var(--beige) 100%);
  position: relative;
  z-index: 2;
}

.voting-header {
  text-align: center;
  margin-bottom: 3rem;
}

.voting-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(109, 0, 26, 0.08);
  color: var(--borgona);
  padding: 0.45rem 1.4rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(109, 0, 26, 0.15);
  margin-bottom: 1.2rem;
}

.voting-badge i {
  color: #ff6b35;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.voting-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--oscuro);
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

.voting-subtitle {
  color: #666;
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Stats Bar */
.voting-stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 1.2rem 2rem;
  background: white;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.voting-total-wrap,
.voting-leader-wrap,
.voting-status-wrap {
  text-align: center;
}

.voting-total-label,
.voting-leader-label,
.voting-status-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.3rem;
}

.voting-total-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--oscuro);
  font-family: 'Playfair Display', serif;
}

.voting-leader-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dorado);
}

.voting-status-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.voting-status-val.voted {
  color: #16a34a;
}

.voting-status-val i {
  font-size: 0.7rem;
}

/* Voting Grid */
.voting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1000px;
  margin: 0 auto;
}

.vote-option {
  position: relative;
  border-radius: 24px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s ease;
}

.vote-option-glow {
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(109, 0, 26, 0.2));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.vote-option:hover .vote-option-glow {
  opacity: 1;
}

.vote-option-inner {
  position: relative;
  z-index: 1;
  background: white;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 24px;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.vote-option:hover .vote-option-inner {
  border-color: rgba(212, 175, 55, 0.4);
}

.vote-option-flag {
  margin-bottom: 1rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.vote-option-flag img {
  width: 80px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  display: block;
}

.vote-option:hover .vote-option-flag {
  transform: scale(1.15) rotate(-5deg);
}

.vote-option-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--oscuro);
  margin-bottom: 0.6rem;
}

.vote-option-desc {
  color: #777;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

/* Progress */
.vote-progress-wrap {
  margin-bottom: 1.5rem;
}

.vote-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.vote-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--borgona), var(--dorado));
  border-radius: 10px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.vote-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vote-pct {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dorado);
  font-family: 'Playfair Display', serif;
}

.vote-num {
  font-size: 0.75rem;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA action area */
.vote-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vote-action-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dorado);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.vote-action i {
  color: var(--dorado);
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.vote-option:hover .vote-action {
  background: linear-gradient(135deg, var(--dorado) 0%, #c9a227 100%);
  border-color: var(--dorado);
}

.vote-option:hover .vote-action-text {
  color: var(--borgona);
}

.vote-option:hover .vote-action i {
  color: var(--borgona);
  transform: translateX(4px);
}

.vote-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

/* Confirming animation */
.vote-option.vote-confirming .vote-option-inner {
  animation: confirmPop 0.6s ease;
}

@keyframes confirmPop {
  0% { transform: scale(1); }
  30% { transform: scale(0.96); }
  60% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Selected state */
.vote-option.vote-selected .vote-option-inner {
  border-color: var(--dorado);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.vote-option.vote-selected .vote-action {
  background: linear-gradient(135deg, var(--dorado) 0%, #c9a227 100%);
  border-color: var(--dorado);
}

.vote-option.vote-selected .vote-action-text::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 0.4rem;
}

.vote-option.vote-selected .vote-action-text {
  color: var(--borgona);
}

.vote-option.vote-selected .vote-action i {
  display: none;
}

/* Locked state (already voted) */
.vote-option.vote-locked {
  cursor: default;
}

.vote-option.vote-locked:not(.vote-selected) {
  opacity: 0.5;
}

.vote-option.vote-locked:hover {
  transform: none;
  box-shadow: none;
}

.vote-option.vote-locked:hover .vote-option-glow {
  opacity: 0;
}

.vote-option.vote-locked:not(.vote-selected):hover .vote-action {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.2);
}

.vote-option.vote-locked:not(.vote-selected):hover .vote-action-text {
  color: var(--dorado);
}

.vote-option.vote-locked:hover .vote-option-flag {
  transform: none;
}

.vote-option.vote-locked:hover .vote-option-inner {
  border-color: rgba(212, 175, 55, 0.12);
}

/* Footer note */
.voting-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  color: #aaa;
  font-size: 0.78rem;
}

.voting-footer-note i {
  color: var(--dorado);
  opacity: 0.5;
}

/* Toast notification */
.vote-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: white;
  color: var(--oscuro);
  padding: 1rem 2rem;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}

.vote-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.vote-toast i {
  color: #16a34a;
}

/* Responsive Voting */
@media (max-width: 768px) {
  .voting-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .voting-title {
    font-size: 1.8rem;
  }

  .voting-subtitle {
    font-size: 0.9rem;
  }

  .voting-stats-bar {
    gap: 1.5rem;
    padding: 1rem 1.2rem;
    flex-wrap: wrap;
  }

  .vote-option-inner {
    padding: 2rem 1.5rem 1.5rem;
  }

  .vote-option-flag img {
    width: 60px;
  }

  .vote-option-name {
    font-size: 1.3rem;
  }

  .vote-toast {
    width: 90%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .voting-section {
    padding: 3rem 4%;
  }

  .voting-title {
    font-size: 1.5rem;
  }

  .voting-stats-bar {
    gap: 1rem;
  }

  .voting-total-num {
    font-size: 1.4rem;
  }
}

.instagram-btn{
  display:inline-block;
  margin-top:2rem;
  background: linear-gradient(135deg, var(--borgona) 0%, rgba(109, 0, 26, 0.9) 100%);
  color:white;
  padding:1rem 2.5rem;
  border-radius:50px;
  text-decoration:none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-weight: bold;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(109, 0, 26, 0.3);
  animation: slideUp 0.8s ease-out 0.2s both;
}

.instagram-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.instagram-btn:hover{
  background: linear-gradient(135deg, var(--dorado) 0%, #e5c158 100%);
  color:black;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}

.instagram-btn:hover::before {
  left: 100%;
}

#map{
  margin-top:3rem;
  border-radius:20px;
  overflow:hidden;
  border:3px solid var(--dorado);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
  animation: slideUp 0.8s ease-out 0.3s both;
  transition: transform 0.4s ease;
}

#map:hover {
  transform: scale(1.02);
}

#map iframe{
  width:100%;
  height:400px;
  border:0;
}

/* FOOTER */
footer{
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color:white;
  text-align:center;
  padding:3.5rem 2rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  height: 90px;
  width: auto;
  filter: brightness(1.6) drop-shadow(0 0 4px rgba(212,175,55,0.3));
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--dorado);
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
  margin: 0 auto 1.2rem;
}

footer a {
  color: var(--dorado);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

footer p {
  margin: 0.5rem 0;
}

/* ANIMACIONES */
.reveal{
  opacity:0;
  transform:translateY(60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* Animaciones de entrada suave */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Efecto glow premium */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  }
}

/* Ripple effect */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}



/* Hamburger button — hidden on desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  width: 28px;
  height: 22px;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--dorado);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

.menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Overlay behind mobile menu */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* ========== RESPONSIVE MOBILE ========== */
@media (max-width: 768px) {

  /* HEADER */
  header {
    padding: 0.7rem 4%;
    background: linear-gradient(135deg, var(--borgona) 0%, #3a000e 100%);
  }

  header.scrolled {
    padding: 0.5rem 4%;
  }

  header .logo-link {
    z-index: 1001;
  }

  header .logo-img {
    height: 70px;
  }

  header.scrolled .logo-img {
    height: 52px;
  }

  .menu-toggle {
    display: block;
  }

  /* NAV LATERAL */
  header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78vw;
    max-width: 340px;
    height: 100vh;
    background: linear-gradient(180deg, var(--borgona) 0%, #2a000a 60%, #1a0006 100%);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 50px rgba(0,0,0,0.6);
    z-index: 999;
    display: flex;
    align-items: stretch;
    gap: 0;
    border-left: 2px solid rgba(212, 175, 55, 0.25);
    overflow-y: auto;
  }

  header nav.open {
    right: 0;
  }

  header nav a {
    margin: 0;
    padding: 1.1rem 0.8rem;
    font-size: 0.92rem !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    text-align: left;
    letter-spacing: 2.5px;
    width: 100%;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s ease, padding-left 0.3s ease, background 0.3s ease;
  }

  header nav a:not(.btn-app)::after {
    display: none;
  }

  header nav a:hover {
    color: var(--dorado);
    padding-left: 1.3rem;
    background: rgba(212, 175, 55, 0.06);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }

  header nav .btn-app {
    margin: 2rem 0 0;
    justify-content: center;
    border-bottom: none;
    align-self: center;
    width: auto;
    font-size: 0.82rem !important;
    padding: 0.65rem 1.8rem;
    text-align: center;
    margin-left: 0 !important;
    border-radius: 50px;
  }

  header nav .lang-toggle {
    margin: 1rem auto 0;
    align-self: center;
    font-size: 0.75rem;
    padding: 0.4rem 1.2rem;
  }

  /* HERO */
  .hero {
    padding: 5.5rem 5% 3rem 5%;
    min-height: auto;
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h2 {
    font-size: 1.8rem;
    text-align: center;
    -webkit-text-fill-color: white;
  }

  .hero-text p {
    font-size: 1rem;
    text-align: center;
  }

  .hero h2 {
    text-align: center;
  }

  .hero-img {
    margin-right: 0;
    margin-top: 2rem;
    text-align: center;
  }

  .hero-img img {
    width: 200px;
  }

  .iphone-mockup {
    width: 230px;
  }

  .iphone-glow {
    width: 260px;
    height: 260px;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .iphone-frame {
    border-radius: 38px;
    padding: 8px;
  }

  .iphone-screen {
    border-radius: 30px;
  }

  .app-featured {
    height: 55px;
    margin: 4px 6px;
  }

  .featured-title {
    font-size: .72rem;
  }

  /* SECCIONES */
  section {
    padding: 3rem 5%;
  }

  section h2 {
    font-size: 1.7rem;
  }

  .dark-section > p {
    font-size: 0.95rem;
  }

  /* CARDS */
  .cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    padding: 1.8rem 1.3rem;
  }

  .card i {
    font-size: 2.2rem;
  }

  .card-icon-wrap {
    width: 60px;
    height: 60px;
  }

  .card-icon-wrap i {
    font-size: 1.5rem;
  }

  /* BOTÓN */
  .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }

  /* CONTACTO */
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .contact-item {
    padding: 1.5rem 1rem;
  }

  .contact-item h3 {
    font-size: 0.95rem;
  }

  .contact-item p {
    font-size: 0.82rem;
  }

  #contact p {
    font-size: 0.95rem;
  }

  #map iframe {
    height: 250px;
  }

  .instagram-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }

  /* RESERVA */
  .reserva-hero {
    min-height: 40vh;
    padding: 5rem 5% 2rem;
  }

  .reserva-hero h2 {
    font-size: 1.8rem;
  }

  .reserva-hero p {
    font-size: 1rem;
  }

  .reserva-form {
    padding: 1.8rem 1.5rem;
    border-radius: 15px;
  }

  /* FOOTER */
  footer {
    font-size: 0.8rem;
    padding: 2rem 1rem;
  }

  /* MENÚ PAGE MOBILE */
  .menu-hero {
    min-height: 38vh;
    padding: 5rem 5% 2.5rem;
  }

  .menu-hero::after {
    height: 40px;
  }

  .menu-hero-ornament {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .menu-hero-subtitle {
    font-size: 0.65rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
  }

  .menu-hero-flag {
    font-size: 2.5rem;
  }

  .menu-hero h2 {
    font-size: 1.8rem;
  }

  .menu-hero p {
    font-size: 0.9rem;
  }

  .menu-hero-divider span {
    width: 35px;
  }

  .menu-hero-divider i {
    font-size: 0.7rem;
  }

  .menu-filters {
    padding: 0.6rem 4%;
    gap: 0.5rem;
    top: 68px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .menu-filters::-webkit-scrollbar {
    display: none;
  }

  .menu-filter-btn {
    padding: 0.4rem 0.85rem;
    font-size: 0.65rem;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.5px;
  }

  .menu-section {
    padding: 3rem 4% 2rem;
  }

  .menu-section::before {
    height: 25px;
  }

  .menu-section-header {
    margin-bottom: 1.8rem;
  }

  .menu-section-number {
    font-size: 2.5rem;
    top: -1rem;
  }

  .menu-section-header i {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .menu-section-header h2 {
    font-size: 1.5rem;
  }

  .menu-section-header p {
    font-size: 0.82rem;
  }

  .section-divider {
    margin-top: 0.8rem;
  }

  .section-divider span {
    width: 20px;
  }

  .section-divider span:first-child {
    width: 35px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }

  /* Featured item: stack vertically on mobile */
  .menu-item.featured {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
  }

  .menu-item.featured .menu-item-img {
    height: 180px;
    min-height: 160px;
    max-height: 220px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    aspect-ratio: auto;
  }

  .menu-item.featured .menu-item-info {
    padding: 1.2rem 1.2rem 1.3rem;
  }

  .menu-item.featured .menu-item-info::before {
    display: block;
    left: 1.2rem;
    right: 1.2rem;
  }

  .menu-item.featured .menu-item-top {
    flex-direction: row;
    align-items: center;
  }

  .menu-item.featured .menu-item-top h3 {
    font-size: 1.05rem;
  }

  .menu-item.featured .menu-item-price {
    font-size: 1.1rem;
  }

  .menu-item.featured .menu-item-info p {
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Regular items: horizontal layout */
  .menu-item:not(.featured) {
    display: flex;
    flex-direction: row;
    border-radius: 14px;
  }

  .menu-item:not(.featured) .menu-item-img {
    width: 80px;
    min-width: 80px;
    height: 80px;
    min-height: 80px;
    max-height: 90px;
    border-radius: 14px 0 0 14px;
    overflow: hidden;
    aspect-ratio: 1/1;
  }

  .menu-item:not(.featured) .menu-item-img::after {
    display: none;
  }

  .menu-item:not(.featured) .menu-item-price {
    position: static;
    color: var(--dorado);
    font-size: 0.9rem;
    text-shadow: none;
    display: inline;
  }

  .menu-item-tag {
    top: 6px;
    left: 6px;
    padding: 0.15rem 0.45rem;
    font-size: 0.5rem;
    letter-spacing: 0.8px;
  }

  .menu-item-info {
    padding: 0.5rem 0.7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
  }

  .menu-item-info::before {
    display: none;
  }

  .menu-item-dots {
    display: none;
  }

  .menu-item-top {
    gap: 0.5rem;
    margin-bottom: 0.25rem;
  }

  .menu-item-top h3 {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .menu-item-info p {
    font-size: 0.73rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .menu-cta {
    padding: 3rem 5%;
  }

  .menu-cta-ornament {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .menu-cta h2 {
    font-size: 1.4rem;
  }

  .menu-cta p {
    font-size: 0.88rem;
  }
}

/* ========== TABLET (481px – 768px) ========== */
@media (min-width: 481px) and (max-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .menu-item.featured {
    grid-column: 1 / -1;
  }

  .menu-item.featured .menu-item-img {
    height: 200px;
    min-height: 180px;
    max-height: 240px;
  }

  .menu-item:not(.featured) {
    flex-direction: column;
  }

  .menu-item:not(.featured) .menu-item-img {
    width: 100%;
    min-width: 100%;
    height: 140px;
    min-height: 120px;
    max-height: 160px;
    border-radius: 14px 14px 0 0;
    aspect-ratio: auto;
  }

  .menu-item:not(.featured) .menu-item-img::after {
    display: block;
  }

  .menu-filters {
    top: 68px;
  }
}

/* ========== SMALL MOBILE (≤480px) ========== */
@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .menu-hero h2 {
    font-size: 1.5rem;
  }

  .menu-hero p {
    font-size: 0.82rem;
  }

  .menu-section {
    padding: 2.5rem 3% 1.5rem;
  }

  .menu-section-header h2 {
    font-size: 1.3rem;
  }

  .menu-item.featured .menu-item-img {
    height: 150px;
    min-height: 130px;
    max-height: 180px;
  }

  .menu-item:not(.featured) .menu-item-img {
    width: 70px;
    min-width: 70px;
    height: 70px;
    min-height: 70px;
    max-height: 80px;
  }

  .menu-item-top h3 {
    font-size: 0.82rem;
  }

  .menu-item-info p {
    font-size: 0.7rem;
  }

  /* Contact: single column on small mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

/* ===================================================================
   PÁGINA DE MENÚ - TEMPORADA ITALIANA (PREMIUM)
   =================================================================== */

/* HERO */
.menu-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 8% 5rem;
  background: linear-gradient(160deg, #0a0a0a 0%, var(--borgona) 35%, #3d0011 60%, #0a0a0a 100%);
  overflow: hidden;
}

.menu-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(212, 175, 55, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(109, 0, 26, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.menu-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--beige), transparent);
  pointer-events: none;
  z-index: 1;
}

.menu-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(212,175,55,0.4), transparent),
    radial-gradient(1px 1px at 30% 70%, rgba(212,175,55,0.3), transparent),
    radial-gradient(1.5px 1.5px at 50% 30%, rgba(212,175,55,0.5), transparent),
    radial-gradient(1px 1px at 70% 80%, rgba(212,175,55,0.3), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(212,175,55,0.4), transparent),
    radial-gradient(1.5px 1.5px at 15% 90%, rgba(212,175,55,0.3), transparent),
    radial-gradient(1px 1px at 85% 15%, rgba(212,175,55,0.4), transparent);
  animation: sparkle 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes sparkle {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

.menu-hero-content {
  position: relative;
  z-index: 2;
}

.menu-hero-ornament {
  color: var(--dorado);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
}

.menu-hero-subtitle {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--dorado);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.menu-hero-flag {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.3));
}
.menu-hero-flag-img {
  width: 64px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.menu-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--dorado) 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s ease-in-out infinite;
  letter-spacing: 2px;
  text-shadow: none;
}

@keyframes shimmerText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.menu-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto;
  font-style: italic;
}

.menu-hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.menu-hero-divider span {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
}

.menu-hero-divider i {
  color: var(--dorado);
  font-size: 0.9rem;
  opacity: 0.7;
}

.menu-hero-tagline {
  font-size: 0.78rem;
  color: rgba(212, 175, 55, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 1.2rem;
  font-style: normal !important;
}

.menu-hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(212, 175, 55, 0.5);
  z-index: 2;
  animation: bounceDown 2s ease-in-out infinite;
}

.menu-hero-scroll-hint span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.menu-hero-scroll-hint i {
  font-size: 0.8rem;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* FILTROS */
.menu-filters {
  position: sticky;
  top: 72px;
  z-index: 100;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1rem 8%;
  background: rgba(250, 245, 240, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.menu-filter-btn {
  padding: 0.55rem 1.4rem;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  background: transparent;
  color: var(--borgona);
  font-weight: 600;
  font-size: 0.75rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-filter-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--dorado);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.menu-filter-btn.active {
  background: linear-gradient(135deg, var(--dorado) 0%, #c9a032 100%);
  color: #1a1a1a;
  border-color: var(--dorado);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  font-weight: 700;
}

/* SECCIONES DEL MENÚ */
.menu-section {
  padding: 5rem 8% 4rem;
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--dorado));
  opacity: 0.3;
}

.menu-section:first-of-type::before {
  display: none;
}

.menu-section.dark-section {
  background: linear-gradient(160deg, #0d0d0d 0%, #141414 50%, #0d0d0d 100%);
}

.menu-section.dark-section::before {
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.5));
}

.menu-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.menu-section-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.06);
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
  letter-spacing: 4px;
}

.menu-section.dark-section .menu-section-number {
  color: rgba(212, 175, 55, 0.04);
}

.menu-section-header i {
  font-size: 1.4rem;
  color: var(--dorado);
  margin-bottom: 0.8rem;
  display: block;
  opacity: 0.7;
}

.menu-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--borgona);
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.menu-section.dark-section .menu-section-header h2 {
  color: var(--dorado);
}

.menu-section-header p {
  font-size: 0.95rem;
  color: #999;
  font-style: italic;
  letter-spacing: 0.5px;
}

.menu-section.dark-section .menu-section-header p {
  color: rgba(255,255,255,0.4);
}

.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.section-divider span {
  width: 35px;
  height: 1px;
  background: var(--dorado);
  opacity: 0.35;
}

.section-divider span:first-child {
  width: 55px;
  opacity: 0.6;
}

/* GRID DE PLATILLOS */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* TARJETA DE PLATILLO - DISEÑO PREMIUM OVERLAY */
.menu-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 35px rgba(0,0,0,0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.06);
  position: relative;
}

.menu-item:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(212,175,55,0.15);
}

.menu-section.dark-section .menu-item {
  background: rgba(255,255,255,0.025);
  border-color: rgba(212, 175, 55, 0.06);
  box-shadow: 0 8px 35px rgba(0,0,0,0.3);
}

.menu-section.dark-section .menu-item:hover {
  background: rgba(255,255,255,0.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.06);
}

/* IMAGEN DEL PLATILLO */
.menu-item-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.menu-item-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  pointer-events: none;
  z-index: 1;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.menu-item:hover .menu-item-img img {
  transform: scale(1.12);
}

.menu-item-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  color: var(--dorado);
  padding: 0.35rem 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 3;
  border: 1px solid rgba(212,175,55,0.25);
}

.menu-item-tag.vegetariano {
  color: #5dde8a;
  border-color: rgba(93,222,138,0.25);
}

/* PRECIO FLOTANTE EN LA IMAGEN */
.menu-item-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  font-family: 'Playfair Display', serif;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  letter-spacing: 0.5px;
}

/* INFO DEL PLATILLO */
.menu-item-info {
  padding: 1.3rem 1.6rem 1.5rem;
  position: relative;
}

.menu-item-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.6rem;
  right: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.menu-item-top h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--borgona);
  font-weight: 700;
  line-height: 1.3;
}

.menu-section.dark-section .menu-item-top h3 {
  color: var(--beige);
}

.menu-item-info .menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(212,175,55,0.3);
  margin: 0 0.8rem;
  min-width: 20px;
  align-self: flex-end;
  margin-bottom: 4px;
}

.menu-item-info p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

.menu-section.dark-section .menu-item-info p {
  color: rgba(255,255,255,0.45);
}

/* FEATURED ITEM (primer item de cada sección) */
.menu-item.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: 22px;
}

.menu-item.featured .menu-item-img {
  height: 100%;
  min-height: 300px;
  border-radius: 22px 0 0 22px;
}

.menu-item.featured .menu-item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2.2rem;
}

.menu-item.featured .menu-item-info::before {
  display: none;
}

.menu-item.featured .menu-item-top h3 {
  font-size: 1.5rem;
}

.menu-item.featured .menu-item-price {
  position: static;
  color: var(--dorado);
  font-size: 1.4rem;
  text-shadow: none;
  margin-top: 0.3rem;
  display: block;
}

.menu-item.featured .menu-item-info p {
  font-size: 0.95rem;
  margin-top: 0.8rem;
  line-height: 1.7;
}

.menu-item.featured .menu-item-top {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* CTA SECTION */
.menu-cta {
  text-align: center;
  padding: 6rem 8%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--borgona) 0%, #4a0012 50%, #2a0010 100%);
}

.menu-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
}

.menu-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.menu-cta-ornament {
  color: var(--dorado);
  font-size: 1.8rem;
  opacity: 0.5;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.menu-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--dorado);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.menu-cta-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.menu-cta-divider span {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
}

.menu-cta-divider i {
  color: var(--dorado);
  font-size: 0.7rem;
  opacity: 0.5;
}

.menu-cta p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  font-style: italic;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.menu-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--dorado) 0%, #c9a032 100%);
  color: var(--borgona);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.menu-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #e0be40 0%, var(--dorado) 100%);
}

/* ==================== NEW MENU DESIGN — PREMIUM ==================== */

/* TABS NAVIGATION */
.menu-tabs {
  position: sticky;
  top: 72px;
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--borgona) 0%, #520014 60%, #3d0011 100%);
  border-bottom: 2px solid var(--dorado);
  box-shadow: 0 6px 25px rgba(109, 0, 26, 0.25), inset 0 -1px 0 rgba(212, 175, 55, 0.1);
}

.menu-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.menu-tab i {
  font-size: 0.7rem;
  opacity: 0.6;
  transition: all 0.3s;
}

.menu-tab:hover {
  color: var(--dorado);
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-1px);
}

.menu-tab.active {
  color: var(--borgona);
  background: linear-gradient(135deg, var(--dorado) 0%, #c9a032 100%);
  border-color: var(--dorado);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.menu-tab.active i {
  opacity: 1;
}

/* MAIN CONTENT */
.menu-main {
  max-width: 1060px;
  margin: 0 auto;
  padding: 4rem 3rem 2rem;
  background: transparent;
  position: relative;
}

.menu-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 10%, rgba(109, 0, 26, 0.03) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 90%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* CATEGORY SECTION */
.menu-cat-section {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.menu-cat-header {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  margin-bottom: 2.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(109, 0, 26, 0.1);
  position: relative;
}

.menu-cat-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--dorado), rgba(212, 175, 55, 0.2));
  border-radius: 2px;
}

.menu-cat-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(109,0,26,0.15) 0%, rgba(109,0,26,0.03) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: 2px;
}

.menu-cat-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--borgona);
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
}

.menu-cat-header p {
  font-size: 0.9rem;
  color: rgba(109, 0, 26, 0.4);
  font-style: italic;
  margin: 0.3rem 0 0;
  letter-spacing: 0.3px;
}

/* DIVIDER BETWEEN CATEGORIES */
.menu-cat-divider {
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
  margin: 4rem auto;
  opacity: 0.35;
  position: relative;
  z-index: 1;
}

.menu-cat-divider::before {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--dorado);
  font-size: 0.55rem;
  opacity: 0.6;
  background: var(--beige);
  padding: 0 1rem;
}

/* FEATURED DISH (hero card) — LUXURY */
.menu-dish-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.15);
  margin-bottom: 2.2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(109, 0, 26, 0.08), 0 2px 10px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
}

.menu-dish-hero::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent 40%, transparent 60%, rgba(109, 0, 26, 0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.menu-dish-hero:hover::before {
  opacity: 1;
}

.menu-dish-hero:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(109, 0, 26, 0.12), 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: rgba(212, 175, 55, 0.25);
}

.menu-dish-hero-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.menu-dish-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(255, 255, 255, 0.2) 100%),
              linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
  z-index: 1;
}

.menu-dish-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-dish-hero:hover .menu-dish-hero-img img {
  transform: scale(1.1);
}

.menu-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, var(--borgona) 0%, #4a0012 100%);
  color: var(--dorado);
  padding: 0.4rem 1.2rem;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  z-index: 2;
  box-shadow: 0 4px 18px rgba(109, 0, 26, 0.35);
}

.menu-badge.chef {
  background: linear-gradient(135deg, var(--dorado) 0%, #b8960f 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.menu-dish-hero-info {
  padding: 2.8rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #fff 0%, #fdfaf5 100%);
}

.menu-dish-hero-info::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--dorado), transparent);
  opacity: 0.35;
  border-radius: 3px;
}

.menu-dish-hero-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--borgona);
  font-weight: 700;
  margin-bottom: 0.9rem;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.menu-dish-hero-info p {
  font-size: 0.92rem;
  color: rgba(26, 26, 26, 0.55);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.menu-dish-hero-info .menu-dish-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dorado);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-dish-hero-info .menu-dish-price::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--dorado);
  opacity: 0.4;
}

/* DISH LIST (regular items) — LUXURY */
.menu-dish-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(109, 0, 26, 0.06);
  padding: 0.6rem 1.8rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(109, 0, 26, 0.04);
  backdrop-filter: blur(10px);
}

.menu-dish-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0.6rem;
  border-bottom: 1px solid rgba(109, 0, 26, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
}

.menu-dish-row:last-child {
  border-bottom: none;
}

.menu-dish-row:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.07) 0%, rgba(245, 230, 200, 0.15) 100%);
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  margin: 0 -0.6rem;
  border-color: rgba(212, 175, 55, 0.1);
  box-shadow: 0 2px 12px rgba(109, 0, 26, 0.04);
}

.menu-dish-thumb {
  width: 76px;
  height: 76px;
  min-width: 76px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 18px rgba(109, 0, 26, 0.08);
  transition: all 0.4s ease;
}

.menu-dish-row:hover .menu-dish-thumb {
  border-color: var(--dorado);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.menu-dish-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-dish-row:hover .menu-dish-thumb img {
  transform: scale(1.15);
}

.menu-dish-detail {
  flex: 1;
  min-width: 0;
}

.menu-dish-name-line {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

.menu-dish-name-line h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: var(--borgona);
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.menu-dish-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(212, 175, 55, 0.4);
  min-width: 20px;
  margin-bottom: 3px;
}

.menu-dish-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dorado);
  white-space: nowrap;
}

.menu-dish-detail p {
  font-size: 0.84rem;
  color: rgba(26, 26, 26, 0.48);
  line-height: 1.6;
}

.menu-dish-tag-veg {
  font-size: 0.58rem;
  color: #2d8a4e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.menu-badge-inline {
  font-size: 0.58rem;
  color: var(--borgona);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  background: rgba(109, 0, 26, 0.06);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* ==================== MENU RESPONSIVE ==================== */

@media (max-width: 768px) {
  .menu-hero {
    min-height: 50vh;
    padding: 7rem 6% 4rem;
  }

  .menu-hero h2 {
    font-size: 2.5rem;
  }

  .menu-hero p {
    font-size: 1rem;
  }

  .menu-hero-scroll-hint {
    bottom: 1.5rem;
  }

  .menu-tabs {
    top: 68px;
    padding: 0.6rem 0.8rem;
    gap: 0.2rem;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tab {
    padding: 0.55rem 1rem;
    font-size: 0.65rem;
    gap: 0.35rem;
    flex-shrink: 0;
    letter-spacing: 0.8px;
  }

  .menu-tab i {
    font-size: 0.6rem;
  }

  .menu-main {
    padding: 2rem 1.2rem 2rem;
  }

  .menu-cat-header {
    gap: 0.8rem;
    margin-bottom: 1.8rem;
  }

  .menu-cat-num {
    font-size: 2.8rem;
  }

  .menu-cat-header h2 {
    font-size: 1.6rem;
  }

  .menu-cat-header p {
    font-size: 0.8rem;
  }

  /* Featured dish stacks vertically on mobile */
  .menu-dish-hero {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .menu-dish-hero-img {
    height: 220px;
  }

  .menu-dish-hero-img::after {
    background: linear-gradient(180deg, transparent 60%, rgba(255, 255, 255, 0.3) 100%);
  }

  .menu-dish-hero-info {
    padding: 1.5rem 1.3rem 1.8rem;
  }

  .menu-dish-hero-info::before {
    display: none;
  }

  .menu-dish-hero-info h3 {
    font-size: 1.3rem;
  }

  .menu-dish-hero-info p {
    font-size: 0.85rem;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .menu-dish-hero-info .menu-dish-price {
    font-size: 1.4rem;
  }

  .menu-dish-hero-info .menu-dish-price::before {
    width: 20px;
  }

  .menu-dish-list {
    padding: 0.3rem 1rem;
  }

  /* Dish rows */
  .menu-dish-row {
    gap: 1rem;
    padding: 1rem 0.3rem;
  }

  .menu-dish-thumb {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 14px;
  }

  .menu-dish-name-line h3 {
    font-size: 0.95rem;
  }

  .menu-dish-name-line {
    flex-wrap: wrap;
    gap: 0.3rem;
  }

  .menu-dish-dots {
    display: none;
  }

  .menu-dish-price {
    font-size: 1rem;
  }

  .menu-dish-detail p {
    font-size: 0.78rem;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .menu-cat-divider {
    margin: 2.5rem auto;
  }

  .menu-cta h2 {
    font-size: 1.6rem;
  }

  .menu-cta p {
    font-size: 0.92rem;
  }

  .menu-cta-btn {
    padding: 0.85rem 2rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .menu-hero {
    min-height: 45vh;
    padding: 6rem 5% 3.5rem;
  }

  .menu-hero h2 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .menu-hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }

  .menu-hero-tagline {
    font-size: 0.65rem;
  }

  .menu-tab span {
    display: none;
  }

  .menu-tab {
    padding: 0.6rem 0.9rem;
    font-size: 1rem;
  }

  .menu-tab i {
    font-size: 0.9rem;
    opacity: 1;
  }

  .menu-tab.active span {
    display: inline;
  }

  .menu-tab.active {
    gap: 0.4rem;
  }

  .menu-dish-hero-img {
    height: 180px;
  }

  .menu-dish-thumb {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .menu-dish-name-line h3 {
    font-size: 0.88rem;
  }

  .menu-cta h2 {
    font-size: 1.4rem;
  }
}

/* ==================== BOTÓN SCROLL TO TOP ==================== */
.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--borgona);
  color: var(--dorado);
  border: 2px solid var(--dorado);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--dorado);
  color: var(--borgona);
  box-shadow: 0 6px 25px rgba(212,175,55,0.4);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 80px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ==================== TESTIMONIOS ==================== */
.testimonial-card {
  text-align: left;
  padding: 2rem;
  position: relative;
}
.testimonial-stars {
  color: #D4AF37;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-style: italic;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-author strong {
  display: block;
  color: var(--borgona);
  font-size: 0.95rem;
}
.testimonial-author span {
  color: #999;
  font-size: 0.8rem;
}

/* ==================== BOTÓN WHATSAPP FLOTANTE ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--borgona) 0%, #8a0020 100%);
  color: var(--dorado);
  border: 2px solid var(--dorado);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(109, 0, 26, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background: var(--dorado);
  color: var(--borgona);
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
  }
}

/* Modal Aviso Personalizado */
.aviso-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.7); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  animation: avisoFadeIn 0.3s ease;
}
.aviso-modal {
  background: linear-gradient(135deg, #1a1a1a, #2a1a1a);
  border: 2px solid #D4AF37; border-radius: 16px;
  padding: 2.5rem 2rem; text-align: center; max-width: 400px; width: 90%;
  box-shadow: 0 0 30px rgba(212,175,55,0.25);
  animation: avisoScaleIn 0.35s ease;
}
.aviso-modal p {
  color: #F5E6C8; font-size: 1.1rem; margin: 0 0 1.5rem;
}
.aviso-modal button {
  background: transparent; color: #D4AF37; border: 1.5px solid #D4AF37;
  padding: 0.6rem 2rem; border-radius: 8px; font-size: 1rem; cursor: pointer;
  transition: all 0.3s ease;
}
.aviso-modal button:hover {
  background: #D4AF37; color: #1a1a1a;
}
@keyframes avisoFadeIn { from { opacity:0 } to { opacity:1 } }
@keyframes avisoScaleIn { from { transform:scale(0.8); opacity:0 } to { transform:scale(1); opacity:1 } }

/* ============================================================
   PREMIUM ANIMATIONS PACKAGE
   ============================================================ */

/* ===== 1. PAGE LOAD CURTAIN ===== */
.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(135deg, #1a0008 0%, var(--borgona) 50%, #1a0008 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-curtain.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-curtain .curtain-logo {
  animation: curtainPulse 1s ease-in-out infinite alternate;
  filter: brightness(2) drop-shadow(0 0 30px rgba(212,175,55,0.6));
}

@keyframes curtainPulse {
  from { transform: scale(0.95); opacity: 0.7; }
  to { transform: scale(1.05); opacity: 1; }
}

/* ===== 2. FLOATING GOLD PARTICLES ===== */
.gold-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.gold-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, rgba(212,175,55,0.6), rgba(212,175,55,0));
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

.gold-particles span:nth-child(1) { left: 10%; animation-duration: 14s; animation-delay: 0s; width: 2px; height: 2px; }
.gold-particles span:nth-child(2) { left: 25%; animation-duration: 18s; animation-delay: 2s; width: 3px; height: 3px; }
.gold-particles span:nth-child(3) { left: 40%; animation-duration: 12s; animation-delay: 4s; }
.gold-particles span:nth-child(4) { left: 55%; animation-duration: 20s; animation-delay: 1s; width: 2px; height: 2px; }
.gold-particles span:nth-child(5) { left: 70%; animation-duration: 16s; animation-delay: 3s; width: 3px; height: 3px; }
.gold-particles span:nth-child(6) { left: 85%; animation-duration: 13s; animation-delay: 5s; }
.gold-particles span:nth-child(7) { left: 5%; animation-duration: 19s; animation-delay: 7s; width: 2px; height: 2px; }
.gold-particles span:nth-child(8) { left: 50%; animation-duration: 15s; animation-delay: 6s; }
.gold-particles span:nth-child(9) { left: 95%; animation-duration: 21s; animation-delay: 3.5s; width: 2px; height: 2px; }
.gold-particles span:nth-child(10) { left: 33%; animation-duration: 22s; animation-delay: 8s; width: 2px; height: 2px; }

@keyframes particleFloat {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% {
    transform: translateY(-10vh);
    opacity: 0;
  }
}

/* ===== 3. SCROLL-TRIGGERED REVEAL VARIANTS ===== */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.active { opacity: 1; transform: scale(1); }

.reveal-rotate {
  opacity: 0;
  transform: perspective(800px) rotateY(8deg) translateX(30px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-rotate.active { opacity: 1; transform: perspective(800px) rotateY(0deg) translateX(0); }

/* Staggered children animation */
.stagger-children.active > * {
  animation: staggerFadeUp 0.6s ease-out both;
}
.stagger-children.active > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children.active > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children.active > *:nth-child(6) { animation-delay: 0.6s; }

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

/* ===== 5. SECTION SEPARATORS ===== */
.section-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
  z-index: 2;
}

.sep-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
}

.sep-diamond {
  width: 8px;
  height: 8px;
  background: var(--dorado);
  transform: rotate(45deg);
  opacity: 0.5;
}

/* ========================================
   FEATURE 1: PARALLAX 3D TILT
   ======================================== */
.hero { perspective: 1200px; }
.hero-text, .hero-img { transition: transform 0.15s ease-out; will-change: transform; }

/* ========================================
   FEATURE 2: INTRO CINEMATOGRÁFICA
   ======================================== */
.cinema-intro {
  position: fixed; inset: 0; z-index: 999999;
  background: #000; display: flex; align-items: center; justify-content: center;
  flex-direction: column; overflow: hidden;
}
.cinema-smoke {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(109,0,26,0.15) 0%, transparent 70%);
  animation: smokePulse 3s ease-in-out infinite;
}
@keyframes smokePulse {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
}
.cinema-text {
  position: relative; z-index: 2; text-align: center; opacity: 0;
  animation: cinemaReveal 1s ease-out 0.5s forwards;
}
.cinema-text .cinema-logo {
  height: 100px; margin-bottom: 1.5rem; filter: brightness(1.3) drop-shadow(0 0 30px rgba(212,175,55,0.5));
}
.cinema-text h2 {
  font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #fff;
  background: linear-gradient(135deg, #fff, var(--dorado)); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.cinema-text p {
  font-family: 'Inter', sans-serif; color: rgba(255,255,255,0.6); font-size: 0.9rem;
  letter-spacing: 4px; text-transform: uppercase;
}
.cinema-line {
  width: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--dorado), transparent);
  margin: 1rem auto; animation: cinemaLine 1.2s ease-out 1s forwards;
}
@keyframes cinemaReveal {
  0% { opacity: 0; transform: translateY(30px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes cinemaLine { to { width: 200px; } }
.cinema-intro.cinema-exit {
  animation: cinemaFade 0.8s ease-in forwards;
}
@keyframes cinemaFade {
  to { opacity: 0; transform: scale(1.1); }
}

/* ========================================
   FEATURE 3: MENÚ NETFLIX
   ======================================== */
.netflix-row {
  margin-bottom: 2.5rem; position: relative;
}
.netflix-row-title {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--borgona);
  margin-bottom: 1rem; padding-left: 1rem;
  border-left: 3px solid var(--dorado);
}
.netflix-scroll {
  display: flex; gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 1rem 0.5rem 1.5rem; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.netflix-scroll::-webkit-scrollbar { display: none; }
.netflix-card {
  flex: 0 0 220px; scroll-snap-align: start;
  border-radius: 14px; overflow: hidden; position: relative;
  background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
  cursor: pointer;
}
.netflix-card:hover {
  transform: scale(1.12) translateY(-10px);
  box-shadow: 0 20px 50px rgba(109,0,26,0.25);
  z-index: 10;
}
.netflix-card-img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform 0.5s ease;
}
.netflix-card:hover .netflix-card-img { transform: scale(1.08); }
.netflix-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 3rem 1rem 1rem; transition: padding 0.4s ease;
}
.netflix-card:hover .netflix-card-overlay { padding-top: 2rem; }
.netflix-card-name {
  font-family: 'Playfair Display', serif; font-size: 1rem; color: #fff;
  margin-bottom: 0.3rem;
}
.netflix-card-price {
  color: var(--dorado); font-weight: 700; font-size: 1.1rem;
}
.netflix-card-desc {
  color: rgba(255,255,255,0.7); font-size: 0.75rem; margin-top: 0.3rem;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s;
  opacity: 0;
}
.netflix-card:hover .netflix-card-desc { max-height: 80px; opacity: 1; }
.netflix-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--borgona); color: var(--dorado); font-size: 0.6rem;
  padding: 0.2rem 0.5rem; border-radius: 4px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.netflix-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 15;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(109,0,26,0.8); border: 1px solid var(--dorado);
  color: var(--dorado); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.netflix-row:hover .netflix-arrow { opacity: 1; }
.netflix-arrow.left { left: 8px; }
.netflix-arrow.right { right: 8px; }
.netflix-arrow:hover { background: var(--borgona); transform: translateY(-50%) scale(1.1); }

/* ========================================
   FEATURE 4: REVEAL CLOCHE
   ======================================== */
.cloche-reveal {
  position: relative; overflow: hidden;
}
.cloche-cover {
  position: absolute; inset: 0; z-index: 5;
  background: linear-gradient(135deg, var(--borgona), #3a0010);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; transition: transform 0.8s cubic-bezier(0.22,1,0.36,1), opacity 0.6s ease;
}
.cloche-cover i {
  font-size: 3rem; color: var(--dorado); margin-bottom: 0.5rem;
  animation: clocheFloat 2s ease-in-out infinite;
}
.cloche-cover span {
  color: rgba(255,255,255,0.5); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 3px;
}
@keyframes clocheFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.cloche-reveal.revealed .cloche-cover {
  transform: translateY(-100%);
  opacity: 0;
}

/* ========================================
   FEATURE 5: RULETA DE LA SUERTE
   ======================================== */
.ruleta-trigger {
  position: fixed; bottom: 100px; right: 25px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--borgona), #3a0010);
  border: 2px solid var(--dorado); color: var(--dorado);
  font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(109,0,26,0.4);
  transition: all 0.3s ease; animation: ruletaPulse 3s ease-in-out infinite;
}
.ruleta-trigger:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 6px 30px rgba(212,175,55,0.4);
}
@keyframes ruletaPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(109,0,26,0.4); }
  50% { box-shadow: 0 4px 30px rgba(212,175,55,0.5); }
}
.ruleta-overlay {
  position: fixed; inset: 0; z-index: 100000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: fadeIn 0.3s forwards;
}
.ruleta-container {
  text-align: center; transform: scale(0.8);
  animation: ruletaEnter 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes ruletaEnter {
  to { transform: scale(1); }
}
.ruleta-wheel {
  width: 320px; height: 320px; border-radius: 50%;
  border: 6px solid var(--dorado); position: relative;
  margin: 0 auto 1.5rem; overflow: hidden;
  box-shadow: 0 0 40px rgba(212,175,55,0.3), inset 0 0 30px rgba(0,0,0,0.3);
  transition: transform 4s cubic-bezier(0.17,0.67,0.12,0.99);
}
.ruleta-segment {
  position: absolute; width: 50%; height: 50%;
  transform-origin: 100% 100%; left: 0; top: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ruleta-segment span {
  position: absolute; font-size: 0.55rem; font-weight: 700;
  color: #fff; text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  transform: rotate(22deg); white-space: nowrap;
  left: 15%; top: 35%;
}
.ruleta-pointer {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 15px solid transparent; border-right: 15px solid transparent;
  border-top: 30px solid var(--dorado);
  z-index: 5; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.ruleta-spin-btn {
  background: linear-gradient(135deg, var(--borgona), #3a0010);
  border: 2px solid var(--dorado); color: var(--dorado);
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  padding: 0.8rem 2.5rem; border-radius: 50px; cursor: pointer;
  transition: all 0.3s; text-transform: uppercase; letter-spacing: 2px;
}
.ruleta-spin-btn:hover { background: var(--dorado); color: var(--borgona); }
.ruleta-spin-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.ruleta-result {
  margin-top: 1.5rem; padding: 1.5rem; border-radius: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(212,175,55,0.3);
  display: none;
}
.ruleta-result h3 {
  font-family: 'Playfair Display', serif; color: var(--dorado); font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.ruleta-result p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.ruleta-result .ruleta-price {
  color: var(--dorado); font-size: 1.3rem; font-weight: 700; margin-top: 0.5rem;
  display: block;
}
.ruleta-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 1.5rem; cursor: pointer; transition: color 0.3s;
}
.ruleta-close:hover { color: #fff; }

/* ========================================
   FEATURE 6: MAPA INTERACTIVO SABORES
   ======================================== */
.flavor-map-section {
  padding: 4rem 2rem; text-align: center; position: relative;
  background: linear-gradient(135deg, #0a0a0a, #1a0a10, #0a0a0a);
  overflow: hidden;
}
.flavor-map-section h2 {
  font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #fff;
  margin-bottom: 0.5rem;
}
.flavor-map-section .map-subtitle {
  color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; font-size: 0.95rem;
}
.flavor-map-container {
  position: relative; max-width: 900px; margin: 0 auto;
  background: rgba(255,255,255,0.02); border-radius: 20px;
  padding: 2rem; border: 1px solid rgba(212,175,55,0.1);
}
.map-svg { width: 100%; height: auto; }
.map-country {
  fill: rgba(255,255,255,0.08); stroke: rgba(255,255,255,0.15); stroke-width: 0.5;
  transition: all 0.4s ease; cursor: pointer;
}
.map-country:hover { fill: rgba(212,175,55,0.15); stroke: var(--dorado); }
.map-country.active-country {
  fill: rgba(109,0,26,0.5); stroke: var(--dorado); stroke-width: 1.5;
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.4));
  animation: mapGlow 2s ease-in-out infinite;
}
@keyframes mapGlow {
  0%,100% { filter: drop-shadow(0 0 10px rgba(212,175,55,0.3)); }
  50% { filter: drop-shadow(0 0 20px rgba(212,175,55,0.6)); }
}
.map-pin {
  position: absolute; width: 30px; height: 30px;
  border-radius: 50%; background: var(--dorado);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; cursor: pointer;
  box-shadow: 0 0 15px rgba(212,175,55,0.5);
  animation: pinBounce 2s ease-in-out infinite;
  transition: transform 0.3s;
}
.map-pin:hover { transform: scale(1.3); }
@keyframes pinBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.map-pin::after {
  content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; border-left: 6px solid transparent;
  border-right: 6px solid transparent; border-top: 8px solid var(--dorado);
}
.map-route {
  stroke: var(--dorado); stroke-width: 1.5; stroke-dasharray: 8 4;
  fill: none; opacity: 0.5;
  animation: routeDash 20s linear infinite;
}
@keyframes routeDash { to { stroke-dashoffset: -240; } }
.map-legend {
  display: flex; gap: 2rem; justify-content: center;
  margin-top: 2rem; flex-wrap: wrap;
}
.map-legend-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.8rem;
}
.map-legend-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.map-legend-dot.current { background: var(--dorado); box-shadow: 0 0 8px rgba(212,175,55,0.5); }
.map-legend-dot.past { background: rgba(255,255,255,0.3); }
.map-legend-dot.future { background: transparent; border: 1.5px dashed rgba(255,255,255,0.3); }
.map-tooltip {
  position: absolute; background: rgba(26,0,8,0.95); border: 1px solid var(--dorado);
  border-radius: 12px; padding: 1rem 1.5rem; color: #fff;
  font-size: 0.85rem; pointer-events: none;
  opacity: 0; transition: opacity 0.3s; z-index: 20;
  white-space: nowrap; backdrop-filter: blur(10px);
}
.map-tooltip.show { opacity: 1; }
.map-tooltip h4 { color: var(--dorado); margin-bottom: 0.3rem; font-family: 'Playfair Display', serif; }

/* ========================================
   FEATURE 7: SPOTIFY EMBED
   ======================================== */
.spotify-section {
  padding: 3rem 2rem; text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.03), transparent);
}
.spotify-container {
  max-width: 400px; margin: 0 auto; border-radius: 16px;
  overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border: 1px solid rgba(212,175,55,0.15);
  position: relative;
}
.spotify-header {
  background: linear-gradient(135deg, var(--borgona), #3a0010);
  padding: 1.2rem; display: flex; align-items: center; gap: 1rem;
}
.spotify-header i {
  font-size: 1.5rem; color: #1DB954;
}
.spotify-header span {
  color: #fff; font-family: 'Playfair Display', serif; font-size: 1rem;
}
.spotify-header .spotify-live {
  margin-left: auto; font-size: 0.6rem; color: #1DB954;
  text-transform: uppercase; letter-spacing: 2px;
  display: flex; align-items: center; gap: 0.4rem;
}
.spotify-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #1DB954;
  animation: spotifyPulse 1.5s ease-in-out infinite;
}
@keyframes spotifyPulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ========================================
   FEATURE 8: EASTER EGG
   ======================================== */
.easter-egg-overlay {
  position: fixed; inset: 0; z-index: 999999;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
  animation: fadeIn 0.5s ease;
}
.easter-egg-overlay .egg-emoji {
  font-size: 5rem; animation: eggBounce 0.6s ease;
}
@keyframes eggBounce {
  0% { transform: scale(0) rotate(-180deg); }
  60% { transform: scale(1.3) rotate(10deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.easter-egg-overlay h2 {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  background: linear-gradient(135deg, var(--dorado), #fff, var(--dorado));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 2s linear infinite;
  background-size: 200% 100%;
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.easter-egg-overlay p {
  color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 400px; text-align: center;
}
.easter-egg-overlay .egg-close {
  background: linear-gradient(135deg, var(--borgona), #3a0010);
  border: 1px solid var(--dorado); color: var(--dorado);
  padding: 0.6rem 2rem; border-radius: 50px; cursor: pointer;
  font-family: 'Playfair Display', serif; font-size: 0.9rem;
  transition: all 0.3s;
}
.easter-egg-overlay .egg-close:hover { background: var(--dorado); color: var(--borgona); }

/* ========================================
   FEATURE 9: CHATBOT
   ======================================== */
.chatbot-btn {
  position: fixed; bottom: 30px; right: 30px; z-index: 9998;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--borgona), #3a0010);
  border: 2px solid var(--dorado); color: var(--dorado);
  font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(109,0,26,0.4);
  transition: all 0.3s ease;
}
.chatbot-btn:hover { transform: scale(1.1); }
.chatbot-badge {
  position: absolute; top: -2px; right: -2px; width: 14px; height: 14px;
  background: #1DB954; border-radius: 50%; border: 2px solid #1a0a10;
  animation: spotifyPulse 1.5s infinite;
}
.chatbot-panel {
  position: fixed; bottom: 90px; right: 25px; z-index: 99999;
  width: 340px; max-height: 460px; border-radius: 20px;
  background: #fff; box-shadow: 0 15px 50px rgba(0,0,0,0.25);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex; flex-direction: column; overflow: hidden;
  transform: scale(0.8) translateY(20px); opacity: 0;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
.chatbot-panel.open {
  transform: scale(1) translateY(0); opacity: 1; pointer-events: all;
}
.chatbot-header {
  background: linear-gradient(135deg, var(--borgona), #3a0010);
  padding: 1rem 1.2rem; display: flex; align-items: center; gap: 0.8rem;
}
.chatbot-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15); display: flex;
  align-items: center; justify-content: center; font-size: 1rem;
}
.chatbot-header-info h4 { color: #fff; font-size: 0.85rem; margin: 0; }
.chatbot-header-info span { color: rgba(255,255,255,0.5); font-size: 0.65rem; }
.chatbot-close {
  margin-left: auto; background: none; border: none;
  color: rgba(255,255,255,0.5); font-size: 1.1rem; cursor: pointer;
}
.chatbot-messages {
  flex: 1; overflow-y: auto; padding: 1rem; display: flex;
  flex-direction: column; gap: 0.8rem; min-height: 200px;
  max-height: 280px; background: #fafafa;
}
.chat-msg {
  max-width: 85%; padding: 0.7rem 1rem; border-radius: 14px;
  font-size: 0.8rem; line-height: 1.4; animation: chatPop 0.3s ease;
}
@keyframes chatPop {
  0% { opacity: 0; transform: translateY(10px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-msg.bot {
  background: #f0ebe3; color: var(--oscuro); align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: var(--borgona); color: #fff; align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chatbot-options {
  padding: 0.8rem; display: flex; flex-wrap: wrap; gap: 0.4rem;
  border-top: 1px solid #eee; background: #fff;
}
.chat-option {
  background: transparent; border: 1px solid var(--borgona);
  color: var(--borgona); font-size: 0.7rem; padding: 0.4rem 0.8rem;
  border-radius: 20px; cursor: pointer; transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.chat-option:hover { background: var(--borgona); color: #fff; }
.chat-typing {
  display: flex; gap: 4px; padding: 0.6rem 1rem;
  background: #f0ebe3; border-radius: 14px; align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-typing span {
  width: 6px; height: 6px; border-radius: 50%; background: #999;
  animation: typingDot 1.4s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%,60%,100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* ========================================
   FEATURE 10: NOTIFICACIONES PUSH
   ======================================== */
.push-notification {
  position: fixed; top: -120px; left: 50%; transform: translateX(-50%);
  z-index: 99999; width: 380px; max-width: 92vw;
  background: #fff; border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  border: 1px solid rgba(212,175,55,0.15);
  transition: top 0.6s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
}
.push-notification.show { top: 20px; }
.push-notif-bar {
  height: 3px; background: linear-gradient(90deg, var(--borgona), var(--dorado));
}
.push-notif-content {
  padding: 1rem 1.2rem; display: flex; align-items: center; gap: 1rem;
}
.push-notif-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--borgona), #3a0010);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.push-notif-text h4 {
  font-size: 0.8rem; color: var(--oscuro); margin: 0 0 0.2rem;
  font-family: 'Inter', sans-serif;
}
.push-notif-text p {
  font-size: 0.72rem; color: #666; margin: 0; line-height: 1.3;
}
.push-notif-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none; color: #ccc; cursor: pointer;
  font-size: 0.9rem; transition: color 0.2s;
}
.push-notif-close:hover { color: #666; }
.push-notif-time {
  position: absolute; bottom: 8px; right: 12px;
  font-size: 0.6rem; color: #bbb;
}

/* ========================================
   FEATURE 11: VR 360°
   ======================================== */
.vr-section {
  padding: 4rem 2rem; text-align: center;
  background: linear-gradient(180deg, #0a0a0a, #1a0a10, #0a0a0a);
  position: relative; overflow: hidden;
}
.vr-section h2 {
  font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #fff;
  margin-bottom: 0.5rem;
}
.vr-section .vr-subtitle {
  color: rgba(255,255,255,0.5); margin-bottom: 2rem;
}
.vr-viewer {
  max-width: 800px; margin: 0 auto; border-radius: 20px;
  overflow: hidden; position: relative; height: 400px;
  border: 2px solid rgba(212,175,55,0.2);
  cursor: grab; user-select: none;
  background: #111;
}
.vr-viewer:active { cursor: grabbing; }
.vr-panorama {
  width: 300%; height: 100%; position: absolute; top: 0; left: 0;
  display: flex; transition: left 0.1s ease-out;
  background: linear-gradient(90deg,
    rgba(109,0,26,0.3) 0%, rgba(26,10,16,0.8) 15%,
    rgba(109,0,26,0.2) 30%, rgba(26,10,16,0.8) 45%,
    rgba(212,175,55,0.1) 60%, rgba(26,10,16,0.8) 75%,
    rgba(109,0,26,0.3) 100%
  );
}
.vr-scene {
  flex: 0 0 33.333%; height: 100%; display: flex;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem; position: relative;
}
.vr-scene-icon {
  font-size: 4rem; opacity: 0.3;
}
.vr-scene-label {
  color: rgba(255,255,255,0.4); font-family: 'Playfair Display', serif;
  font-size: 1.2rem; letter-spacing: 2px;
}
.vr-controls {
  position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.8rem; z-index: 5;
}
.vr-control-btn {
  background: rgba(0,0,0,0.6); border: 1px solid rgba(212,175,55,0.3);
  color: var(--dorado); width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.8rem; transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.vr-control-btn:hover { background: rgba(212,175,55,0.2); }
.vr-hint {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  color: rgba(255,255,255,0.3); font-size: 0.8rem;
  display: flex; align-items: center; gap: 0.5rem;
  pointer-events: none; animation: fadeIn 1s;
}
.vr-drag-icon { animation: vrDrag 2s ease-in-out infinite; }
@keyframes vrDrag {
  0%,100% { transform: translateX(-15px); }
  50% { transform: translateX(15px); }
}
.vr-hotspot {
  position: absolute; width: 20px; height: 20px;
  border-radius: 50%; background: rgba(212,175,55,0.3);
  border: 2px solid var(--dorado); cursor: pointer;
  animation: pinBounce 2s infinite; z-index: 4;
}
.vr-hotspot:hover { transform: scale(1.4); background: rgba(212,175,55,0.5); }
.vr-hotspot-tooltip {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.9); border: 1px solid var(--dorado);
  border-radius: 8px; padding: 0.5rem 0.8rem;
  color: #fff; font-size: 0.7rem; white-space: nowrap;
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.vr-hotspot:hover .vr-hotspot-tooltip { opacity: 1; }

/* ========================================
   FEATURE 12: CONFETTI
   ======================================== */
.confetti-container {
  position: fixed; inset: 0; z-index: 999998; pointer-events: none;
  overflow: hidden;
}
.confetti-piece {
  position: absolute; width: 10px; height: 10px;
  top: -10px; animation: confettiFall 3s linear forwards;
}
@keyframes confettiFall {
  0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg) scale(0.3); opacity: 0; }
}

/* ========================================
   RESPONSIVE for new features
   ======================================== */
@media (max-width: 768px) {
  .cinema-text h2 { font-size: 1.6rem; }
  .cinema-text p { font-size: 0.7rem; letter-spacing: 2px; }
  .netflix-card { flex: 0 0 160px; }
  .netflix-card-img { height: 200px; }
  .netflix-arrow { display: none; }
  .ruleta-wheel { width: 260px; height: 260px; }
  .chatbot-panel { width: 300px; bottom: 80px; right: 15px; }
  .chatbot-btn { bottom: 20px; right: 20px; width: 48px; height: 48px; font-size: 1.1rem; }
  .ruleta-trigger { bottom: 80px; right: 20px; width: 48px; height: 48px; font-size: 1.1rem; }
  .push-notification { width: 340px; }
  .vr-viewer { height: 280px; }
  .flavor-map-section h2 { font-size: 1.8rem; }
  .flavor-map-container { padding: 1rem; }
  .map-legend { gap: 1rem; }
  .spotify-container { max-width: 320px; }
}

/* ===== 6. PARALLAX SHAPES ===== */
.parallax-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.04;
  z-index: 0;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--dorado), transparent 70%);
  top: 10%;
  right: -5%;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--borgona), transparent 70%);
  bottom: 15%;
  left: -3%;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--dorado), transparent 70%);
  top: 20%;
  left: -5%;
}

/* ===== 7. SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}

.scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
}

.scroll-arrow {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--dorado), transparent);
  animation: scrollArrow 1.5s ease-in-out infinite;
}

@keyframes scrollArrow {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== 8. CURSOR GLOW (desktop) ===== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.1s ease, top 0.1s ease;
}

/* ===== 9. REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .gold-particles { display: none; }
  .cursor-glow { display: none; }
  .page-curtain { display: none; }
}
section h2 {
  background: linear-gradient(90deg, var(--borgona) 0%, var(--dorado) 45%, var(--borgona) 55%, var(--borgona) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: headingShimmer 5s ease-in-out infinite;
}

.dark-section h2 {
  background: linear-gradient(90deg, #fff 0%, var(--dorado) 45%, #fff 55%, #fff 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ===== 6. SCROLL INDICATOR IN HERO ===== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
  animation: fadeIn 1.5s ease-out 1.5s both;
}

.scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(212,175,55,0.6);
  font-weight: 600;
}

.scroll-indicator .scroll-arrow {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .scroll-arrow::before {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--dorado);
  border-radius: 4px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 20px; opacity: 0.3; }
}

/* ===== 7. ELEGANT CARD BORDERS ON HOVER ===== */
.card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  border: 2px solid var(--dorado);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card:hover::after {
  opacity: 1;
}

/* ===== 8. PULSING WHATSAPP RING ===== */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.5);
  animation: whatsappPulse 2s ease-out infinite;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
  animation: whatsappPulse 2s ease-out infinite 0.4s;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== 9. FOOTER GLOW LINE ===== */
footer {
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
  animation: footerGlow 4s ease-in-out infinite;
}

@keyframes footerGlow {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===== 10. TESTIMONIAL QUOTE MARK ===== */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  color: rgba(212,175,55,0.08);
  font-family: Georgia, serif;
  line-height: 1;
  transition: all 0.5s ease;
  pointer-events: none;
}

.testimonial-card:hover::before {
  color: rgba(212,175,55,0.2);
  transform: scale(1.2) rotate(-5deg);
}

/* ===== 11. SMOOTH GRADIENT MORPH ON HERO ===== */
.hero {
  background-size: 400% 400%;
  background-image: linear-gradient(
    135deg,
    var(--borgona) 0%,
    rgba(109, 0, 26, 0.95) 25%,
    #4a0012 50%,
    rgba(109, 0, 26, 0.9) 75%,
    var(--borgona) 100%
  );
  animation: heroGradient 15s ease infinite;
}

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

/* ===== 12. ENHANCED BUTTON EFFECTS ===== */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '' !important;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(109,0,26,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
  width: 400px;
  height: 400px;
}

.instagram-btn {
  position: relative;
  overflow: hidden;
}

/* ===== 13. MAP CONTAINER GLOW ===== */
#map {
  position: relative;
}

#map::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--dorado), var(--borgona), var(--dorado));
  background-size: 200% 200%;
  animation: mapGlow 3s ease-in-out infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#map:hover::before {
  opacity: 1;
}

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

/* ===== 14. HEADER NAV ACTIVE DOT ===== */
nav a.active-link {
  color: var(--dorado) !important;
}

nav a.active-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--dorado);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(212,175,55,0.6); }
  50% { box-shadow: 0 0 16px rgba(212,175,55,1); }
}

/* ===== 15. SECTION SEPARATOR ORNAMENT ===== */
.section-separator {
  text-align: center;
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.section-separator .sep-line {
  display: inline-block;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
  vertical-align: middle;
  animation: sepExpand 1s ease-out both;
}

.section-separator .sep-diamond {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--dorado);
  transform: rotate(45deg);
  margin: 0 15px;
  vertical-align: middle;
  animation: sepSpin 3s linear infinite;
}

@keyframes sepExpand {
  from { width: 0; opacity: 0; }
  to { width: 120px; opacity: 1; }
}

@keyframes sepSpin {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

/* ===== 16. COUNTER ANIMATION UTILITY ===== */
.count-up {
  display: inline-block;
  transition: all 0.3s ease;
}

/* ===== 17. SMOOTH HOVER LIFT FOR ALL INTERACTIVE ELEMENTS ===== */
.instagram-btn,
.scroll-top-btn,
.btn-votar,
.menu-filter-btn {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== 18. PARALLAX FLOATING SHAPES =====  */
.parallax-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
}

.parallax-shape.shape-1 {
  width: 200px;
  height: 200px;
  border: 2px solid var(--dorado);
  border-radius: 50%;
  top: 20%;
  right: 5%;
  animation: shapeFloat1 8s ease-in-out infinite;
}

.parallax-shape.shape-2 {
  width: 100px;
  height: 100px;
  border: 2px solid var(--dorado);
  transform: rotate(45deg);
  bottom: 30%;
  left: 3%;
  animation: shapeFloat2 10s ease-in-out infinite;
}

.parallax-shape.shape-3 {
  width: 150px;
  height: 150px;
  border: 1px solid var(--dorado);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 50%;
  right: 15%;
  animation: shapeFloat3 12s ease-in-out infinite;
}

@keyframes shapeFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(15deg); }
}

@keyframes shapeFloat2 {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(55deg) translateY(-25px); }
}

@keyframes shapeFloat3 {
  0%, 100% { transform: translateY(0) scale(1); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  33% { transform: translateY(-20px) scale(1.05); border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
  66% { transform: translateY(10px) scale(0.95); border-radius: 50% 50% 30% 70% / 30% 70% 50% 50%; }
}

/* ===== 19. SMOOTH CURSOR GLOW (performance-friendly) ===== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.3s ease, top 0.3s ease;
  will-change: left, top;
}

/* ===== 20. ENHANCED DARK SECTION FLOATING BG ===== */
.dark-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
  pointer-events: none;
}

/* ===== 21. TYPING CURSOR FOR HERO SUBTITLE ===== */
.typing-cursor::after {
  content: '|';
  animation: blink 0.8s step-end infinite;
  color: var(--dorado);
  font-weight: 300;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ===== 22. SMOOTH NUMBER/TEXT COUNTER ===== */
@keyframes countIn {
  from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ===== 23. PREMIUM SCROLL-TOP BUTTON TRAIL ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--borgona);
  color: var(--dorado);
  border: 2px solid var(--dorado);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  overflow: visible;
}

.scroll-top-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,0.3);
  animation: scrollBtnRing 2.5s ease-in-out infinite;
  opacity: 0;
}

.scroll-top-btn.visible::before {
  opacity: 1;
}

@keyframes scrollBtnRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* ===== MOBILE ADJUSTMENTS FOR PREMIUM ANIMATIONS ===== */
@media (max-width: 768px) {
  .gold-particles span { width: 2px; height: 2px; }
  .cursor-glow { display: none; }
  .parallax-shape { display: none; }
  .scroll-indicator { bottom: 15px; }
  .scroll-indicator .scroll-arrow { width: 20px; height: 32px; }
  .section-separator .sep-line { width: 60px; }

  /* Contact grid responsive */
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .contact-item {
    padding: 1.5rem 1rem;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-icon i {
    font-size: 1rem;
  }

  .contact-item h3 {
    font-size: 0.95rem;
  }

  .contact-item p {
    font-size: 0.82rem;
  }

  /* Footer responsive */
  .footer-links {
    gap: 1.2rem;
  }

  .footer-logo {
    height: 70px;
  }

  /* Hero tagline responsive */
  .hero-tagline {
    font-size: 0.65rem;
    letter-spacing: 3px;
  }
}

/* ===== REDUCE MOTION PREFERENCE ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .gold-particles, .cursor-glow, .page-curtain { display: none !important; }
}