/*
 * HospediaPro — Catálogo de Temas y Plugins
 * Archivo: assets/css/catalog.css
 * Cargado por: inc/enqueue.php
 * Aplica a: page-temas.php, page-plugins.php
 */

/* =========================================================================
   HERO
   ========================================================================= */

.hp-catalog__hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 3.5rem;
}

.hp-catalog__hero--themes .hp-catalog__hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 60% at 5% 50%, rgba(59,130,246,.13) 0%, transparent 65%),
        radial-gradient(ellipse 50% 70% at 95% 15%, rgba(99,102,241,.09) 0%, transparent 65%),
        linear-gradient(155deg, #eef4ff 0%, #f8faff 50%, #faf5ff 100%);
    z-index: 0;
}

.hp-catalog__hero--plugins .hp-catalog__hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 60% at 5% 50%, rgba(16,185,129,.11) 0%, transparent 65%),
        radial-gradient(ellipse 50% 70% at 95% 15%, rgba(5,150,105,.07) 0%, transparent 65%),
        linear-gradient(155deg, #ecfdf5 0%, #f8fffe 50%, #f0fdf4 100%);
    z-index: 0;
}

.hp-catalog__hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 0%, transparent 100%);
}

.hp-catalog__hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hp-catalog__hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--hp-fs-xs);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--hp-color-primary);
    background: rgba(59,130,246,.08);
    border: 1px solid rgba(59,130,246,.2);
    border-radius: 99px;
    padding: .35rem .9rem;
    margin-bottom: var(--hp-space-5);
}

.hp-catalog__hero-badge--plugins {
    color: #059669;
    background: rgba(16,185,129,.08);
    border-color: rgba(16,185,129,.2);
}

.hp-catalog__hero-title {
    font-family: var(--hp-font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--hp-color-text);
    margin: 0 0 var(--hp-space-4);
    letter-spacing: -.035em;
    line-height: 1.1;
}

