.rs-tabla-personalizable {
	font-family: 'Jost', sans-serif;
	color: #111827;
	box-sizing: border-box;
}

.rs-tabla-personalizable * {
	box-sizing: border-box;
}

.rs-tabla-titulo {
	font-family: 'Jost', sans-serif !important;
	font-size: 40px !important;
	font-weight: 700 !important;
	color: #002052 !important;
	margin: 0 0 20px;
	line-height: 1.2;
}

.rs-tabla-wrapper {
	width: 100%;
	overflow-x: auto;
	border-radius: 12px;
	border: 1px solid #dbeafe;
}

.rs-tabla-table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	min-width: 520px;
}

.rs-tabla-encabezado {
	background: #dbeafe;
	color: #1e3a8a;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 14px 16px;
	text-align: left;
	white-space: nowrap;
}

.rs-tabla-fila {
	border-bottom: 1px solid #e5e7eb;
	background: #fff;
}

.rs-tabla-fila:last-child {
	border-bottom: none;
}

.rs-tabla-celda {
	padding: 16px;
	font-size: 14px;
	color: #374151;
	line-height: 1.4;
	vertical-align: middle;
}

.rs-tabla-destacado {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
}

.rs-tabla-badge {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	background: #2563eb;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 20px;
	vertical-align: middle;
	margin-left: 4px;
}

.rs-tabla-consejo {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 20px;
	padding: 16px;
	background: #fef3c7;
	border: 1px solid #fde68a;
	border-radius: 12px;
	font-size: 14px;
	color: #92400e;
	line-height: 1.5;
}

.rs-tabla-consejo::before {
	content: "i";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	background: #f59e0b;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	font-family: Georgia, serif;
	font-style: italic;
	border-radius: 50%;
	line-height: 1;
}

.rs-tabla-consejo p,
.rs-tabla-consejo > * {
	margin: 0;
}

.rs-tabla-consejo p:last-child {
	margin-bottom: 0;
}

.rs-tabla-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.rs-tabla-cta {
	flex: 1 1 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	background: #2563eb;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.2s ease, transform 0.1s ease;
	text-align: center;
}

.rs-tabla-cta:hover {
	background: #1d4ed8;
}

/* Mobile: tarjetas apiladas */
@media (max-width: 640px) {
	.rs-tabla-wrapper {
		border: none;
		overflow-x: visible;
		border-radius: 0;
	}

	.rs-tabla-table,
	.rs-tabla-table thead,
	.rs-tabla-table tbody,
	.rs-tabla-table tr,
	.rs-tabla-table th,
	.rs-tabla-table td {
		display: block;
		width: 100%;
	}

	.rs-tabla-table thead {
		display: none;
	}

	.rs-tabla-table tbody {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.rs-tabla-fila {
		display: flex;
		flex-direction: column;
		gap: 8px;
		padding: 16px;
		background: #e8e8e8;
		border: 1px solid #d1d5db;
		border-radius: 14px;
		border-bottom: none;
	}

	.rs-tabla-celda {
		padding: 0;
		font-size: 13px;
		color: #6b7280;
		background: transparent;
	}

	.rs-tabla-celda.rs-tabla-destacado {
		order: 2;
		font-size: 36px;
		font-weight: 800;
		color: #1e3a8a;
		line-height: 1.1;
	}

	.rs-tabla-celda:not(.rs-tabla-destacado) {
		order: 1;
	}

	.rs-tabla-celda.rs-tabla-destacado ~ .rs-tabla-celda:not(.rs-tabla-destacado) {
		order: 3;
	}

	.rs-tabla-destacado .rs-tabla-badge {
		float: right;
		margin-top: 4px;
		font-size: 11px;
		padding: 4px 10px;
	}

	.rs-tabla-ctas {
		flex-direction: column;
	}

	.rs-tabla-cta {
		width: 100%;
	}

	.rs-tabla-titulo {
		font-size: 32px !important;
	}
}
