/* ==========================================================================
   CATÁLOGO DINAMO — estilos de ficha de producto, tarjetas y secciones.
   Se carga solo en producto, archivos de tipo/marca y home.
   ========================================================================== */

.dn-main {
	padding-block: clamp(1.5rem, 3vw, 2.5rem) var(--dn-section-y);
}

/* ---------- Migas de pan ---------- */
.dn-breadcrumb {
	font-size: 0.875rem;
	margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.dn-breadcrumb ol {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
}
.dn-breadcrumb li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--dn-color-muted);
}
.dn-breadcrumb li:not(:last-child)::after {
	content: "›";
	color: var(--dn-color-line-strong);
}
.dn-breadcrumb a {
	color: var(--dn-color-muted);
	text-decoration: none;
}
.dn-breadcrumb a:hover {
	color: var(--dn-color-primary);
	text-decoration: underline;
}
.dn-breadcrumb [aria-current="page"] {
	color: var(--dn-color-ink);
	font-weight: 600;
}

/* ---------- Disposición del producto ---------- */
.dn-product {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.5rem, 4vw, 3rem);
}
@media (min-width: 880px) {
	.dn-product {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		align-items: start;
	}
}

/* ---------- Imagen ---------- */
.dn-product__media {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: var(--dn-radius-lg);
	overflow: hidden;
	background: linear-gradient(135deg, #243b55 0%, rgba(36,59,85,0.7) 100%);
}
.dn-product__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.dn-media-fallback {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
}
.dn-media-fallback span {
	font-weight: 700;
	font-size: clamp(2rem, 5vw, 3rem);
	color: var(--dn-color-highlight);
	letter-spacing: -0.01em;
}

/* ---------- Información ---------- */
.dn-product__eyebrow {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dn-color-muted);
	margin: 0 0 0.75rem;
}
.dn-product__title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	line-height: 1.08;
	color: var(--dn-color-ink);
	margin: 0 0 1rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}
.dn-product__desc {
	color: var(--dn-color-muted);
	font-size: 1.0625rem;
	line-height: 1.6;
	margin: 0 0 1.75rem;
	max-width: 48ch;
}
.dn-product__desc p:last-child {
	margin-bottom: 0;
}
.dn-product__modelos {
	font-size: 0.95rem;
	color: var(--dn-color-muted);
	margin: -0.5rem 0 1.5rem;
}
.dn-product__modelos strong {
	color: var(--dn-color-ink);
}

/* ---------- Tarjetas de datos ---------- */
.dn-specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin: 0 0 1.75rem;
}
.dn-spec {
	border: 1px solid var(--dn-color-line);
	border-radius: var(--dn-radius);
	padding: 1rem 1.125rem;
	background: var(--dn-color-surface);
}
.dn-spec dt {
	font-size: 0.8125rem;
	color: var(--dn-color-muted);
	margin: 0 0 0.25rem;
}
.dn-spec dd {
	margin: 0;
	font-weight: 700;
	color: var(--dn-color-ink);
}
@media (max-width: 420px) {
	.dn-specs {
		grid-template-columns: 1fr;
	}
}

/* ---------- Botón WhatsApp ---------- */
.dn-btn-wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background: var(--dn-color-whatsapp);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.2;
	padding: 0.8rem 1.5rem;
	border-radius: 999px;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.1s ease;
}
.dn-btn-wa:hover {
	background: var(--dn-color-whatsapp-dark);
	color: #fff;
}
.dn-btn-wa:active {
	transform: translateY(1px);
}
.dn-btn-wa svg {
	width: 1.25em;
	height: 1.25em;
	flex: none;
}
.dn-btn-wa--lg {
	font-size: 1.0625rem;
	padding: 0.95rem 1.9rem;
}

/* ---------- Confianza ---------- */
.dn-trust {
	list-style: none;
	margin: 1.75rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}
.dn-trust li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--dn-color-ink);
	font-size: 0.975rem;
}
.dn-trust svg {
	width: 1.35rem;
	height: 1.35rem;
	color: var(--dn-color-primary);
	flex: none;
}

/* ---------- Secciones (FAQ / relacionados) ---------- */
.dn-section {
	margin-top: clamp(3rem, 7vw, 5rem);
}
.dn-section__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--dn-color-ink);
	margin: 0 0 1.5rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

