/* Fuentes personalizadas */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/Bebas_Neue/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: fallback;
}
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald/Oswald-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 200 700;
  font-style: normal;
  font-display: fallback;
}

/* Scroll suave para toda la página */
html {
  scroll-behavior: smooth;
}

/* Clases utilitarias de fuente */
.font-bebas {
  font-family: 'Bebas Neue', cursive, sans-serif;
}
.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}
.font-oswald {
  font-family: 'Oswald', sans-serif;
}

/* Lista de secciones de la carta en el index */
.carta-section-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0.5rem;
}
.carta-section-list li {
  margin-bottom: 1.1rem;
  font-size: 1.18rem;
  font-weight: 500;
}
.carta-section-list a {
  color: #B59E5F;
  text-decoration: none;
  transition: color 0.2s;
}
.carta-section-list a:hover {
  color: #fffbe0;
  text-decoration: underline;
}
/* Card de carta sin imagen para index */
.carta-preview-card-noimg {
  background: #232323 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  border-radius: 1.2rem;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
  transition: box-shadow 0.2s;
}
.carta-preview-card-noimg:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  background: #292929 !important;
}
.carta-preview-card-noimg .carta-preview-content {
  color: #fff;
}
/* --- Carta Bebidas --- */
.drink-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drink-list li {
  margin-bottom: 1.5rem;
}
.drink-row {
  display: flex;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
}
.drink-title {
  flex: 0 1 auto;
  min-width: 120px;
}
.drink-dots {
  flex: 1 1 auto;
  border-bottom: 1px dotted #aaa;
  margin: 0 0.5rem;
  height: 1em;
  position: relative;
  top: 0.1em;
}
.drink-price {
  flex: 0 0 auto;
  margin-left: 0.5rem;
  font-weight: 600;
  color: #B59E5F;
}
.drink-desc {
  color: #ccc;
  font-size: 1rem;
  margin-left: 0.1rem;
  margin-top: 0.2rem;
}
/* Overlay y hover para galería de imágenes estilo feature-card */
.gallery-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}

.gallery-image-container:hover .gallery-image-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.85) 15%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 80%);
}
/* ==========================================
   KENDO LOUNGE BAR - Custom Styles
   ========================================== */

/* --- Variables --- */
:root {
  --kendo-primary: #B59E5F;
  --kendo-dark: #000;
  --kendo-darker: #0d0d0d;
  --bs-dark-rgb: 0,0,0;
}

/* --- Custom Text Colors --- */
.text-white-80 {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* --- Accesibilidad --- */
/* Skip Link - visible solo con focus para navegación por teclado */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--kendo-primary);
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Focus visible mejorado para accesibilidad */
*:focus-visible {
  outline: 2px solid var(--kendo-primary);
  outline-offset: 2px;
}

/* Reducir movimiento para usuarios con preferencia */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Page Loader --- */
html.is-loading,
html.is-loading body {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--kendo-primary);
  border-radius: 50%;
  animation: page-loader-spin 0.8s linear infinite;
}

@keyframes page-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- General --- */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 0; /* No padding needed, hero goes under navbar */
  background:#000;
}
body footer.bg-dark {
    background: #000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

/* --- Fullscreen Sections --- */
.section-fullscreen {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-fullscreen > .container {
  width: 100%;
}

/* --- Navbar --- */
#mainNavbar {
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#mainNavbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: #000;
}

/* Logo visible by default */
#mainNavbar .navbar-logo {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  height: 40px;
}

#mainNavbar .navbar-logo img{
    top: -10px;
    position: relative;
}
#mainNavbar.homepage .navbar-logo img {
    top: -5px;
}

/* On homepage, hide logo until scroll */
#mainNavbar.homepage .navbar-logo {
  opacity: 0;
  transform: translateY(-10px);
}

#mainNavbar.homepage.scrolled .navbar-logo {
  opacity: 1;
  transform: translateY(0);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--kendo-primary) !important;
}

.nav-link:hover {
  color: var(--kendo-primary) !important;
}

/* --- Navbar layout: logo | menú centrado | acciones --- */
#mainNavbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* --- Menú de escritorio (centrado, siempre visible desde 992px) --- */
.navbar-menu-desktop {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu-desktop a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.25s ease;
}

.navbar-menu-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--kendo-primary);
  transition: width 0.25s ease;
}

.navbar-menu-desktop a:hover,
.navbar-menu-desktop a.active {
  color: var(--kendo-primary);
}

.navbar-menu-desktop a:hover::after,
.navbar-menu-desktop a.active::after {
  width: 100%;
}

