/* ======================================== */
/* HERO SECTION - Video de fondo            */
/* ======================================== */
body:not(.block-editor-page) .wp-block-cover.hero-section {
  height: 100vh;
  width: 100%;
  min-height: 500px;
  padding: 4rem 1rem 2rem 1rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  border: 0;
  outline: 0;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}

body:not(.block-editor-page) .wp-block-cover.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

body:not(.block-editor-page) .wp-block-cover.hero-section video.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(-50%, -50%, 0);
  z-index: 0;
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -webkit-backface-visibility: hidden;
}

body:not(.block-editor-page) .wp-block-cover.hero-section .hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  padding: 1rem;
  line-height: 1.7;
}

.wp-block-cover.hero-section h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.wp-block-cover.hero-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

body:not(.block-editor-page) .wp-block-cover.hero-section .wp-block-button__link {
  background: linear-gradient(90deg, #DEC178, #967743);
  color: #000;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid #DEC178;
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0.3px;
}

body:not(.block-editor-page) .wp-block-cover.hero-section .wp-block-button__link:hover {
  transform: scale(1.04);
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  box-shadow: 0 0 12px rgba(222, 193, 120, 0.35);
}

/* ======================= */
/* Estilos Responsive      */
/* ======================= */
@media (max-width: 768px) {
  body:not(.block-editor-page) .wp-block-cover.hero-section {
    min-height: 100vh;
    padding: 3rem 1rem 1rem 1rem;
  }

  .wp-block-cover.hero-section h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .wp-block-cover.hero-section p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  body:not(.block-editor-page) .wp-block-cover.hero-section .wp-block-button__link {
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* ======================================== */
/* VIDEO SECTION - Video fullscreen extra   */
/* ======================================== */
.wp-block-cover.video-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
}

.wp-block-cover.video-section.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.wp-block-cover.video-section .wp-block-cover__video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  backface-visibility: hidden;
  transform: translate3d(-50%, -50%, 0);
  -webkit-backface-visibility: hidden;
}

.wp-block-cover.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.wp-block-cover.video-section .wp-block-cover__inner-container {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
  padding: 2rem;
  color: #fff;
}

.wp-block-cover.video-section h2 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 400;
}

.wp-block-cover.video-section p {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* ======================================== */
/* GLOBALES                                 */
/* ======================================== */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}


/* ------------------------------------------------------------
   Sección “Cómo funciona”
------------------------------------------------------------ */
.como-funciona {
  background-color: #0a0a0a;
  color: #fff;
  padding: 4rem 2rem;
}
.como-funciona h2 {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 3rem;
  font-weight: 700;
  color: #fff !important;
}
.como-funciona .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.como-funciona .step {
  background-color: #141414;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.como-funciona .step:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.como-funciona .step-number {
  display: inline-block;
  background-color: #967743;
  color: #0a0a0a;
  font-size: 1.25rem;
  font-weight: 700;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.como-funciona .step-title {
  font-size: 1.25rem;
  margin-bottom: .75rem;
  font-weight: 600;
  color: #fff;
}
.como-funciona .step p {
  font-size: .95rem;
  line-height: 1.5;
  opacity: 0.85;
  color: #fff;
}
@media (max-width: 1024px) {
  .como-funciona .steps {
    grid-template-columns: 1fr;
  }
  .como-funciona h2 {
    font-size: 2rem;
  }
}


/* ------------------------------------------------------------
   Sección “Membresías & Reservas”
------------------------------------------------------------ */
.membresias {
  background-color: #0a0a0a;
  color: #fff;
  padding: 4rem 2rem;
}

.membresias h2 {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #fff;
}

.membresias .intro {
  text-align: center;
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 3rem;
}

.membresias .plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.membresias .plan {
  background-color: #141414;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}

.membresias .plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.7);
}

.membresias .plan-header {
  padding: 2rem;
  background: linear-gradient(135deg, #1f1f1f 0%, #141414 100%);
}

.membresias .plan-header h3 {
  font-size: 1.75rem;
  margin: 0;
  color: #967743; /* dorado mate */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.membresias .plan-header .price h4 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 0.5rem;
  color: #fff;
}

.membresias .plan-body {
  padding: 2rem;
  flex-grow: 1;
}

.membresias .plan-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.membresias .plan-body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  opacity: 0.85;
  color: #e4e4e4;
}

.membresias .plan-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #967743; /* dorado mate */
  font-weight: 700;
}

.membresias .plan-footer {
  padding: 2rem;
  text-align: center;
  background-color: #111;
}

