
    :root{ --er-dark:#111318; --er-premium:#f7b500; --er-border:#262a36; }
    body{ font-family:'Poppins', sans-serif; background:#0f0f13; color:#eaeef6; padding-top: 70px; }
    
    .navbar{ background: linear-gradient(90deg, #0f172a 0%, #4f0fb6 100%); }
      

/* Hero */
.premium-hero {
  position: relative;        /* clave para que el overlay se limite al hero */
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: white;
  overflow: hidden;          /* asegura que la imagen no se desborde */
}

/* Imagen como fondo */
.premium-hero .hero-img {
  position: absolute;
  inset: 0;                  /* top, right, bottom, left = 0 */
  width: 100%;
  height: 100%;
  object-fit: cover;          /* hace lo mismo que background-size: cover */
  display: block;

  /* efecto fade + blur */
  opacity: 0;
  filter: blur(12px);
  transform: scale(1.05);
  transition: opacity .4s ease-out, filter .6s ease-out, transform .6s ease-out;
}
.premium-hero .hero-img.loaded {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0; 
  background: linear-gradient(
    180deg, 
    rgba(0,0,0,.2) 0%, 
    rgba(0,0,0,.7) 100%
  );
  z-index: 1;
}

/* Contenido por encima de la imagen y overlay */
.premium-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1rem;
}


    .hero-content{ position:relative; z-index:2; padding:2rem; }
    .premium-badge{ display:inline-block; background:linear-gradient(135deg,var(--er-premium),#ffd768); color:#1f1600; font-weight:700; font-size:.6rem; padding:.35rem .7rem; border-radius:999px; }
    .hero-logo{ width:100px; height:100px; border-radius:16px; background:#fff; padding:2px; object-fit:contain; border:3px solid var(--er-premium); box-shadow:0 0 15px rgba(247,181,0,.6); }
    .action-btns a{ display:inline-flex; align-items:center; gap:.35rem; background:rgba(0,0,0,.6); color:#fff; padding:.5rem .9rem; border-radius:999px; text-decoration:none; transition:.2s; }
    .action-btns a:hover{ background:var(--er-premium); color:#1f1600; }

    /* Cards */
    .er-card{ background:#161922; border:1px solid var(--er-border); border-radius:16px; padding:1.2rem 1.5rem; margin-bottom:1.5rem; }
    .er-section-title{ font-size:1.15rem; font-weight:600; margin-bottom:1rem; color:#fff; }
    .er-sub{ color:#a9b0bd; }

    /* Contacto */
    .contacto-item{ display:flex; align-items:center; gap:.5rem; color:#fff; margin-bottom:.35rem; font-size:.95rem; text-decoration:none; }
    .contacto-item i{ color:var(--er-premium); font-size:1.1rem; min-width:18px; text-align:center; }
    .contacto-item:hover{ color:var(--er-premium); }
    .contacto-whatsapp{ color:#25D366; font-weight:600; }
    .contacto-whatsapp i{ color:#25D366; }

    /* Horario */
    .horario-list li{ margin-bottom:.3rem; font-size:.95rem; }
    .horario-list i{ color:var(--er-premium); margin-right:.4rem; }
    .horario-list .fw-bold{ font-weight:700 !important; color:var(--er-premium) !important; }

    /* Galería */
    .gallery-grid{ display:grid; gap:.75rem; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); }
    .g-item{ border-radius:12px; overflow:hidden; position:relative; cursor:pointer; }
    .g-item img{ width:100%; height:100%; object-fit:cover; transition:.25s; display:block; }
    .g-item:hover img{ transform:scale(1.05); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  height: 160px; /* ajusta según quieras más alto/bajo */
  object-fit: cover; /* recorta para que todas mantengan proporción */
  border-radius: 6px; /* opcional */
}

    /* Mapa */
    .ratio iframe, .er-card iframe{ border:0; width:100%; height:100%; }

    /* Rating */
    #rating i{ font-size:1.5rem; cursor:pointer; }


    
    .horario-card {
  background: #1a1d27;
  border: 1px solid var(--er-border);
  border-radius: 10px;
  padding: .6rem;
  text-align: center;
  transition: .2s;
}
.horario-card:hover {
  border-color: var(--er-premium);
  transform: translateY(-2px);
}
.horario-card .dia {
  font-weight: 600;
  font-size: .9rem;
  color: #fff;
  margin-bottom: .25rem;
}
.horario-card .hora {
  font-size: .8rem;
  color: #bbb;
  line-height: 1.2;
}
.horario-card.hoy {
  background: linear-gradient(135deg, var(--er-premium), #ffd768);
  color: #1f1600;
}
.horario-card.hoy .dia,
.horario-card.hoy .hora {
  color: #1f1600;
  font-weight: 600;
}

.more-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  background: rgba(0,0,0,.55);
  border-radius: 12px;
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  pointer-events: none;
}


/* Ocultar miniatura en grid pero mantener para Lightbox */
.hidden-thumb {
  display: none !important;
}

.more-overlay i {
  font-size: 1.2rem;
}

#comentarios-scroll {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 8px;
}

.comentario-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #444;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comentario-linea .stars i {
  font-size: 0.85rem;
}

.comentario-card {
  background: #1b1d24;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 0.9rem;
  color: #eaeaea;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}


/* 🎨 Paleta de colores */
.comentario-avatar.c1 { background: linear-gradient(135deg, #f7b500, #ffd768); color: #000; }
.comentario-avatar.c2 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.comentario-avatar.c3 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.comentario-avatar.c4 { background: linear-gradient(135deg, #fa709a, #fee140); color: #000; }
.comentario-avatar.c5 { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.comentario-avatar.c6 { background: linear-gradient(135deg, #ff9a9e, #fecfef); }

.comentario-contenido .stars i {
  margin-right: 2px;
  font-size: 0.9rem;
}

.comentario-contenido p {
  font-size: 0.9rem;
  line-height: 1.3;
  margin-bottom: 0;
}


#comentarios-scroll::-webkit-scrollbar {
  width: 6px;
}
#comentarios-scroll::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 3px;
}
#comentarios-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.toast-premium {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  font-weight: 500;
}

.toast-premium-success {
  background: linear-gradient(135deg, var(--er-premium), #ffd768);
  color: #1f1600;
}

.toast-premium-error {
  background: #b02a37;
  color: #fff;
}

.toast-premium-review {
  background: linear-gradient(135deg, #ffe082, #ffca28); /* dorado más suave */
  color: #1f1600;
  font-weight: 500;
}

/* Botones flotantes */
.fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1050; /* aseguramos que quede encima */
}

.fab a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  text-decoration: none;
}

.fab a.btn-success {
  background-color: #25d366; /* verde WhatsApp */
  color: white;
}

.fab a.btn-light {
  background-color: #fff;
  color: #333;
  border: 1px solid #ccc;
}