/* ---------- FAQ (acordeón nativo) ---------- */
.dn-faq {
	display: grid;
	gap: 0.85rem;
}
.dn-faq__item {
	border: 1px solid var(--dn-color-line);
	border-radius: var(--dn-radius);
	background: var(--dn-color-surface);
}
.dn-faq__item summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	font-weight: 600;
	color: var(--dn-color-ink);
}
.dn-faq__item summary::-webkit-details-marker {
	display: none;
}
.dn-faq__item summary::after {
	content: "+";
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--dn-color-muted);
	line-height: 1;
	flex: none;
}
.dn-faq__item[open] summary::after {
	content: "−";
}
.dn-faq__answer {
	padding: 0 1.25rem 1.2rem;
	color: var(--dn-color-muted);
	line-height: 1.6;
}

/* ---------- Rejilla de tarjetas ---------- */
.dn-grid-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 620px) {
	.dn-grid-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 920px) {
	.dn-grid-cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ---------- Tarjeta de producto ---------- */
.dn-card {
	border: 1px solid var(--dn-color-line);
	border-radius: var(--dn-radius-lg);
	overflow: hidden;
	background: var(--dn-color-surface);
	display: flex;
	flex-direction: column;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.dn-card:hover {
	border-color: var(--dn-color-highlight);
	box-shadow: var(--dn-shadow);
	transform: translateY(-2px);
}
.dn-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #243b55 0%, rgba(36,59,85,0.7) 100%);
	overflow: hidden;
}
.dn-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.dn-card__media .dn-media-fallback span {
	font-size: clamp(1.5rem, 3vw, 2rem);
}
.dn-card__badge {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	z-index: 1;
	background: var(--dn-color-highlight);
	color: var(--dn-color-primary);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.3rem 0.6rem;
	border-radius: 6px;
}
.dn-card__body {
	padding: 1.1rem 1.2rem 1.3rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 1;
}
.dn-card__title {
	font-size: 1.0625rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}
.dn-card__title a {
	color: var(--dn-color-ink);
	text-decoration: none;
}
.dn-card__title a:hover {
	color: var(--dn-color-primary);
}
.dn-card__meta {
	font-size: 0.875rem;
	color: var(--dn-color-muted);
	margin: 0 0 0.5rem;
}
.dn-card .dn-btn-wa {
	margin-top: auto;
	width: 100%;
	font-size: 0.95rem;
	padding: 0.7rem 1rem;
}

/* ==========================================================================
   ARCHIVO DE CATÁLOGO (categoría / marca)
   ========================================================================== */

/* Truco para que un bloque ocupe todo el ancho aunque esté dentro
   del contenedor centrado de Astra. */
.dn-fullbleed {
	margin-inline: calc(50% - 50vw);
}

.dn-archive {
	padding-bottom: var(--dn-section-y);
}

/* ---------- Hero ---------- */
.dn-archive-hero {
	background: var(--dn-color-primary);
	color: #fff;
	padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.dn-archive-hero .dn-wrap {
	width: min(100% - 2rem, var(--dn-container));
}
.dn-breadcrumb--light li {
	color: rgba(255, 255, 255, 0.75);
}
.dn-breadcrumb--light a {
	color: rgba(255, 255, 255, 0.75);
}
.dn-breadcrumb--light a:hover {
	color: #fff;
}
.dn-breadcrumb--light li:not(:last-child)::after {
	color: rgba(255, 255, 255, 0.4);
}
.dn-breadcrumb--light [aria-current="page"] {
	color: #fff;
}
.dn-archive__title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0.75rem 0 0.75rem;
}
.dn-archive__intro {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.0625rem;
	line-height: 1.6;
	max-width: 60ch;
	margin: 0;
}

/* ---------- Cuerpo ---------- */
.dn-archive__body {
	padding-top: clamp(1.75rem, 4vw, 2.75rem);
}

/* ---------- Barra de filtros ---------- */
.dn-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.dn-search {
	position: relative;
	display: flex;
	align-items: center;
	flex: 1 1 260px;
	max-width: 340px;
}
.dn-search svg {
	position: absolute;
	left: 1rem;
	width: 1.1rem;
	height: 1.1rem;
	color: var(--dn-color-muted);
	pointer-events: none;
}
.dn-search input {
	width: 100%;
	border: 1px solid var(--dn-color-line);
	border-radius: 999px;
	padding: 0.7rem 1rem 0.7rem 2.6rem;
	font-size: 0.95rem;
	color: var(--dn-color-ink);
	background: var(--dn-color-surface);
}
.dn-search input:focus {
	outline: none;
	border-color: var(--dn-color-primary);
	box-shadow: 0 0 0 3px rgba(47, 67, 86, 0.12);
}

.dn-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.dn-chip {
	border: 1px solid var(--dn-color-line);
	background: var(--dn-color-surface);
	color: var(--dn-color-ink);
	font-size: 0.9rem;
	font-weight: 600;
	padding: 0.55rem 1.05rem;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.dn-chip:hover {
	border-color: var(--dn-color-primary);
}
.dn-chip--active {
	background: var(--dn-color-primary);
	border-color: var(--dn-color-primary);
	color: #fff;
}

/* ---------- Grilla de 4 columnas en escritorio ---------- */
@media (min-width: 1080px) {
	.dn-grid-cards--4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* La tarjeta en el archivo usa imagen cuadrada como en el diseño. */
.dn-archive__body .dn-card__media {
	aspect-ratio: 1 / 1;
}

/* ---------- Estado vacío / sin resultados ---------- */
.dn-empty {
	margin-top: 1.5rem;
	color: var(--dn-color-muted);
	font-size: 1rem;
}

/* ---------- CTA: ¿No encuentras el modelo? ---------- */
.dn-cta-banner {
	background: var(--dn-color-highlight);
	margin-top: clamp(2.5rem, 5vw, 4rem);
	padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.dn-cta-banner__inner {
	width: min(100% - 2rem, 720px);
	text-align: center;
}
.dn-cta-banner__title {
	color: var(--dn-color-primary);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	margin: 0 0 0.5rem;
}
.dn-cta-banner__text {
	color: var(--dn-color-primary);
	font-size: 1.0625rem;
	margin: 0 0 1.5rem;
	opacity: 0.85;
}
.dn-cta-banner .dn-btn-wa {
	margin-inline: auto;
}

/* ==========================================================================
   AJUSTES DE ARCHIVO: título en blanco + integración con Astra
   ========================================================================== */

/* Título del hero en blanco, para contraste sobre el navy. */
.dn-archive__title {
	color: #fff;
}

/* Elimina el espacio que Astra deja arriba y abajo del contenido en los
   archivos: el hero queda pegado al header y el banner amarillo al footer. */
.tax-tipo .site-content,
.tax-marca .site-content,
.tax-tipo #content,
.tax-marca #content,
.tax-tipo .ast-container,
.tax-marca .ast-container,
.tax-tipo #primary,
.tax-marca #primary {
	padding-block: 0;
	margin-block: 0;
}

/* El banner CTA queda como último elemento, pegado al footer. */
.dn-archive {
	padding-bottom: 0;
}

/* ==========================================================================
   HOME (front-page)
   ========================================================================== */

/* Cada sección ocupa todo el ancho; su .dn-wrap interior re-centra el contenido.
   (Se aplica a las secciones, no al <main>, porque Astra usa flex en el
   contenedor y el sangrado no funciona sobre el elemento flex directo.) */
.dn-home > .dn-hero,
.dn-home > .dn-sec {
	margin-inline: calc(50% - 50vw);
}

/* Quita el espacio de Astra para que el hero quede pegado al header. */
.home .site-content,
.home #content,
.home .ast-container,
.home #primary,
.home .site-main,
.home .entry-content {
	padding-block: 0 !important;
	margin-block: 0 !important;
}

.dn-sec {
	padding-block: clamp(3rem, 6vw, 4.5rem);
}
.dn-sec--alt {
	background: var(--dn-color-bg);
	border-top: 1px solid var(--dn-color-line);
	border-bottom: 1px solid var(--dn-color-line);
}
.dn-sec--cta {
	padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.dn-eyebrow {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--dn-color-muted);
}
.dn-eyebrow--lime {
	color: var(--dn-color-highlight);
}
.dn-h2 {
	font-size: clamp(1.65rem, 3.5vw, 2.4rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--dn-color-ink);
	margin: 0.5rem 0 2.25rem;
	line-height: 1.1;
}
.dn-head-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 1rem;
}
.dn-head-row .dn-h2 {
	margin-bottom: 0;
}
.dn-head-row + .dn-grid-cards,
.dn-head-row + .dn-cats {
	margin-top: 2.25rem;
}
.dn-link {
	color: var(--dn-color-primary);
	font-weight: 600;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}
.dn-link:hover {
	color: var(--dn-color-primary-dark);
}

/* ---------- Hero ---------- */
.dn-hero {
	background: var(--dn-color-primary);
	color: #fff;
	padding-block: clamp(3rem, 6vw, 4.5rem);
	border-radius: 0 0 28px 28px;
	position: relative;
	overflow: hidden;
}
.dn-hero::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: rgba(236, 227, 24, 0.18);
	filter: blur(80px);
	pointer-events: none;
}
.dn-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
	position: relative;
	z-index: 1;
}
@media (min-width: 900px) {
	.dn-hero__grid {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}
}
.dn-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--dn-color-highlight);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
}
.dn-badge svg {
	width: 0.9rem;
	height: 0.9rem;
}
.dn-hero__title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: #fff;
	margin: 1.25rem 0 1rem;
}
.dn-hero__text {
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.125rem;
	max-width: 33ch;
	margin: 0 0 1.75rem;
}
.dn-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.dn-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.25);
	font-weight: 600;
	font-size: 1rem;
	padding: 0.95rem 1.6rem;
	border-radius: 999px;
	text-decoration: none;
	transition: background 0.15s ease;
}
.dn-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}
.dn-stats {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, auto);
	justify-content: start;
	gap: 1.5rem;
	margin: 2.25rem 0 0;
	padding: 0;
}
.dn-stats li strong {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--dn-color-highlight);
	line-height: 1.1;
}
.dn-stats li span {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
}
.dn-hero__media {
	width: 100%;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}