.hp-catalog__hero-subtitle {
    font-size: 1.075rem;
    line-height: 1.7;
    color: var(--hp-color-text-soft, #6b7280);
    margin: 0 0 var(--hp-space-8);
    max-width: 580px;
}

.hp-catalog__hero-stats {
    display: flex;
    align-items: center;
    gap: var(--hp-space-6);
    flex-wrap: wrap;
}

.hp-catalog__hero-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hp-catalog__hero-stat strong {
    font-family: var(--hp-font-heading);
    font-size: var(--hp-fs-xl);
    font-weight: 800;
    color: var(--hp-color-text);
    line-height: 1;
    letter-spacing: -.02em;
}

.hp-catalog__hero-stat span {
    font-size: var(--hp-fs-xs);
    color: var(--hp-color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hp-catalog__hero-stat-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, transparent, var(--hp-color-border) 30%, var(--hp-color-border) 70%, transparent);
    align-self: center;
}

/* =========================================================================
   GRID
   ========================================================================= */

.hp-catalog__body {
    padding: 4rem 0 6rem;
}

.hp-catalog__grid {
    display: grid;
    gap: 2rem;
}

.hp-catalog__grid--themes,
.hp-catalog__grid--plugins {
    grid-template-columns: repeat(3, 1fr);
}

/* =========================================================================
   TARJETA (hp-pcard)
   ========================================================================= */

.hp-pcard {
    background: #fff;
    border: 1px solid var(--hp-color-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    position: relative;
    isolation: isolate;
}

/* Línea de acento inferior al hacer hover */
.hp-pcard::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--hp-color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
    border-radius: 0 0 20px 20px;
    z-index: 1;
}

.hp-pcard--plugin::after  { background: #059669; }
.hp-pcard:hover::after    { transform: scaleX(1); }

.hp-pcard:hover {
    box-shadow: 0 20px 56px rgba(0,0,0,.11);
    transform: translateY(-6px);
    border-color: rgba(59,130,246,.25);
}

.hp-pcard--plugin:hover { border-color: rgba(16,185,129,.25); }

/* ── Media ──────────────────────────────────────────────────────────────── */

.hp-pcard__media { position: relative; overflow: hidden; }

.hp-pcard__media-link { display: block; overflow: hidden; }

.hp-pcard--theme .hp-pcard__media-link  { aspect-ratio: 16/9; background: #f3f4f6; }
.hp-pcard--plugin .hp-pcard__media-link { aspect-ratio: 4/3;  background: linear-gradient(135deg,#f0fdf4,#ecfdf5); }

.hp-pcard__img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.hp-pcard:hover .hp-pcard__img { transform: scale(1.05); }

.hp-pcard__placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hp-pcard__placeholder--theme  { background: linear-gradient(135deg,#1e3a8a,#3b82f6 60%,#6366f1); color: rgba(255,255,255,.55); }
.hp-pcard__placeholder--plugin { background: linear-gradient(135deg,#064e3b,#059669 60%,#10b981); color: rgba(255,255,255,.55); }

.hp-pcard__placeholder span {
    font-family: var(--hp-font-heading);
    font-size: var(--hp-fs-base);
    font-weight: 700;
    color: rgba(255,255,255,.9);
    text-align: center;
    padding: 0 1.5rem;
}

/* Overlay en hover */
.hp-pcard__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.hp-pcard__media-link:hover .hp-pcard__overlay { opacity: 1; }

.hp-pcard__overlay-preview {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--hp-color-primary);
    font-size: var(--hp-fs-sm);
    font-weight: 700;
    padding: .6rem 1.2rem;
    border-radius: 99px;
    transform: translateY(6px);
    transition: transform .3s;
}

.hp-pcard__media-link:hover .hp-pcard__overlay-preview { transform: translateY(0); }

/* Badges sobre la imagen */
.hp-pcard__badges {
    position: absolute;
    top: 12px; left: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    z-index: 2;
}

.hp-pcard__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-radius: 99px;
    padding: .25rem .7rem;
    backdrop-filter: blur(4px);
}

.hp-pcard__badge--type   { background: rgba(255,255,255,.92); color: var(--hp-color-primary); border: 1px solid rgba(59,130,246,.25); }
.hp-pcard__badge--plugin { background: rgba(255,255,255,.92); color: #059669; border: 1px solid rgba(16,185,129,.25); }
.hp-pcard__badge--sites  { background: rgba(15,23,42,.7); color: #fff; border: 1px solid rgba(255,255,255,.15); }

/* Precio flotante */
.hp-pcard__price-tag {
    position: absolute;
    bottom: 12px; right: 12px;
    background: var(--hp-color-primary);
    color: #fff;
    font-family: var(--hp-font-heading);
    font-size: var(--hp-fs-sm);
    font-weight: 800;
    padding: .3rem .8rem;
    border-radius: 99px;
    box-shadow: 0 2px 12px rgba(59,130,246,.4);
    z-index: 2;
}

.hp-pcard__price-tag--plugin {
    background: #059669;
    box-shadow: 0 2px 12px rgba(5,150,105,.4);
}

.hp-pcard__price-tag span {
    font-size: var(--hp-fs-sm);
    color: #fff;
    font-weight: 800;
}

/* ── Cuerpo ──────────────────────────────────────────────────────────── */

.hp-pcard__body {
    padding: 1.75rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;                       /* controlamos espacios con margin en cada hijo */
    border-top: 3px solid transparent;
    background:
        linear-gradient(#fff,#fff) padding-box,
        linear-gradient(90deg, var(--hp-color-primary) 0%, transparent 60%) border-box;
}

.hp-pcard--plugin .hp-pcard__body {
    background:
        linear-gradient(#fff,#fff) padding-box,
        linear-gradient(90deg, #059669 0%, transparent 60%) border-box;
}

/* Meta: autor + versión */
.hp-pcard__meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    padding-bottom: .75rem;
    margin-bottom: .75rem;
    border-bottom: 1px dashed var(--hp-color-border);
}

.hp-pcard__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .75rem;
    color: var(--hp-color-text-muted);
    font-weight: 500;
}

/* Nombre */
.hp-pcard__name {
    font-family: var(--hp-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hp-color-text);
    margin: 0 0 .6rem;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.hp-pcard__name a { color: inherit; text-decoration: none; transition: color .2s; }
.hp-pcard__name a:hover               { color: var(--hp-color-primary); }
.hp-pcard--plugin .hp-pcard__name a:hover { color: #059669; }

/* Descripción */
.hp-pcard__description {
    font-size: .875rem;
    color: var(--hp-color-text-soft, #6b7280);
    line-height: 1.65;
    margin: 0 0 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Features */
.hp-pcard__features {
    list-style: none;
    padding: 1rem 1.1rem;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid var(--hp-color-border);
}

.hp-pcard--plugin .hp-pcard__features {
    background: #f0fdf4;
    border-color: rgba(16,185,129,.18);
}

.hp-pcard__features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .85rem;
    color: var(--hp-color-text);
    line-height: 1.45;
    font-weight: 500;
}

.hp-pcard__features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--hp-color-primary);
}

.hp-pcard--plugin .hp-pcard__features li svg { color: #059669; }

/* Trust */
.hp-pcard__trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .85rem 0;
    border-top: 1px solid var(--hp-color-border);
    margin-bottom: .85rem;
}

.hp-pcard__trust span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: var(--hp-color-text-muted);
    font-weight: 500;
}

/* Footer */
.hp-pcard__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding-top: 1rem;
    border-top: 2px solid var(--hp-color-border);
    margin-top: auto;
    flex-wrap: wrap;
}

.hp-pcard__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hp-pcard__price-from {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--hp-color-text-muted);
    line-height: 1;
}

.hp-pcard__price span {
    font-family: var(--hp-font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--hp-color-primary);
    line-height: 1.1;
}

.hp-pcard--plugin .hp-pcard__price span { color: #059669; }

.hp-pcard__price-free {
    font-size: .8rem;
    font-weight: 700;
    color: #059669;
    background: rgba(16,185,129,.08);
    border: 1px solid rgba(16,185,129,.2);
    border-radius: 99px;
    padding: .25rem .75rem;
}

/* Botones */
.hp-pcard__actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex: 1;
    justify-content: flex-end;
}

.hp-pcard__btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--hp-color-primary);
    color: #fff;
    font-size: .875rem;
    font-weight: 700;
    padding: .65rem 1.25rem;
    border-radius: 99px;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(59,130,246,.28);
    white-space: nowrap;
}

.hp-pcard__btn-primary:hover {
    background: var(--hp-color-primary-dark, #1d4ed8);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(59,130,246,.32);
}

.hp-pcard__btn-primary--plugin {
    background: #059669;
    box-shadow: 0 4px 14px rgba(5,150,105,.28);
}

.hp-pcard__btn-primary--plugin:hover {
    background: #047857;
    box-shadow: 0 6px 18px rgba(5,150,105,.32);
}

.hp-pcard__btn-demo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--hp-color-text-muted);
    border: 1.5px solid var(--hp-color-border);
    background: transparent;
    padding: .6rem .9rem;
    border-radius: 99px;
    text-decoration: none;
    transition: color .2s, border-color .2s, background .2s;
    white-space: nowrap;
}

.hp-pcard__btn-demo:hover {
    color: var(--hp-color-primary);
    border-color: var(--hp-color-primary);
    background: rgba(59,130,246,.04);
}

/* Estado vacío */
.hp-catalog__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 5rem 0;
    text-align: center;
    color: var(--hp-color-text-muted);
}

.hp-catalog__empty svg { opacity: .2; }
.hp-catalog__empty p   { font-size: var(--hp-fs-base); margin: 0; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 1100px) {
    .hp-catalog__grid--themes,
    .hp-catalog__grid--plugins { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hp-catalog__hero { padding: 3.5rem 0 2.5rem; }

    .hp-catalog__grid--themes,
    .hp-catalog__grid--plugins { grid-template-columns: 1fr; }

    .hp-pcard__footer { flex-direction: column; align-items: stretch; }
    .hp-pcard__actions { justify-content: stretch; }
    .hp-pcard__btn-primary { justify-content: center; width: 100%; }
}

@media (max-width: 480px) {
    .hp-catalog__hero-title  { font-size: 1.85rem; }
    .hp-catalog__hero-stats  { gap: 1rem; }
    .hp-pcard__trust         { flex-wrap: wrap; gap: .75rem; }
}

/* =========================================================================
   Catálogo de Cursos — hero y breadcrumb
   ========================================================================= */

/* Breadcrumb compartido por catálogos */
.hp-catalog__breadcrumb {
	display: flex;
	align-items: center;
	gap: .45rem;
	flex-wrap: wrap;
	font-size: .82rem;
	color: var(--hp-color-text-muted);
	margin-bottom: 1.25rem;
}

.hp-catalog__breadcrumb a {
	color: var(--hp-color-primary);
	text-decoration: none;
	font-weight: 500;
	transition: color .2s;
}

.hp-catalog__breadcrumb a:hover { color: var(--hp-color-primary-dark, #1d4ed8); }

/* Hero de cursos: acento índigo */
.hp-catalog-courses__hero .hp-catalog__hero-badge {
	color: #6366f1;
	background: rgba(99,102,241,.08);
	border-color: rgba(99,102,241,.2);
}

.hp-catalog-courses__hero .hp-catalog__hero-stats {
	border-top: 1px solid rgba(99,102,241,.15);
	padding-top: 1.25rem;
	margin-top: 1.5rem;
}

.hp-catalog-courses__hero .hp-catalog__hero-stat svg {
	color: #6366f1;
}

/* Stats con flex horizontal */
.hp-catalog__hero-stats {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .5rem 2rem;
}

.hp-catalog__hero-stat {
	display: flex;
	align-items: center;
	gap: .5rem;
}

.hp-catalog__hero-stat strong {
	font-family: var(--hp-font-heading);
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--hp-color-text);
}

.hp-catalog__hero-stat span {
	font-size: .8rem;
	color: var(--hp-color-text-muted);
}

.hp-catalog__hero-stat-divider {
	width: 1px;
	height: 20px;
	background: var(--hp-color-border);
}

.hp-catalog__hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--hp-color-primary);
	background: rgba(59,130,246,.08);
	border: 1px solid rgba(59,130,246,.18);
	border-radius: 99px;
	padding: .3rem .9rem;
	margin-bottom: .85rem;
}

.hp-catalog__hero-title {
	font-family: var(--hp-font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: var(--hp-color-text);
	margin: 0 0 .75rem;
	letter-spacing: -.035em;
	line-height: 1.1;
}

.hp-catalog__hero-subtitle {
	font-size: 1.05rem;
	color: var(--hp-color-text-muted);
	margin: 0 0 1.5rem;
	line-height: 1.65;
	max-width: 560px;
}

/* =========================================================================
   TAXONOMY: hp_product_cat — Página de categoría
   ========================================================================= */

.hp-taxcat__container {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 var(--hp-container-pad, 1.5rem);
	box-sizing: border-box;
}

/* Breadcrumb */
.hp-taxcat__breadcrumb {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .8rem;
	color: rgba(255,255,255,.55);
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.hp-taxcat__breadcrumb a {
	color: rgba(255,255,255,.7);
	text-decoration: none;
}

.hp-taxcat__breadcrumb a:hover { color: #fff; }
.hp-taxcat__breadcrumb span   { color: rgba(255,255,255,.85); font-weight: 600; }
.hp-taxcat__breadcrumb svg    { color: rgba(255,255,255,.4); flex-shrink: 0; }

/* Subcategorías hijas */
.hp-taxcat__children {
	padding: 1.5rem 0 0;
	background: #fff;
	border-bottom: 1px solid #e2e8f0;
}

.hp-taxcat__children-label {
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #64748b;
	margin: 0 0 .75rem;
}

.hp-taxcat__children-grid {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	padding-bottom: 1.5rem;
}

.hp-taxcat__child-pill {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .4rem 1rem;
	background: #f1f5f9;
	border: 1.5px solid #e2e8f0;
	border-radius: 99px;
	font-size: .82rem;
	font-weight: 600;
	color: #334155;
	text-decoration: none;
	transition: background .2s, border-color .2s, color .2s;
}

.hp-taxcat__child-pill:hover {
	background: #eff6ff;
	border-color: #93c5fd;
	color: #1d4ed8;
	text-decoration: none;
}

.hp-taxcat__child-count {
	background: #e2e8f0;
	color: #64748b;
	font-size: .72rem;
	font-weight: 700;
	border-radius: 99px;
	padding: .1rem .45rem;
	min-width: 1.4rem;
	text-align: center;
}

.hp-taxcat__child-pill:hover .hp-taxcat__child-count {
	background: #bfdbfe;
	color: #1d4ed8;
}

/* Grid de productos */
.hp-taxcat__products {
	padding: 3rem 0 5rem;
	background: #f8faff;
}

/* Reutiliza .hp-catalog__grid del catalog.css */

/* Estado vacío */
.hp-taxcat__empty {
	text-align: center;
	padding: 5rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	color: #64748b;
}

.hp-taxcat__empty svg { color: #cbd5e1; }
.hp-taxcat__empty h2  { font-size: 1.25rem; color: #1e293b; margin: 0; }
.hp-taxcat__empty p   { margin: 0; }

/* Paginación */
.hp-taxcat__pagination {
	display: flex;
	justify-content: center;
	gap: .5rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}

.hp-taxcat__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 .75rem;
	border-radius: 10px;
	font-size: .875rem;
	font-weight: 600;
	text-decoration: none;
	background: #fff;
	border: 1.5px solid #e2e8f0;
	color: #334155;
	transition: background .2s, border-color .2s, color .2s;
}

.hp-taxcat__pagination .page-numbers:hover,
.hp-taxcat__pagination .page-numbers.current {
	background: #3b82f6;
	border-color: #3b82f6;
	color: #fff;
}

/* Badge de tipo en cards */
.hp-product-card__type-badge {
	position: absolute;
	top: .75rem;
	right: .75rem;
	background: rgba(15,23,42,.7);
	backdrop-filter: blur(4px);
	color: #fff;
	font-size: .65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	border-radius: 99px;
	padding: .25rem .65rem;
}

/* Eyebrow de landing como enlace */
a.hp-pl-hero__eyebrow {
	cursor: pointer;
	text-decoration: none;
}

a.hp-pl-hero__eyebrow:hover {
	background: rgba(59,130,246,.18);
	color: #93c5fd;
	text-decoration: none;
}

/* ── Botón CTA de card en taxonomy ──────────────────────────────── */
.hp-pcard__btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #0f172a;
	color: #fff;
	font-size: .85rem;
	font-weight: 700;
	border-radius: 10px;
	padding: .65rem 1.25rem;
	text-decoration: none;
	transition: background .2s, transform .15s, box-shadow .2s;
	box-shadow: 0 3px 10px rgba(15,23,42,.2);
	white-space: nowrap;
}

.hp-pcard__btn:hover {
	background: #1e293b;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(15,23,42,.28);
	color: #fff;
	text-decoration: none;
}

/* Versión para card de plugin (azul) */
.hp-pcard--plugin .hp-pcard__btn {
	background: #3b82f6;
	box-shadow: 0 3px 10px rgba(59,130,246,.3);
}

.hp-pcard--plugin .hp-pcard__btn:hover {
	background: #1d4ed8;
	box-shadow: 0 6px 18px rgba(59,130,246,.4);
	color: #fff;
}