/* --- Acciones de cabecera: botón Reservar + hamburguesa --- */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-nav-reservar {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  border: 1px solid var(--kendo-primary);
  color: var(--kendo-primary);
  background: transparent;
  padding: 0.7rem 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-nav-reservar:hover,
.btn-nav-reservar:focus {
  background: var(--kendo-primary);
  color: #000;
}

@media (min-width: 992px) {
  .navbar-menu-desktop {
    display: flex;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .menu-hamburger {
    display: none !important;
  }

  .menu-modal {
    display: none !important;
  }
}

/* --- Menu Hamburger Button --- */
.menu-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  gap: 6px;
}

.hamburger-line {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-hamburger:hover .hamburger-line {
  background: var(--kendo-primary);
}

/* Hamburger animation when open */
.menu-hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Menu Modal --- */
.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.4s, opacity 0.4s ease;
}

.menu-modal.active {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.4s ease;
}

.menu-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.menu-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
  transform: scale(0.9);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.menu-modal.active .menu-modal-content {
  transform: scale(1);
  transform-origin: left center;
}

.menu-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-modal-close:hover {
  border-color: var(--kendo-primary);
  transform: rotate(90deg);
}

.menu-modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.menu-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-modal-close:hover span {
  background: var(--kendo-primary);
}

.menu-modal-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu-modal-nav li {
  margin: 1rem 0;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.menu-modal.active .menu-modal-nav li {
  transform: translateY(0);
  opacity: 1;
}

.menu-modal.active .menu-modal-nav li:nth-child(1) { transition-delay: 0.1s; }
.menu-modal.active .menu-modal-nav li:nth-child(2) { transition-delay: 0.15s; }
.menu-modal.active .menu-modal-nav li:nth-child(3) { transition-delay: 0.2s; }
.menu-modal.active .menu-modal-nav li:nth-child(4) { transition-delay: 0.25s; }
.menu-modal.active .menu-modal-nav li:nth-child(5) { transition-delay: 0.3s; }

.menu-modal-nav a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.menu-modal-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--kendo-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.menu-modal-nav a:hover,
.menu-modal-nav a.active {
  color: var(--kendo-primary);
}

.menu-modal-nav a:hover::after,
.menu-modal-nav a.active::after {
  width: 100%;
}

.menu-modal-nav a.menu-cta {
  background: var(--kendo-primary);
  color: #000;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  margin-top: 1rem;
}

.menu-modal-nav a.menu-cta:hover {
  background: #fff;
  color: #000;
}

.menu-modal-nav a.menu-cta::after {
  display: none;
}

.modal-footer {
  justify-content: center;
}

.menu-modal-footer {
  position: absolute;
  bottom: 2rem;
  text-align: center;
}

/* Prevent body scroll when modal is open */
body.menu-open {
  overflow: hidden;
}

/* --- Hero Logo --- */
.hero-logo {
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.5));
}

/* --- Hero Carousel --- */
#heroCarousel .carousel-item img {
  height: 70vh;
  object-fit: cover;
  filter: brightness(0.6);
}

#heroCarousel .carousel-caption {
  bottom: 30%;
}

#heroCarousel .carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

#heroCarousel .carousel-caption p {
  font-size: 1.3rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

/* --- Hero Product (estilo Bootstrap) --- */
.hero-product {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0d0d0d;
}

.hero-product .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-product .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, #000 100%);
  z-index: 1;
}

.hero-product .container {
  z-index: 2;
}

.hero-product h1 {
  letter-spacing: 4px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-product h2 {
  letter-spacing: 2px;
}

/* --- Feature Cards (estilo Product) --- */
.feature-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 0px solid #000;
  aspect-ratio: 4 / 5;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  background: linear-gradient(135deg, var(--kendo-primary) 0%, rgba(212, 175, 55, 0.3) 50%, var(--kendo-primary) 100%);
  opacity: 1;
}

.feature-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.85) 15%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 80%);
}

/* Icono de lupa para feature-card (abre modal) */
.feature-card[data-bs-toggle="modal"]::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 47%;
  top: calc( 50% - 31px );
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  font-size: 2.5rem;
  color: var(--kendo-primary);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 4;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  background:none;
  width: 40px;
  height: 62px;
}

.feature-card[data-bs-toggle="modal"]:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.feature-card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  color: white;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-content .text-gold {
  color: var(--kendo-primary) !important;
}

.feature-card:hover .feature-card-content {
  transform: translateY(-5px);
}

.feature-card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
}

/* Badge/subtítulo dorado - estilo unificado como portada */
.feature-card-content .badge {
  background: transparent !important;
  color: var(--kendo-primary) !important;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 5px 12px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-card-content .badge {
  transform: scale(1.1);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.feature-card-content p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5),
              0 0 40px rgba(212, 175, 55, 0.15);
}

.feature-card:hover .feature-card-content h3 {
  color: var(--kendo-primary);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  transform: scale(1.1);
}

.feature-card:hover .feature-card-content p {
  color: #fff;
  opacity: 1;
}

.feature-card.feature-card-light .feature-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.feature-card.feature-card-light:hover .feature-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.85) 15%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 80%);
}

/* --- Cards --- */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(145deg, rgba(25, 25, 25, 0.95), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4),
              0 0 30px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.2);
}

.card.bg-black {
  background-color: var(--kendo-darker) !important;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

/* --- Card Evento (clickable) --- */
.card-evento {
  cursor: pointer;
  position: relative;
}

.card-evento::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--kendo-primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-evento:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.4);
}

.card-evento:hover::after {
  opacity: 1;
}

/* --- Sections --- */
section h1,
section h2 {
  font-weight: 700;
}
section{
    background-repeat: repeat;
    background-size: auto;
    background-position: center;
    padding:100px 0;
}
section.bg-dark {
    background-color: #0000008f !important;
    position: relative;
}
section.bg-dark:after {
    background-color: #000 !important;
    background-image: url(../img/fondo_negro_logo.jpg);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    opacity: 1;
}
section:not(.bg-dark) {
    background-color: #fff !important;
    background-image: url(../img/fondo_blanco_logo.jpg);
}

/* --- Accordion (Menu) Modern --- */
.accordion-item {
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(5, 5, 5, 0.98));
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px !important;
  margin-bottom: 1.2rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:hover {
  border-color: var(--kendo-primary);
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.15);
}