.dn-hero__media--ph {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1.5rem;
	background: linear-gradient(135deg, #2d4866, #1a2c42);
	color: var(--dn-color-highlight);
	font-weight: 700;
	font-size: 1.3rem;
}
/* Carrusel del hero (crossfade con CSS, sin JS) */
.dn-hero__carousel {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	background: linear-gradient(135deg, #2d4866, #1a2c42);
}
.dn-hero__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	animation: dnHeroFade 12s ease-in-out infinite;
}
.dn-hero__slide--2 {
	animation-delay: -6s;
}
@keyframes dnHeroFade {
	0%, 42% { opacity: 1; }
	50%, 92% { opacity: 0; }
	100% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
	.dn-hero__slide { animation: none; }
	.dn-hero__slide--2 { opacity: 0; }
	.dn-hero__slide:not(.dn-hero__slide--2) { opacity: 1; }
}

/* ---------- Categorías ---------- */
.dn-cats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 780px) {
	.dn-cats {
		grid-template-columns: 1fr 1fr;
	}
}
.dn-cat {
	border: 1px solid var(--dn-color-line);
	border-radius: 20px;
	overflow: hidden;
	background: var(--dn-color-surface);
	display: block;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dn-cat:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(36, 59, 85, 0.1);
}
.dn-cat__img {
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, var(--dn-color-primary), #3a5478);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dn-color-highlight);
	font-size: 2.25rem;
	font-weight: 700;
	overflow: hidden;
}
.dn-cat__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dn-cat__body {
	padding: 1.5rem 1.75rem;
}
.dn-cat__body h3 {
	font-size: 1.4rem;
	color: var(--dn-color-ink);
	margin: 0 0 0.5rem;
}
.dn-cat__body p {
	color: var(--dn-color-muted);
	margin: 0 0 0.9rem;
}

