#bienvenida {
	display: grid;
	align-content: center;
	justify-content: center;
	margin: 50px 20px;
}

#bienvenida h2 {
	font-size: 2.5em;
	color: #333;
	text-align: center;
	font-weight: bold;
}

#bienvenida div {
	width: 100%;
	max-width: 800px;
	font-size: 16px;
	text-align: justify;
}

#bienvenida div p {
	padding: 10px 0 0;
}

/* ===== Tabs Transparencia (tabu_) ===== */
.tabu_tabs {
	margin: 55px 0;
}

.tabu_tabs-shell {
	display: grid;
	grid-template-columns: minmax(280px, 34%) minmax(0, 1fr);
	gap: 22px;
	align-items: stretch;
}

.tabu_tabs-menu {
	display: grid;
	gap: 12px;
	padding: 18px;
	background: #f8f8f8;
	border-radius: 20px;
	border: 1px solid #ebebeb;
}

.tabu_tab-btn {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	padding: 14px 14px;
	text-align: left;
	border: 1px solid #ececec;
	border-radius: 14px;
	background: #ffffff;
	color: #1f232b;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
}

.tabu_tab-btn:hover,
.tabu_tab-btn:focus-visible {
	outline: none;
	transform: translateY(-2px);
	border-color: #d8d8d8;
	box-shadow: 0 8px 18px rgba(34, 43, 62, 0.09);
}

.tabu_tab-btn.tabu_is-active {
	background: var(--tabu-active-bg, #eef3ff);
	border-color: var(--tabu-active-border, #d5dff2);
	box-shadow: 0 12px 24px rgba(41, 54, 77, 0.12);
}

.tabu_tab-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.78);
	color: #2d3649;
	font-size: 16px;
	margin-top: 2px;
}

.tabu_tab-copy {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.tabu_tab-title {
	display: block;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.15;
}

.tabu_tab-desc {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 14px;
	line-height: 1.35;
	color: #526078;
}

.tabu_tabs-content {
	background: var(--tabu-panel-bg, #f6f7fb);
	border: 1px solid rgba(43, 62, 95, 0.09);
	border-radius: 20px;
	padding: 26px;
	min-height: 100%;
	transition: background-color 0.22s ease;
}

.tabu_tabs-panel {
	opacity: 0;
	transform: translateY(6px);
	transition:
		opacity 0.22s ease,
		transform 0.22s ease;
}

.tabu_tabs-panel.tabu_is-active {
	opacity: 1;
	transform: translateY(0);
}

.tabu_tabs-panel.tabu_is-leaving {
	opacity: 0;
	transform: translateY(-6px);
}

.tabu_tabs-panel[hidden] {
	display: none;
}

.tabu_panel-title {
	margin: 0 0 50px;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.15;
	color: #212939;
}

.tabu_links-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

@media (max-width: 991px) {
	.tabu_tabs-shell {
		grid-template-columns: 1fr;
	}

	.tabu_tabs-content {
		padding: 20px;
	}

	.tabu_panel-title {
		font-size: 24px;
	}
}

@media (max-width: 640px) {
	.tabu_tabs {
		margin: 36px 0;
	}

	.tabu_tabs-menu {
		padding: 12px;
		gap: 10px;
	}

	.tabu_tab-btn {
		padding: 12px;
	}

	.tabu_tab-title {
		font-size: 20px;
	}

	.tabu_tab-desc {
		font-size: 13px;
	}

	.tabu_links-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

/* ===== Tabu Link Buttons (depurado) ===== */
.tabu_links-grid .tabu_link-btn {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	background: none;
	color: #0f1923;
	cursor: pointer;
	position: relative;
	display: block;
	width: 100%;
	padding: 8px;
	margin: 0;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.15;
	text-decoration: none;
	transition: all 0.15s ease;
}

.tabu_links-grid .tabu_link-btn::before,
.tabu_links-grid .tabu_link-btn::after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	left: 0;
	height: calc(50% - 5px);
	border: 1px solid #7d8082;
	transition: all 0.15s ease;
	pointer-events: none;
}

.tabu_links-grid .tabu_link-btn::before {
	top: 0;
	border-bottom-width: 0;
}

.tabu_links-grid .tabu_link-btn::after {
	bottom: 0;
	border-top-width: 0;
}

.tabu_links-grid .tabu_link-btn:active,
.tabu_links-grid .tabu_link-btn:focus,
.tabu_links-grid .tabu_link-btn:focus-visible {
	outline: none;
	text-decoration: none;
}

.tabu_links-grid .tabu_link-btn:active::before,
.tabu_links-grid .tabu_link-btn:active::after {
	right: 3px;
	left: 3px;
}

.tabu_links-grid .tabu_link-btn:active::before {
	top: 3px;
}

.tabu_links-grid .tabu_link-btn:active::after {
	bottom: 3px;
}

.tabu_links-grid .tabu_button_lg {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 74px;
	padding: 10px 20px;
	color: #000;
	background-color: #fff;
	overflow: hidden;
	box-shadow: inset 0 0 0 1px transparent;
	text-align: center;
}

.tabu_links-grid .tabu_button_lg::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	height: 2px;
	background-color: #000;
}

.tabu_links-grid .tabu_button_lg::after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 4px;
	height: 4px;
	background-color: #000;
	transition: all 0.2s ease;
}

.tabu_links-grid .tabu_button_sl {
	display: block;
	position: absolute;
	top: 0;
	bottom: -1px;
	left: -8px;
	width: 0;
	background-color: #454545;
	transform: skew(-15deg);
	transition: all 0.2s ease;
}

.tabu_links-grid .tabu_link-text {
	position: relative;
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
	color: inherit;
}

.tabu_links-grid .tabu_link-btn:hover {
	color: #fff;
}

.tabu_links-grid .tabu_link-btn:hover .tabu_button_lg {
	color: #fff;
}

.tabu_links-grid .tabu_link-btn:focus-visible {
	color: #0f1923;
}

.tabu_links-grid .tabu_link-btn:hover .tabu_button_sl,
.tabu_links-grid .tabu_link-btn:focus-visible .tabu_button_sl {
	width: calc(100% + 15px);
}

.tabu_links-grid .tabu_link-btn:hover .tabu_button_lg::after,
.tabu_links-grid .tabu_link-btn:focus-visible .tabu_button_lg::after {
	background-color: #fff;
}

.tabu_links-grid .tabu_link-btn:visited {
	color: #0f1923;
	text-decoration: none;
}

.btn-enlaces {
	display: flex;
	flex-wrap: wrap;
}
.btn-enlaces img {
	width: 100%;
	max-width: 170px;
	height: auto;
	padding: 0 5px 15px;
	transition: 0.3s ease-in-out;
}
.btn-enlaces img:hover {
	scale: 1.1;
	transition: 0.3s ease-in-out;
}

@media (max-width: 767px) {
	.tabu_links-grid .tabu_button_lg {
		min-height: 62px;
		padding: 10px 14px;
	}

	.tabu_links-grid .tabu_link-text {
		font-size: 13px;
	}
}