.accordion-button {
  font-weight: 700;
  font-size: 1.15rem;
  background: transparent;
  color: var(--kendo-primary);
  border: none;
  border-radius: 12px !important;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--kendo-primary) 0%, #c9a227 100%);
  color: #000;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.accordion-button:hover, .accordion-button:focus {
  background: var(--kendo-primary);
  color: #000;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.15);
}

.accordion-body {
  background: rgba(15, 15, 15, 0.95);
  color: #fff;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.list-group-item {
  background: rgba(20, 20, 20, 0.9) !important;
  color: #fff !important;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 3px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem 1.25rem;
}
.list-group-item:last-child {
  border-bottom: none;
}
.list-group-item span {
  color: var(--kendo-primary) !important;
  font-weight: 600;
  transition: all 0.3s ease;
}
.list-group-item:hover {
  background: rgba(30, 30, 30, 0.95) !important;
  border-left: 3px solid var(--kendo-primary);
  padding-left: 1.5rem;
}

.list-group-item:hover span {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* --- Drink Cards (Menu) --- */
.menu-category-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--kendo-primary);
  padding-bottom: 0.75rem;
  display: inline-block;
  position: relative;
  transition: all 0.4s ease;
}

.menu-category-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--kendo-primary), #fff, var(--kendo-primary));
  transition: width 0.5s ease;
}

.menu-category-title:hover::after {
  width: 100%;
}

.menu-category-title .category-icon {
  margin-right: 0.5rem;
}

.drink-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 0px solid rgba(255, 255, 255, 0.05);
}

.drink-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5) 0%, transparent 50%, rgba(212, 175, 55, 0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 3;
}

.drink-card:hover::before {
  opacity: 1;
}

.drink-card-small {
  aspect-ratio: 4/3;
}

.drink-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 4/5;
}

.drink-card:hover .drink-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4) 100%);
}

/* Icono de lupa para drink-card (abre modal) */
.drink-card[data-bs-toggle="modal"]::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  font-size: 2rem;
  color: var(--kendo-primary);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 4;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.drink-card[data-bs-toggle="modal"]:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.drink-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 2;
  text-align: center;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.drink-card:hover .drink-card-content {
  transform: translateY(-5px);
}

.drink-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.drink-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--kendo-primary);
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.drink-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(212, 175, 55, 0.2);
}

.drink-card:hover .drink-name {
  color: var(--kendo-primary);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  transform: scale(1.1);
}

.drink-card:hover .drink-price {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Premium card special styling */
.drink-card-premium {
  border: 2px solid var(--kendo-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.drink-card-premium:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
              0 0 50px rgba(212, 175, 55, 0.35);
}

.drink-card-premium .drink-price {
  font-size: 1.4rem;
}

.modal {
    z-index: 9999;
}

/* --- Menu Navigation Sticky --- */
.menu-nav-sticky {
  position: sticky;
  top:67px; /* Altura del navbar (ampliada) */
  z-index: 9999;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 100%);
  border-top: 1px solid transparent;
  border-bottom: 1px solid rgb(212 175 53 / 50%);
  padding: 0;
  transition: border-top-color 0.3s ease;
}

.menu-nav-sticky.is-stuck {
      border-top: 1px solid rgb(212 175 53 / 50%);
}

/* Dropdown móvil para carta */
.menu-nav-dropdown {
  position: relative;
  padding: 0.5rem 0;
}

.menu-nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--kendo-primary);
  color: var(--kendo-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.menu-nav-dropdown-toggle:hover,
.menu-nav-dropdown-toggle:focus {
  background: rgba(212, 175, 55, 0.1);
}

.menu-nav-dropdown-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-nav-dropdown-current i {
  font-size: 1rem;
}

.menu-nav-dropdown-arrow {
  transition: transform 0.25s ease;
}

.menu-nav-dropdown.is-open .menu-nav-dropdown-arrow {
  transform: rotate(180deg);
}

.menu-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid var(--kendo-primary);
  border-top: none;
  max-height: 60vh;
  overflow-y: auto;
  z-index: 100;
}

.menu-nav-dropdown.is-open .menu-nav-dropdown-menu {
  display: block;
}

.menu-nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.2s ease;
}

.menu-nav-dropdown-item:last-child {
  border-bottom: none;
}

.menu-nav-dropdown-item:hover,
.menu-nav-dropdown-item:focus {
  background: rgba(212, 175, 55, 0.15);
  color: var(--kendo-primary);
}

.menu-nav-dropdown-item.active {
  background: rgba(212, 175, 55, 0.2);
  color: var(--kendo-primary);
}

.menu-nav-dropdown-item i {
  width: 1.25rem;
  text-align: center;
  color: var(--kendo-primary);
}

.menu-nav-scroll {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  gap: 0.5rem;
  padding: 0.75rem 0.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding-inline: 0.25rem;
}

@media (min-width: 992px) {
  .menu-nav-scroll {
    justify-content: center;
  }
}

.menu-nav-scroll::-webkit-scrollbar {
  display: none;
}

.menu-nav-scroll--carta {
  flex-wrap: wrap;
  overflow-x: visible;
  justify-content: center;
}

.menu-nav-scroll--carta .menu-nav-item {
  flex-shrink: 1;
}

.menu-nav-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.35rem;
  background: #00000040;
  color: var(--kendo-primary);
  text-decoration: none;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--kendo-primary);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.menu-nav-item::before {
  display: none;
}

.menu-nav-item:hover::before,
.menu-nav-item.active::before {
  display: none;
}

