/* =============================================================================
   DKT Store — Métodos anticonceptivos (sección NUEVA · Home Premium v3.2)
   9 tiles magenta #87114A (v3.3; antes noche) de navegación, flex centrado.
   Hover: lift -6px + borde interior rosa (inset box-shadow en ::after) +
   icono scale(1.1). Iconos: <img> blancos del theme o glifos inline 1.6px.
   ============================================================================= */

.dkt-home__methods { background: var(--dkt-paper); width: 100%; }

.dkt-methods { max-width: 1180px; margin-inline: auto; padding: 80px 24px 88px; }

/* ---------- Cabecera ---------- */
.dkt-methods__head { text-align: center; margin-bottom: 44px; }
/* Eyebrow del MOCKUP (.78rem / .22em): override local del .dkt-eyebrow global
   (0.875rem/0.14em) sin tocar base.css (lo usan los landings). */
.dkt-methods__head .dkt-eyebrow {
	font: 600 0.78rem/1 var(--dkt-font-titles, 'Poppins', sans-serif);
	letter-spacing: 0.22em;
}
.dkt-methods__title {
	font-family: var(--dkt-font-titles, 'Poppins', sans-serif);
	font-size: clamp(1.7rem, 3.2vw, 2.5rem);
	font-weight: 700;
	color: var(--dkt-vino);
	margin: 0.45rem 0 0;
}
.dkt-methods__arco { width: 88px; height: 14px; margin: 16px auto 0; display: block; max-width: none; }
.dkt-methods__arco path { fill: none; stroke: var(--dkt-magenta); stroke-width: 3; stroke-linecap: round; }

/* ---------- Grid de tiles ---------- */
.dkt-methods__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	max-width: 1060px;
	margin-inline: auto;
}

.dkt-met {
	width: 184px;
	background: #87114A;   /* v3.3: magenta oscuro DKT (antes noche #2B0518) */
	border-radius: 20px;
	padding: 28px 14px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	text-align: center;
	position: relative;
	text-decoration: none;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
/* Borde interior rosa al hover (inset shadow en ::after, no altera layout) */
.dkt-met::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 20px;
	box-shadow: inset 0 0 0 1.5px rgba(237,0,118,0);
	transition: box-shadow 0.25s var(--ease);
	pointer-events: none;
}
.dkt-met:hover { transform: translateY(-6px); box-shadow: 0 18px 34px -12px rgba(43,5,24,0.5); }
.dkt-met:hover::after,
.dkt-met:focus-visible::after { box-shadow: inset 0 0 0 1.5px rgba(237,0,118,0.65); }

.dkt-met__ico {
	height: 62px;
	width: auto;
	max-width: none;
	flex: 0 0 auto;
	transition: transform 0.3s var(--ease);
}
/* v3.3: iconos <img> forzados a BLANCO puro (jeringa y otros assets traen
   acentos de color; los ya-blancos quedan igual). Solo img — los inline ya
   son blancos por atributos. */
img.dkt-met__ico { filter: brightness(0) invert(1); }
.dkt-met:hover .dkt-met__ico { transform: scale(1.1); }

.dkt-met__label {
	font-family: var(--dkt-font-titles, 'Poppins', sans-serif);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--dkt-white);
	line-height: 1.35;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	.dkt-met,
	.dkt-met::after,
	.dkt-met__ico { transition: none !important; }
	.dkt-met:hover { transform: none; }
	.dkt-met:hover .dkt-met__ico { transform: none; }
}
