    :root {
    	--sidebar-width: 240px;
    	--sidebar-collapsed-width: 60px;
    	--navbar-height: 60px;
    	--transition-speed: 0.3s;
    	--bg-color: #edf2f9;
    	--text-color: #333;
    	--btn-text: white;
    	--bg-card-color: white;
    	--info: #619bed;
    	--warning: #ffc107;
    	--danger: #dc3545;
    	--success: #28a745;
    	--primary: #1b304d;
    	--secondary: #6c757d;
    	--dark: #343a40;
    	--light: #f8f9fa;
    	--white: #fff;
    	--black: #000;
    	--main-bg: #ffffff;
    	--form-bg: #fff;
    	--form-text: #333;
    	--form-border: #ccc;
    	--form-radius: 8px;
    	--card-radius: 1rem;
    	--card-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.07);
    	--card-hover-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    	--card-bg: var(--bg-card-color, #fff);
    	--card-text: var(--text-color, #000);
    	--card-border: 1px solid #ccc;
    	--card-padding: 1rem;
    	--table-hover: #82b3f8;
    	--gray-scale: 0%;
    	--accordion-body: white;
    	--scroll-color: #555;
    	--scroll-bg: #ddd;
    }

    [data-theme="dark"] {
    	--bg-color: #0b1727;
    	--text-color: #eaeaea;
    	--btn-text: black;
    	--bg-card-color: #121e2d;
    	--info: #2e5a98;
    	--warning: #ab762b;
    	--danger: #a82828;
    	--success: #199450;
    	--primary: #1b4c91;
    	--secondary: #838c94;
    	--dark: #323131;
    	--light: #a1a3a6;
    	--white: #fff;
    	--black: #000;
    	--table-bg: #1f1f1f;
    	--table-text: #e0e0e0;
    	--table-header-bg: #2a2a2a;
    	--table-header-text: #fff;
    	--sidebar-text: #ccc;
    	--content-bg: #121212;
    	--content-text: #eee;
    	--form-bg: #0b1727;
    	--form-text: #f3f4f6;
    	--form-border: #4b5563;
    	--table-hover: rgb(26, 122, 255);
    	--gray-scale: 30%;
    	--accordion-body: #000000;
    	--scroll-color: #555;
    	--scroll-bg: #000000;
    }

    ::-webkit-scrollbar {
    	height: 10px;
    	width: 10px;
    	background-color: var(--scroll-bg);
    }

    ::-webkit-scrollbar-track {
    	background: var(--scroll-bg);
    }

    ::-webkit-scrollbar-thumb {
    	background-color: var(--scroll-color);
    	border-radius: 6px;
    	border: 2px solid #f1f1f1;
    }

    ::-webkit-scrollbar-thumb:hover {
    	background-color: #555;
    }

    html {
    	scrollbar-width: thin;
    	scrollbar-color: var(--scroll-color) var(--scroll-bg);
    }

    * {
    	box-sizing: border-box;
    	margin: 0;
    	padding: 0;
    }

    body {
    	font-family: sans-serif;
    	background: var(--bg-color);
    	color: var(--text-color);
    	min-height: 100vh;
    	display: flex;
    	flex-direction: column;
    }

    pre,
    code,
    kbd,
    samp {
    	font-family: var(--falcon-font-monospace);
    	font-size: 1em;
    }

    pre {
    	display: block;
    	margin-top: 0;
    	margin-bottom: 1rem;
    	overflow: auto;
    	font-size: 75%;
    }

    pre code {
    	font-size: inherit;
    	color: inherit;
    	word-break: normal;
    }

    code {
    	font-size: 75%;
    	color: var(--text-color);
    	word-wrap: break-word;
    }

    a>code {
    	color: inherit;
    }


    pre,
    code {
    	-webkit-font-smoothing: auto;
    	-moz-osx-font-smoothing: auto;
    }

    pre,
    code,
    kbd,
    samp {
    	font-size: 0.875rem;
    }

    [dir=rtl] pre,
    [dir=rtl] code,
    [dir=rtl] kbd,
    [dir=rtl] samp {
    	direction: rtl;
    }

    .code-block {
    	padding: 0;
    	overflow: auto;
    }

    .code-block pre[class*=language-] {
    	padding: 1.6rem;
    	border: 0;
    	margin: 0;
    	border-radius: 0;
    }

    :not(pre)>code[class*=language-],
    pre[class*=language-] {
    	background-color: #232e3c;
    	border: 1px solid var(--bg-card-color);
    	border-radius: 0.25rem;
    }

    code.language-html:first-child {
    	display: block;
    }

    code[class*=language-],
    pre[class*=language-] {
    	color: #d8e2ef;
    	font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    }

    pre[class*=language-] {
    	margin: 0;
    }

    main.content {
    	margin-left: calc(var(--sidebar-width) + 10px);
    	transition: margin-left var(--transition-speed);
    	position: initial;
    	z-index: auto;
    }

    nav.navbar {
    	margin-left: calc(var(--sidebar-width) + 25px);
    	margin-right: 10px;
    	margin-top: 10px;
    	height: var(--navbar-height);
    	color: white;
    	background-color: var(--bg-color), white;
    	display: flex;
    	align-items: center;
    	padding: 0 1rem;
    	justify-content: space-around;
    	transition: margin-left var(--transition-speed);
    	z-index: 100;
    }

    nav.navbar img {
    	width: 100px;
    	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    }

    .sticky-navbar {
    	position: sticky;
    	top: 0;
    	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    aside.sidebar {
    	margin: 10px;
    	width: var(--sidebar-width);
    	color: var(--text-color);
    	transition: width var(--transition-speed), transform var(--transition-speed);
    	height: 100vh;
    	position: fixed;
    	z-index: 100;
    	display: flex;
    	flex-direction: column;
    }

    aside.sidebar.collapsed {
    	width: var(--sidebar-collapsed-width);
    }

    .sidebar nav {
    	display: flex;
    	flex-direction: column;
    	padding: 1rem 0;
    	flex-grow: 1;
    }

    .sidebar a {
    	padding: 1rem;
    	color: var(--text-color);
    	text-decoration: none;
    	display: flex;
    	align-items: center;
    	transition: background 0.2s;
    	font-size: 1rem;
    }

    .sidebar a:hover {
    	background: var(--secondary);
    }

    .sidebar a i {
    	margin-right: 0.5rem;
    	font-style: normal;
    	font-size: 1.3rem;
    	width: 1.5rem;
    	text-align: center;
    }

    aside.sidebar.collapsed a span {
    	display: none;
    }

    .overlay {
    	display: none;
    	position: fixed;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: calc(100%);
    	background-color: rgba(0, 0, 0, 0.5);
    	z-index: 999;
    	transition: opacity var(--transition-speed);
    }

    .overlay.show {
    	display: block;
    }

    [data-navbar="true"][data-sidebar="false"] nav.navbar {
    	margin: 0 30px;
    }

    [data-navbar="true"][data-sidebar="false"] main.content {
    	margin: 0 30px;
    }

    /* <---------------- navbar [true] sidebar [true]*/

    [data-navbar="true"][data-sidebar="true"] main.content {
    	top: 0;
    	margin-top: 10px;
    	margin-left: calc(var(--sidebar-width) + 10px);
    	padding: 0 1rem;
    }

    [data-navbar="true"][data-sidebar="true"] aside.sidebar.collapsed~main.content {
    	margin-left: calc(var(--sidebar-collapsed-width) + 10px);
    }

    [data-navbar="true"][data-sidebar="true"] nav.navbar.collapsed {
    	margin-left: calc(var(--sidebar-collapsed-width) + 25px);
    }

    /* navbar [true] sidebar [true] ---------->*/

    /* <---------------- navbar [false] sidebar [true]*/

    [data-navbar="false"][data-sidebar="true"] aside.sidebar {
    	top: 0;
    }

    [data-navbar="false"][data-sidebar="true"] main.content {
    	margin-top: 0;
    	margin-left: var(--sidebar-width);
    	min-height: 100vh;
    }

    [data-navbar="false"][data-sidebar="true"] aside.sidebar.collapsed~main.content {
    	margin-left: var(--sidebar-collapsed-width);
    }

    [data-navbar="false"][data-sidebar="true"] .overlay {
    	top: 0;
    	height: 100%;
    }

    /* navbar [false] sidebar [true] ---------->*/

    /* <-------- navbar [false] sidebar [false]*/

    [data-navbar="false"][data-sidebar="false"] main.content {
    	margin: 0;
    	padding: 0;
    }

    /* navbar [false] sidebar [false] ----------->*/

    [data-navbar="false"] nav.navbar {
    	display: none;
    }

    [data-sidebar="false"] aside.sidebar {
    	display: none;
    }

    @media (max-width: 768px) {

    	/* Sidebar oculto por defecto en móvil */
    	aside.sidebar {
    		top: 0;
    		height: calc(100% - var(--navbar-height));
    		transform: translateX(-100%);
    		position: fixed;
    		z-index: 1100;
    		width: 100%;
    		display: none;
    	}

    	/* En modo sin navbar móvil */
    	[data-navbar="false"][data-sidebar="true"] aside.sidebar {
    		top: 0;
    		height: 100%;
    		width: 100%;
    		transform: translateY(-100%);
    		left: 0;
    	}

    	/* Mostrar sidebar móvil */
    	aside.sidebar.show {
    		transform: translateX(0);
    		transform: translateY(0);
    		width: calc(100% - 30px);
    		margin-left: 15px;
    		display: block;
    	}

    	/* Ajustar contenido */
    	main.content {
    		width: 100%;
    		margin-left: 0 !important;
    	}

    	/* Overlay visible */
    	.overlay.show {
    		display: block;
    	}

    	nav.navbar {
    		width: calc(100% - 30px);
    		margin-left: 15px;
    		padding: 1rem;
    	}

    	.sidebar-toggle-button {
    		display: none;
    	}

    	[data-sidebar="false"] main.content {
    		margin-left: 0 !important;
    	}

    	[data-sidebar="false"] .floating-toggle {
    		display: none;
    	}

    	[data-sidebar="false"] nav.navbar {
    		width: calc(100% - 30px);
    		margin-left: 15px;
    		padding: 1rem;
    	}
    }

    .sidebar-toggle-button {
    	background: var(--primary, #333);
    	color: white;
    	border: none;
    	padding: 8px;
    	cursor: pointer;
    	transition: background 0.3s;
    	border-radius: 60px;
    	margin: 10px;
    }

    /* BOTÓN FLOTANTE para abrir sidebar en móvil (solo sin navbar) */
    .floating-toggle {
    	position: fixed;
    	bottom: 20px;
    	right: 20px;
    	z-index: 9000;
    	/* por encima del overlay y el sidebar */
    	width: 48px;
    	height: 48px;
    	border-radius: 50%;
    	background: var(--primary, #333);
    	color: white;
    	font-size: 24px;
    	border: none;
    	cursor: pointer;
    	display: none;
    	/* por defecto oculto */
    	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    	transition: background 0.3s, transform 0.3s;
    }

    .floating-toggle:hover {
    	background: #555;
    	transform: scale(1.1);
    }

    @media (max-width: 768px) {
    	.floating-toggle {
    		display: block;
    	}
    }

    .dropdown {
    	position: relative;
    	user-select: none;
    }

    .dropdown-toggle {
    	color: var(--text-color);
    	padding: 0.5rem 1rem;
    	font-size: 0.9rem;
    	border: none;
    	border-radius: 5px;
    	cursor: pointer;
    	background-color: var(--bg-color);
    	transition: background 0.3s;
    }

    .dropdown-toggle i {
    	margin-right: 0.5rem;
    	color: var(--text-color);
    }

    .dropdown-toggle:hover {
    	background: var(--primary);
    	color: white;
    }

    .dropdown-toggle:has(.avatar):hover {
    	background: transparent;
    }

    .dropdown-menu {
    	position: absolute;
    	top: 110%;
    	left: 0;
    	background-color: var(--bg-card-color);
    	color: var(--text-color);
    	border-radius: 5px;
    	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    	list-style: none;
    	padding: 0.5rem 0;
    	margin: 0;
    	width: max-content;
    	min-width: 150px;
    	display: none;
    	z-index: 1001;
    }

    .dropdown-menu li a {
    	display: block;
    	padding: 0.5rem 1rem;
    	text-decoration: none;
    	color: var(--text-color);
    	font-size: 0.9rem;
    	transition: background 0.2s;
    }

    .dropdown-menu li span {
    	display: block;
    	padding: 0.5rem 1rem;
    	margin-bottom: 0;
    	font-size: .875rem;
    	color: var(--secondary);
    	white-space: nowrap;
    }

    .dropdown-menu li a:hover {
    	background-color: var(--primary);
    	color: white;
    	font-weight: bold;
    }

    .dropdown.open .dropdown-menu {
    	display: block;
    	animation: fadeInDropDown 0.2s ease-in-out;
    }

    @keyframes fadeInDropDown {
    	from {
    		opacity: 0;
    		transform: translateY(-5px);
    	}

    	to {
    		opacity: 1;
    		transform: translateY(0);
    	}
    }

    @media (max-width: 768px) {
    	.dropdown-menu {
    		position: static;
    		box-shadow: none;
    		border-radius: 0;
    		margin-top: 0.5rem;
    	}

    	.dropdown-toggle {
    		width: 100%;
    		text-align: left;
    	}

    }

    .sidebar-dropdown .icon-only {
    	display: none;
    	background: none;
    	border: none;
    	color: white;
    	font-size: 1.2rem;
    	padding: 1rem;
    	cursor: pointer;
    }

    .sidebar-dropdown .full {
    	display: flex;
    	background: none;
    	border: none;
    	color: var(--text-color);
    	font-size: 0.9rem;
    	padding: 1rem;
    	align-items: center;
    	gap: 0.5rem;
    	cursor: pointer;
    }

    .sidebar.collapsed .sidebar-dropdown .full {
    	display: none;
    }

    .sidebar.collapsed .sidebar-dropdown .icon-only {
    	display: block;
    }

    .sidebar:not(.collapsed) .sidebar-dropdown .full {
    	display: flex;
    }

    .sidebar:not(.collapsed) .sidebar-dropdown .icon-only {
    	display: none;
    }

    .dropdown.open .dropdown-menu {
    	display: block;
    }

    .row {
    	display: flex;
    	flex-wrap: wrap;
    }

    .col {
    	padding: 0.5rem;
    	flex: 1 1 0%;
    }

    /* Tamaño base (mobile first) */
    .col-1 {
    	flex: 0 0 8.3333%;
    	max-width: 8.3333%;
    }

    .col-2 {
    	flex: 0 0 16.6667%;
    	max-width: 16.6667%;
    }

    .col-3 {
    	flex: 0 0 25%;
    	max-width: 25%;
    }

    .col-4 {
    	flex: 0 0 33.3333%;
    	max-width: 33.3333%;
    }

    .col-5 {
    	flex: 0 0 41.6667%;
    	max-width: 41.6667%;
    }

    .col-6 {
    	flex: 0 0 50%;
    	max-width: 50%;
    }

    .col-7 {
    	flex: 0 0 58.3333%;
    	max-width: 58.3333%;
    }

    .col-8 {
    	flex: 0 0 66.6667%;
    	max-width: 66.6667%;
    }

    .col-9 {
    	flex: 0 0 75%;
    	max-width: 75%;
    }

    .col-10 {
    	flex: 0 0 83.3333%;
    	max-width: 83.3333%;
    }

    .col-11 {
    	flex: 0 0 91.6667%;
    	max-width: 91.6667%;
    }

    .col-12 {
    	flex: 0 0 100%;
    	max-width: 100%;
    }

    /* Tablets */
    @media (min-width: 768px) {
    	.col-md-1 {
    		flex: 0 0 8.3333%;
    		max-width: 8.3333%;
    	}

    	.col-md-2 {
    		flex: 0 0 16.6667%;
    		max-width: 16.6667%;
    	}

    	.col-md-3 {
    		flex: 0 0 25%;
    		max-width: 25%;
    	}

    	.col-md-4 {
    		flex: 0 0 33.3333%;
    		max-width: 33.3333%;
    	}

    	.col-md-5 {
    		flex: 0 0 41.6667%;
    		max-width: 41.6667%;
    	}

    	.col-md-6 {
    		flex: 0 0 50%;
    		max-width: 50%;
    	}

    	.col-md-7 {
    		flex: 0 0 58.3333%;
    		max-width: 58.3333%;
    	}

    	.col-md-8 {
    		flex: 0 0 66.6667%;
    		max-width: 66.6667%;
    	}

    	.col-md-9 {
    		flex: 0 0 75%;
    		max-width: 75%;
    	}

    	.col-md-10 {
    		flex: 0 0 83.3333%;
    		max-width: 83.3333%;
    	}

    	.col-md-11 {
    		flex: 0 0 91.6667%;
    		max-width: 91.6667%;
    	}

    	.col-md-12 {
    		flex: 0 0 100%;
    		max-width: 100%;
    	}
    }

    /* Desktop */
    @media (min-width: 1024px) {
    	.col-lg-1 {
    		flex: 0 0 8.3333%;
    		max-width: 8.3333%;
    	}

    	.col-lg-2 {
    		flex: 0 0 16.6667%;
    		max-width: 16.6667%;
    	}

    	.col-lg-3 {
    		flex: 0 0 25%;
    		max-width: 25%;
    	}

    	.col-lg-4 {
    		flex: 0 0 33.3333%;
    		max-width: 33.3333%;
    	}

    	.col-lg-5 {
    		flex: 0 0 41.6667%;
    		max-width: 41.6667%;
    	}

    	.col-lg-6 {
    		flex: 0 0 50%;
    		max-width: 50%;
    	}

    	.col-lg-7 {
    		flex: 0 0 58.3333%;
    		max-width: 58.3333%;
    	}

    	.col-lg-8 {
    		flex: 0 0 66.6667%;
    		max-width: 66.6667%;
    	}

    	.col-lg-9 {
    		flex: 0 0 75%;
    		max-width: 75%;
    	}

    	.col-lg-10 {
    		flex: 0 0 83.3333%;
    		max-width: 83.3333%;
    	}

    	.col-lg-11 {
    		flex: 0 0 91.6667%;
    		max-width: 91.6667%;
    	}

    	.col-lg-12 {
    		flex: 0 0 100%;
    		max-width: 100%;
    	}
    }

    .justify-center {
    	justify-content: center;
    }

    .justify-start {
    	justify-content: flex-start;
    }

    .justify-end {
    	justify-content: flex-end;
    }

    .justify-between {
    	justify-content: space-between;
    }

    .justify-around {
    	justify-content: space-around;
    }


    .content-center {
    	display: flex;
    	align-items: center;
    }

    .card {
    	background: var(--card-bg);
    	color: var(--card-text);
    	border-radius: var(--card-radius);
    	box-shadow: var(--card-shadow);
    	margin-bottom: 1rem;
    	transition: all 0.3s ease;
    	display: flex;
    	flex-direction: column;
    	position: relative;
    }

    .card-header,
    .card-body,
    .card-footer,
    .card-content {
    	padding: var(--card-padding);
    }

    .card-content {
    	margin-top: 100px;
    }

    .card-header {
    	font-weight: bold;
    	font-size: 1.2rem;
    }

    .card-footer {
    	border-top: var(--card-border);
    	font-size: 0.9rem;
    }

    .card-title {
    	margin-top: 0;
    }

    .card-img-top {
    	position: relative;
    	width: 100%;
    	max-height: 200px;
    	overflow: hidden;
    }

    .card-img-top img {
    	width: 100%;
    	height: 100%;
    	object-fit: cover;
    	border-radius: 12px 12px 0 0;
    	display: block;
    }

    .card-img-top .icon {
    	position: absolute;
    	bottom: 0;
    	left: 0;
    	width: 5rem;
    	height: 5rem;
    	background: var(--bg-card-color);
    	border-top-right-radius: 50%;
    	display: flex;
    	align-items: center;
    	justify-content: center;

    	&:hover button {
    		transform: scale(1.1);
    	}
    }

    .btn {
    	text-decoration: none;
    }

    .card-horizontal {
    	display: flex;
    	flex-direction: row;
    	overflow: hidden;
    	border-radius: 1rem;
    	background: var(--bg-card-color, #fff);
    	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .card-left {
    	flex: 0 0 120px;
    	overflow: hidden;
    	position: relative;
    }

    .card-left img {
    	width: 100%;
    	height: 100%;
    	object-fit: cover;
    }

    .card-horizontal .card-body {
    	padding: 1rem;
    	display: flex;
    	flex-direction: column;
    	justify-content: center;
    }

    @media (max-width: 600px) {
    	.card-horizontal {
    		flex-direction: column;
    	}

    	.card-img-left {
    		flex: unset;
    		height: 180px;
    	}
    }

    .card-bg-img {
    	position: relative;
    	overflow: hidden;
    	border-radius: var(--card-radius);
    	justify-content: flex-end;
    	color: white;
    	display: flex;
    	flex-direction: column;
    }

    .card-bg-img img {
    	position: absolute;
    	inset: 0;
    	width: 100%;
    	height: 100%;
    	object-fit: cover;
    	filter: brightness(0.5);
    	z-index: 0;
    }

    .card-overlay {
    	position: relative;
    	z-index: 1;
    	padding: 1.5rem;
    }

    .card-interactive {
    	width: 100%;
    	cursor: pointer;
    	transition: transform 0.3s, box-shadow 0.3s;
    }

    .card-interactive:hover {
    	transform: translateY(-5px) scale(1.02);
    	box-shadow: var(--card-hover-shadow);
    }

    .card-flip {
    	width: 100%;
    	height: 100%;
    	perspective: 1000px;
    	background-color: transparent;
    	border-radius: 0;
    	box-shadow: none;
    }

    @media (max-width: 768px) {
    	.card-flip {
    		padding-top: 2rem;

    	}
    }

    .card-flip-inner {
    	width: 100%;
    	height: 100%;
    	position: relative;
    	transform-style: preserve-3d;
    	transition: transform 0.999s;
    }

    .card:hover .card-flip-inner {
    	transform: rotateY(180deg);
    }

    .card-flip-front,
    .card-flip-back {
    	position: absolute;
    	width: 100%;
    	height: 100%;
    	backface-visibility: hidden;
    }

    .card-flip-front {
    	background-color: var(--bg-card-color);
    	color: var(--text-color);
    	display: flex;
    	border: 10px solid var(--bg-card-color);
    	border-radius: 10px;
    	font-size: 24px;
    	transform: rotateY(0deg);
    }

    .card-flip-back {
    	background-color: var(--bg-card-color);
    	color: var(--text-color);
    	display: flex;
    	border: 10px solid var(--bg-card-color);
    	border-radius: 10px;
    	font-size: 24px;
    	transform: rotateY(180deg);
    }

    .image-zoom:hover {
    	transform: scale(1.05);
    }

    .carousel-container {
    	position: relative;
    	width: 100%;
    	margin: 2rem auto;
    	overflow: hidden;
    	display: flex;
    	align-items: center;
    }

    .carousel-track {
    	display: flex;
    	transition: transform 0.4s ease-in-out;
    	will-change: transform;
    }

    .carousel-item {
    	min-width: 300px;
    	height: 200px;
    	margin: 0 10px;
    	object-fit: cover;
    	border-radius: 10px;
    	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    	transition: transform 0.3s ease;
    	cursor: pointer;
    }

    .carousel-btn {
    	background-color: rgba(0, 0, 0, 0.5);
    	border: none;
    	color: white;
    	font-size: 2rem;
    	padding: 0.5rem 1rem;
    	cursor: pointer;
    	z-index: 1;
    	border-radius: 50%;
    	transition: background 0.2s;
    }

    .carousel-btn:hover {
    	background-color: rgba(0, 0, 0, 0.8);
    }

    .carousel-btn.left {
    	position: absolute;
    	left: 10px;
    }

    .carousel-btn.right {
    	position: absolute;
    	right: 10px;
    }

    .img-modal {
    	display: none;
    	position: fixed;
    	z-index: 9999;
    	left: 0;
    	top: 0;
    	width: 100%;
    	height: 100%;
    	background-color: rgba(0, 0, 0, 0.85);
    	justify-content: center;
    	align-items: center;
    	flex-direction: column;
    }

    .img-modal.show {
    	display: flex;
    }

    .img-modal img {
    	max-width: 90%;
    	max-height: 80%;
    	border-radius: 10px;
    	margin: 1rem 0;
    	object-fit: contain;
    	background-color: transparent;
    }

    .close-modal {
    	position: absolute;
    	top: 20px;
    	right: 30px;
    	color: white;
    	font-size: 40px;
    	cursor: pointer;
    	user-select: none;
    }

    .modal-nav {
    	position: absolute;
    	top: 50%;
    	transform: translateY(-50%);
    	background-color: rgba(255, 255, 255, 0.3);
    	border: none;
    	font-size: 3rem;
    	color: black;
    	cursor: pointer;
    	border-radius: 50%;
    	width: 50px;
    	height: 50px;
    	user-select: none;
    }

    .modal-nav.left {
    	left: 30px;
    }

    .modal-nav.right {
    	right: 30px;
    }

    .modal-nav:hover {
    	background-color: rgba(255, 255, 255, 0.7);
    }

    .modal-thumbnails {
    	display: flex;
    	gap: 10px;
    	margin: 10px 0;
    	overflow-x: auto;
    	padding: 10px;
    	max-width: 90%;
    	justify-content: center;
    }

    .modal-thumbnails img {
    	height: 60px;
    	border-radius: 5px;
    	cursor: pointer;
    	opacity: 0.6;
    	transition: transform 0.3s, opacity 0.3s;
    }

    .modal-thumbnails img:hover,
    .modal-thumbnails img.active-thumb {
    	opacity: 1;
    	transform: scale(1.1);
    	box-shadow: 0 0 0 2px white;
    }

    .parallax-fixed {
    	background-image: url("http://jiapaz.gob.mx/2018/wp-content/uploads/2018/02/Jiapaz-oficinas.jpg");
    	background-attachment: fixed;
    	background-size: cover;
    	background-position: center;
    	min-height: 600px;
    	color: white;
    	width: 100%;
    }

    .table-responsive {
    	overflow-x: auto;
    	width: 100%;
    }

    .styled-table {
    	width: 100%;
    	border-collapse: collapse;
    	min-width: 600px;
    	font-size: 0.95rem;
    	background-color: var(--table-bg, white);
    	color: var(--table-text, #333);
    }

    .styled-table th,
    .styled-table td {
    	padding: 5px 10px;
    	text-align: left;
    	white-space: normal;
    	word-wrap: break-word;
    	overflow-wrap: break-word;
    	max-width: 300px;
    }

    .styled-table thead {
    	position: sticky;
    	top: 0;
    	z-index: 1;
    	padding: 12px;
    	text-align: left;
    	text-transform: uppercase;
    }

    .detail-row {
    	display: none;
    	background-color: rgba(0, 0, 0, 0.03);
    }

    .detail-row td {
    	padding: 12px 20px;
    }

    .row-details {
    	animation: fadeInRow 0.2s ease-in-out;
    	font-size: 0.9rem;
    	color: var(--table-text, #333);
    }

    tbody tr.main-row:hover {
    	background-color: #3a608fbe;
    	color: white;
    }

    tbody tr.detail-row:hover {
    	background-color: rgba(42, 42, 42, 0.435);
    	color: white;
    }

    [data-theme="dark"] tbody tr.detail-row:hover {
    	background-color: rgba(125, 125, 125, 0.458);
    	--text-color: --white;
    }

    [data-theme="dark"] .detail-row {
    	background-color: rgba(255, 255, 255, 0.05);
    }

    [data-theme="dark"] .row-details {
    	color: #ccc;
    }

    .table-striped tbody tr.main-row:nth-child(odd) {
    	background-color: white;
    }

    .table-striped tbody tr.main-row:nth-child(even) {
    	background-color: var(--bg-color);
    }

    [data-theme="dark"] .table-striped tbody tr.main-row:nth-child(odd) {
    	background-color: #1e1e1e;
    }

    [data-theme="dark"] .table-striped tbody tr.main-row:nth-child(even) {
    	background-color: var(--bg-color);
    }

    [data-theme="dark"] .table-striped tbody tr.main-row:hover {
    	background-color: #182d47;
    	color: white;
    }

    .table-striped tbody tr.main-row:hover {
    	background-color: #4a607a;
    	color: white;
    }

    .tabla-responsiva-contenedor {
    	width: 100%;
    	overflow-x: auto;
    }

    .tabla-responsiva-contenedor table {
    	width: 100%;
    	table-layout: fixed;
    	min-width: 300px;
    }

    .tabla-responsiva-contenedor th,
    .tabla-responsiva-contenedor td {
    	padding: 5px;
    	text-align: left;
    	white-space: normal;
    	word-wrap: break-word;
    	overflow-wrap: break-word;
    	min-width: 50px;
    	max-width: 100%;
    }

    .tabla-responsiva-contenedor th:nth-child(1),
    .tabla-responsiva-contenedor td:nth-child(1) {
    	width: 25%;
    }

    .tabla-responsiva-contenedor th:nth-child(2),
    .tabla-responsiva-contenedor td:nth-child(2) {
    	width: 50%;
    }

    .tabla-responsiva-contenedor th:nth-child(3),
    .tabla-responsiva-contenedor td:nth-child(3) {
    	width: 25%;
    }

    .badge {
    	height: 25px;
    	padding: 4px 10px;
    	border-radius: 999px;
    	font-size: 0.8rem;
    	font-weight: bold;
    	display: inline-block;
    }

    @keyframes fadeInRow {
    	from {
    		opacity: 0;
    		transform: scale(0.98);
    	}

    	to {
    		opacity: 1;
    		transform: scale(1);
    	}
    }

    .form-group {
    	width: 100%;
    	display: flex;
    	flex-direction: column;
    	gap: 0.5rem;
    	margin-top: .5rem;
    	margin-bottom: 1rem;
    }

    .form-group label {
    	display: block;
    	margin-left: 12px;
    	font-size: 14px;
    }

    .form-control,
    .form-control-file,
    select {
    	display: block;
    	width: 100%;
    	margin: 0;
    	padding: 0.6rem 1rem;
    	border: 1px solid var(--form-border);
    	border-radius: var(--form-radius);
    	background-color: var(--form-bg);
    	color: var(--form-text);
    	font-size: 1rem;
    	font-weight: 400;
    	line-height: 1.5;
    	outline: none;
    	transition: border 0.3s, box-shadow 0.3s;
    }

    textarea.form-control {
    	min-height: calc(1.5em + 0.625rem + 2px);
    	resize: vertical;
    }

    .form-control:focus,
    input:focus,
    textarea:focus,
    select:focus {
    	border-color: var(--primary);
    	box-shadow: 0 0 0 3px var(--info);
    }

    select.form-control,
    ::picker(select) {
    	appearance: base-select;
    	color: var(--text-color);
    }

    ::picker(select) {
    	border: none;
    	background: var(--form-bg);
    	margin: .4rem 0;
    }

    option:checked {
    	background: var(--primary);
    	color: white;
    }

    .form-control:hover,
    .form-control-file:hover {
    	border-color: var(--primary);
    }

    .input-icon-group {
    	position: relative;
    	display: flex;
    	align-items: center;
    }

    .input-icon-group .form-control {
    	width: 100%;
    	padding-left: 2.5rem;
    	padding-right: 2.5rem;
    }

    .input-icon-group .icon-left,
    .input-icon-group .icon-right {
    	position: absolute;
    	font-size: 1.1rem;
    	color: var(--form-text);
    	cursor: pointer;
    }

    .input-icon-group .icon-left {
    	left: 0.8rem;
    }

    .input-icon-group .icon-right {
    	right: 0.8rem;
    }

    input[type="checkbox"],
    input[type="radio"] {
    	cursor: pointer;
    	accent-color: var(--primary);
    }

    .file-drop-zone {
    	position: relative;
    	border: 2px dashed var(--form-border);
    	background-color: var(--form-bg);
    	color: var(--form-text);
    	border-radius: var(--form-radius);
    	text-align: center;
    	padding: 2rem;
    	margin: 10px;
    	cursor: pointer;
    	transition: border-color 0.3s, background-color 0.3s;
    }

    .file-drop-zone:hover {
    	border-color: var(--primary);
    }

    .file-drop-zone p {
    	margin: 0;
    	font-size: 1rem;
    }

    .file-input {
    	position: absolute;
    	width: 100%;
    	height: 100%;
    	opacity: 0;
    	cursor: pointer;
    	top: 0;
    	left: 0;
    }

    .file-list {
    	list-style: none;
    	padding: 0.5rem;
    	margin-top: 1rem;
    	text-align: left;
    	font-size: 0.95rem;
    	color: var(--form-text);
    	max-height: 150px;
    	overflow-y: auto;
    	border-top: 1px solid var(--form-border);
    }

    .file-list li {
    	padding: 4px 0;
    	border-bottom: 1px dashed var(--form-border);
    }

    .glass-effect {
    	background: rgba(255, 255, 255, 0.15);
    	backdrop-filter: blur(10px);
    	-webkit-backdrop-filter: blur(10px);
    	border: 1px solid rgba(255, 255, 255, 0.3);
    	border-radius: var(--form-radius);
    	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .glow-img {
    	height: 100%;
    	filter: drop-shadow(0 0 15px #00ffff) drop-shadow(0 0 25px #00ffff);
    	animation: pulseGlow 2s infinite alternate;
    }

    /* Animación suave de pulso */
    @keyframes pulseGlow {
    	from {
    		filter: drop-shadow(0 0 10px #8a0b0b) drop-shadow(0 0 20px #c40202);
    	}

    	to {
    		filter: drop-shadow(0 0 20px #f31313) drop-shadow(0 0 40px #b60e0e);
    	}
    }

    .badge-3d {
    	position: absolute;
    	top: -40px;
    	left: 50%;
    	transform: translateX(-50%);
    	width: 120px;
    	height: 120px;
    	overflow: hidden;
    	display: flex;
    	align-items: center;
    	justify-content: center;
    	z-index: 10;
    }

    .badge-3d img {
    	width: 100%;
    	height: 100%;
    	object-fit: cover;
    }

    .highlight-badge {
    	position: absolute;
    	top: -50px;
    	left: 50%;
    	transform: translateX(-50%);
    	width: 120px;
    	height: 120px;
    	background: var(--primary);
    	border-radius: 50%;
    	overflow: hidden;
    	border: 3px solid white;
    	box-shadow: 5px 10px 12px rgba(0, 0, 0, 0.5);
    	display: flex;
    	align-items: center;
    	justify-content: center;
    	z-index: 10;
    }

    .highlight-badge img {
    	width: 100%;
    	height: 100%;
    	object-fit: cover;
    }

    .fade-vertical {
    	padding: 1.5rem;
    	border-radius: 1rem;
    	position: relative;
    	overflow: hidden;

    	mask-image:
    		radial-gradient(farthest-side at top center, rgba(0, 0, 0, 1) 120px, rgba(0, 0, 0, 1) 120px),
    		linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0));
    	mask-composite: intersect;
    	box-shadow: 0 8px 32px rgba(0, 0, 0, 20);
    }

    .site-footer {
    	background-color: var(--primary);
    	color: white;
    	padding: 3rem 1rem 1rem;
    }

    .footer-container {
    	display: grid;
    	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    	gap: 2rem;
    	max-width: 1200px;
    	margin: 0 auto;
    }

    .footer-section h3,
    .footer-section h4 {
    	margin-bottom: 1rem;
    }

    .footer-section p,
    .footer-section ul,
    .footer-section li {
    	margin: 0;
    	list-style: none;
    }

    .footer-section ul li {
    	margin-bottom: 0.5rem;
    }

    .footer-section a {
    	color: white;
    	text-decoration: none;
    	transition: color 0.3s ease;
    }

    .footer-section a:hover {
    	color: var(--info);
    }

    .footer-bottom {
    	text-align: center;
    	padding-top: 1rem;
    	font-size: 0.9rem;
    	border-top: 1px solid rgba(255, 255, 255, 0.2);
    	margin-top: 2rem;
    }

    .input-check {
    	display: inline-block;
    	user-select: none;
    	position: relative;
    	padding: 1rem;
    }

    .input-check-input {
    	display: none;
    }

    .input-check-label {
    	display: flex;
    	align-items: center;
    	gap: 10px;
    	cursor: pointer;
    }

    .checkbox-wrapper {
    	position: relative;
    	width: 24px;
    	height: 24px;
    	flex-shrink: 0;
    }

    .checkbox-bg {
    	position: absolute;
    	inset: 0;
    	border: 2px solid var(--checkbox-border, #ccc);
    	border-radius: var(--radio-bg, 6px);
    	transition: all 0.2s ease;
    }

    .rounded-circle {
    	--radio-bg: 60px;
    }

    .checkbox-icon {
    	position: absolute;
    	inset: 0;
    	margin: auto;
    	width: 80%;
    	height: 80%;
    	color: white;
    	transform: scale(0);
    	transition: all 0.2s ease;
    	pointer-events: none;
    }

    .check-path {
    	stroke-dasharray: 40;
    	stroke-dashoffset: 40;
    	transition: stroke-dashoffset 0.3s ease 0.1s;
    }

    .input-check-input:checked+.input-check-label .checkbox-bg {
    	background: var(--checkbox-color, #2c7be5);
    	border-color: var(--checkbox-color, #2c7be5);
    }

    .input-check-input:checked+.input-check-label .checkbox-icon {
    	transform: scale(1);
    }

    .input-check-input:checked+.input-check-label .check-path {
    	stroke-dashoffset: 0;
    }

    .input-check-label:hover .checkbox-wrapper {
    	transform: scale(1.05);
    }

    .input-check-label:active .checkbox-wrapper {
    	transform: scale(0.95);
    }

    .input-check-input:focus+.input-check-label .checkbox-bg {
    	box-shadow: 0 0 0 4px rgba(100, 149, 237, 0.25);
    }

    .checkbox-text {
    	font-size: 16px;
    	line-height: 1.2;
    }

    .checkbox-primary {
    	--checkbox-color: var(--primary);
    	--checkbox-border: #2c7be5;
    }

    .checkbox-success {
    	--checkbox-color: var(--success);
    	--checkbox-border: #68cc63;
    }

    .checkbox-danger {
    	--checkbox-color: var(--danger);
    	--checkbox-border: #fca5a5;
    }

    .checkbox-warning {
    	--checkbox-color: var(--warning);
    	--checkbox-border: #facc15;
    }

    .checkbox-info {
    	--checkbox-color: var(--info);
    	--checkbox-border: #38bdf8;
    }

    .checkbox-secondary {
    	--checkbox-color: var(--secondary);
    	--checkbox-border: #8c8888;
    }

    .input-radio {
    	--radio-color: #2c7be5;
    	--radio-border: #999;

    	display: inline-block;
    	user-select: none;
    	position: relative;
    	padding: 1rem;
    }

    .input-radio input {
    	display: none;
    }

    .input-radio label {
    	display: inline-flex;
    	align-items: center;
    	cursor: pointer;
    	gap: 10px;
    }

    .radio-wrapper {
    	width: 22px;
    	height: 22px;
    	border: 2px solid var(--radio-border);
    	border-radius: 50%;
    	display: flex;
    	align-items: center;
    	justify-content: center;
    	position: relative;
    	transition: all 0.2s ease;
    }

    .radio-wrapper::after {
    	content: '';
    	width: 10px;
    	height: 10px;
    	border-radius: 50%;
    	background-color: var(--radio-color);
    	transform: scale(0);
    	transition: transform 0.2s ease;
    }

    .input-radio input:checked+label .radio-wrapper {
    	border-color: var(--radio-color);
    	background-color: var(--radio-bg);
    }

    .input-radio input:checked+label .radio-wrapper::after {
    	transform: scale(1);
    }

    .input-radio label:hover .radio-wrapper {
    	transform: scale(1.05);
    }

    .radio-info {
    	--radio-color: var(--info);
    	--radio-bg: var(--info);
    	--radio-border: #4a9ec5;
    }

    .radio-success {
    	--radio-color: var(--success);
    	--radio-bg: var(--success);
    	--radio-border: #44b233;
    }

    .radio-warning {
    	--radio-color: var(--warning);
    	--radio-bg: var(--warning);
    	--radio-border: #e6dd36;
    }

    .radio-danger {
    	--radio-color: var(--danger);
    	--radio-bg: var(--danger);
    	--radio-border: #fca5a5;
    }

    .radio-primary {
    	--radio-color: var(--primary);
    	--radio-bg: var(--primary);
    	--radio-border: #2b6dac;
    }

    .radio-secondary {
    	--radio-color: var(--secondary);
    	--radio-bg: var(--secondary);
    	--radio-border: #8c8888;
    }

    .text-line input:checked+label {
    	text-decoration: line-through;
    	opacity: 0.7;
    	animation: move 0.3s ease 0.1s forwards;
    }

    .text-line input:checked+label {
    	animation: move 0.3s ease 0.1s forwards;
    }

    .text-line input:checked+label::before {
    	animation: slice 0.4s ease forwards;
    }

    @keyframes move {
    	50% {
    		padding-left: 8px;
    		padding-right: 0px;
    	}

    	100% {
    		padding-right: 4px;
    	}
    }

    @keyframes slice {
    	60% {
    		width: 100%;
    		left: 4px;
    	}

    	100% {
    		width: 100%;
    		left: -2px;
    		padding-left: 0;
    	}
    }

    [data-tooltip] {
    	position: relative;
    	cursor: pointer;
    }

    /* Tooltip content */
    [data-tooltip]::after {
    	content: attr(data-tooltip);
    	position: absolute;
    	bottom: 120%;
    	/* encima del elemento */
    	left: 50%;
    	transform: translateX(-50%);
    	background-color: #333;
    	color: #fff;
    	padding: 6px 10px;
    	border-radius: 4px;
    	white-space: nowrap;
    	font-size: 13px;
    	opacity: 0;
    	pointer-events: none;
    	transition: opacity 0.2s ease;
    	z-index: 99;
    }

    /* Flecha */
    [data-tooltip]::before {
    	content: '';
    	position: absolute;
    	bottom: 110%;
    	left: 50%;
    	transform: translateX(-50%);
    	border: 6px solid transparent;
    	border-top-color: #333;
    	opacity: 0;
    	transition: opacity 0.2s ease;
    	z-index: 99;
    }

    /* Mostrar tooltip al hacer hover */
    [data-tooltip]:hover::after,
    [data-tooltip]:hover::before {
    	opacity: 1;
    }

    .modal {
    	display: none;
    	position: fixed;
    	inset: 0;
    	z-index: 1000;
    	overflow: hidden;
    }

    .modal-backdrop {
    	position: absolute;
    	inset: 0;
    	background-color: rgba(0, 0, 0, 0.5);
    	pointer-events: none;
    	/* evita cierre por clic afuera */
    }

    .modal-content {
    	position: relative;
    	z-index: 1001;
    	width: 90%;
    	max-width: 1000px;
    	margin: 5% auto;
    	border-radius: 10px;
    	display: flex;
    	flex-direction: column;
    	max-height: 80vh;
    	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    	animation: fadeInUp 0.3s ease;
    	overflow: hidden;
    	background: var(--bg-color);
    }

    /* --- Modal sections --- */
    .modal-header {
    	padding: 1rem;
    	border-bottom: 1px solid #eee;
    	background-color: var(--bg-color);
    }

    .modal-footer {
    	padding: 1rem;
    	border-top: 1px solid #ddd;
    	text-align: right;
    }

    .modal-content {
    	padding: 1rem;

    }

    .modal-body {
    	padding: 1rem;
    	overflow-y: auto;
    	flex: 1;
    }

    @keyframes fadeInUp {
    	from {
    		opacity: 0;
    		transform: translateY(30px);
    	}

    	to {
    		opacity: 1;
    		transform: translateY(0);
    	}
    }

    .btm {
    	border: none;
    	position: relative;
    	width: 200px;
    	height: 73px;
    	padding: 0;
    	z-index: 2;
    	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='868' width='2500' viewBox='0 0 726 252.17'%3E%3Cpath d='M483.92 0S481.38 24.71 466 40.11c-11.74 11.74-24.09 12.66-40.26 15.07-9.42 1.41-29.7 3.77-34.81-.79-2.37-2.11-3-21-3.22-27.62-.21-6.92-1.36-16.52-2.82-18-.75 3.06-2.49 11.53-3.09 13.61S378.49 34.3 378 36a85.13 85.13 0 0 0-30.09 0c-.46-1.67-3.17-11.48-3.77-13.56s-2.34-10.55-3.09-13.61c-1.45 1.45-2.61 11.05-2.82 18-.21 6.67-.84 25.51-3.22 27.62-5.11 4.56-25.38 2.2-34.8.79-16.16-2.47-28.51-3.39-40.21-15.13C244.57 24.71 242 0 242 0H0s69.52 22.74 97.52 68.59c16.56 27.11 14.14 58.49 9.92 74.73C170 140 221.46 140 273 158.57c69.23 24.93 83.2 76.19 90 93.6 6.77-17.41 20.75-68.67 90-93.6 51.54-18.56 103-18.59 165.56-15.25-4.21-16.24-6.63-47.62 9.93-74.73C656.43 22.74 726 0 726 0z'/%3E%3C/svg%3E") no-repeat 50% 50%;
    	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='868' width='2500' viewBox='0 0 726 252.17'%3E%3Cpath d='M483.92 0S481.38 24.71 466 40.11c-11.74 11.74-24.09 12.66-40.26 15.07-9.42 1.41-29.7 3.77-34.81-.79-2.37-2.11-3-21-3.22-27.62-.21-6.92-1.36-16.52-2.82-18-.75 3.06-2.49 11.53-3.09 13.61S378.49 34.3 378 36a85.13 85.13 0 0 0-30.09 0c-.46-1.67-3.17-11.48-3.77-13.56s-2.34-10.55-3.09-13.61c-1.45 1.45-2.61 11.05-2.82 18-.21 6.67-.84 25.51-3.22 27.62-5.11 4.56-25.38 2.2-34.8.79-16.16-2.47-28.51-3.39-40.21-15.13C244.57 24.71 242 0 242 0H0s69.52 22.74 97.52 68.59c16.56 27.11 14.14 58.49 9.92 74.73C170 140 221.46 140 273 158.57c69.23 24.93 83.2 76.19 90 93.6 6.77-17.41 20.75-68.67 90-93.6 51.54-18.56 103-18.59 165.56-15.25-4.21-16.24-6.63-47.62 9.93-74.73C656.43 22.74 726 0 726 0z'/%3E%3C/svg%3E") no-repeat 50% 50%;
    	cursor: pointer;
    	background-color: transparent;
    	transform: translateY(8px)
    }

    .btm:after {
    	content: '';
    	position: absolute;
    	left: 0;
    	right: 0;
    	bottom: 0;
    	box-shadow: 0px 0 0 0 white;
    	transition: all 2s ease;
    }

    .btm:hover:after {
    	box-shadow: 0px -13px 56px 12px #ffffffa6;
    }

    .btm span {
    	position: absolute;
    	width: 100%;
    	font-size: 15px;
    	font-weight: 100;
    	left: 50%;
    	top: 39%;
    	letter-spacing: 3px;
    	text-align: center;
    	transform: translate(-50%, -50%);
    	color: white;
    	transition: all 2s ease;
    }

    .btm:hover span {
    	color: black;
    }

    .btm:before {
    	content: '';
    	position: absolute;
    	width: 0;
    	height: 100%;
    	background-color: black;
    	left: 50%;
    	top: 50%;
    	transform: translate(-50%, -50%);
    	transition: all 1s ease;
    }

    .btm:hover:before {
    	width: 100%;
    }

    .accordion-group {
    	width: 100%;
    	margin: 20px auto;
    	border-radius: 8px;
    	overflow: hidden;
    	box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
    	border: 1px solid var(--light);
    }

    .accordion-item+.accordion-item {
    	border-top: 1px solid #ddd;
    }

    .accordion-header {
    	color: var(--text-color);
    	cursor: pointer;
    	padding: 12px 24px;
    	user-select: none;
    	font-weight: 600;
    	display: flex;
    	justify-content: space-between;
    	align-items: center;
    	transition: background 0.3s ease;
    	border-bottom: 1px solid #ddd;
    }

    .accordion-header::after {
    	content: '▸';
    	font-size: 18px;
    	transition: transform 0.3s ease;
    	transform-origin: center;
    }

    .accordion-item.open .accordion-header::after {
    	transform: rotate(90deg);
    }

    .accordion-body {
    	max-height: 0;
    	overflow: hidden;
    	transition: max-height 0.4s ease, padding 0.3s ease;
    	padding: 0 10px;
    	color: #333;
    }

    .accordion-item.open .accordion-body {
    	max-height: 100%;
    	padding: 16px 10px;
    }

    .bg-info {
    	background-color: var(--info);
    }

    .bg-success {
    	background-color: var(--success);
    }

    .bg-warning {
    	background-color: var(--warning);
    }

    .bg-danger {
    	background-color: var(--danger);
    }

    .bg-primary {
    	background-color: var(--primary);
    	color: white;
    }

    .bg-secondary {
    	background-color: var(--secondary);
    }

    .bg-dark {
    	background-color: var(--dark);
    	color: white;
    }

    .bg-light {
    	background-color: var(--light);
    }

    .bg-glass {
    	background: rgba(255, 255, 255, 0.1);
    	backdrop-filter: blur(3px);
    	-webkit-backdrop-filter: blur(12px);
    }

    .bg-rounded {
    	border-radius: 1rem;
    	border: 1px solid rgba(255, 255, 255, 0.15);
    	box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.07);
    }

    .bg-gradient {
    	background: linear-gradient(to right, rgb(20, 30, 48), rgb(36, 59, 85));
    }

    .bg-transparent {
    	background-color: transparent;
    }

    .bg-i-transparent {
    	background-color: transparent;
    	border: 1px solid #ccc;
    	border-radius: 8px;
    }

    .bg-g-primary {
    	background: radial-gradient(ellipse at right top, var(--primary) 0%, #151419 47%, #151419 100%);
    }

    .bg-g-success {
    	background: radial-gradient(ellipse at right top, var(--success) 0%, #151419 47%, #151419 100%);
    }

    .bg-g-warning {
    	background: radial-gradient(ellipse at right top, var(--warning) 0%, #151419 47%, #151419 100%);
    }

    .bg-g-danger {
    	background: radial-gradient(ellipse at right top, var(--danger) 0%, #151419 47%, #151419 100%);
    }

    .text-info {
    	color: var(--info);
    	--text-color: var(--info);
    }

    .text-warning {
    	color: var(--warning);
    	--text-color: var(--warning);
    }

    .text-danger {
    	color: var(--danger);
    	--text-color: var(--danger);
    }

    .text-success {
    	color: var(--success);
    	--text-color: var(--success);
    }

    .text-primary {
    	color: var(--primary);
    	--text-color: var(--primary);
    }

    .text-secondary {
    	color: var(--secondary);
    	--text-color: var(--secondary);
    }

    .text-dark {
    	color: var(--dark);
    	--text-color: var(--dark);
    }

    .text-light {
    	color: var(--light);
    	--text-color: var(--light);
    }

    .text-black {
    	color: var(--black);
    	--text-color: var(--black);
    }

    .text-white {
    	color: var(--white);
    	--text-color: var(--white);
    }

    .btn {
    	margin-top: 5px;
    	margin-bottom: 5px;
    	padding: 0.5rem 1rem;
    	font-size: 1rem;
    	border: none;
    	cursor: pointer;
    	font-weight: 500;
    	border-radius: 6px;
    	transition: all 0.2s ease-in-out;
    	display: inline-block;
    	text-align: center;
    	min-width: 100px;
    	color: white;
    }

    .btn-block {
    	display: block;
    	width: 100%;
    }

    .btn-sm {
    	padding: 4px 8px;
    	font-size: 0.85rem;
    }

    .btn-ghost {
    	background-color: transparent;
    	border: none;
    	box-shadow: none;
    	text-decoration: underline;
    }

    .btn-rounded {
    	width: 48px;
    	height: 48px;
    	border-radius: 50%;
    	padding: 0;
    	display: flex;
    	align-items: center;
    	justify-content: center;
    	font-size: 1.2rem;
    	min-width: unset;
    }

    .btn-info {
    	background-color: var(--info);
    }

    .btn-warning {
    	background-color: var(--warning);
    }

    .btn-danger {
    	background-color: var(--danger);
    }

    .btn-success {
    	background-color: var(--success);
    }

    .btn-primary {
    	background-color: var(--primary);
    }

    .btn-secondary {
    	background-color: var(--secondary);
    }

    .btn-dark {
    	background-color: var(--dark);
    }

    .btn-light {
    	background-color: var(--light);
    	color: black;
    }

    .btn-black {
    	background-color: var(--black);
    	color: white;
    }

    .btn-white {
    	background-color: var(--white);
    	color: black;
    }

    .btn-outline-primary {
    	background: transparent;
    	border: 2px solid var(--primary);
    	color: var(--primary);
    }

    .btn-outline-secondary {
    	background: transparent;
    	border: 2px solid var(--secondary);
    	color: var(--secondary);
    }

    .btn-outline-info {
    	background: transparent;
    	border: 2px solid var(--info);
    	color: var(--info);
    }

    .btn-outline-success {
    	background: transparent;
    	border: 2px solid var(--success);
    	color: var(--success);
    }

    .btn-outline-warning {
    	background: transparent;
    	border: 2px solid var(--warning);
    	color: var(--warning);
    }

    .btn-outline-danger {
    	background: transparent;
    	border: 2px solid var(--danger);
    	color: var(--danger);
    }

    .btn-outline-light {
    	background: transparent;
    	border: 2px solid var(--black);
    	color: var(--text-color);
    }

    .btn-outline-dark {
    	background: transparent;
    	border: 2px solid var(--dark);
    	color: var(--text-color);
    }

    .btn:hover:not(.btn-ghost) {
    	transform: scale(1.03);
    	opacity: 0.9;
    }

    .btn-outline-primary:hover {
    	background: var(--primary);
    	color: var(--white);
    }

    .btn-outline-secondary:hover {
    	background: var(--secondary);
    	color: var(--white);
    }

    .btn-outline-info:hover {
    	background: var(--info);
    	color: var(--white);
    }

    .btn-outline-success:hover {
    	background: var(--success);
    	color: var(--white);
    }

    .btn-outline-warning:hover {
    	background: var(--warning);
    	color: var(--white);
    }

    .btn-outline-danger:hover {
    	background: var(--danger);
    	color: var(--white);
    }

    .btn-outline-light:hover {
    	background: var(--light);
    	color: var(--black);
    }

    .btn-outline-dark:hover {
    	background: var(--dark);
    	color: var(--white);
    }

    .btn-transparent {
    	background: transparent;
    	color: var(--text-color);
    }

    .btn-login {
    	margin-top: 30px;
    	padding-top: 1rem;
    	padding-bottom: 1rem;
    }

    .badge.info {
    	background-color: var(--info);
    	color: white;
    }

    .badge.success {
    	background-color: var(--success);
    	color: white;
    }

    .badge.light {
    	background-color: var(--light);
    	color: white;
    }

    .badge.dark {
    	background-color: var(--dark);
    	color: white;
    }

    .badge.warning {
    	background-color: var(--warning);
    	color: white;
    }

    .badge.danger {
    	background-color: var(--danger);
    	color: white;
    }

    .badge.primary {
    	background-color: var(--primary);
    	color: white;
    }

    .badge.secondary {
    	background-color: var(--secondary);
    	color: white;
    }

    .w-25 {
    	width: 25% !important;
    }

    .w-50 {
    	width: 50% !important;
    }

    .w-75 {
    	width: 75% !important;
    }

    .w-100 {
    	width: 100% !important;
    }

    .w-auto {
    	width: auto !important;
    }

    .mw-100 {
    	max-width: 100% !important;
    }

    .vw-25 {
    	width: 25vw !important;
    }

    .vw-50 {
    	width: 50vw !important;
    }

    .vw-75 {
    	width: 75vw !important;
    }

    .vw-100 {
    	width: 100vw !important;
    }

    .min-vw-100 {
    	min-width: 100vw !important;
    }

    .h-25 {
    	height: 25% !important;
    }

    .h-50 {
    	height: 50% !important;
    }

    .h-75 {
    	height: 75% !important;
    }

    .h-100 {
    	height: 100% !important;
    }

    .h-auto {
    	height: auto !important;
    }

    .mh-25 {
    	max-height: 25% !important;
    }

    .mh-50 {
    	max-height: 50% !important;
    }

    .mh-75 {
    	max-height: 75% !important;
    }

    .mh-100 {
    	max-height: 100% !important;
    }

    .vh-25 {
    	height: 25vh !important;
    }

    .vh-50 {
    	height: 50vh !important;
    }

    .vh-75 {
    	height: 75vh !important;
    }

    .vh-100 {
    	height: 100vh !important;
    }

    .min-vh-25 {
    	min-height: 25vh !important;
    }

    .min-vh-50 {
    	min-height: 50vh !important;
    }

    .min-vh-75 {
    	min-height: 75vh !important;
    }

    .min-vh-100 {
    	min-height: 100vh !important;
    }

    .list {
    	list-style: none;
    	padding: 0;
    	border-radius: 8px;
    	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
    	overflow: hidden;
    }

    .list li {
    	width: 100%;
    	display: list-item;
    	align-items: center;
    	padding: 1rem;
    	border-bottom: 1px solid #eee;
    	font-size: 16px;
    	color: var(--text-color);
    	transition: background 0.3s ease, transform 0.2s ease;
    	cursor: pointer;
    }

    .list li:last-child {
    	border-bottom: none;
    }

    .list li:hover {
    	background: #616162a3;
    	color: white;
    }

    .list .icon {
    	margin-right: 12px;
    	font-size: 18px;
    }

    .dot {
    	width: 10px;
    	height: 10px;
    	border-radius: 60%;
    	display: inline-block;
    	margin-right: 8px;
    }

    #toast-container {
    	position: fixed;
    	top: 20px;
    	right: 20px;
    	z-index: 9999;
    	display: flex;
    	flex-direction: column;
    	gap: 12px;
    	max-width: 300px;
    	pointer-events: none;
    }

    .toast {
    	display: flex;
    	align-items: center;
    	padding: 12px 16px;
    	border-radius: 6px;
    	color: var(--text-color);
    	font-weight: 500;
    	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    	opacity: 0;
    	transform: translateY(-20px);
    	pointer-events: auto;
    	justify-content: space-between;
    	font-size: 15px;
    	animation: fadeIn 0.4s ease-out forwards;
    	position: relative;
    }

    .toast i {
    	margin-right: 10px;
    }

    .toast .close-btn {
    	background: none;
    	border: none;
    	color: inherit;
    	font-size: 18px;
    	cursor: pointer;
    	margin-left: 12px;
    	line-height: 1;
    }

    @keyframes fadeIn {
    	to {
    		opacity: 1;
    		transform: translateY(0);
    	}
    }

    @keyframes fadeOut {
    	to {
    		opacity: 0;
    		transform: translateY(-20px);
    	}
    }

    .tabs {
    	display: flex;
    	gap: 1rem;
    	margin-bottom: 2rem;
    }

    .tabs.horizontal {
    	flex-direction: column;
    }

    .tabs.vertical {
    	flex-direction: row;
    }

    .tab-buttons {
    	display: flex;
    	gap: 0.5rem;
    	flex-direction: row;
    }

    .tabs.vertical .tab-buttons {
    	flex-direction: column;
    }

    .tab-btn {
    	padding: 0.5rem 1rem;
    	border: none;
    	background-color: #eee;
    	cursor: pointer;
    	transition: background-color 0.2s ease;
    	border-radius: 4px;
    }

    .tab-btn.active {
    	background-color: var(--primary);
    	color: white;
    }

    .tab-panels {
    	flex: 1;
    	position: relative;
    	min-height: 100px;
    }

    .tab-content {
    	opacity: 0;
    	transform: translateY(10px);
    	transition: opacity 0.3s ease, transform 0.3s ease;
    	pointer-events: none;
    	position: absolute;
    	top: 0;
    	left: 0;
    	width: 100%;
    }

    .tab-content.active {
    	opacity: 1;
    	transform: translateY(0);
    	pointer-events: auto;
    	position: relative;
    }

    .text-xs {
    	font-size: 0.75rem;
    }

    .text-sm {
    	font-size: 0.875rem;
    }

    .text-base {
    	font-size: 1rem;
    }

    .text-md {
    	font-size: 1.125rem;
    }

    .text-lg {
    	font-size: 1.25rem;
    }

    .text-xl {
    	font-size: 1.5rem;
    }

    .text-2xl {
    	font-size: 1.875rem;
    }

    .text-3xl {
    	font-size: 2.25rem;
    }

    .text-4xl {
    	font-size: 3rem;
    }

    .text-5xl {
    	font-size: 4rem;
    }

    .font-bold {
    	font-weight: 700;
    }

    .font-medium {
    	font-weight: 500;
    }

    .font-light {
    	font-weight: 300;
    }

    @media (max-width: 768px) {
    	.text-md {
    		font-size: 1rem;
    	}

    	.text-lg {
    		font-size: 1.125rem;
    	}

    	.text-xl {
    		font-size: 1.25rem;
    	}
    }

    .copyable {
    	position: relative;
    	cursor: pointer;
    	padding-right: 24px;
    	display: inline-block;
    }

    .breadcrumb {
    	list-style: none;
    }

    .breadcrumb-item {
    	display: flex;
    	flex-direction: row;
    	padding: 0.3rem;
    	color: var(--text-color);
    	content: ">";
    }

    .copyable::after {
    	content: "📋";
    	position: absolute;
    	right: 0;
    	top: 50%;
    	transform: translateY(-50%);
    	opacity: 0;
    	transition: opacity 0.3s;
    	font-size: 1rem;
    }

    .copyable:hover::after {
    	opacity: 1;
    }

    .copyable.copied::after {
    	content: "✅";
    	opacity: 1;
    }

    .parallax-section {
    	position: relative;
    	height: 100vh;
    	width: 100%;
    	overflow: hidden;
    }

    .parallax-contained-img {
    	position: absolute;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: 120%;
    	object-fit: cover;
    	filter: brightness(0.6);
    	transition: transform 0.1s;
    	will-change: transform;
    	z-index: 0;
    }

    .parallax-info {
    	position: relative;
    	z-index: 1;
    	color: white;
    	top: 50%;
    	transform: translateY(-50%);
    	padding: 0 1rem;
    }

    .parallax-info h1 {
    	font-size: 3rem;
    	margin-bottom: 0.5rem;
    	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    }

    .parallax-info p {
    	font-size: 1.5rem;
    	max-width: 600px;
    	margin: 0 auto;
    	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    }

    .parallax-img {
    	position: absolute;
    	width: 120%;
    	height: 120%;
    	top: -10%;
    	left: -10%;
    	object-fit: cover;
    	will-change: transform;
    	transition: transform 0.3s ease;
    }

    .parallax-content {
    	position: relative;
    	z-index: 1;
    	height: 100%;
    	display: flex;
    	justify-content: center;
    	align-items: center;
    	color: white;
    	font-size: 2rem;
    	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    }

    .overlay-circle {
    	position: relative;
    	width: 100%;
    	height: 100%;
    	overflow: hidden;
    	clip-path: circle(150px at center);
    }

    .overlay-poligon {
    	position: relative;
    	width: 100%;
    	height: 100%;
    	overflow: hidden;
    	clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 0% 100%, 0% 43%, 0% 0%);
    }

    .overlay-drop {
    	width: 100%;
    	height: 100%;
    	clip-path: polygon(70% 26%, 50% 0%, 31% 23%, 11% 42%, 10% 71%, 25% 90%, 40% 95%, 60% 95%, 75% 91%, 90% 75%, 89% 46%);
    	position: absolute;
    }

    .overlay-mancha {
    	width: 100%;
    	height: 100%;
    	clip-path: path("M161 188.375C170 193.5 177.919 193.854 186 188.375C197.919 180.294 197.919 159.581 186 151.5C177.919 146.021 169.081 146.021 161 151.5C149.081 159.581 152 183.25 161 188.375ZM141.5 59.5C131.26 59.5 117.936 45.0628 100.5 52C81.6499 59.5 86.0351 73.5325 78.5 85.5C70 99 57.9171 96.3659 49.5 115C40.4659 135 58.5 138 58.5 154C58.5 170 41 166.5 46.5 185.5C52 204.5 72.5 196 81.6499 209C94.5 218.5 81.6499 233.418 100.5 241.5C122.657 251 121.5 232 141.5 237C154.5 237 154.5 257 180.5 251C203.99 245.579 193.5 230 211 222.5C226.5 212.5 236.5 226 255 206C272.51 187.07 247.5 177 249 154C253 132.5 273.5 120 258.5 94C245.5 77 235 78.5 211 75.5C190.5 68 200 53 177.5 49.5C153.5 43.5 161 59.5 141.5 59.5ZM138 129C129.877 116.815 108.623 116.815 100.5 129C95.0844 137.123 95.0844 145.877 100.5 154C108.623 166.185 129.877 166.185 138 154C143.416 145.877 143.416 137.123 138 129Z");
    	position: absolute;

    }

    .overlay-mancha1 {
    	width: 100%;
    	height: 100%;
    	clip-path: path('M0 200C8.33 270.83 16.67 306.25 25 306.25C37.5 306.25 36.57 230.98 50 231.25C63.43 231.52 62.5 284.38 75 284.38C87.5 284.38 87.5 208.49 100 212.5C112.5 216.51 112.38 300.41 125 300.41C137.62 300.41 138.09 239.16 150.48 237.5C162.86 235.84 162.16 293.75 174.54 293.75C182.79 293.75 191.28 262.5 200 200L200 200L0 200L0 200Z');
    	position: absolute;
    }

    .overlay-index {
    	width: 100%;
    	height: 100%;
    	clip-path: circle(2.5rem at 82% 82%);
    }

    img {
    	filter: none;
    }

    [data-theme="dark"] {
    	img {
    		filter: grayscale(30%);
    	}
    }

    [data-theme="dark"] .parallax-contained-img {
    	position: absolute;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: 120%;
    	object-fit: cover;
    	filter: brightness(0.6);
    	transition: transform 0.1s;
    	will-change: transform;
    	z-index: 0;
    }

    .avatar {
    	display: inline-flex;
    	align-items: center;
    	justify-content: center;
    	overflow: hidden;
    	border-radius: 50%;
    	background-color: var(--bg-color);
    	flex-shrink: 0;
    }

    .avatar-xs {
    	width: 24px;
    	height: 24px;
    	font-size: 12px;
    }

    .avatar-sm {
    	width: 32px;
    	height: 32px;
    	font-size: 14px;
    }

    .avatar-md {
    	width: 48px;
    	height: 48px;
    	font-size: 18px;
    }

    .avatar-lg {
    	width: 64px;
    	height: 64px;
    	font-size: 22px;
    }

    .avatar-xl {
    	width: 96px;
    	height: 96px;
    	font-size: 28px;
    }

    .avatar-border {
    	border: 2px solid #fff;
    	box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    }

    .avatar img {
    	width: 100%;
    	height: 100%;
    	object-fit: cover;
    }

    .avatar-square {
    	border-radius: 8px;
    }

    #loader {
    	position: fixed;
    	inset: 0;
    	background: linear-gradient(135deg, #004e92, #000428);
    	display: flex;
    	align-items: center;
    	justify-content: center;
    	flex-direction: column;
    	z-index: 9999;
    	overflow: hidden;
    	animation: fadeOut 1s 2s forwards;
    }

    #loader .drop {
    	width: 80px;
    	height: 80px;
    	display: flex;
    	justify-content: center;
    	align-items: center;
    	animation: dropFall 1.2s ease-out forwards;
    }

    .logo-loader {
    	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    }

    #loader .drop img {
    	width: 100%;
    	height: auto;
    	border-radius: 50%;
    	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    	animation: glowPulse 1.2s ease-in-out;
    }

    .logo-text {
    	opacity: 0;
    	animation: showLogo 0.6s ease-in-out forwards;
    	animation-delay: 1.2s;
    }

    /* Animación de caída con rebote */
    @keyframes dropFall {
    	0% {
    		transform: translateY(-200px) scale(1);
    		opacity: 0;
    	}

    	50% {
    		transform: translateY(20px) scaleY(1.4);
    		opacity: 1;
    	}

    	70% {
    		transform: translateY(-10px) scaleY(0.9);
    	}

    	90% {
    		transform: translateY(0) scale(1);
    		opacity: 1;
    	}

    	100% {
    		transform: translateY(0) scale(0.5);
    		opacity: 0;
    	}
    }

    @keyframes glowPulse {

    	0%,
    	100% {
    		box-shadow: 0 0 10px rgba(0, 183, 255, 0.3), 0 0 20px rgba(0, 183, 255, 0.2);
    	}

    	50% {
    		box-shadow: 0 0 20px rgba(0, 183, 255, 0.6), 0 0 40px rgba(0, 183, 255, 0.4);
    	}
    }

    @keyframes fadeOut {
    	to {
    		opacity: 0;
    		visibility: hidden;
    	}
    }

    [data-aos] {
    	opacity: 0;
    	transform: translateY(50px);
    	transition: all 0.6s ease-out;
    }

    [data-aos].aos-animate {
    	opacity: 1;
    	transform: none;
    }

    .pagination {
    	padding: .75rem;
    	list-style: none;
    	display: flex;
    	justify-items: flex-center;
    	border: 1px solid #ddd;
    	border-radius: 5px;
    	background-color: var(--card-bg);
    }

    .page-item {
    	width: 2rem;
    	height: 2rem;
    	border: 1px solid #e5e7eb;
    	padding: .2rem;
    	font-size: .8rem;
    	align-content: center;
    	text-align: center;
    }

    .page-link {
    	--color-pageitem: var(--text-color);
    	text-decoration: none;
    	color: var(--color-pageitem);
    	cursor: pointer;
    }

    .page-item.active {
    	color: white;
    	--color-pageitem: #619bed;
    	background-color: var(--primary);
    }

    .page-item.active a {
    	color: white;
    }

    .disabled {
    	color: var(--secondary);
    	--color-pageitem: var(--secondary);
    }

    .image-modal {
    	cursor: pointer;
    }

    .p {
    	padding: 1rem;
    }

    .p-2 {
    	padding: 1.5rem;
    }

    .p-3 {
    	padding: 2rem;
    }

    .pb {
    	padding-bottom: 1rem;
    }

    .pb-2 {
    	padding-bottom: 1.5rem;
    }

    .pb-3 {
    	padding-bottom: 2rem;
    }


    [data-theme="dark"] .select2-results__option {
    	background-color: var(--bg-card-color);
    }

    [data-theme="dark"] .select2-search__field {
    	background-color: var(--bg-card-color);
    	color: white;
    }

    [data-theme="dark"] .select2-container--default .select2-selection--single {
    	background-color: var(--bg-card-color);
    }

    [data-theme="dark"] .select2-search--dropdown {
    	background: var(--bg-card-color);
    }