.menu-nav-item:hover,
.menu-nav-item.active {
  background: var(--kendo-primary);
  color: #000;
  border-color: var(--kendo-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(181, 158, 95, 0.25);
}

.menu-nav-item i {
  margin-right: 0.55rem;
}

.scroll-target {
  scroll-margin-top: 195px; /* Espacio para navbar (ampliado) + menu sticky + 20px de aire, igual en todos los dispositivos */
}

/* --- Buttons --- */
.btn-primary {
  background: linear-gradient(135deg, var(--kendo-primary) 0%, #c9a227 100%);
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::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.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #CDB374 0%, #B59E5F 100%);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline-light {
  border: 2px solid var(--kendo-primary);
  color: var(--kendo-primary);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-outline-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--kendo-primary);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-outline-light:hover::before {
  width: 100%;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--kendo-primary);
  border-color: var(--kendo-primary);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.85rem 2.25rem;
}

/* --- Badges --- */
.badge.bg-primary {
  background-color: var(--kendo-primary) !important;
  border: 1px solid var(--kendo-primary);
  color: #000 !important;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* --- Footer --- */
footer {
  background-color: var(--kendo-darker) !important;
}

footer p {
  margin-bottom: 0.25rem;
}

/* --- Forms --- */
.form-control:focus,
.form-select:focus {
  border-color: var(--kendo-primary);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* --- Custom Modals --- */
.modal-kendo .modal-content {
  background: #000;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.modal-kendo .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: blur(2px);
}

.modal-kendo .modal-header {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 1;
}

.modal-kendo .modal-title {
  color: var(--kendo-primary);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.modal-kendo .btn-close {
  filter: invert(1);
  opacity: 0.7;
}

.modal-kendo .btn-close:hover {
  opacity: 1;
}

.modal-kendo .modal-body {
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.modal-kendo .event-details-shell {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.modal-kendo .event-detail-intro {
  border-bottom: 1px solid rgba(181, 158, 95, 0.35);
  padding-bottom: 0.85rem;
}

.modal-kendo .event-kicker {
  display: inline-block;
  color: var(--kendo-primary);
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.modal-kendo .event-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.modal-kendo .modal-info {
  background: linear-gradient(145deg, rgba(24, 24, 24, 0.95), rgba(10, 10, 10, 0.92));
  border: 1px solid rgba(181, 158, 95, 0.25);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 0;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.modal-kendo .modal-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
}

.modal-kendo .modal-info-item:last-child {
  margin-bottom: 0;
}

.modal-kendo .modal-info-label {
  color: var(--kendo-primary);
  font-weight: 700;
  min-width: 84px;
  flex-shrink: 0;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.modal-kendo .modal-info-value {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 500;
}

.modal-kendo .event-cta-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(181, 158, 95, 0.09);
  border: 1px dashed rgba(181, 158, 95, 0.45);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
}

.modal-kendo .event-cta-note i {
  color: var(--kendo-primary);
  margin-top: 0.1rem;
}

.modal-kendo .modal-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1rem;
}

.modal-kendo .modal-image-container {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
  aspect-ratio: 4 / 5;
}

.modal-kendo .modal-image-container::after {
  content: '\f002';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.modal-kendo .modal-image-container:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.modal-kendo .modal-image-container:hover img {
  transform: scale(1.05);
}

.modal-kendo .modal-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  transition: transform 0.3s ease;
}

.modal-kendo .modal-footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 2rem;
  position: relative;
  z-index: 1;
}

.modal-kendo .modal-badge {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--kendo-primary);
  color: var(--kendo-primary);
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border-radius: 12px;
}

/* Modal Kendo - Textos generales */
.modal-kendo .modal-body p {
  color: rgba(255, 255, 255, 0.85);
}

.modal-kendo .modal-body .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

.modal-kendo .modal-body strong {
  color: var(--kendo-primary);
}

.modal-kendo .modal-body img {
  border: none;
}

/* Modal Kendo - Variante con imagen lateral */
.modal-kendo .row.g-4 {
  --bs-gutter-x: 2rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .modal-kendo .modal-image-container {
    height: 100%;
    min-height: 300px;
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  #heroCarousel .carousel-item img {
    height: 50vh;
  }

  .feature-card-content h3 {
    font-size: 1.25rem;
  }

  .menu-category-title {
    font-size: 1.4rem;
  }

  .drink-name {
    font-size: 0.95rem;
  }

  .drink-price {
    font-size: 1.1rem;
  }

  .drink-card-content {
    padding: 1rem;
  }

  .menu-nav-item {
    padding: 0.45rem 0.85rem;
    font-size: 0.72rem;
  }

  .menu-nav-sticky {
    top: 67px;
  }
}

/* --- Utility Classes --- */
.text-gold {
  color: var(--kendo-primary) !important;
}

.bg-gold {
  background-color: var(--kendo-primary);
}

/* --- Next Event Card --- */
.next-event-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.next-event-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
              0 0 50px rgba(212, 175, 55, 0.15);
  transform: translateY(-5px);
}

.next-event-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

.next-event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
}

.next-event-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--kendo-primary) 0%, #c9a227 100%);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6); }
}

.next-event-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.next-event-day {
  color: var(--kendo-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.next-event-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0;
  transition: all 0.4s ease;
}

.next-event-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.next-event-countdown {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.countdown-item {
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
}

.countdown-item:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.1);
}

.countdown-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--kendo-primary);
  line-height: 1;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.countdown-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* --- Week Schedule --- */
.week-schedule {
  padding: 1rem 0;
}

.week-event-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.week-event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5) 0%, transparent 50%, rgba(212, 175, 55, 0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 3;
}

