.visen-ebook-box {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1rem;
	border: 1px solid #eee;
	border-radius: 12px;
}

.visen-ebook-title {
	font-weight: 600;
}


.visen-podcast-box {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1rem;
	border: 1px solid #eee;
	border-radius: 12px;
}

.visen-podcast-title {
	font-weight: 600;
}


/* === (Tu CSS original permanece aquí sin cambios) === */


/* =========================================================
   VISEN — Botones pill unificados (Podcast + E-book)
   y cajas CTA a juego
   ========================================================= */
.visen-ebook-btn,
.visen-podcast-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: #a1122a;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out, background .18s ease, color .18s ease, border-color .18s ease;
}
.visen-ebook-btn:hover,
.visen-podcast-play-btn:hover {
  opacity: 0.9;
}
/* Iconos SVG en botones (14px para consistencia visual) */
.visen-ebook-btn svg,
.visen-podcast-play-btn svg {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  fill: #fff !important;
}

/* Cajas CTA compartidas */
.visen-ebook-cta,
.visen-podcast-cta {
  position: relative;
  padding: 0.9rem 1rem 1rem 1.1rem;
  background: #fafafa;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  color: #171717;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
}
.visen-ebook-cta::before,
.visen-podcast-cta::before {
  content: "";
  position: absolute;
  left: 0; top: 10px; bottom: 10px;
  width: 3px; border-radius: 3px; background: #a1122a;
}

/* Fuerza el look de botón dentro de la caja CTA */
.visen-ebook-cta a.visen-ebook-btn,
.visen-podcast-cta a.visen-podcast-play-btn {
  background: #a1122a;
  color: #fff !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: none;
  line-height: 1;
}

.visen-ebook-cta a.visen-ebook-btn:hover,
.visen-podcast-cta a.visen-podcast-play-btn:hover {
  opacity: .9;
}



.visen-verify { 
  max-width: 640px; margin: 30px auto; padding: 20px; border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
  background: #fff; 
}
.visen-verify .visen-title { margin: 0 0 8px; font-size: 1.6rem; }
.visen-verify .visen-message { margin: 0 0 16px; line-height: 1.6; }
.visen-verify .btn-primary, 
.visen-verify .btn-secondary, 
.visen-verify .btn-link {
  display: inline-block; padding: 10px 16px; border-radius: 8px; text-decoration: none;
}
.visen-verify .btn-primary { background:#1d4676; color:#fff; }
.visen-verify .btn-secondary { background:#d6aa4e; color:#000; margin-right: 10px; }
.visen-verify .btn-link { color:#1d4676; }
.visen-verify.visen-ok { border-left: 6px solid #28a745; }
.visen-verify.visen-info { border-left: 6px solid #17a2b8; }
.visen-verify.visen-warn { border-left: 6px solid #ffc107; }
.visen-verify.visen-error{ border-left: 6px solid #dc3545; }