/* ============ Constelando el Origen — CSS custom (paleta del canal) ============ */

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* Selección de texto */
::selection { background: #c8201f; color: #f7f1e3; }

/* Scrollbar elegante (tonos crema/marrón) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #ecdfbe; }
::-webkit-scrollbar-thumb { background: #8a6842; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #3a2410; }

/* ============ Navbar ============ */
.nav-link {
  color: #3a2410;
  transition: color 0.25s ease;
  position: relative;
}
.nav-link:hover { color: #c8201f; }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: #c8201f;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-link:hover::after { transform: scaleX(1); }

#navbar.scrolled {
  background: rgba(247, 241, 227, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(58, 36, 16, 0.08);
  box-shadow: 0 4px 20px -12px rgba(58, 36, 16, 0.25);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/* ============ Botones ============ */
.btn-rojo {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, #c8201f 0%, #a01816 100%);
  color: #f7f1e3;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  border-radius: 9999px;
  box-shadow: 0 10px 30px -10px rgba(200, 32, 31, 0.5);
  transition: all 0.3s ease;
}
.btn-rojo:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(200, 32, 31, 0.6);
  background: linear-gradient(135deg, #a01816 0%, #c8201f 100%);
}

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.75rem;
  border: 1.5px solid rgba(58, 36, 16, 0.35);
  color: #3a2410;
  background: rgba(247, 241, 227, 0.4);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  border-radius: 9999px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: #3a2410;
  border-color: #3a2410;
  color: #f7f1e3;
  transform: translateY(-2px);
}

.btn-marron {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7rem 1.3rem;
  background: #3a2410;
  color: #f7f1e3;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 9999px;
  box-shadow: 0 8px 20px -8px rgba(58, 36, 16, 0.4);
  transition: all 0.3s ease;
}
.btn-marron:hover {
  transform: translateY(-2px);
  background: #5a3a22;
  box-shadow: 0 16px 30px -10px rgba(58, 36, 16, 0.5);
}

/* ============ Chips especialidades ============ */
.chip-especialidad {
  display: inline-flex; align-items: center;
  padding: 0.7rem 1.1rem;
  background: rgba(247, 241, 227, 0.6);
  border: 1px solid rgba(58, 36, 16, 0.15);
  border-radius: 12px;
  font-size: 0.9rem;
  color: #3a2410;
  font-weight: 500;
  transition: all 0.3s ease;
}
.chip-especialidad:hover {
  background: rgba(201, 169, 106, 0.25);
  border-color: #c9a96a;
  transform: translateX(4px);
  color: #5a3a22;
}

/* ============ Cards servicios ============ */
.card-servicio {
  padding: 2rem;
  background: #f7f1e3;
  border: 1px solid rgba(58, 36, 16, 0.08);
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px -20px rgba(58, 36, 16, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.card-servicio::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a96a, #c8201f, #c9a96a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.card-servicio:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 106, 0.5);
  box-shadow: 0 25px 50px -20px rgba(58, 36, 16, 0.3);
}
.card-servicio:hover::before { transform: scaleX(1); }

.card-destacado {
  background: linear-gradient(135deg, #f7f1e3 0%, #ecdfbe 100%);
  border-color: rgba(200, 32, 31, 0.25);
  box-shadow: 0 15px 40px -20px rgba(200, 32, 31, 0.25);
}

.link-rojo {
  color: #c8201f;
  font-weight: 600;
  transition: all 0.2s ease;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.link-rojo:hover {
  color: #a01816;
  letter-spacing: 0.12em;
}

/* ============ Cards productos ============ */
.card-producto {
  padding: 1.5rem;
  background: #f7f1e3;
  border: 1px solid rgba(58, 36, 16, 0.1);
  border-radius: 1.25rem;
  box-shadow: 0 10px 40px -15px rgba(58, 36, 16, 0.2);
  transition: all 0.4s ease;
}
.card-producto:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px -15px rgba(58, 36, 16, 0.35);
  border-color: rgba(201, 169, 106, 0.4);
}

/* ============ Formulario ============ */
.label-input {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5a3a22;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.input-ctl {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #fefbf2;
  border: 1.5px solid rgba(58, 36, 16, 0.18);
  border-radius: 0.75rem;
  color: #3a2410;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s ease;
}
.input-ctl:focus {
  outline: none;
  border-color: #c8201f;
  box-shadow: 0 0 0 4px rgba(200, 32, 31, 0.12);
  background: #ffffff;
}
.input-ctl::placeholder { color: rgba(58, 36, 16, 0.4); }

/* ============ Atajos contacto ============ */
.contacto-atajo {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  color: white;
  border-radius: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -10px rgba(58, 36, 16, 0.25);
}
.contacto-atajo:hover {
  transform: translateX(-4px) translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(58, 36, 16, 0.35);
}

/* ============ Iconos sociales footer ============ */
.icon-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: rgba(201, 169, 106, 0.12);
  border: 1px solid rgba(201, 169, 106, 0.3);
  color: #c9a96a;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.icon-social:hover {
  background: #c9a96a;
  color: #3a2410;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(201, 169, 106, 0.5);
}

/* ============ Constelaciones doradas sobre crema ============ */
.constelaciones-bg {
  background-image:
    /* Estrellas chicas */
    radial-gradient(1.5px 1.5px at 8% 12%, rgba(201,169,106,0.85), transparent 60%),
    radial-gradient(1.2px 1.2px at 18% 28%, rgba(176,140,74,0.75), transparent 60%),
    radial-gradient(2px 2px at 32% 18%, rgba(201,169,106,0.9), transparent 60%),
    radial-gradient(1px 1px at 42% 40%, rgba(176,140,74,0.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 55% 22%, rgba(201,169,106,0.8), transparent 60%),
    radial-gradient(1.2px 1.2px at 68% 48%, rgba(176,140,74,0.7), transparent 60%),
    radial-gradient(2px 2px at 78% 18%, rgba(201,169,106,0.9), transparent 60%),
    radial-gradient(1px 1px at 88% 38%, rgba(176,140,74,0.65), transparent 60%),
    radial-gradient(1.5px 1.5px at 12% 62%, rgba(201,169,106,0.75), transparent 60%),
    radial-gradient(1.2px 1.2px at 25% 82%, rgba(176,140,74,0.7), transparent 60%),
    radial-gradient(2px 2px at 40% 72%, rgba(201,169,106,0.8), transparent 60%),
    radial-gradient(1px 1px at 58% 88%, rgba(176,140,74,0.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 72% 78%, rgba(201,169,106,0.85), transparent 60%),
    radial-gradient(1.2px 1.2px at 85% 90%, rgba(176,140,74,0.75), transparent 60%),
    radial-gradient(2.2px 2.2px at 95% 60%, rgba(201,169,106,0.9), transparent 60%);
  background-size: 100% 100%;
  animation: twinkle 7s ease-in-out infinite alternate;
}
@keyframes twinkle {
  0%   { opacity: 0.55; }
  100% { opacity: 1; }
}

/* ============ Miniaturas del canal ============ */
.miniatura-canal {
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #ecdfbe, #c9a96a);
  box-shadow: 0 8px 25px -10px rgba(58, 36, 16, 0.3);
  transition: all 0.35s ease;
}
.miniatura-canal img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.miniatura-canal:hover { transform: translateY(-4px); box-shadow: 0 15px 35px -10px rgba(58, 36, 16, 0.4); }
.miniatura-canal:hover img { transform: scale(1.06); }
.miniatura-canal .overlay-miniatura {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(58, 36, 16, 0);
  color: #f7f1e3;
  font-size: 2.5rem;
  opacity: 0;
  transition: all 0.35s ease;
}
.miniatura-canal:hover .overlay-miniatura {
  background: rgba(58, 36, 16, 0.55);
  opacity: 1;
}
.miniatura-canal.sin-imagen::after {
  content: '\f167';
  font-family: 'Font Awesome 6 Brands';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #c8201f;
  font-size: 2.5rem;
}

/* ============ Tarjetas de artículos ============ */
.card-articulo {
  display: flex;
  flex-direction: column;
  background: #f7f1e3;
  border: 1px solid rgba(58, 36, 16, 0.1);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -20px rgba(58, 36, 16, 0.35);
  transition: all 0.4s ease;
}
.card-articulo:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 106, 0.5);
  box-shadow: 0 25px 50px -20px rgba(58, 36, 16, 0.45);
}
.card-articulo-img {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 1rem 1.25rem;
  overflow: hidden;
}
.card-articulo-img > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.7s ease;
}
.card-articulo:hover .card-articulo-img > img { transform: scale(1.06); }
.card-articulo-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.2px 1.2px at 15% 20%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(1.5px 1.5px at 35% 35%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1px 1px at 65% 15%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(1.8px 1.8px at 80% 55%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 25% 70%, rgba(255,255,255,0.4), transparent 60%);
  opacity: 0.7;
  z-index: 0;
}
.card-articulo-img:has(> img)::before { opacity: 0; }
.card-articulo-img:has(> img)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(58,36,16,0.15) 0%,
    rgba(58,36,16,0.05) 45%,
    rgba(58,36,16,0.75) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.card-articulo-cat {
  position: relative;
  display: inline-flex; align-items: center;
  padding: 0.35rem 0.8rem;
  background: rgba(247, 241, 227, 0.95);
  color: #3a2410;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 9999px;
  z-index: 1;
}
.card-articulo-icono {
  position: relative;
  font-size: 2rem;
  color: rgba(247, 241, 227, 0.95);
  z-index: 1;
}
.card-articulo-ancho .card-articulo-icono { font-size: 3rem; }
.card-articulo-body { padding: 1.5rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.card-articulo-titulo {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #3a2410;
  margin-bottom: 0.75rem;
}
.card-articulo-ancho .card-articulo-titulo { font-size: 1.5rem; }
.card-articulo-extracto {
  font-size: 0.9rem;
  color: #5a3a22;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

/* ============ Página de artículo (prose) ============ */
.articulo-hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, #f7f1e3 0%, #ecdfbe 100%);
  position: relative;
  overflow: hidden;
}
.articulo-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(201,169,106,0.7), transparent 60%),
    radial-gradient(1.2px 1.2px at 30% 50%, rgba(176,140,74,0.55), transparent 60%),
    radial-gradient(2px 2px at 60% 30%, rgba(201,169,106,0.75), transparent 60%),
    radial-gradient(1px 1px at 85% 70%, rgba(176,140,74,0.6), transparent 60%);
  animation: twinkle 7s ease-in-out infinite alternate;
  opacity: 0.6;
}
.breadcrumb {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8a6842;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.breadcrumb a { color: #5a3a22; }
.breadcrumb a:hover { color: #c8201f; }
.articulo-categoria {
  display: inline-flex; align-items: center;
  padding: 0.45rem 1rem;
  background: rgba(200, 32, 31, 0.1);
  color: #c8201f;
  border: 1px solid rgba(200, 32, 31, 0.25);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}
.articulo-titulo {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #3a2410;
  font-size: clamp(2rem, 5.5vw, 4rem);
  margin-bottom: 1rem;
}
.articulo-subtitulo {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: #5a3a22;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  max-width: 48rem;
}
.articulo-meta {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  font-size: 0.8rem;
  color: #5a3a22;
  margin-top: 1rem;
}
.articulo-meta i { color: #c9a96a; margin-right: 0.35rem; }

.prose-sanacion {
  max-width: 46rem;
  margin: 0 auto;
  color: #2a1808;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.185rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.prose-sanacion p { margin-bottom: 1.5rem; }
.prose-sanacion h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #3a2410;
  margin: 2.75rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid #c8201f;
}
.prose-sanacion h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #5a3a22;
  margin: 2rem 0 0.8rem;
}
.prose-sanacion strong { color: #c8201f; font-weight: 700; font-family: 'Inter', sans-serif; }
.prose-sanacion em { color: #5a3a22; }
.prose-sanacion ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.4rem;
}
.prose-sanacion ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.7rem;
}
.prose-sanacion ul li::before {
  content: '\2736';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #c9a96a;
  font-size: 1rem;
}
.prose-sanacion blockquote {
  border-left: 4px solid #c9a96a;
  padding: 1rem 1.5rem;
  background: rgba(201, 169, 106, 0.1);
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.15rem;
  color: #5a3a22;
  border-radius: 0 0.5rem 0.5rem 0;
}
.prose-sanacion a { color: #c8201f; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

.cta-articulo {
  background: linear-gradient(135deg, #3a2410 0%, #5a3a22 100%);
  color: #f7f1e3;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  margin: 3rem auto;
  max-width: 46rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-articulo::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 15% 25%, rgba(201,169,106,0.8), transparent 60%),
    radial-gradient(1.5px 1.5px at 80% 70%, rgba(201,169,106,0.7), transparent 60%),
    radial-gradient(1px 1px at 50% 40%, rgba(201,169,106,0.6), transparent 60%);
  opacity: 0.6;
  animation: twinkle 5s ease-in-out infinite alternate;
}
.cta-articulo > * { position: relative; z-index: 1; }

/* ============ Scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Hero — título tipo miniatura ============ */
.font-display {
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: -0.02em;
}

/* ============ Responsive tweaks ============ */
@media (max-width: 768px) {
  h1 { font-size: 2.75rem !important; line-height: 1.05 !important; }
  h2 { font-size: 2.25rem !important; }
  .contacto-atajo { padding: 1rem 1.15rem; }
}

/* ============ LOGO FOOTER — MEDALLÓN ============ */
.logo-medalla {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: radial-gradient(circle at 30% 30%, #fbf6ea 0%, #ecdfbe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(201,169,106,0.5);
  flex-shrink: 0;
  padding: 4px;
}
.logo-medalla img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 9999px;
}

/* ============ MEMBRESÍA "LA MEMORIA DEL ALMA" ============ */
.membresia-bg {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(200,32,31,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(201,169,106,0.22) 0%, transparent 55%),
    linear-gradient(160deg, #2a1808 0%, #3a2410 45%, #5a3a22 100%);
}
.membresia-estrellas {
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(201,169,106,0.7) 50%, transparent 100%),
    radial-gradient(1px 1px at 25% 45%, rgba(255,240,200,0.5) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 15%, rgba(201,169,106,0.6) 50%, transparent 100%),
    radial-gradient(1px 1px at 80% 60%, rgba(255,240,200,0.5) 50%, transparent 100%),
    radial-gradient(1.2px 1.2px at 40% 80%, rgba(201,169,106,0.55) 50%, transparent 100%),
    radial-gradient(1px 1px at 92% 30%, rgba(255,240,200,0.4) 50%, transparent 100%),
    radial-gradient(1.3px 1.3px at 15% 70%, rgba(201,169,106,0.5) 50%, transparent 100%);
  animation: twinkle 7s ease-in-out infinite alternate;
  opacity: 0.85;
}

.membresia-beneficio {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  background: rgba(247, 241, 227, 0.04);
  border: 1px solid rgba(201, 169, 106, 0.18);
  transition: all 0.3s ease;
}
.membresia-beneficio:hover {
  background: rgba(247, 241, 227, 0.08);
  border-color: rgba(201, 169, 106, 0.4);
  transform: translateX(4px);
}
.membresia-icono {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #c9a96a 0%, #b08c4a 100%);
  color: #2a1808;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(201, 169, 106, 0.35);
}

.membresia-temario {
  background: rgba(247, 241, 227, 0.05);
  border: 1px solid rgba(201, 169, 106, 0.25);
  border-radius: 1rem;
  padding: 2rem 2rem 2rem;
  backdrop-filter: blur(4px);
}
.membresia-tema {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  color: rgba(247, 241, 227, 0.92);
  font-weight: 500;
  border-bottom: 1px dashed rgba(201, 169, 106, 0.15);
}
.membresia-tema:last-child { border-bottom: none; }
.membresia-tema i { flex-shrink: 0; width: 18px; text-align: center; }

.membresia-cta {
  background: linear-gradient(135deg, #c8201f 0%, #a01816 100%);
  border: 2px solid #c9a96a;
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  box-shadow: 0 10px 30px rgba(200, 32, 31, 0.35), inset 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.membresia-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1.5px 1.5px at 15% 30%, rgba(255,240,200,0.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 85% 70%, rgba(255,240,200,0.4) 50%, transparent 100%),
    radial-gradient(1.2px 1.2px at 50% 20%, rgba(255,240,200,0.35) 50%, transparent 100%);
  pointer-events: none;
}

.btn-oro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  background: linear-gradient(135deg, #c9a96a 0%, #b08c4a 100%);
  color: #2a1808;
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 9999px;
  box-shadow: 0 6px 20px rgba(201, 169, 106, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-oro:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 169, 106, 0.55);
  background: linear-gradient(135deg, #d4b575 0%, #c9a96a 100%);
}

.nav-link-featured {
  color: #c8201f !important;
  font-weight: 700;
  position: relative;
}
.nav-link-featured::after {
  content: '✦';
  margin-left: 4px;
  color: #c9a96a;
  font-size: 0.75em;
}

/* ============ Imagen principal del artículo (banner tras el hero) ============ */
.articulo-hero-imagen {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  position: relative;
  z-index: 2;
}
.articulo-hero-imagen figure {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 30px 60px -15px rgba(58,36,16,0.35),
    0 12px 24px -8px rgba(58,36,16,0.25),
    inset 0 0 0 1px rgba(201,169,106,0.35);
  background: linear-gradient(180deg,#3a2410,#5a3a22);
}
.articulo-hero-imagen img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.articulo-hero-imagen:hover img { transform: scale(1.02); }
.articulo-hero-imagen figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2rem 1.5rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(58,36,16,0.85) 100%);
  color: #f7f1e3;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.articulo-hero-imagen figcaption strong {
  font-style: normal;
  color: #c9a96a;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  display: block;
  margin-bottom: 0.3rem;
}
@media (max-width: 640px) {
  .articulo-hero-imagen { padding: 1.5rem 1rem 0; }
  .articulo-hero-imagen img { aspect-ratio: 4 / 3; }
  .articulo-hero-imagen figcaption { font-size: 0.85rem; padding: 1.5rem 1rem 1rem; }
}

/* =================== CARD-INCLUYE (Pack de sanación) =================== */
.card-incluye {
  background: #fdfaf3;
  border: 1px solid rgba(92, 58, 34, 0.08);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 14px rgba(92, 58, 34, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card-incluye::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201, 169, 106, 0.08), transparent 60%);
  pointer-events: none;
}
.card-incluye:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(92, 58, 34, 0.12);
  border-color: rgba(201, 169, 106, 0.4);
}
.card-incluye-icono {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

/* =================== CARD PRODUCTO (catálogos) =================== */
.card-producto {
  background: #fdfaf3;
  border: 1px solid rgba(92, 58, 34, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(92, 58, 34, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.card-producto:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(92, 58, 34, 0.14);
}
.card-producto-img {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-producto-img > i {
  z-index: 1;
}
.card-producto-body {
  padding: 1.4rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* =================== BADGE GRATIS =================== */
.badge-gratis {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  background: linear-gradient(135deg, #c9a96a 0%, #b08c4a 100%);
  color: #3a2410;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(176, 140, 74, 0.35);
  border: 1px solid rgba(247, 241, 227, 0.6);
}

/* =================== SECCIÓN GRATIS DEL MES =================== */
.gratis-bg {
  background-attachment: fixed;
}
.card-gratis {
  position: relative;
  background: rgba(247, 241, 227, 0.08);
  border: 1px solid rgba(201, 169, 106, 0.3);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.card-gratis:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 106, 0.7);
}
.card-gratis .badge-gratis {
  top: 1rem;
  right: 1rem;
  left: auto;
}
.card-gratis-img {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card-gratis-body {
  padding: 1.5rem 1.4rem 1.75rem;
}

/* =================== BOTÓN ORO =================== */
.btn-oro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c9a96a 0%, #b08c4a 100%);
  color: #3a2410;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 6px 18px rgba(176, 140, 74, 0.3);
}
.btn-oro:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 10px 22px rgba(176, 140, 74, 0.4);
}

/* =================== FILTROS DE CATÁLOGO =================== */
.filtro-btn {
  background: transparent;
  color: #5a3a22;
  border: 1.5px solid rgba(92, 58, 34, 0.2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filtro-btn:hover {
  border-color: #c8201f;
  color: #c8201f;
}
.filtro-activo {
  background: #3a2410;
  color: #f7f1e3;
  border-color: #3a2410;
}
.filtro-activo:hover {
  background: #c8201f;
  border-color: #c8201f;
  color: #f7f1e3;
}

/* =================== LITE-YOUTUBE (miniatura clickable) =================== */
.yt-lite {
  position: relative;
  cursor: pointer;
  background: #3a2410;
  overflow: hidden;
}
.yt-lite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.yt-lite:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}
.yt-lite-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 58px;
  border-radius: 14px;
  background: rgba(200, 32, 31, 0.92);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, background 0.25s ease;
}
.yt-lite:hover .yt-lite-play {
  background: #c8201f;
  transform: translate(-50%, -50%) scale(1.08);
}
.yt-lite iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-lite.is-playing {
  cursor: default;
}
.yt-lite.is-playing img,
.yt-lite.is-playing .yt-lite-play {
  display: none;
}