.week-event-card:hover::before {
  opacity: 1;
}

.week-event-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(212, 175, 55, 0.2);
}

.week-event-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.week-event-card:hover .week-event-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.3) 100%);
}

.week-event-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 2;
  text-align: center;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.week-event-card:hover .week-event-card-content {
  transform: translateY(-5px);
}

.week-event-card-day {
  display: inline-block;
  background: linear-gradient(135deg, var(--kendo-primary) 0%, #c9a227 100%);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
  transition: all 0.4s ease;
}

.week-event-card:hover .week-event-card-day {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.week-event-card-name {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.week-event-card-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.week-event-card:hover .week-event-card-name {
  color: var(--kendo-primary);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  transform: scale(1.1);
}

.week-event-card:hover .week-event-card-desc {
  color: rgba(255,255,255,0.9);
}

/* --- Carta Section --- */
.carta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

.carta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
}

.carta-preview-card {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 0px solid rgba(255, 255, 255, 0.05);
}

.carta-preview-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5) 0%, transparent 50%, rgba(212, 175, 55, 0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 3;
}

.carta-preview-card:hover::before {
  opacity: 1;
}

.carta-preview-card:hover {
  transform: translateY(-10px) scale(1.03);
  text-decoration: none;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(212, 175, 55, 0.2);
}
.carta-preview-card-premium {
    border: 2px solid var(--kendo-primary) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}
.carta-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.52) 30%,
    rgba(0,0,0,0.0) 70%
  );
  transition: background 0.7s cubic-bezier(.4,1.5,.6,1), clip-path 0.7s cubic-bezier(.4,1.5,.6,1);
  clip-path: none;
  border: none !important;
  pointer-events: none;
  z-index: 1;
}

.carta-preview-card:hover .carta-preview-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.85) 15%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 80%);
  clip-path: none;
}

.carta-preview-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  text-align: center;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carta-preview-card:hover .carta-preview-content {
  transform: translateY(-8px);
}

/* Subtítulo (día del evento o categoría) */
.carta-preview-content span,
.carta-preview-content .small {
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  transition: all 0.4s ease;
}

.carta-preview-card:hover .carta-preview-content span,
.carta-preview-card:hover .carta-preview-content .small {
  transform: scale(1.1);
}

/* Título principal del card */
.carta-preview-content h5 {
  color: #B59E5F;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carta-preview-card:hover .carta-preview-content h5 {
  color: var(--kendo-primary);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  transform: scale(1.05);
}

/* Descripción/ejemplos debajo del título */
.carta-preview-examples {
  color: #fff;
  margin: 0.5rem 15px 0 15px;
  font-size: 0.85rem;
  line-height: 1.1rem;
  display: block;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
  transition: all 0.4s ease;
}

.carta-preview-card:hover .carta-preview-examples {
  color: rgba(255, 255, 255, 0.95);
  transform: scale(1.05);
}

/* Descripción especial para cards de carta (span debajo del h5) */
.carta-preview-desc {
  display: block;
  margin-top: 0.38rem !important;
  margin-bottom: 0 !important;
  font-size: 0.95rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}

.carta-preview-card:hover .carta-preview-desc {
  color: #fff;
}

/* Ribbon flotante para cards de eventos (día de la semana) */
.carta-preview-ribbon {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--kendo-primary);
  color: #222;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.35rem 1.1rem 0.35rem 0.9rem;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 2px 12px rgba(212,175,55,0.15);
  z-index: 10;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  pointer-events: none;
  transition: background 0.3s, color 0.3s;
}

.carta-preview-card:hover .carta-preview-ribbon {
  background: #fff;
  color: var(--kendo-primary);
}

/* Badge flotante animado para cards de eventos (relleno dorado y texto negro en hover) */
.carta-preview-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--kendo-primary);
  font-size: 0.82rem;
  padding: 0.18rem 0.7rem;
  border-radius: 12px;
  box-shadow: none;
  z-index: 10;
  text-transform: uppercase;
  display: inline-block;
  pointer-events: none;
  transition: color 0.3s, border-color 0.3s;
  overflow: hidden;
  background-color: var(--kendo-primary) !important;
  border: 1px solid var(--kendo-primary);
  color: #000 !important;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.carta-preview-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--kendo-primary);
  border-radius: 0px;
  z-index: 1;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carta-preview-card:hover .carta-preview-badge::before {
  width: 100%;
}

.carta-preview-badge span {
  position: relative;
  z-index: 2;
  transition: color 0.3s;
}

.carta-preview-card:hover .carta-preview-badge span {
  color: #111;
}

.carta-preview-card:hover .carta-preview-badge {
  border-color: var(--kendo-primary);
}

