/* ============================================================
   Alfa Digital — Documentos y Delivery Estimate
   Output basado en diseño Claude Design, adaptado a CSS vars.
   ============================================================ */

/* ===== DOCUMENTOS ===== */
.alfa-docs {
	padding: 36px 0 8px;
}
.alfa-docs__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 6px;
}
.alfa-docs__bar {
	width: 4px;
	height: 22px;
	border-radius: 2px;
	flex: 0 0 auto;
}
.alfa-docs__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	color: var(--wd-title-color, #1a1a1a);
}
.alfa-docs__count {
	margin-left: auto;
	font-size: 12.5px;
	color: var(--wd-text-color-secondary, #6b7480);
	font-weight: 500;
}
.alfa-docs__sub {
	margin: 6px 0 18px;
	color: var(--wd-text-color-secondary, #6b7480);
	font-size: 14px;
	max-width: 60ch;
	line-height: 1.5;
}
.alfa-docs__list {
	display: grid;
	gap: 12px;
}
.alfa-docs__list--list {
	grid-template-columns: 1fr;
}
.alfa-docs__list--grid {
	grid-template-columns: repeat(2, 1fr);
}
.alfa-docs__card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 18px;
	border: 1.5px solid var(--wd-border-color, #e6e8eb);
	border-radius: var(--wd-brd-radius, 8px);
	background: var(--wd-bg-color, #fff);
	transition: border-color 0.16s, box-shadow 0.16s, transform 0.16s;
	position: relative;
	text-decoration: none !important;
	color: inherit;
}
.alfa-docs__card:hover {
	border-color: var(--alfa-brand-color, var(--wd-primary-color, #1668b0));
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	transform: translateY(-1px);
}
.alfa-docs__ic {
	position: relative;
	flex: 0 0 auto;
	width: 46px;
	height: 54px;
	color: var(--alfa-tint, #6b7480);
	display: flex;
	align-items: center;
	justify-content: center;
}
.alfa-docs__ic em {
	position: absolute;
	bottom: 6px;
	left: 50%;
	transform: translateX(-50%);
	font-style: normal;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #fff;
	background: var(--alfa-tint, #6b7480);
	padding: 1px 4px;
	border-radius: 3px;
}
.alfa-docs__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
	min-width: 0;
}
.alfa-docs__doc-title {
	font-size: 15px;
	font-weight: 600;
	color: var(--wd-title-color, #1a1a1a);
	line-height: 1.3;
}
.alfa-docs__desc {
	font-style: normal;
	font-size: 13px;
	color: var(--wd-text-color-secondary, #6b7480);
	line-height: 1.4;
}
.alfa-docs__size {
	font-size: 11.5px;
	color: var(--wd-text-color-secondary, #9aa1ab);
	margin-top: 3px;
	font-family: var(--wd-text-font-secondary, ui-monospace, monospace);
}
.alfa-docs__dl {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: var(--wd-brd-radius-sm, 6px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--wd-bg-color-secondary, #f5f5f5);
	transition: background 0.16s, color 0.16s;
}
.alfa-docs__card:hover .alfa-docs__dl {
	background: var(--alfa-brand-color, var(--wd-primary-color, #1668b0));
	color: #fff !important;
}

/* Responsive: 1 columna en mobile */
@media (max-width: 768px) {
	.alfa-docs__list--grid {
		grid-template-columns: 1fr;
	}
}

/* ===== DELIVERY ESTIMATE ===== */
.alfa-delivery {
	margin-top: 18px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.alfa-delivery__ic {
	display: flex;
	color: var(--alfa-brand-color, var(--wd-primary-color, #1668b0));
	flex: 0 0 auto;
}
.alfa-delivery__tx {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}
.alfa-delivery__tx em {
	font-style: normal;
	font-size: 12px;
	color: var(--wd-text-color-secondary, #6b7480);
}
.alfa-delivery__tx b {
	font-size: 14.5px;
	color: var(--wd-title-color, #1a1a1a);
	font-weight: 600;
}
.alfa-delivery__sub {
	font-weight: 500;
	color: var(--wd-text-color-secondary, #6b7480);
	font-size: 12.5px;
}

/* Variante destacada (caja amarilla) */
.alfa-delivery--bold {
	background: var(--alfa-warn-bg, #FDF6E3);
	border: 1px solid var(--alfa-warn-border, #F0D9A8);
	border-radius: var(--wd-brd-radius, 8px);
	padding: 12px 16px;
}
.alfa-delivery--bold .alfa-delivery__ic {
	color: var(--alfa-warn, #B5841F);
}
