/* LUXURY V2 — Less gold, bigger text, warm depth */
:root {
  --bg: #000000 !important;
  --bg2: #050505 !important;
  --card: #0a0a0a !important;
}

body {
  background: #000 !important;
}

.section {
  background: #000 !important;
}
.preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s cubic-bezier(0.7, 0, 0.3, 1), visibility 1s;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* Permite clics debajo mientras se desvanece */
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  height: 180px; /* Logo más grande */
  margin-bottom: 40px;
  animation: logoPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(214,177,94,0.4));
}

.preloader-bar {
  width: 150px;
  height: 2px;
  background: rgba(255,255,255,0.05);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.preloader-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, #D6B15E, transparent);
  animation: barSlide 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes logoPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes barSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* BIGGER FONTS */
.section-title{font-size:clamp(2.6rem,4.5vw,4rem)!important}
.section-label{font-size:.72rem!important;letter-spacing:6px!important;margin-bottom:8px!important;display:block}
.nosotros-text p.desc{font-size:1.05rem!important;text-align:justify!important}
.nav-links a{font-size:.72rem!important}
.menu-item .name{font-size:1.1rem!important; font-weight: 300!important; letter-spacing: 0.5px!important}
/* HERO REFINEMENTS */
.hero-bg {
  background-image: url('assets/images/hero-bg.png.jpg') !important; /* Corregido nombre del archivo */
}

.hero-subtitle {
  font-weight: 700 !important;
  letter-spacing: 12px !important;
  margin-top: 15px;
  color: #fff !important; /* Más blanco, no gris */
}

.hero-tagline {
  font-family: var(--fe, 'Cormorant Garamond'), serif !important;
  font-style: italic !important;
  font-weight: 600 !important;
  font-size: 1.6rem !important;
  color: #fff !important;
  margin-top: 25px !important; /* Más arriba */
}

.hero-schedule-inline {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #D6B15E;
  margin-top: 10px !important; /* Más arriba */
  font-weight: 500;
}

.hero-btns {
  margin-top: 25px !important; /* Más arriba */
}

/* Contenedor preparado para la escritura */
.hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* HERO REFINEMENTS (SISTEMA DE FADE SIMPLE) */
.hero-title {
  text-shadow: 0 0 30px rgba(214,177,94,0.4); /* Respaldo Dorado */
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.hero-subtitle {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
  transition-delay: 0.4s;
}

.hero-tagline, .hero-schedule-inline, .hero-btns {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease-in-out;
}

/* Activación al irse el preloader */
.animate-text .hero-title { opacity: 1; transform: translateY(0); }
.animate-text .hero-subtitle { opacity: 1; transform: translateY(0); }
.animate-text .hero-tagline { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.animate-text .hero-schedule-inline { 
  opacity: 1; 
  transform: translateY(0); 
  transition-delay: 0.8s; /* Aparece antes */
}
.animate-text .hero-btns { opacity: 1; transform: translateY(0); transition-delay: 1.1s; }
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.5, 0, 0.2, 1), transform 1s cubic-bezier(0.5, 0, 0.2, 1);
  will-change: opacity, transform;
}

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

/* Stagger reveals */
.nosotros.visible .nosotros-carousel-wrapper { transition-delay: 0.2s }
.nosotros.visible .nosotros-text { transition-delay: 0.4s }

.menu-item .price{font-size:1.05rem!important; font-weight: 500!important; color: var(--ivory) !important}
.menu-category h3{font-size: 1.5rem!important; border-bottom: 1px solid rgba(214,177,94,0.3); padding-bottom: 15px; margin-bottom: 25px!important}
.cat-sub{font-size: 0.65rem!important; letter-spacing: 3px!important; color: rgba(214,177,94,0.8)!important}
.evento-card h3{font-size:1.2rem!important}
.evento-card p{font-size:.92rem!important;line-height:1.9!important;text-align:justify!important}
.btn-primary,.btn-outline{font-size:.75rem!important;padding:20px 58px!important}
.hero-tagline{font-size:1.4rem!important;max-width:600px;margin-left:auto;margin-right:auto;line-height:1.8!important}
.footer ul li a,.footer ul li span{font-size:.9rem!important}
.footer-brand p{font-size:.95rem!important}
.info-card h4{font-size:1rem!important}
.info-card p{font-size:.85rem!important}

/* REDUCE GOLD - more ivory/cream tones */
.section-title{color:var(--ivory,#F8EFE2)!important;text-shadow:none!important}
.section-title em{background:linear-gradient(135deg,#D6B15E,#C9A45C)!important;-webkit-background-clip:text!important;-webkit-text-fill-color:transparent!important}
.section-label{color:rgba(214,177,94,.6)!important}

/* WARM BACKGROUNDS WITH SUBTLE DEPTH */
body::before{content:'';position:fixed;inset:0;z-index:0;pointer-events:none;opacity:.025;background:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")}
#nosotros{position:relative}
#nosotros::before{content:'';position:absolute;top:0;left:0;width:45%;height:100%;background:radial-gradient(ellipse at 15% 50%,rgba(214,177,94,.04),transparent 55%);pointer-events:none}
#reservas{position:relative}
#reservas::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at center,rgba(214,177,94,.05),transparent 50%);pointer-events:none}

/* ROUNDED PREMIUM BUTTONS */
.btn-primary{border-radius:999px!important;background:linear-gradient(135deg,#D6B15E,#B88A3B)!important;color:#0a0806!important;border:1px solid rgba(214,177,94,.4)!important;box-shadow:0 4px 20px rgba(214,177,94,.12)!important}
.btn-primary:hover{box-shadow:0 8px 35px rgba(214,177,94,.2)!important;transform:translateY(-2px)!important}
.btn-outline{border-radius:999px!important;border:1px solid rgba(214,177,94,.25)!important}
.btn-outline:hover{background:rgba(214,177,94,.06)!important;border-color:rgba(214,177,94,.45)!important}
.btn-submit{border-radius:999px!important;background:linear-gradient(135deg,#D6B15E,#9E6F2D)!important}

/* CARDS WARMTH */
.evento-card,.menu-category,.info-card,.nosotros-card{background: rgba(20,17,14,0.6)!important; border: 1px solid rgba(214,177,94,0.15)!important; backdrop-filter: blur(10px); padding: 40px 30px!important}
.evento-card:hover,.menu-category:hover,.info-card:hover,.nosotros-card:hover{border-color:rgba(214,177,94,0.4)!important; background: rgba(20,17,14,0.8)!important; box-shadow:0 25px 60px rgba(0,0,0,.4)!important}


/* MENU V3 — EXACT MATCH TO SCREENSHOTS */

.menu-section-header {
  margin-bottom: 40px;
  position: relative;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title-wrap .icon {
  width: 24px;
  height: 24px;
  stroke: #D6B15E;
  stroke-width: 1.5px;
  fill: none;
  filter: drop-shadow(0 0 8px rgba(214,177,94,0.3));
}

.section-title-wrap h3 {
  font-family: var(--fd, 'Playfair Display'), serif;
  font-size: 2.2rem;
  letter-spacing: 2px;
  font-weight: 700;
  background: linear-gradient(135deg, #F8EFE2 0%, #D6B15E 50%, #9E6F2D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.section-title-wrap .title-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(214,177,94,0.6), transparent);
  margin-left: 20px;
}

.menu-header .main-title { 
  font-family: var(--fd, 'Playfair Display'), serif; 
  font-size: 5.5rem!important; 
  font-weight: 900!important;
  background: linear-gradient(135deg, #FFF5E1 0%, #D6B15E 50%, #855C1B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  letter-spacing: -2px;
  filter: drop-shadow(0 0 1px rgba(214,177,94,0.2));
  transition: filter 0.4s ease;
}

.menu-header .main-title:hover {
  filter: drop-shadow(0 0 15px rgba(214,177,94,0.3));
}

/* 2-COLUMN GRID FOR COCTELES & COMIDA */
.menu-grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 60px;
}

.menu-item-new {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px dotted rgba(255,255,255,0.1);
}

.item-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5px;
}

.item-main .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #F8EFE2;
  letter-spacing: 1px;
  font-weight: 500;
}

.item-main .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #D6B15E;
  font-weight: 600;
}

.item-desc {
  font-size: 0.85rem;
  color: rgba(248, 239, 226, 0.5);
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}

/* SERVICES GRID (CARDS) */
.menu-grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.service-card {
  background: rgba(20, 17, 14, 0.4);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 30px;
  backdrop-filter: blur(5px);
}

.service-cat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #D6B15E;
  letter-spacing: 2px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(214,177,94,0.2);
  padding-bottom: 10px;
}

.cat-sub-new {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.cat-sub-new span {
  width: 60px;
  text-align: right;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 0.9rem;
  color: rgba(248, 239, 226, 0.8);
}

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

.service-item .vals {
  display: flex;
  gap: 20px;
}

.service-item .vals span {
  width: 60px;
  text-align: right;
  color: #D6B15E;
  font-weight: 500;
}

.menu-header { text-align: center; margin-bottom: 80px }
.menu-header .pre-title { font-size: 0.7rem; letter-spacing: 5px; color: #D6B15E; text-transform: uppercase; margin-bottom: 10px }
.menu-header .tagline { font-family: var(--fe, 'Cormorant Garamond'), serif; font-style: italic; font-size: 1.3rem; color: rgba(248, 239, 226, 0.6) }

.menu-footer { text-align: center; margin-top: 60px; font-size: 0.75rem; color: rgba(214,177,94,0.4); font-style: italic; letter-spacing: 1px }

@media (max-width: 768px) {
  .menu-grid-2-col {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .menu-header .main-title { font-size: 3rem!important }
}


/* CAROUSEL & NOSOTROS V2 */
.nosotros {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.nosotros-text .section-title {
  font-family: var(--fd);
  font-size: 3.5rem!important;
  font-weight: 800!important;
  margin-bottom: 12px; /* Espacio bajo el título */
  letter-spacing: -2px;
  color: #fff;
  display: flex;
  gap: 15px;
}

.nosotros-text .section-title span.gold {
  background: linear-gradient(135deg, #FFF5E1 0%, #D6B15E 50%, #855C1B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nosotros-text {
  max-width: 550px; /* Evita que el texto se vea muy ancho */
}

.nosotros-text .desc {
  letter-spacing: 0!important; 
  word-spacing: 0!important;
  line-height: 1.3!important; 
  margin-bottom: 15px!important; 
  max-width: 480px;
  color: rgba(248, 239, 226, 0.9);
  text-align: justify; /* Texto justificado */
}

.nosotros-carousel-wrapper {
  position: relative;
  padding: 15px; /* Espacio para el segundo borde */
  border: 1px solid rgba(214,177,94,0.15); /* Borde Exterior */
  border-radius: 65px;
  max-width: 400px;
  width: 85%;
  margin: 0 auto;
}

.nosotros-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5.8;
  overflow: hidden;
  border-radius: 50px;
  border: 1px solid rgba(214,177,94,0.4); /* Borde Interior */
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  background: #000;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: block!important;
}

.carousel-item.active {
  opacity: 1;
  z-index: 2;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Evita estiramiento */
  transition: transform 6s linear;
}

.carousel-item.active img {
  transform: scale(1.15); /* Efecto Ken Burns / Parallax sutil */
}

.carousel-controls {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 0.8rem;
}

.carousel-btn:hover {
  background: #D6B15E;
  color: #000;
  border-color: #D6B15E;
  transform: scale(1.1);
}

.nosotros-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.nosotros-card {
  text-align: left!important;
}

.nosotros-card h4 {
  font-family: var(--fd);
  color: #D6B15E;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.nosotros-card p {
  font-size: 0.85rem;
  color: rgba(248, 239, 226, 0.7);
  line-height: 1.6;
}

.nosotros-footer-text {
  margin-top: 30px;
  font-family: var(--fe);
  font-style: italic;
  color: #D6B15E;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .nosotros {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* MOBILE ADAPTATION (ULTRA IMPORTANT) */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden; /* Garantiza que no haya scroll horizontal */
    width: 100%;
    position: relative;
  }

  .navbar {
    padding: 15px 20px !important;
  }

  .hero-title {
    font-size: 2.8rem !important; /* Más pequeño para que no se salga */
    letter-spacing: 1px !important;
    width: 100%;
    word-wrap: break-word;
  }

  .hero-subtitle {
    font-size: 0.8rem !important;
    letter-spacing: 4px !important;
    margin-top: 5px;
  }

  .hero-tagline {
    font-size: 1.1rem !important;
    margin-top: 15px !important;
    padding: 0 10px;
    line-height: 1.4;
  }

  .hero-schedule-inline {
    font-size: 0.7rem !important;
    letter-spacing: 1px !important;
    margin-top: 5px !important;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 20px !important;
    margin-top: 20px !important;
  }

  .hero-btns .btn-primary, .hero-btns .btn-outline {
    width: 100%;
    text-align: center;
    padding: 15px 20px !important;
    font-size: 0.6rem !important;
  }

  .preloader-logo {
    height: 100px;
  }

  .nosotros-carousel-wrapper {
    width: calc(100% - 20px);
    margin: 0 auto;
    height: 350px;
  }

  .nosotros-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .section {
    padding: 60px 15px !important;
  }

  .section-title {
    font-size: 2.2rem !important;
  }
}

/* EVENTOS REDESIGN */
.eventos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.eventos-header {
  margin-bottom: 60px;
}

.gold-text {
  color: #D6B15E;
}

.section-desc {
  max-width: 700px;
  margin: 20px auto 0;
  color: rgba(248, 239, 226, 0.6);
  font-size: 1rem;
  line-height: 1.6;
}

.eventos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.evento-card-new {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(214,177,94,0.1);
  padding: 40px 30px;
  transition: all 0.4s ease;
  text-align: left;
}

.evento-card-new:hover {
  background: rgba(214,177,94,0.05);
  border-color: #D6B15E;
  transform: translateY(-5px);
}

.ev-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(214,177,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 25px 0;
  border-radius: 4px;
}

.ev-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: #D6B15E;
}

.evento-card-new h3 {
  font-family: var(--fd);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #fff;
}

.evento-card-new p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.eventos-cta-box {
  background: #050505;
  border: 1px solid rgba(214,177,94,0.2);
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto 80px;
}

.eventos-cta-box h3 {
  font-family: var(--fd);
  font-size: 1.8rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
  color: #fff;
}

.eventos-cta-box p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.eventos-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.stat-num {
  display: block;
  font-family: var(--fd);
  font-size: 2.2rem;
  color: #D6B15E;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 992px) {
  .eventos-grid { grid-template-columns: repeat(2, 1fr); }
  .eventos-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .eventos-grid { grid-template-columns: 1fr; }
  .eventos-stats { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; }
  .eventos-cta-box h3 { font-size: 1.4rem; }
}

/* RESERVAS REDESIGN */
.reservas-header-new {
  margin-bottom: 50px;
}

.res-icon {
  margin-bottom: 25px;
}

.res-icon svg {
  stroke: #D6B15E;
}

.reserva-main-title {
  font-family: var(--fd);
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin: 15px 0;
  line-height: 1;
}

.reserva-tagline {
  font-family: var(--fe);
  font-size: 2.2rem;
  font-style: italic;
  margin-bottom: 30px;
  color: #fff;
}

.reserva-desc {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .reserva-main-title { font-size: 2.5rem; }
  .reserva-tagline { font-size: 1.5rem; }
  .reserva-desc { font-size: 0.95rem; }
}

/* PROXIMOS EVENTOS DYNAMIC */
.events-grid-dynamic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.event-card-dynamic {
  background: #0a0a0a;
  border: 1px solid rgba(214,177,94,0.1);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.event-card-dynamic:hover {
  transform: translateY(-10px);
  border-color: #D6B15E;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.event-flyer {
  width: 100%;
  max-height: 450px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.event-flyer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s ease;
}

.event-card-dynamic:hover .event-flyer img {
  transform: scale(1.1);
}

.event-info {
  padding: 25px;
  text-align: left;
}

.event-date-tag {
  font-size: 0.7rem;
  color: #D6B15E;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.event-card-dynamic h3 {
  font-family: var(--fd);
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.event-artists {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  display: block;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.event-price {
  font-weight: 600;
  color: #D6B15E;
}

.btn-event-res {
  background: transparent;
  border: 1px solid #D6B15E;
  color: #D6B15E;
  padding: 8px 15px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-event-res:hover {
  background: #D6B15E;
  color: #000;
}

.loading-events {
  grid-column: 1 / -1;
  padding: 100px 0;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

.footer { background: #000 !important; }

/* =====================================================================
   MEJORAS SÓTANO — precios de menú, sección Artistas, modal de evento
   ===================================================================== */

/* ---- PRECIOS DE MENÚ MÁS GRANDES ---- */
.item-main { align-items: center; gap: 18px; }
.item-main .name { font-size: 1.32rem; }
.item-main .price {
  font-size: 1.65rem;
  font-weight: 700;
  color: #E4C878;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-shadow: 0 0 18px rgba(214,177,94,0.15);
}
.item-main .price::before { content: ''; }

/* Servicios (Trago / Botella) — valores más grandes */
.service-item { font-size: 1rem; }
.service-item .vals span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #E4C878;
  width: 72px;
}
.cat-sub-new span { width: 72px; font-size: 0.62rem; }
.service-cat { font-size: 1.3rem; }

@media (max-width: 768px) {
  .item-main .name { font-size: 1.15rem; }
  .item-main .price { font-size: 1.4rem; }
  .service-item .vals span { font-size: 1.1rem; width: 60px; }
  .cat-sub-new span { width: 60px; }
}

/* ---- EVENTOS: entrada libre + botón como <button> ---- */
.event-free { color: var(--gold-l, #dfc07a); font-weight: 500; letter-spacing: 0.5px; }
button.btn-event-res { cursor: pointer; font-family: inherit; }

/* ---- MODAL: banner del show al reservar ---- */
.modal-event-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(214,177,94,0.07);
  border: 1px solid rgba(214,177,94,0.25);
  border-radius: 6px;
  padding: 14px 18px;
  margin: 4px 0 22px;
}
.modal-event-banner svg { width: 26px; height: 26px; flex-shrink: 0; }
.modal-event-banner .meb-title {
  display: block;
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: 0.5px;
}
.modal-event-banner .meb-date {
  display: block;
  color: #D6B15E;
  font-size: 0.72rem;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* ---- SECCIÓN ARTISTAS (MOMENTOS / GALERÍA) ---- */
#artistas { text-align: center; }
.artistas-header { max-width: 640px; margin: 0 auto 55px; text-align: center; }
.artistas-note { width: 34px; height: 34px; margin: 0 auto 18px; display: block; }
.artistas-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(160deg, #dfc07a 0%, #c4a35a 45%, #9e7d32 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.artistas-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
}

.artistas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.artist-card {
  position: relative;
  aspect-ratio: 3 / 4.4;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(214,177,94,0.08);
  background: #0a0a0a;
}
.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.7) contrast(1.05);
  transition: transform 0.9s cubic-bezier(.4,0,.2,1), filter 0.6s ease;
}
.artist-card:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(0.95) contrast(1.05);
}
.artist-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 55%);
  transition: 0.5s;
}
.artist-card:hover::after {
  background: linear-gradient(0deg, rgba(0,0,0,0.72) 0%, transparent 45%);
}
.artist-overlay {
  position: absolute;
  bottom: 24px;
  left: 22px;
  right: 22px;
  z-index: 2;
  text-align: left;
}
.artist-role {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D6B15E;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.45s;
}
.artist-card:hover .artist-role { opacity: 1; transform: translateY(0); }
.artist-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: #F8EFE2;
  margin: 0;
}

@media (max-width: 1024px) {
  .artistas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .artistas-grid { grid-template-columns: 1fr; gap: 16px; }
  .artist-card { aspect-ratio: 3 / 3.6; }
}

/* =====================================================================
   AJUSTES v2 — títulos centrados, fecha fija de evento, fix móvil
   ===================================================================== */

/* ---- TÍTULOS CENTRADOS EN TODAS LAS SECCIONES ---- */
.section-label,
.section-title,
.section-desc { text-align: center; }
.section-line { margin-left: auto; margin-right: auto; }
.nosotros-text { margin-left: auto; margin-right: auto; }
.nosotros-text .section-title { justify-content: center; text-align: center; }

/* ---- MODAL: fecha fija del show ---- */
.fixed-date-box {
  background: rgba(214,177,94,0.08);
  border: 1px solid rgba(214,177,94,0.3);
  border-radius: 8px;
  padding: 16px 18px;
  color: #F8EFE2;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 4px;
}
#fixedDateNote > label { display:flex; align-items:center; gap:6px; }

/* ---- FIX MÓVIL: el carrusel de "Nosotros" no debe montarse sobre el texto ---- */
@media (max-width: 768px) {
  .nosotros-carousel-wrapper {
    height: auto !important;
    max-width: 320px;
    padding: 10px;
    border-radius: 40px;
    margin: 0 auto 10px;
  }
  .nosotros-carousel {
    aspect-ratio: 4 / 4.6;
    border-radius: 30px;
  }
  .nosotros { gap: 35px; }
}

/* ---- Fechas ocupadas: día bloqueado en el calendario de reservas ---- */
.calendar .cal-day.blocked {
  position: relative;
  color: rgba(255,120,120,0.55) !important;
  cursor: not-allowed;
}
.calendar .cal-day.blocked::after {
  content: '';
  position: absolute;
  left: 22%; right: 22%; top: 50%;
  height: 1px;
  background: rgba(255,120,120,0.6);
  transform: rotate(-18deg);
}