/* Responsive */
@media (max-width: 991px) {
  .next-event-card {
    min-height: 350px;
  }
  
  .next-event-title {
    font-size: 1.5rem;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .week-event-card-name {
    font-size: 0.95rem;
  }
  
  .week-event-card-desc {
    font-size: 0.75rem;
  }
  
  .week-event-card-day {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }

  section.section-fullscreen {
    padding: 100px 0px;
  }
  
  section {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}

@media (max-width: 991px) and (orientation: landscape) {
  .menu-nav-scroll {
    transform: scale(.6);
    padding: 1px 0px;
  }
  .event-bar {
    padding: 0px 0px;
    top: 70px;
  }
  .event-bar .event-bar-content {
    transform: scale(.6);
  }
}

/* --- Social Icons --- */
.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icons li {
  margin: 0;
  padding: 0;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--kendo-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.social-icons a:hover::before {
  width: 100%;
  height: 100%;
}

.social-icons a:hover,
.social-icons a:focus,
.social-icons a:active {
  color: #fff;
  border-color: var(--kendo-primary);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

.social-icons-lg a {
  width: 55px;
  height: 55px;
  font-size: 1.4rem;
}

/* --- Footer Links --- */
footer a.text-white-80 {
  transition: all 0.3s ease;
}

footer a.text-white-80:hover,
footer a.text-white-80:focus {
  color: var(--kendo-primary) !important;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 1rem 1.5rem;
  z-index: 9999;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
  min-width: 250px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

#cookieReject {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0;
  text-transform: none;
}

.btn-gold {
  background: var(--kendo-primary);
  color: #000;
  border: 1px solid var(--kendo-primary);
  font-weight: 600;
}

.btn-gold:hover,
.btn-gold:focus {
  background: #c9a227;
  border-color: #c9a227;
  color: #000;
}

@media (max-width: 576px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-text {
    min-width: 100%;
  }
}

/* --- Image Lightbox --- */
.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}

.image-lightbox.show {
  display: flex;
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.image-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  cursor: default;
  animation: lightboxZoomIn 0.3s ease;
  position: relative;
  z-index: 5;
}

@keyframes lightboxZoomIn {
  from {
    transform: scale(0.9);
    transform-origin: left center;
    opacity: 0;
  }
  to {
    transform: scale(1);
    transform-origin: left center;
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.1);
  transform-origin: left center;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Flechas de navegación del lightbox */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0.7;
}

.lightbox-nav:hover {
  background: var(--kendo-primary);
  border-color: var(--kendo-primary);
  color: #000;
  opacity: 1;
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  z-index: 10;
}

/* Galería de imágenes */
.gallery-image {
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: block;
}

.gallery-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}


.gallery-image-container {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image-container .gallery-image {
  display: block;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Borde dorado animado en hover */
.gallery-image-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5) 0%, transparent 50%, rgba(212, 175, 55, 0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 5;
}

.gallery-image-container:hover::before {
  opacity: 1;
}

/* Icono de lupa */
.gallery-image-container::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  font-size: 2.5rem;
  color: var(--kendo-primary);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 4;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  background: none;
  width: 40px;
  height: 62px;
}

.gallery-image-container:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-image-container:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(212, 175, 55, 0.2);
}

.gallery-image-container:hover .gallery-image {
  transform: none;
}

/* Responsive lightbox */
@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .lightbox-prev {
    left: 1rem;
  }
  
  .lightbox-next {
    right: 1rem;
  }
  
  .lightbox-close {
    top: 1rem;
    right: 1rem;
  }
}

/* ---- Secciones interiores: eyebrow / title / subtitle compartidos ---- */

/* "── DESCUBRE ──" */
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  font-weight: 500;
  text-transform: uppercase;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--kendo-primary);
  flex-shrink: 0;
}

/* Títulos grandes de sección (más pequeño que el hero) */
.section-title {
  font-size: clamp(2.8rem, 7vw, 7.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Subtítulo de sección */
.section-subtitle {
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.9;
  font-weight: 400;
  opacity: 0.9;
}

/* ---- Cards de categorías de carta ---- */
.carta-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.8rem 1rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  width: 100%;
  transition: background 0.25s, border-color 0.25s;
}
.carta-cat-card:hover {
  background: rgba(181, 158, 95, 0.1);
  border-color: rgba(181, 158, 95, 0.35);
}
.carta-cat-card i {
  font-size: 1.9rem;
  color: var(--kendo-primary);
}
.carta-cat-card span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--kendo-primary);
  width: 100%;
  text-align: center;
  line-height: 1.3;
}
.carta-cat-card--cta i,
.carta-cat-card--cta span {
  color: var(--kendo-primary);
}

/* height: 100dvh fija la sección exactamente al viewport real (incluyendo
   barra dinámica de móviles). Con flex-column la features bar queda siempre
   al fondo sin depender de position:absolute ni de cálculos de min-height. */
.hero-home {
  height: 100vh;       /* fallback navegadores sin dvh */
  height: 100dvh;      /* viewport dinámico real */
  min-height: unset;   /* cancela el min-height de .hero-product */
  flex-direction: column !important;
  align-items: stretch !important;
  padding:0px !important;
}

/* Ocupa todo el espacio entre navbar y features bar */
.hero-main-content {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 25px;
  padding-bottom: 0px;
}

/* Eyebrow: "EL TEMPLO DEL REGGAETÓN" */
.hero-eyebrow {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
}

/* Título principal hero.
   min(10.5vw, 17vh): escala con ancho Y con alto del viewport,
   evitando overflow tanto en landscape (vh pequeño) como en pantallas anchas. */