/* ---------- Marcas ---------- */
.dn-brands {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
}
@media (min-width: 780px) {
	.dn-brands {
		grid-template-columns: repeat(5, 1fr);
	}
}
.dn-brand {
	background: var(--dn-color-surface);
	border: 1px solid var(--dn-color-line);
	border-radius: 14px;
	padding: 1.35rem 0.5rem;
	text-align: center;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--dn-color-ink);
	text-decoration: none;
	transition: border-color 0.15s ease, color 0.15s ease;
}
.dn-brand:hover {
	border-color: var(--dn-color-highlight);
	color: var(--dn-color-primary);
}

/* ---------- Por qué elegirnos ---------- */
.dn-feats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 560px) {
	.dn-feats {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 900px) {
	.dn-feats {
		grid-template-columns: repeat(3, 1fr);
	}
}
.dn-feat {
	border: 1px solid var(--dn-color-line);
	border-radius: 18px;
	padding: 1.5rem;
	background: var(--dn-color-surface);
	transition: border-color 0.15s ease;
}
.dn-feat:hover {
	border-color: var(--dn-color-highlight);
}
.dn-feat__ico {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(236, 227, 24, 0.18);
	color: var(--dn-color-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.9rem;
}
.dn-feat__ico svg {
	width: 22px;
	height: 22px;
}
.dn-feat h3 {
	font-size: 1.05rem;
	color: var(--dn-color-ink);
	margin: 0 0 0.4rem;
}
.dn-feat p {
	color: var(--dn-color-muted);
	font-size: 0.9rem;
	margin: 0;
}

/* ---------- Grilla de 3 (destacados / blog) ---------- */
.dn-grid-cards--3 {
	grid-template-columns: 1fr;
}
@media (min-width: 600px) {
	.dn-grid-cards--3 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 900px) {
	.dn-grid-cards--3 {
		grid-template-columns: repeat(3, 1fr);
	}
}
.dn-home .dn-card__media {
	aspect-ratio: 1 / 1;
}

/* ---------- Mobip ---------- */
.dn-mobip {
	background: var(--dn-color-primary);
	color: #fff;
	border-radius: 28px;
	padding: clamp(2.25rem, 4vw, 3.5rem);
	position: relative;
	overflow: hidden;
}
.dn-mobip::before {
	content: "";
	position: absolute;
	top: -80px;
	right: -80px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: rgba(236, 227, 24, 0.18);
	filter: blur(70px);
	pointer-events: none;
}
.dn-mobip__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
	position: relative;
	z-index: 1;
}
@media (min-width: 780px) {
	.dn-mobip__grid {
		grid-template-columns: 1.6fr 1fr;
	}
}
.dn-mobip__title {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	color: #fff;
	margin: 0.75rem 0 1rem;
}
.dn-mobip__title span {
	color: var(--dn-color-highlight);
}
.dn-mobip p {
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 1.25rem;
}
.dn-mobip__link {
	color: var(--dn-color-highlight);
	font-weight: 600;
	text-decoration: none;
}
.dn-mobip__logo {
	width: 130px;
	height: 130px;
	border-radius: 24px;
	border: 2px solid rgba(236, 227, 24, 0.4);
	background: rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.6rem;
	color: var(--dn-color-highlight);
	margin: 0 auto;
}

/* ---------- Testimonios ---------- */
.dn-test {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.1rem;
}
@media (min-width: 900px) {
	.dn-test {
		grid-template-columns: repeat(3, 1fr);
	}
}
.dn-test__card {
	background: var(--dn-color-surface);
	border: 1px solid var(--dn-color-line);
	border-radius: 18px;
	padding: 1.5rem;
	margin: 0;
}
.dn-stars {
	color: var(--dn-color-highlight);
	letter-spacing: 2px;
	font-size: 0.95rem;
}
.dn-test__card blockquote {
	margin: 0.9rem 0;
	font-size: 0.95rem;
	color: #2a3445;
	line-height: 1.55;
}
.dn-test__card figcaption strong {
	display: block;
	color: var(--dn-color-ink);
	font-weight: 600;
	font-size: 0.85rem;
}
.dn-test__card figcaption span {
	color: var(--dn-color-muted);
	font-size: 0.8rem;
}

/* ---------- Blog ---------- */
.dn-post {
	border: 1px solid var(--dn-color-line);
	border-radius: 18px;
	overflow: hidden;
	background: var(--dn-color-surface);
	display: flex;
	flex-direction: column;
	transition: border-color 0.15s ease, transform 0.15s ease;
}
.dn-post:hover {
	border-color: var(--dn-color-highlight);
	transform: translateY(-3px);
}
.dn-post__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #243b55 0%, rgba(36, 59, 85, 0.7) 100%);
	overflow: hidden;
}
.dn-post__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dn-post__body {
	padding: 1.2rem 1.3rem 1.4rem;
}
.dn-post__body h3 {
	font-size: 1.05rem;
	margin: 0 0 0.75rem;
	line-height: 1.3;
}
.dn-post__body h3 a {
	color: var(--dn-color-ink);
	text-decoration: none;
}
.dn-post__body h3 a:hover {
	color: var(--dn-color-primary);
}

/* ---------- CTA final ---------- */
.dn-cta-final {
	background: var(--dn-color-highlight);
	color: var(--dn-color-primary);
	border-radius: 28px;
	padding: clamp(2.5rem, 5vw, 3.75rem) 2rem;
	text-align: center;
}
.dn-cta-final h2 {
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 0.75rem;
}
.dn-cta-final p {
	margin: 0 auto 1.75rem;
	max-width: 46ch;
	color: rgba(36, 59, 85, 0.85);
}
.dn-cta-final .dn-btn-wa {
	margin-inline: auto;
}