.membresias .plan-footer .wp-block-button__link {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid #967743;
  color: #e4e4e4; 
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 1rem;
  transform-origin: center;
}

.membresias .plan-footer .wp-block-button__link:hover {
  background-color: #D4AF37;
  color: #000;
  transform: scale(1.05); 
}

/* ✅ Estilo ESPECIAL para el plan ELITE */
.membresias .plan.elite {
  border: 2px solid #967743;
  background: linear-gradient(135deg, #1a1a1a 0%, #141414 50%, #1c1a17 100%);
  box-shadow: 0 0 25px rgba(150, 119, 67, 0.3);
  transform: scale(1.02);
}

.membresias .plan.elite:hover {
  box-shadow: 0 0 40px rgba(150, 119, 67, 0.5);
  transform: translateY(-10px) scale(1.04);
}

.membresias .plan.elite .plan-header {
  background: linear-gradient(135deg, #1f1f1f 0%, #141414 50%, #2a2317 100%);
  border-bottom: 2px solid #967743;
}

.membresias .plan.elite .plan-header h3 {
  color: #d4af37; /* dorado brillante */
}

.membresias .plan.elite .plan-header .price h4 {
  color: #967743;
}

.membresias .plan.elite .plan-footer .wp-block-button__link {
  background-color: #967743;
  color: #111;
  border: 2px solid #d4af37;
  font-weight: 700;
}

.membresias .plan.elite .plan-footer .wp-block-button__link:hover {
  background-color: #d4af37;
  color: #000;
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .membresias {
    padding: 2rem 1rem;
  }

  .membresias h2 {
    font-size: 2rem;
  }
}


/* ------------------------------------------------------------
   Sección OPTIMIZACIÓN BIOHACKING PERSONALIZADA
 - ESTILO LUJOSO Y FUNCIONAL
------------------------------------------------------------ */
.tratamientos-cards {
  background-color: #0a0a0a;
  color: #eaeaea;
  padding: 4rem 2rem;
  font-family: 'Open Sans', sans-serif;
}

.tratamientos-cards h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  background: linear-gradient(to right, #ffffff, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  font-family: 'Open Sans', sans-serif;
}

.tratamientos-cards p.intro {
  text-align: center;
  font-size: 1.125rem;
  opacity: 0.9;
  color: #dcdcdc;
  margin-bottom: 3rem;
  font-family: 'Open Sans', sans-serif;
}

.tratamientos-cards .cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.tratamientos-cards details {
  background: #111;
  border: 1px solid #444;
  border-radius: 16px;
  width: 380px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  padding-bottom: 1rem;
}

.tratamientos-cards details[open] {
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}

.tratamientos-cards summary {
  cursor: pointer;
  padding: 2rem 1rem 1rem;
  list-style: none;
  display: block;
  font-family: 'Open Sans', sans-serif;
}

.tratamientos-cards summary::-webkit-details-marker {
  display: none;
}

/* Título centrado y símbolo + en círculo animado */
.summary-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.summary-box .title {
  font-size: 1.25rem;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

.circle-plus {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  color: #0a0a0a;
  font-weight: bold;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseCircle 2s infinite ease-in-out;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  transition: box-shadow 0.3s;
}

@keyframes pulseCircle {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  70%  { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Contenido desplegable */
.tratamientos-cards .content {
  padding: 1rem 2rem 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #dedede;
  font-family: 'Open Sans', sans-serif;
}

.tratamientos-cards .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tratamientos-cards .content ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
}

.tratamientos-cards .content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #fff;
}

/* Responsivo */
@media (max-width: 1200px) {
  .tratamientos-cards .cards {
    max-width: 100%;
  }
}

@media (max-width: 960px) {
  .tratamientos-cards .cards {
    flex-direction: column;
    align-items: center;
  }
  .tratamientos-cards details {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .tratamientos-cards {
    padding: 2rem 1rem;
  }
  .tratamientos-cards h2 {
    font-size: 2rem;
  }
}


/* ------------------------------------------------------------
   Animaciones y responsive global
------------------------------------------------------------ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
.scroll-anim.visible {
  opacity: 1;
  transform: translateY(0);
}
section, .wp-block-cover, .step, .plan, .cards details {
  animation: fadeInUp 1s ease-out;
}


/* ------------------------------------------------------------
   CSS para animar un botón al estilo “satelital”
------------------------------------------------------------ */

.btn-satelital-borde {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.2rem;
  border: none;
  border-radius: 8px;
  background-color: transparent;
  font-family: 'Cinzel', serif;
  color: #ffffff;
  text-decoration: none;
  overflow: visible;
  isolation: isolate;
  z-index: 0;
}

/* Texto interno con efecto hover */
.btn-satelital-borde span {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
  display: inline-block;
}

.btn-satelital-borde:hover span {
  transform: scale(1.06);
}

/* Borde visible */
.btn-satelital-borde::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid #ffffff;
  z-index: 1;
}

/* Efecto satelital desde el borde */
.btn-satelital-borde::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.25);
  animation: pulseSatelitalBorde 4s infinite ease-out;
}

@keyframes pulseSatelitalBorde {
  0% {
    box-shadow: 0 0 0 0 rgba(255,255,255,0.25);
  }
  70% {
    box-shadow: 0 0 0 24px rgba(255,255,255,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}

/* Sin subrayado nunca */
.btn-satelital-borde,
.btn-satelital-borde:hover,
.btn-satelital-borde:focus,
.btn-satelital-borde:visited {
  text-decoration: none !important;
  color: #ffffff !important;
}


/* ------------------------------------------------------------
   CSS para Testiomonios seccion
------------------------------------------------------------ */
.testimonios-slider.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 5rem 2rem;
  background-color: #0a0a0a !important;
  color: #e4e4e4;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.titulo-testimonios {
  font-size: 2.75rem;
  margin-bottom: 3rem;
  color: #fff;
  font-weight: 700;
}

.slider-container {
  position: relative;
  min-height: 160px;
}

.slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  padding: 0 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.slide.activo {
  display: block;
  opacity: 1;
}

.comentario {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #e4e4e4;
}

.autor {
  font-weight: 600;
  color: #967743;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slider-controles {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 2rem;
  color: #967743;
  cursor: pointer;
  user-select: none;
}

.slider-controles span:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}


/* Sección elegante de beneficios estilo lujo */
.benefits-section {
  background: linear-gradient(160deg, #0d0d0d 0%, #121212 100%);
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Título con brillo sutil */
.benefits-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Lista de beneficios como tarjetas lujosas */
.benefits-section .benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

/* Tarjeta individual */
.benefits-list li {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 20px 30px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
}

/* Hover elegante */
.benefits-list li:hover {
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

/* Íconos como imágenes SVG embebidas */
.benefits-list .icon img.benefit-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  filter: brightness(0) saturate(100%) invert(84%) sepia(60%) saturate(675%) hue-rotate(10deg) brightness(95%) contrast(90%);
  flex-shrink: 0;
}

/* Texto */
.benefits-list .text {
  color: #fff;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 600px) {
  .benefits-section h2 {
    font-size: 2rem;
  }

  .benefits-list li {
    flex-direction: column;
    text-align: center;
  }

  .benefits-list .icon {
    margin-bottom: 10px;
  }

  /* Mostrar solo 3 en móviles */
  .benefits-list li:nth-child(n+4) {
    display: none;
  }
}



/* ===== BIOHACKPRO · Paquetes estilo LISTA (tipo Remedy) ===== */
:root{
  --bhp-bg:#0b0b0b;--bhp-surface:#141214;--bhp-line:#2a2628;
  --bhp-text:#e9e9e9;--bhp-muted:#a9a9a9;--bhp-accent:#d4af37;
}

#bhp-packages-list{
  color:var(--bhp-text);
  background:var(--bhp-bg);
  max-width:1280px;
  margin:0 auto;
  padding:clamp(16px,4vw,40px);
  font-family:"Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Categorías (chips) */
.bhp-cats{
  display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-bottom:18px;
}
@media (max-width:980px){.bhp-cats{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.bhp-cats{grid-template-columns:1fr}}

.bhp-cat{
  background:var(--bhp-surface);
  border:1px solid var(--bhp-line);
  color:var(--bhp-text);
  padding:12px 14px;border-radius:8px;
  text-align:center;cursor:pointer;transition:.2s ease;font-size:14px
}
.bhp-cat:hover{border-color:var(--bhp-accent)}
.bhp-cat.active{background:#1c1a1c;border-color:var(--bhp-accent);box-shadow:inset 0 0 0 1px var(--bhp-accent)}

/* Contenedor lista */
.bhp-listwrap{border:1px solid var(--bhp-line);border-radius:10px;overflow:hidden;background:#110f11}

/* Cabecera + filas */
.bhp-head,.bhp-row{display:grid;grid-template-columns:1fr 160px 140px 90px;gap:0}
@media (max-width:760px){.bhp-head{display:none}.bhp-row{grid-template-columns:1fr}}

.bhp-head{
  background:#171417;border-bottom:1px solid var(--bhp-line);
  padding:14px 18px;font-size:13px;color:var(--bhp-muted);
  letter-spacing:.02em;text-transform:uppercase
}

.bhp-row{border-bottom:1px solid var(--bhp-line);padding:18px;background:var(--bhp-surface)}
.bhp-row:last-child{border-bottom:none}

/* INFO (título + descripción) */
.bhp-col--info h4{
  margin:0 0 8px;font-size:17px;font-weight:700;
  color:var(--bhp-text) !important; /* asegura texto blanco */
}
.bhp-col--info p{margin:0;color:var(--bhp-muted);line-height:1.55;font-size:14px}

/* Caducidad y precio */
.bhp-col--expiry{display:flex;align-items:center;justify-content:flex-start;color:var(--bhp-muted);font-size:14px}
@media (max-width:760px){.bhp-col--expiry{margin-top:10px}}
.bhp-col--price{display:flex;align-items:center;justify-content:flex-start;font-weight:800;font-size:16px}

/* Selector */
.bhp-col--select{display:flex;align-items:center;justify-content:flex-end}
@media (max-width:760px){.bhp-col--select{justify-content:flex-start;margin-top:12px}}
.bhp-radio{width:18px;height:18px;accent-color:var(--bhp-accent)}

/* Footer + CTA */
.bhp-footer{
  display:flex;gap:12px;align-items:center;justify-content:flex-end;
  padding:16px;background:#1a171a;border:1px solid var(--bhp-line);
  border-top:none;border-radius:0 0 10px 10px
}
.bhp-cta{
  background:var(--bhp-accent);color:#000;border:none;
  padding:12px 18px;border-radius:8px;font-weight:800;cursor:pointer;transition:.2s ease
}
.bhp-cta:disabled{opacity:.5;cursor:not-allowed}
.bhp-cta:hover:not(:disabled){filter:brightness(1.05)}

/* Badge */
.bhp-badge{display:inline-block;font-size:11px;padding:3px 8px;border-radius:999px;border:1px solid var(--bhp-accent);color:var(--bhp-text);margin-left:8px}

/* ===== Mobile optimización (menos scroll) ===== */
@media (max-width:760px){
  /* Chips en scroll horizontal */
  .bhp-cats{display:flex;gap:8px;overflow-x:auto;padding-bottom:6px;-webkit-overflow-scrolling:touch;scrollbar-width:none;position:relative}
  .bhp-cats::-webkit-scrollbar{display:none}
  .bhp-cat{flex:0 0 auto;font-size:13px;padding:10px 12px;border-radius:999px}

  .bhp-row{padding:12px}
  .bhp-col--info h4{font-size:16px;margin-bottom:6px}
  .bhp-col--info p{font-size:13px;line-height:1.45}
  .bhp-col--expiry,.bhp-col--price{font-size:15px}

  /* Footer NO fijo; queda debajo de la lista y con aire para WhatsApp */
  .bhp-footer{
    position: static;
    border-radius: 8px;
    margin-top: 12px;
    margin-bottom: calc(72px + env(safe-area-inset-bottom));
  }
  #bhp-packages-list{ padding-bottom: 16px; }
}

/* ===== Swipe hint (solo móvil) ===== */
.bhp-swipe-hint {
  display: none;                /* oculto en desktop */
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--bhp-accent);
  color: var(--bhp-text);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin: 0 0 10px 0;
  user-select: none;
}
@media (max-width: 760px) {
  .bhp-swipe-hint { display: inline-flex; }
  .bhp-cats.is-scrollable::after {
    content: "";
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 44px;
    pointer-events: none;
    background: linear-gradient(to left, rgba(0,0,0,0.8), rgba(0,0,0,0));
    border-radius: 0 8px 8px 0;
  }
}
/* Flecha animada del hint */
@keyframes bhpHintArrow {
  0% { transform: translateX(0); }
  50% { transform: translateX(6px); }
  100% { transform: translateX(0); }
}
.bhp-swipe-hint .arrow {
  display: inline-block;
  animation: bhpHintArrow 1.2s infinite;
}
/* Botón cerrar del hint */
.bhp-swipe-hint .close {
  margin-left: 6px;
  opacity: .8;
  cursor: pointer;
  line-height: 1;
  font-weight: 700;
}
.bhp-swipe-hint .close:hover { opacity: 1; }


@media (max-width: 760px) {
  .bhp-cats.is-scrollable::after { display: none !important; }
}