.hero-title {
  font-size: clamp(2.2rem, min(5vw, 17vh), 13rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

/* Separador dorado */
.hero-divider {
  border: none;
  border-top: 1px solid var(--kendo-primary);
  opacity: 1;
  width: 60px;
  margin-left: auto;
  margin-right: auto;
}

/* Subtítulo hero */
.hero-subtitle {
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.9;
  opacity: 0.9;
}
.hero-subtitle strong,
.section-subtitle strong {
  font-weight: 700;
  letter-spacing: inherit;
}

/* Botón CTA oro */
.btn-hero-gold {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--kendo-primary);
  color: var(--kendo-primary);
  background: #00000040;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s, color 0.25s;
}
.btn-hero-gold:hover,
.btn-hero-gold:focus {
  background: var(--kendo-primary);
  color: #000;
}

/* Experiencia: columnas icono + título + texto, separadas por línea vertical */
.experience-feature {
  padding: 1.5rem;
}
.experience-feature i {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}
.experience-feature h2 {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.experience-feature p {
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .experience-feature + .experience-feature {
    border-left: 1px solid rgba(212, 175, 55, 0.25);
  }
}

/* --- Descubre Kendo (split imagen + contenido) --- */
.discover-section {
  background: #000;
}
.discover-image-carousel {
  position: relative;
  min-height: 320px;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 12px;
}
.discover-image-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.discover-image-slide.is-active {
  opacity: 1;
}
.discover-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  font-weight: 500;
  text-transform: uppercase;
}
.discover-eyebrow::after {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--kendo-primary);
  flex-shrink: 0;
}
.discover-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.discover-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.discover-feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--kendo-primary);
  border-radius: 6px;
  color: var(--kendo-primary);
  font-size: 1.3rem;
}
.discover-feature h3 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.discover-feature p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

/* Último hijo del flex-column: siempre en el fondo */
.hero-features-bar {
  flex-shrink: 0;
  width: 100%;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}
.hero-features-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.hero-features-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.hero-features-item i {
  font-size: 1.6rem;
}
.hero-features-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.hero-features-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
}
.hero-features-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  font-weight: 400;
}
.hero-features-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* --- Event Bar (Barra Próximo Evento) --- */
.event-bar {
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.75rem 0;
  position: sticky;
  top: 72px;
  z-index: 1020;
  backdrop-filter: blur(10px);
}

.event-bar.is-stuck {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.event-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.event-bar-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.event-bar-badge {
  background: var(--kendo-primary);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-bar-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.event-bar-title strong {
  color: #fff;
  font-weight: 600;
}

.event-bar-countdown {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.event-bar-countdown-item {
  display: flex;
  align-items: baseline;
  background: rgba(212, 175, 55, 0.15);
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  min-width: 45px;
  justify-content: center;
}

.event-bar-countdown-item span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--kendo-primary);
}

.event-bar-countdown-item small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 2px;
}

.event-bar-btn {
  background: transparent;
  color: var(--kendo-primary);
  border: 1px solid var(--kendo-primary);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  line-height: 21px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.event-bar-btn:hover {
  background: var(--kendo-primary);
  color: #000;
}


@media (max-width: 767px) {
  .hero-home {
    height: 100dvh;
  }
  .hero-main-content {
    padding-top: 80px;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }
  .hero-subtitle,
  .section-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    line-height: 1.9;
  }
  .btn-hero-gold {
    padding: 0.8rem 1.8rem;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
  }
  .hero-features-inner {
    gap: 1.5rem;
  }
  .hero-features-item i {
    font-size: 1.3rem;
  }
  .hero-features-title {
    font-size: 0.72rem;
  }
  .hero-features-sub {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }
  
  .event-bar {
    padding: 0.6rem 0;
    top: 72px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
  }
  
  .event-bar-content {
    gap: 0.75rem;
  }
  
  .event-bar-info {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
  
  .event-bar-title {
    font-size: 0.85rem;
  }
  
  .event-bar-countdown-item {
    min-width: 38px;
    padding: 0.25rem 0.4rem;
  }
  
  .event-bar-countdown-item span {
    font-size: 0.95rem;
  }
  
  .event-bar-btn {
    padding: 0.35rem 0.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 575px) {
  .hero-home {
    height: 100svh;    /* svh mejor que dvh en iOS Safari antiguo */
  }
  .hero-main-content {
    padding-top: 72px;
    padding-bottom: 1rem;
  }
  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }
  .hero-subtitle,
  .section-subtitle {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    line-height: 1.9;
  }
  .hero-subtitle br,
  .section-subtitle br {
    display: none;
  }
  .btn-hero-gold {
    padding: 0.75rem 1.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }
  .hero-features-bar {
    padding: 1rem 0;
  }
  .hero-features-inner {
    gap: 0;
    justify-content: space-evenly;
  }
  .hero-features-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    flex: 1;
  }
  .hero-features-text {
    text-align: center;
  }
  .hero-features-item i {
    font-size: 1.1rem;
  }
  .hero-features-title {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
  }
  .hero-features-sub {
    display: none;
  }
  .hero-features-divider {
    width: 1px;
    height: 44px;
    align-self: center;
    flex-shrink: 0;
  }

  .event-bar {
    top: 72px;
  }

  .event-bar-countdown {
    gap: 0.3rem;
  }

  .menu-nav-item{
    padding: 0.72rem 1rem;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }

  .menu-nav-sticky {
    top: 67px;
  }

  .modal-kendo .modal-info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 0.7rem 0.75rem;
  }

  .modal-kendo .event-detail-intro {
    padding-bottom: 0.65rem;
  }

  .modal-kendo .event-note {
    font-size: 0.86rem;
  }

  .modal-kendo .event-cta-note {
    font-size: 0.84rem;
  }

  .event-bar-info {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-content: center;
      justify-content: center;
      align-items: center;
  }

}

/* ===================================
   CONTACT SECTION - Modern Styles
   =================================== */

.contact-section {
  padding: 15px 0 50px 0px;
}

/* Contact Cards */
.contact-card {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--kendo-primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
              0 0 30px rgba(212, 175, 55, 0.1);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--kendo-primary);
  transition: all 0.4s ease;
}

.contact-card:hover .contact-card-icon {
  background: var(--kendo-primary);
  color: #000;
  transform: scale(1.1) rotate(5deg);
  transform-origin: left center;
}

.contact-card-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.contact-card-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.contact-card-text a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card-text a:hover {
  color: var(--kendo-primary);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: linear-gradient(145deg, rgba(25, 25, 25, 0.95), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.contact-form-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--kendo-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.contact-form-title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

/* Form Floating Custom */
.form-floating-custom {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-floating-custom .form-control,
.form-floating-custom .form-select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  height: auto;
}

.form-floating-custom textarea.form-control {
  min-height: 120px;
  resize: none;
}

.form-floating-custom .form-control:focus,
.form-floating-custom .form-select:focus {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--kendo-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  outline: none;
}

.form-floating-custom .form-control::placeholder {
  color: transparent;
}

.form-floating-custom label {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  padding: 0 0.25rem;
}

.form-floating-custom textarea.form-control + label {
  top: 1.25rem;
  transform: translateY(0);
}

.form-floating-custom .form-control:focus + label,
.form-floating-custom .form-control:not(:placeholder-shown) + label,
.form-floating-custom .form-select:focus + label,
.form-floating-custom .form-select:valid + label {
  top: 0;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: var(--kendo-primary);
  background: linear-gradient(to bottom, transparent 40%, rgba(15, 15, 15, 1) 40%);
}

.form-floating-custom .form-select option {
  background: #111;
  color: #fff;
}

/* Contact Submit Button */
.btn.btn-contact-submit {
  width: 100%;
  background-color: transparent !important;
  border: 1px solid var(--kendo-primary) !important;
  color: var(--kendo-primary) !important;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.5rem;
  text-decoration: none;
}

.btn.btn-contact-submit:hover,
.btn.btn-contact-submit:focus {
  background-color: var(--kendo-primary) !important;
  border-color: var(--kendo-primary) !important;
  color: #000 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.btn.btn-contact-submit i {
  transition: transform 0.3s ease;
}

.btn.btn-contact-submit:hover i,
.btn.btn-contact-submit:focus i {
  transform: translateX(5px);
}

/* Contact Map Wrapper */
.contact-map-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  filter: grayscale(100%) contrast(1.1) brightness(0.8);
  transition: filter 0.5s ease;
}

.contact-map-wrapper:hover .contact-map-iframe {
  filter: grayscale(50%) contrast(1.05) brightness(0.9);
}

.contact-map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  padding: 3rem 2rem 2rem;
  z-index: 2;
  pointer-events: none;
}

.contact-map-info {
  text-align: center;
  pointer-events: all;
}

.contact-map-pin {
  width: 60px;
  height: 60px;
  background: var(--kendo-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #000;
  animation: mapPinBounce 2s infinite;
}

@keyframes mapPinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.contact-map-info h2 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-map-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.btn-map-directions {
  background: transparent;
  border: 1px solid var(--kendo-primary);
  color: var(--kendo-primary);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-map-directions:hover {
  background: var(--kendo-primary);
  color: #000;
}

/* Contact Social Section */
.contact-social-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-top: none;
  text-align: center;
}

.contact-social-title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.contact-social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.contact-social-link {
  width: 55px;
  height: 55px;
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-social-link:hover {
  background: var(--kendo-primary);
  border-color: var(--kendo-primary);
  color: #000;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Contact Responsive */
@media (max-width: 991px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-map-wrapper {
    min-height: 400px;
  }
  
  .contact-map-iframe {
    min-height: 400px;
  }
}

@media (max-width: 767px) {
  .contact-card {
    padding: 1.5rem 1rem;
  }
  
  .contact-card-icon {
    width: 55px;
    height: 55px;
    font-size: 1.25rem;
  }
  
  .contact-card-title {
    font-size: 1rem;
  }
  
  .contact-card-text {
    font-size: 0.85rem;
  }
  
  .contact-form-wrapper {
    padding: 1.75rem;
  }
  
  .contact-form-title {
    font-size: 1.5rem;
  }
  
  .contact-map-wrapper {
    min-height: 350px;
    margin-top: 0px;
  }
  
  .contact-map-iframe {
    min-height: 350px;
  }
  
  .contact-social-link {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
}

/* ===================================
   GLOBAL ANIMATION UTILITIES
   =================================== */

/* Fade In Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
    transform-origin: left center;
  }
  to {
    opacity: 1;
    transform: scale(1);
    transform-origin: left center;
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.5); }
}

/* Utility Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in-scale {
  animation: fadeInScale 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-glow-pulse {
  animation: glowPulse 2s infinite;
}

/* Smooth transitions for all interactive elements */
a, button, input, select, textarea, .btn {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gold glow effect on hover for text elements */
.hover-glow:hover {
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Scale up effect */
.hover-scale {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
  transform: scale(1.05);
  transform-origin: left center;
}

/* Lift effect */
.hover-lift {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Border glow effect */
.hover-border-glow {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-border-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--kendo-primary), transparent, var(--kendo-primary));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.hover-border-glow:hover::after {
  opacity: 1;
}

/* Image zoom effect */
.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-zoom:hover img {
  transform: scale(1.08);
  transform-origin: left center;
}

#mainNavbar.homepage .navbar-logo {
    padding: 0px;
}
#mainNavbar {
    padding: 14px 0;
}
#mainNavbar.homepage.scrolled .btn-nav-reservar {
    display: block;
}
#mainNavbar.homepage .btn-nav-reservar {
    display: none;
}