@import url(fontawesome-all.min.css);
@import url('fonts.css');

button,
a {
	border-radius: 6px !important;
}

html {
	--surface-bg: #ffffff;
	--text: #1e293b;
	--muted: #64748b;
	--link: #3b82f6;
	--nav-bg: #ffffff;
	--nav-text: #1e293b;
	--border: #e2e8f0;
	--button-outline-border: rgb(0, 0, 0);
	--button-outline-text: #1e293b;
	--button-outline-hover-border: #3b82f6;
	--button-outline-hover-text: #3b82f6;
}

html[data-theme="dark"] {
	--app-bg: #0b1020;
	--surface-bg: #0f172a;
	--text: rgba(255, 255, 255, 0.92);
	--muted: rgba(255, 255, 255, 0.72);
	--link: rgba(255, 255, 255, 0.92);
	--nav-bg: rgba(15, 23, 42, 0.92);
	--nav-text: rgba(255, 255, 255, 0.92);
	--border: rgba(255, 255, 255, 0.12);
	--button-outline-border: rgb(255, 255, 255);
	--button-outline-text: rgba(255, 255, 255, 0.92);
	--button-outline-hover-border: #818cf8;
	--button-outline-hover-text: #818cf8;
}

body {
	background-color: var(--app-bg) !important;
	color: var(--text) !important;
}

#main {
	padding-top: 1rem !important;
	background-color: var(--surface-bg) !important;
	color: var(--text) !important;
}

#main .container {
	background: var(--surface-bg);
	color: var(--text);
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
	border: 1px solid var(--border);
}

#main .container h1,
#main .container h2,
#main .container h3,
#main .container h4,
#main .container h5,
#main .container h6,
#main .container p,
#main .container li,
#main .container label,
#main .container small {
	color: var(--text);
}

#main .container a {
	color: var(--link);
	border-bottom-color: rgba(0, 0, 0, 0.15);
}

#main .container a:hover {
	color: var(--accent-primary, #4f46e5);
	border-bottom-color: transparent;
}

#nav {
	background-color: var(--nav-bg) !important;
	color: var(--nav-text) !important;
}

#nav a {
	color: var(--nav-text) !important;
	border-bottom-color: rgba(255, 255, 255, 0.35) !important;
}

#nav a i {
	color: #64748b !important;
	transition: color 0.2s ease-in-out;
}

#nav a:hover i {
	color: #1e293b !important;
}

/* Specific active icon colors in light mode */
#nav ul.links li.nav-item-inicio.active a i {
	color: #16a34a !important; /* Green */
}
#nav ul.links li.nav-item-retos.active a i {
	color: #dc2626 !important; /* Red */
}
#nav ul.links li.nav-item-contenido.active a i {
	color: #b45309 !important; /* Light Brown */
}
#nav ul.links li.nav-item-reserva.active a i {
	color: #2563eb !important; /* Blue */
}
#nav ul.links li.nav-item-cuenta.active a i {
	color: #7c3aed !important; /* Purple */
}

#nav ul.links li.active {
	background-color: rgba(255, 255, 255, 0.10);
}

#nav ul.links li.active a {
	color: var(--nav-text) !important;
}

#nav ul.links li.active a:hover {
	color: var(--accent-primary, #4f46e5) !important;
}

html[data-theme="dark"] #nav #theme-toggle {
	color: rgba(255, 255, 255, 0.92) !important;
	border-bottom-color: rgba(255, 255, 255, 0.35) !important;
}

html[data-theme="dark"] #nav #theme-toggle:hover {
	color: var(--accent-primary, #4f46e5) !important;
	border-bottom-color: transparent !important;
}

html[data-theme="dark"] #nav {
	background: var(--nav-bg) !important;
	background-image: none !important;
	color: var(--nav-text) !important;
}

html[data-theme="dark"] #nav a {
	color: var(--nav-text) !important;
	border-bottom-color: rgba(255, 255, 255, 0.35) !important;
}

html[data-theme="dark"] #nav a i {
	color: rgba(255, 255, 255, 0.6) !important;
}

html[data-theme="dark"] #nav a:hover i {
	color: rgba(255, 255, 255, 0.92) !important;
}

/* Specific active icon colors in dark mode */
html[data-theme="dark"] #nav ul.links li.nav-item-inicio.active a i {
	color: #4ade80 !important; /* Lighter Green */
}
html[data-theme="dark"] #nav ul.links li.nav-item-retos.active a i {
	color: #f87171 !important; /* Lighter Red */
}
html[data-theme="dark"] #nav ul.links li.nav-item-contenido.active a i {
	color: #fbbf24 !important; /* Lighter Brown / Amber */
}
html[data-theme="dark"] #nav ul.links li.nav-item-reserva.active a i {
	color: #60a5fa !important; /* Lighter Blue */
}
html[data-theme="dark"] #nav ul.links li.nav-item-cuenta.active a i {
	color: #a78bfa !important; /* Lighter Purple */
}

html[data-theme="dark"] #nav ul.links li.active {
	background-color: rgba(255, 255, 255, 0.05);
}

html[data-theme="dark"] #nav ul.links li.active a {
	color: rgba(255, 255, 255, 0.92) !important;
}

html[data-theme="dark"] #nav ul.links li.active a:hover {
	color: var(--accent-primary, #4f46e5) !important;
}

html[data-theme="dark"] a {
	color: var(--link);
	border-bottom-color: rgba(255, 255, 255, 0.28);
}

strong,
b {
	color: var(--text);
}

html[data-theme="dark"] strong,
html[data-theme="dark"] b {
	color: var(--text);
}

hr {
	border-bottom-color: var(--border);
}

html[data-theme="dark"] hr {
	border-bottom-color: var(--border);
}

blockquote {
	border-left-color: var(--border);
}

html[data-theme="dark"] blockquote {
	border-left-color: var(--border);
}

code {
	background: rgba(148, 163, 184, 0.12);
	border-color: var(--border);
}

html[data-theme="dark"] code {
	background: rgba(148, 163, 184, 0.18);
	border-color: var(--border);
}

html[data-theme="dark"] .footer {
	background-color: var(--app-bg);
	color: rgba(255, 255, 255, 0.92);
}

html[data-theme="dark"] footer ul li a {
	color: rgba(255, 255, 255, 0.92);
}

/* Responsive margins for containers after main on small screens */
@media (max-width: 768px) {

	#main .container,
	#main>.container,
	#main div.container,
	.container,
	.main-content,
	.content-wrapper,
	#main .container.mt-5,
	#main>.container.mt-5 {
		margin-top: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}
}

@media (max-width: 480px) {

	#main .container,
	#main>.container,
	#main div.container,
	.container,
	.main-content,
	.content-wrapper,
	#main .container.mt-5,
	#main>.container.mt-5 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}

	#main {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
}

html[data-theme="dark"] #main .container {
	background: var(--surface-bg);
	color: var(--text);
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
	border: 1px solid var(--border);
}

html[data-theme="dark"] #main .container h1,
html[data-theme="dark"] #main .container h2,
html[data-theme="dark"] #main .container h3,
html[data-theme="dark"] #main .container h4,
html[data-theme="dark"] #main .container h5,
html[data-theme="dark"] #main .container h6,
html[data-theme="dark"] #main .container p,
html[data-theme="dark"] #main .container li,
html[data-theme="dark"] #main .container label,
html[data-theme="dark"] #main .container small {
	color: var(--text);
}

html[data-theme="dark"] #main .container a {
	color: var(--link);
	border-bottom-color: rgba(255, 255, 255, 0.28);
}

html[data-theme="dark"] #main .container a:hover {
	color: var(--accent-primary, #4f46e5);
	border-bottom-color: transparent;
}


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

button,
div,
img,
a .button {
	border-radius: 4px;
}


.form-control {
	border: 1px solid var(--border) !important;
	border-radius: 5px !important;
}

.form-text.text-muted {
	font-size: 0.85rem;
	color: rgba(0, 0, 0, 0.55);
}

.table-responsive code {
	background-color: rgba(15, 23, 42, 0.06);
	padding: 0.25rem 0.4rem;
	border-radius: 4px;
	font-size: 0.9em;
}

.card .badge+.text-muted {
	display: block;
}


.button {
	border-radius: 6px !important;
}

.btn {
	border-radius: 6px !important;
}

.btn-primary {
	border-radius: 6px !important;
}

/* Estilos para botones de niveles de retos */
.btn-nivel-basico {
	background: linear-gradient(135deg, var(--accent-secondary, #1e40af) 0%, var(--accent-primary, #4f46e5) 100%) !important;
	color: white !important;
	border: none !important;
	border-radius: 6px !important;
	box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3) !important;
}

.btn-nivel-basico:hover {
	background: linear-gradient(135deg, var(--accent-primary, #4f46e5) 0%, var(--accent-secondary, #1e40af) 100%) !important;
	box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4) !important;
	transform: translateY(-1px);
}

.btn-nivel-avanzado {
	background: linear-gradient(135deg, var(--accent-primary, #6366f1) 0%, var(--accent-secondary, #3b82f6) 100%) !important;
	color: white !important;
	border: none !important;
	border-radius: 6px !important;
	box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3) !important;
}

.btn-nivel-avanzado:hover {
	background: linear-gradient(135deg, var(--accent-secondary, #3b82f6) 0%, var(--accent-secondary, #3b82f6) 100%) !important;
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4) !important;
	transform: translateY(-1px);
}

.btn-nivel-premium {
	background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%) !important;
	color: white !important;
	border: none !important;
	border-radius: 6px !important;
	box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3) !important;
}

.btn-nivel-premium:hover {
	background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4) !important;
	transform: translateY(-1px);
}

.btn-nivel-vip {
	background: linear-gradient(135deg, #09090b 0%, #27272a 100%) !important;
	color: #e6c15c !important;
	border: 2px solid #e6c15c !important;
	border-radius: 6px !important;
	box-shadow: 0 2px 8px rgba(230, 193, 92, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
	font-weight: 600 !important;
}

.btn-nivel-vip:hover {
	background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 50%, #f0f0f0 100%) !important;
	box-shadow: 0 4px 16px rgba(192, 192, 192, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
	border-color: #b0b0b0 !important;
	transform: translateY(-1px);
}

/* Estilos de Botón Ver Más por Nivel */
.btn-ver-mas {
	color: white !important;
	border: none !important;
	padding: 14px 28px !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	border-radius: 30px !important;
	transition: all 0.3s ease !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 10px !important;
	text-decoration: none !important;
	justify-content: center !important;
	margin-left: auto !important;
}

.btn-ver-mas-gratis {
	background: linear-gradient(135deg, #22c55e 0%, #15803d 100%) !important;
	box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4) !important;
}

.btn-ver-mas-basico {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4) !important;
}

.btn-ver-mas-avanzado {
	background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%) !important;
	box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4) !important;
}

.btn-ver-mas-premium {
	background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%) !important;
	box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4) !important;
}

.btn-ver-mas-vip {
	background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%) !important;
	box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4) !important;
}

.btn-ver-mas-default {
	background: linear-gradient(135deg, #6a0dad 0%, #9b59b6 100%) !important;
	box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4) !important;
}

.plan p::before {
	content: " - ";
	/* O cambia por " - " si prefieres un guion */
	color: #333;
	/* Color del símbolo */
	margin-right: 10px;
	/* Espacio entre el símbolo y el texto */
}

.plan[data-direction="bottom"],
.plan[data-direction="left"],
.plan[data-direction="right"] {
	background: rgba(255, 255, 255, 0.95) !important;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12) !important;
}

html[data-theme="dark"] .plan p::before {
	color: rgba(255, 255, 255, 0.75);
}

/* Evitar que los párrafos con la clase "no-symbol" tengan el símbolo */
/* Elimina el símbolo de los párrafos con la clase "no-symbol" */
.plan p.no-symbol::before {
	content: "";
	/* Esto elimina el contenido antes del párrafo */
}

.plan[data-direction="left"] {
	position: relative;
	border-radius: 25px;
	/* Aumenté el radio para hacerlo más suave */
	background: #fff;
	padding: 20px;
	/* Mayor espacio para hacerlo más espacioso */
	border: none;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 10px 30px rgba(0, 0, 0, 0.2);
	/* Sombra más intensa */
	margin: 15px;
	/* Mayor espacio alrededor */
	transition: all 0.4s ease-in-out;
	/* Transición más fluida */
	overflow: hidden;
	/* Asegura que todo el contenido se mantenga dentro del borde */
}

/* Password Toggle Button */
.password-toggle {
	position: absolute;
	right: 0px;
	/* Increased from 10px to 15px */
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #666;
	cursor: pointer;
	padding: 0 8px;
	z-index: 2;
	/* Ensure it's above the input field */
}

.password-toggle:hover {
	color: #333;
}

.password-input-group {
	position: relative;
}

.password-input-group input[type="password"],
.password-input-group input[type="text"] {
	padding-right: 40px !important;
}

.plan[data-direction="left"]:hover {
	background: #f1f5f9;
	/* Fondo suave al pasar el mouse */
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 15px 50px rgba(0, 0, 0, 0.25);
	/* Sombra más fuerte */
	transform: scale(1.05);
	/* Aumento de tamaño para efecto de profundidad */
	z-index: 1;
	/* Asegura que el elemento esté encima de otros */
}

.plan[data-direction="left"]::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 5px;
	/* Grosor del borde aumentado */
	border-radius: 25px;
	/* Borde más redondeado */
	background: linear-gradient(135deg, #cbd5e1, #94a3b8 50%, #475569);
	/* Gradiente brillante */
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
	transition: all 0.7s ease-in-out;
	/* Transición suave en los efectos */
}

.plan-label-basic {
	position: absolute;
	top: 10px;
	right: 0;
	/* Lo mueve a la derecha */
	background: linear-gradient(135deg, #cbd5e1, #94a3b8 50%, #475569);
	color: white;
	font-weight: bold;
	font-size: 14px;
	padding: 5px 20px;
	border-radius: 0 5px 5px 0;
	text-transform: uppercase;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10% 50%);
}

.plan[data-direction="left"]:hover::before {
	background: linear-gradient(135deg, #FF7D99, #F05656 50%, #00DDEB);
	/* Cambio de gradiente en hover */
	filter: brightness(1.2) saturate(1.3);
	/* Hace que el borde brille más */
}

.plan[data-direction="left"]:hover h2 {
	color: #535c00;
	/* Amarillo legendario */
	transition: color 0.4s ease-in-out;
	/* Transición suave */
}

.plan[data-direction="left"]:focus-within {
	box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.8), 0 0 30px rgba(0, 170, 255, 0.5);
	/* Resplandor de enfoque */
	transform: scale(1.02);
	/* Ligero aumento de tamaño al estar en foco */
}

.plan[data-direction="bottom"] {
	position: relative;
	border-radius: 25px;
	/* Aumenté el radio para hacerlo más suave */
	background: #fff;
	padding: 20px;
	/* Mayor espacio para hacerlo más espacioso */
	border: none;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 10px 30px rgba(0, 0, 0, 0.2);
	/* Sombra más intensa */
	margin: 15px;
	/* Mayor espacio alrededor */
	transition: all 0.4s ease-in-out;
	/* Transición más fluida */
	overflow: hidden;
	/* Asegura que todo el contenido se mantenga dentro del borde */
}

html[data-theme="dark"] .plan[data-direction="bottom"],
html[data-theme="dark"] .plan[data-direction="left"],
html[data-theme="dark"] .plan[data-direction="right"] {
	background: rgba(15, 23, 42, 0.88) !important;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45) !important;
}

html[data-theme="dark"] .plan h2,
html[data-theme="dark"] .plan p,
html[data-theme="dark"] .plan .price {
	color: rgba(255, 255, 255, 0.92) !important;
}

html[data-theme="dark"] .plan .discount {
	color: #ff6b6b !important;
}

html[data-theme="dark"] .plan button span {
	background-color: rgba(2, 6, 23, 0.85) !important;
	color: rgba(255, 255, 255, 0.92) !important;
}

html[data-theme="dark"] .plan button:hover span {
	background: none !important;
	color: rgba(255, 255, 255, 0.98) !important;
}

.plan[data-direction="bottom"]:hover {
	background: #f1f5f9;
	/* Fondo suave al pasar el mouse */
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 15px 50px rgba(0, 0, 0, 0.25);
	/* Sombra más fuerte */
	transform: scale(1.05);
	/* Aumento de tamaño para efecto de profundidad */
	z-index: 1;
	/* Asegura que el elemento esté encima de otros */
}

.plan[data-direction="bottom"]::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 5px;
	/* Grosor del borde aumentado */
	border-radius: 25px;
	/* Borde más redondeado */
	background: linear-gradient(135deg, #3b82f6, #1d4ed8 50%, #1e3a8a);
	/* Gradiente brillante */
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
	transition: all 0.7s ease-in-out;
	/* Transición suave en los efectos */
}

.plan-label-advanced {
	position: absolute;
	top: 10px;
	right: 0;
	/* Lo mueve a la derecha */
	background: linear-gradient(135deg, #3b82f6, #1d4ed8 50%, #1e3a8a);
	color: white;
	font-weight: bold;
	font-size: 14px;
	padding: 5px 20px;
	border-radius: 0 5px 5px 0;
	text-transform: uppercase;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10% 50%);
}

.plan[data-direction="bottom"]:hover::before {
	background: linear-gradient(135deg, #1364fa, #5687f0 50%, #7801ff);
	/* Cambio de gradiente en hover */
	filter: brightness(1.2) saturate(1);
	/* Hace que el borde brille más */
}

.plan[data-direction="bottom"]:hover h2 {
	color: #535353;
	/* Amarillo legendario */
	transition: color 0.4s ease-in-out;
	/* Transición suave */
}


.plan[data-direction="bottom"]:focus-within {
	box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.8), 0 0 30px rgba(0, 170, 255, 0.5);
	/* Resplandor de enfoque */
	transform: scale(1.02);
	/* Ligero aumento de tamaño al estar en foco */
}



.plan[data-direction="right"] {
	position: relative;
	border-radius: 25px;
	/* Aumenté el radio para hacerlo más suave */
	background: #fff;
	padding: 20px;
	/* Mayor espacio para hacerlo más espacioso */
	border: none;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 10px 30px rgba(0, 0, 0, 0.2);
	/* Sombra más intensa */
	margin: 15px;
	/* Mayor espacio alrededor */
	transition: all 0.4s ease-in-out;
	/* Transición más fluida */
	overflow: hidden;
	/* Asegura que todo el contenido se mantenga dentro del borde */
}

.plan[data-direction="right"]:hover {
	background: #f1f5f9;
	/* Fondo suave al pasar el mouse */
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15), 0 15px 50px rgba(0, 0, 0, 0.25);
	/* Sombra más fuerte */
	transform: scale(1.05);
	/* Aumento de tamaño para efecto de profundidad */
	z-index: 1;
	/* Asegura que el elemento esté encima de otros */
}

.plan[data-direction="right"]::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 5px;
	/* Grosor del borde aumentado */
	border-radius: 25px;
	/* Borde más redondeado */
	background: linear-gradient(135deg, #818cf8, #4f46e5 50%, #1e40af);
	/* Gradiente brillante */
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
	transition: all 0.7s ease-in-out;
	/* Transición suave en los efectos */
}

.plan-label-premium {
	position: absolute;
	top: 10px;
	right: 0;
	/* Lo mueve a la derecha */
	background: linear-gradient(135deg, #818cf8, #4f46e5 50%, #1e40af);
	color: white;
	font-weight: bold;
	font-size: 14px;
	padding: 5px 20px;
	border-radius: 0 5px 5px 0;
	text-transform: uppercase;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10% 50%);
}

.plan[data-direction="right"]:hover::before {
	background: linear-gradient(135deg, #ff0000, #ffee00 50%, #eb0800);
	/* Cambio de gradiente en hover */
	filter: brightness(1.2) saturate(1.3);
	/* Hace que el borde brille más */
}

.plan[data-direction="right"]:hover h2 {
	color: #dfbd00;
	/* Amarillo legendario */
	transition: color 0.4s ease-in-out;
	/* Transición suave */
}

.plan[data-direction="right"]:focus-within {
	box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.8), 0 0 30px rgba(0, 170, 255, 0.5);
	/* Resplandor de enfoque */
	transform: scale(1.01);
	/* Ligero aumento de tamaño al estar en foco */
}




.plans {
	font-weight: bold;
	display: flex;
	justify-content: center;
	/* justify-content: space-between; */
	gap: 5px;
	flex-wrap: wrap;
	align-items: stretch;
	/* Asegura que todas las tarjetas tengan la misma altura */
	transition: opacity 1s ease-out, transform 1s ease-out;
}

@media (max-width: 480px) {
	.plans {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 1.25rem;
		padding-left: 0;
		padding-right: 0;
	}

	.plan {
		margin-left: auto;
		margin-right: auto;
	}

	.plan-label-basic,
	.plan-label-advanced,
	.plan-label-premium {
		padding: 5px 14px;
		font-size: 12px;
	}
}

.plan * {
	position: relative;
	z-index: 2;
}

.plan {
	background-repeat: no-repeat;
	/* Evita que se repita */
	align-items: flex-end;
	/* Alinea todo el contenido a la derecha */
	display: flex;
	flex-direction: column;
	/* Asegura que los elementos internos se apilen verticalmente */
	align-items: center;
	/* Centra los elementos horizontalmente */
	position: relative;
	flex: 0 1 320px;
	max-width: 320px;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	border: 3px solid;
	z-index: 1;
	height: 100%;
	/* Hace que todas las tarjetas tengan la misma altura */
	min-height: 400px;
	/* Asegura una altura mínima */
}

@media (max-width: 600px) {
	.plans {
		justify-content: center;
	}

	.plan {
		flex: 0 1 100%;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}
}

.plan::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.plan-label {
	position: absolute;
	top: 10px;
	right: 0;
	/* Lo mueve a la derecha */
	background: linear-gradient(135deg, #AF40FF, #5B42F3 50%, #00DDEB);
	color: white;
	font-weight: bold;
	font-size: 14px;
	padding: 5px 20px;
	border-radius: 0 5px 5px 0;
	text-transform: uppercase;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10% 50%);
}

.plan h2 {
	margin-top: 30px;
	margin-bottom: 5px;
}

.plan p {
	text-align: center;
	margin: 5px 0;
}

.plan .price {
	font-size: 1.2em;
	font-weight: bold;
	margin: 5px 0;
	margin-top: auto;
	/* Empuja el descuento hacia la parte inferior */
}

.plan .discount {
	font-size: 1em;
	color: red;
	font-weight: bold;
	margin-top: auto;
	/* Empuja el descuento hacia la parte inferior */
}

.plan button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	/* Ajusta el tamaño al contenido */
	margin: 0 auto;
	/* Centra horizontalmente */
	overflow: hidden;
	font-weight: 600;
	background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
	border: 0;
	border-radius: 8px;
	box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
	box-sizing: border-box;
	color: #FFFFFF !important;
	justify-content: center;
	padding: 23px 8px;
	text-decoration: none;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	white-space: nowrap;
	cursor: pointer;
	margin-top: 10px;
	/* Añade un margen para separar del descuento */
}

.plan button:active,
.plan button:hover {
	outline: 0;
}

.plan button span {
	color: rgb(238, 238, 238);
	background-color: rgb(5, 6, 45);
	padding: calc(.875rem - 3px) calc(1.5rem - 3px);
	border-radius: 5px;
	transition: 300ms;
}

.plan button:hover span {
	background: none;
	color: white;
}

@media (max-width: 768px) {
	.plans {
		width: 100%;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
		flex-direction: column;
		align-items: center;
	}

	.plan {
		box-sizing: border-box;
		width: clamp(260px, 92vw, 360px);
		max-width: 100%;
	}
}

.truncate-text {
	display: -webkit-box;
	display: -ms-flexbox;
	-webkit-line-clamp: 2;
	/* Número de líneas antes de cortar */
	line-clamp: 2;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
	text-overflow: ellipsis;
}

#rotating-message {
	color: rgb(45, 112, 0);
	background-color: rgba(255, 217, 0, 0.911);
	font-size: 1.0rem;
	text-align: center;
	padding: 10px;
	border-radius: 5px;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.alert-dismissible {
	margin-top: 1.5px;
	width: 100%;
	/* Ajusta al ancho completo del contenedor */
	max-width: 100%;
	/* Nunca sobrepasa el ancho del contenedor padre */
	text-align: left;
	/* Alinea el texto a la izquierda para mayor legibilidad */
	border-radius: 4px;
	word-wrap: break-word;
	/* Ajusta el texto a la siguiente línea si es muy largo */
	word-break: break-word;
	/* Corta las palabras largas si es necesario */
}

/* Estilos específicos para flash messages - Posicionamiento diferencial */
.alert[data-flash-message="true"] {
	position: fixed !important;
	z-index: 9999 !important;
	border: none !important;
	border-radius: 8px !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	font-weight: 500;
	padding: 15px 20px !important;
	font-size: 15px;
	line-height: 1.5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 50px;
	max-width: 400px;
	min-width: 250px;
	/* Posición por defecto: arriba a la derecha (escritorio/tablets) */
	top: 20px !important;
	right: 20px !important;
	bottom: auto !important;
	left: auto !important;
}

.alert[data-flash-message="true"].alert-success {
	background-color: #d1fae5 !important;
	color: #065f46 !important;
	border-left: 5px solid #10b981 !important;
}

.alert[data-flash-message="true"].alert-danger {
	background-color: #fee2e2 !important;
	color: #991b1b !important;
	border-left: 5px solid #ef4444 !important;
}

.alert[data-flash-message="true"].alert-warning {
	background-color: #fef3c7 !important;
	color: #92400e !important;
	border-left: 5px solid #f59e0b !important;
}

.alert[data-flash-message="true"].alert-info {
	background-color: #ede9fe !important;
	color: #3730a3 !important;
	border-left: 5px solid #6366f1 !important;
}

.alert[data-flash-message="true"] .alert-content {
	flex: 1;
	margin-right: 10px;
}

.alert[data-flash-message="true"] .close {
	font-size: 1.3rem;
	opacity: 0.7;
	transition: opacity 0.2s, background-color 0.2s;
	background: none;
	border: none;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	cursor: pointer;
	flex-shrink: 0;
	/* Asegurar forma cuadrada perfecta */
	aspect-ratio: 1/1;
	min-width: 30px;
	max-width: 30px;
	min-height: 30px;
	max-height: 30px;
	/* Color por defecto para alertas de fondo claro */
	color: #fff !important;
}

.alert[data-flash-message="true"] .close:hover {
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.1);
}

/* Flash messages - Color de X y borde según fondo (fondo claro = negro, fondo oscuro = blanco) */
/* Alertas con fondo CLARO: success, warning, info, danger (tienen fondos claros) */
.alert[data-flash-message="true"].alert-success .close,
.alert[data-flash-message="true"].alert-danger .close,
.alert[data-flash-message="true"].alert-warning .close,
.alert[data-flash-message="true"].alert-info .close {
	color: #fff !important;
}

/* Borde negro para alertas de fondo claro */
.alert[data-flash-message="true"].alert-success,
.alert[data-flash-message="true"].alert-danger,
.alert[data-flash-message="true"].alert-warning,
.alert[data-flash-message="true"].alert-info {
	border: 2px solid #000 !important;
}

/* Mantener border-left colorido encima del borde negro */
.alert[data-flash-message="true"].alert-success {
	border-left: 5px solid #10b981 !important;
}

.alert[data-flash-message="true"].alert-danger {
	border-left: 5px solid #ef4444 !important;
}

.alert[data-flash-message="true"].alert-warning {
	border-left: 5px solid #f59e0b !important;
}

.alert[data-flash-message="true"].alert-info {
	border-left: 5px solid #6366f1 !important;
}

/* Hover para alertas de fondo claro */
.alert[data-flash-message="true"].alert-success .close:hover,
.alert[data-flash-message="true"].alert-danger .close:hover,
.alert[data-flash-message="true"].alert-warning .close:hover,
.alert[data-flash-message="true"].alert-info .close:hover {
	background-color: rgba(0, 0, 0, 0.15);
}

/* Para alertas con fondo OSCURO (si se agregan en el futuro) - usar clase .alert-dark */
.alert[data-flash-message="true"].alert-dark .close {
	color: #fff !important;
}

.alert[data-flash-message="true"].alert-dark {
	border: 2px solid #fff !important;
}

.alert[data-flash-message="true"].alert-dark .close:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive para flash messages - Tablets: arriba a la derecha, Móviles: abajo a la derecha */
@media (max-width: 768px) and (min-width: 481px) {

	/* Tablets: mantener arriba a la derecha */
	.alert[data-flash-message="true"] {
		top: 40px !important;
		right: 15px !important;
		bottom: auto !important;
		left: auto !important;
		padding: 12px 15px !important;
		font-size: 14px;
		border-radius: 8px !important;
		min-height: 45px;
		max-width: 350px;
		min-width: 200px;
	}

	.alert[data-flash-message="true"] .close {
		font-size: 1.2rem;
		width: 28px;
		height: 28px;
		/* Mantener forma cuadrada perfecta */
		aspect-ratio: 1/1;
		min-width: 28px;
		max-width: 28px;
		min-height: 28px;
		max-height: 28px;
		color: #000 !important;
	}

	.alert[data-flash-message="true"] .alert-content {
		margin-right: 8px;
	}
}

@media (max-width: 480px) {

	/* Móviles: abajo a la derecha, encima de la navegación móvil */
	.alert[data-flash-message="true"] {
		top: auto !important;
		right: 10px !important;
		bottom: 90px !important;
		left: auto !important;
		padding: 10px 12px !important;
		font-size: 13px;
		border-radius: 6px !important;
		min-height: 40px;
		max-width: calc(100vw - 20px);
		min-width: 200px;
	}

	.alert[data-flash-message="true"] .close {
		font-size: 1.1rem;
		width: 25px;
		height: 25px;
		/* Mantener forma cuadrada perfecta */
		aspect-ratio: 1/1;
		min-width: 25px;
		max-width: 25px;
		min-height: 25px;
		max-height: 25px;
		color: #000 !important;
	}

	.alert[data-flash-message="true"] .alert-content {
		margin-right: 6px;
	}
}

.dashboard {
	display: flex;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 20px;
	background-color: var(--app-bg);
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.dash-info {
	width: 100%;
	max-width: 1200px;
	float: none;
	text-align: center;
	gap: 10px;
	/* Espacio entre cada boton */
}

.dash-menu {
	margin-right: 20px;
	float: left;
	width: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: var(--surface-bg);
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.dash-menu a {
	text-align: center;
	font-size: 18px;
	margin-bottom: 10px;
}


.appear {
	opacity: 0;
	transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}

/* Efectos de movimiento sin afectar otras clases */
.appear.from-left {
	transform: translateX(-80%);
}

.appear.from-right {
	transform: translateX(80%);
}

.appear.from-bottom {
	transform: translateY(1%);
}

@media (max-width: 768px) {

	.appear.from-left,
	.appear.from-right {
		transform: translateX(0);
	}
}

/* Se activa la animación */
.appear.visible {
	opacity: 1;
	transform: translateX(0) translateY(0);
}

.grayscale {
	filter: grayscale(100%);
}






.initial-logo {
	width: 100%;
	max-width: 600px;
	min-width: 350px;
	padding: 10px;
	height: auto;
	-webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
	mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}

@media screen and (max-width: 480px) {
	.initial-logo {
		min-width: 0;
		max-width: 100%;
	}
}


footer ul li a {
	text-decoration: none;
	color: white;
}

footer ul li a:hover {
	text-decoration: underline;
}

footer p {
	margin-bottom: 0;
}

footer .fab {
	transition: color 0.3s ease;
}

footer .fab:hover {
	color: #fff;
}


/* Estilos Generales Footer */
.footer {
	background-color: #0f172a;
	color: #fff;
	margin-top: 20px;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-column {
	flex: 1;
	padding: 10px;
}

.footer-column h3 {
	font-size: 18px;
	margin-bottom: 15px;
}

.footer-column ul {
	list-style: none;
	padding: 0;
}

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column ul li a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-column ul li a:hover {
	color: #ddd;
}









body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input,
select,
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */

@-ms-viewport {
	width: device-width;
}

body {
	-ms-overflow-style: scrollbar;
}

@media screen and (max-width: 480px) {

	html,
	body {
		min-width: 320px;
	}

}

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	background-color: var(--app-bg);
}

body.is-preload *,
body.is-preload *:before,
body.is-preload *:after {
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}

/* Reto Header */
.reto-header {
	margin: 0 0 1rem 0;
}

.reto-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
}

.reto-label {
	display: block;
	font-weight: bold;
	margin-bottom: 0.25rem;
}

.reto-name {
	display: block;
	word-break: keep-all;
	overflow-wrap: normal;
}

.tier-effect {
	position: relative;
	overflow: hidden;
	background-size: 200% 200% !important;
	transition: transform 0.35s ease, filter 0.35s ease;
	animation-duration: 4.5s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

.tier-effect::after {
	content: "";
	position: absolute;
	top: 50%;
	left: -35%;
	width: 60%;
	height: 180%;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.05) 60%, transparent 80%);
	opacity: 0;
	transform: translateY(-50%) rotate(25deg);
	transition: opacity 0.45s ease, transform 0.45s ease;
}

a:hover .tier-effect {
	transform: translateY(-3px) scale(1.05);
	filter: brightness(1.1);
}

a:hover .tier-effect::after {
	opacity: 0.9;
	transform: translate(140%, -50%) rotate(25deg);
}

.tier-price {
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	animation: tierPricePulse 5s ease-in-out infinite;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.28);
}

a:hover .tier-price {
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.35);
}

.tier-gratis {
	filter: drop-shadow(0 0 0 rgba(16, 185, 129, 0.35));
	animation-name: tierGratisGlow;
}

.tier-basico {
	filter: drop-shadow(0 0 0 rgba(13, 146, 80, 0.35));
	animation-name: tierBasicoGlow;
}

.tier-avanzado {
	filter: drop-shadow(0 0 0 rgba(37, 99, 235, 0.4));
	animation-name: tierAvanzadoGlow;
}

.tier-pro {
	filter: drop-shadow(0 0 0 rgba(251, 191, 36, 0.45));
	animation-name: tierProGlow;
}

.tier-vip {
	filter: drop-shadow(0 0 0 rgba(137, 240, 255, 0.45));
	animation-name: tierVipGlow;
}

@keyframes tierGratisGlow {

	0%,
	100% {
		filter: drop-shadow(0 0 0 rgba(16, 185, 129, 0.35));
		background-position: 0% 50%;
	}

	50% {
		filter: drop-shadow(0 0 14px rgba(16, 185, 129, 0.6));
		background-position: 100% 50%;
	}
}

@keyframes tierBasicoGlow {

	0%,
	100% {
		filter: drop-shadow(0 0 0 rgba(13, 146, 80, 0.35));
		background-position: 0% 50%;
	}

	50% {
		filter: drop-shadow(0 0 16px rgba(13, 146, 80, 0.65));
		background-position: 100% 50%;
	}
}

@keyframes tierAvanzadoGlow {

	0%,
	100% {
		filter: drop-shadow(0 0 0 rgba(37, 99, 235, 0.4));
		background-position: 0% 50%;
	}

	50% {
		filter: drop-shadow(0 0 18px rgba(37, 99, 235, 0.7));
		background-position: 100% 50%;
	}
}

@keyframes tierProGlow {

	0%,
	100% {
		filter: drop-shadow(0 0 0 rgba(251, 191, 36, 0.45));
		background-position: 0% 50%;
	}

	50% {
		filter: drop-shadow(0 0 18px rgba(251, 191, 36, 0.75));
		background-position: 100% 50%;
	}
}

@keyframes tierVipGlow {

	0%,
	100% {
		filter: drop-shadow(0 0 0 rgba(137, 240, 255, 0.45));
		background-position: 0% 50%;
	}

	50% {
		filter: drop-shadow(0 0 20px rgba(137, 240, 255, 0.8));
		background-position: 100% 50%;
	}
}

@keyframes tierPricePulse {

	0%,
	100% {
		transform: translateY(0);
		box-shadow: 0 6px 18px rgba(15, 23, 42, 0.28);
	}

	50% {
		transform: translateY(-2px);
		box-shadow: 0 10px 26px rgba(15, 23, 42, 0.4);
	}
}

/* Eliminar subrayado de puntos en enlaces de niveles */
a[href*="ver_reto"] {
	text-decoration: none !important;
	border-bottom: none !important;
}

/* Asegurar que los spans dentro no hereden subrayado */
.tier-effect {
	text-decoration: none !important;
	border-bottom: none !important;
}

/* Duración por niveles */
.duracion-box {
	border-radius: 12px;
	padding: 5px 15px;
	margin: 10px auto;
	display: block;
	text-align: center;
	max-width: fit-content;
}

.duracion-box.gratis {
	background: rgba(52, 211, 153, 0.15);
	border: 1px solid rgba(52, 211, 153, 0.3);
}

.duracion-box.gratis .duracion-texto,
.duracion-box.gratis .duracion-icono {
	color: #065f46;
}

.duracion-box.gratis .duracion-icono {
	color: #059669;
}

.duracion-box.basico {
	background: rgba(74, 144, 226, 0.15);
	border: 1px solid rgba(30, 64, 175, 0.3);
}

.duracion-box.basico .duracion-texto,
.duracion-box.basico .duracion-icono {
	color: #1e40af;
}

.duracion-box.basico .duracion-icono {
	color: #3b82f6;
}

.duracion-box.avanzado {
	background: rgba(155, 89, 182, 0.15);
	border: 1px solid rgba(99, 102, 241, 0.3);
}

.duracion-box.avanzado .duracion-texto,
.duracion-box.avanzado .duracion-icono {
	color: #3730a3;
}

.duracion-box.avanzado .duracion-icono {
	color: #6366f1;
}

.duracion-box.premium {
	background: rgba(243, 156, 18, 0.15);
	border: 1px solid rgba(245, 158, 11, 0.3);
}

.duracion-box.premium .duracion-texto,
.duracion-box.premium .duracion-icono {
	color: #7c2d12;
}

.duracion-box.premium .duracion-icono {
	color: #ea580c;
}

.duracion-box.vip {
	background: rgba(192, 192, 192, 0.2);
	border: 1px solid rgba(192, 192, 192, 0.4);
}

.duracion-box.vip .duracion-texto,
.duracion-box.vip .duracion-icono {
	color: #1f2937;
}

.duracion-box.vip .duracion-icono {
	color: #4b5563;
}

.duracion-box.default {
	background: rgba(40, 167, 69, 0.1);
	border: 1px solid rgba(40, 167, 69, 0.2);
}

.duracion-box.default .duracion-texto {
	color: #14532d;
}

.duracion-box.default .duracion-icono {
	color: #16a34a;
}

/* Small screens */
@media screen and (max-width: 736px) {
	.reto-link {
		padding: 0 10px;
	}

	.reto-label,
	.reto-name {
		white-space: normal;
		line-height: 1.3;
	}
}

/* Type */

html {
	font-size: 16pt;
}

@media screen and (max-width: 1680px) {

	html {
		font-size: 12pt;
	}

}

@media screen and (max-width: 1280px) {

	html {
		font-size: 11pt;
	}

}

@media screen and (max-width: 360px) {

	html {
		font-size: 10pt;
	}

}

@media screen and (min-width: 1921px) {

	html {
		font-size: 18pt;
	}

	body,
	input,
	select,
	textarea {
		font-size: 1.1rem;
	}

	h1 {
		font-size: 4.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.4rem;
	}

	h4 {
		font-size: 1.1rem;
	}

	h5 {
		font-size: 1rem;
	}

	h6 {
		font-size: 0.9rem;
	}

}

body,
input,
select,
textarea {
	font-family: "Merriweather", Georgia, serif;
	font-weight: 300;
	font-size: 1rem;
	line-height: 2.375;
}

a {
	-moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	border-bottom: dotted 1px;
	text-decoration: none;
}

a:hover {
	border-bottom-color: transparent;
}

strong,
b {
	font-weight: 600;
}

em,
i {
	font-style: italic;
}

p {
	text-align: justify;
	margin: 0 0 2rem 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-weight: 900;
	line-height: 1.5;
	letter-spacing: 0.075em;
	text-transform: uppercase;
	margin: 0 0 1rem 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	border-bottom: 0;
	color: inherit;
	text-decoration: none;
}

h1 {
	font-size: 4rem;
	line-height: 1.1;
	margin: 0 0 2rem 0;
}

h2 {
	font-size: 1.75rem;
	line-height: 1.3;
	margin: 0 0 1.5rem 0;
}

.reto-texto {
	margin: 0 0 1.5rem 0;
	text-align: left !important;
	text-align-last: left !important;
	text-justify: initial !important;
	word-break: normal;
	white-space: normal;
	overflow-wrap: normal;
	max-width: 100%;
	line-height: 1.6;
}

h3 {
	font-size: 1.25rem;
	margin: 0 0 1.5rem 0;
}

h4 {
	font-size: 1rem;
}

h5 {
	font-size: 0.9rem;
}

h6 {
	font-size: 0.8rem;
}

sub {
	font-size: 0.8rem;
	position: relative;
	top: 0.5rem;
}

sup {
	font-size: 0.8rem;
	position: relative;
	top: -0.5rem;
}

blockquote {
	border-left: solid 4px;
	font-style: italic;
	margin: 0 0 2rem 0;
	padding: 0.5rem 0 0.5rem 2rem;
}

code {
	border: solid 2px;
	font-family: "Courier New", monospace;
	font-size: 0.9rem;
	margin: 0 0.25rem;
	padding: 0.25rem 0.65rem;
}

pre {
	-webkit-overflow-scrolling: touch;
	font-family: "Courier New", monospace;
	font-size: 0.9rem;
	margin: 0 0 2rem 0;
}

pre code {
	display: block;
	line-height: 1.75;
	padding: 1rem 1.5rem;
	overflow-x: auto;
}

hr {
	border: 0;
	border-bottom: solid 2px;
	margin: 3rem 0;
}

hr.major {
	margin: 5rem 0;
}

.align-left {
	text-align: left;
}

.align-center {
	text-align: center;
}

.align-right {
	text-align: right;
}

input,
select,
textarea {
	color: var(--text);
}

a {
	color: var(--text);
	border-bottom-color: var(--border);
}

a:hover {
	border-bottom-color: transparent;
	color: var(--accent-primary, #4f46e5) !important;
}

strong,
b {
	color: var(--text);
}

blockquote {
	border-left-color: var(--border);
}

code {
	background: rgba(99, 102, 241, 0.15);
	border-color: var(--border);
}

hr {
	border-bottom-color: var(--border);
}

/* Row */

.row {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	align-items: stretch;
}

.row>* {
	box-sizing: border-box;
}

.row.gtr-uniform>*> :last-child {
	margin-bottom: 0;
}

.row.aln-left {
	justify-content: flex-start;
}

.row.aln-center {
	justify-content: center;
}

.row.aln-right {
	justify-content: flex-end;
}

.row.aln-top {
	align-items: flex-start;
}

.row.aln-middle {
	align-items: center;
}

.row.aln-bottom {
	align-items: flex-end;
}

.row>.imp {
	order: -1;
}

.row>.col-1 {
	width: 8.33333%;
}

.row>.off-1 {
	margin-left: 8.33333%;
}

.row>.col-2 {
	width: 16.66667%;
}

.row>.off-2 {
	margin-left: 16.66667%;
}

.row>.col-3 {
	width: 25%;
}

.row>.off-3 {
	margin-left: 25%;
}

.row>.col-4 {
	width: 33.33333%;
}

.row>.off-4 {
	margin-left: 33.33333%;
}

.row>.col-5 {
	width: 41.66667%;
}

.row>.off-5 {
	margin-left: 41.66667%;
}

.row>.col-6 {
	width: 50%;
}

.row>.off-6 {
	margin-left: 50%;
}

.row>.col-7 {
	width: 58.33333%;
}

.row>.off-7 {
	margin-left: 58.33333%;
}

.row>.col-8 {
	width: 66.66667%;
}

.row>.off-8 {
	margin-left: 66.66667%;
}

.row>.col-9 {
	width: 75%;
}

.row>.off-9 {
	margin-left: 75%;
}

.row>.col-10 {
	width: 83.33333%;
}

.row>.off-10 {
	margin-left: 83.33333%;
}

.row>.col-11 {
	width: 91.66667%;
}

.row>.off-11 {
	margin-left: 91.66667%;
}

.row>.col-12 {
	width: 100%;
}

.row>.off-12 {
	margin-left: 100%;
}

.row.gtr-0 {
	margin-top: 0;
	margin-left: 0rem;
}

.row.gtr-0>* {
	padding: 0 0 0 0rem;
}

.row.gtr-0.gtr-uniform {
	margin-top: 0rem;
}

.row.gtr-0.gtr-uniform>* {
	padding-top: 0rem;
}

.row.gtr-25 {
	margin-top: 0;
	margin-left: -0.375rem;
}

.row.gtr-25>* {
	padding: 0 0 0 0.375rem;
}

.row.gtr-25.gtr-uniform {
	margin-top: -0.375rem;
}

.row.gtr-25.gtr-uniform>* {
	padding-top: 0.375rem;
}

.row.gtr-50 {
	margin-top: 0;
	margin-left: -0.75rem;
}

.row.gtr-50>* {
	padding: 0 0 0 0.75rem;
}

.row.gtr-50.gtr-uniform {
	margin-top: -0.75rem;
}

.row.gtr-50.gtr-uniform>* {
	padding-top: 0.75rem;
}

.row {
	margin-top: 0;
	margin-left: -1.5rem;
}

.row>* {
	padding: 0 0 0 1.5rem;
}

.row.gtr-uniform {
	margin-top: -1.5rem;
}

.row.gtr-uniform>* {
	padding-top: 1.5rem;
}

.row.gtr-150 {
	margin-top: 0;
	margin-left: -2.25rem;
}

.row.gtr-150>* {
	padding: 0 0 0 2.25rem;
}

.row.gtr-150.gtr-uniform {
	margin-top: -2.25rem;
}

.row.gtr-150.gtr-uniform>* {
	padding-top: 2.25rem;
}

.row.gtr-200 {
	margin-top: 0;
	margin-left: -3rem;
}

.row.gtr-200>* {
	padding: 0 0 0 3rem;
}

.row.gtr-200.gtr-uniform {
	margin-top: -3rem;
}

.row.gtr-200.gtr-uniform>* {
	padding-top: 3rem;
}

@media screen and (max-width: 1680px) {

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-xlarge {
		order: -1;
	}

	.row>.col-1-xlarge {
		width: 8.33333%;
	}

	.row>.off-1-xlarge {
		margin-left: 8.33333%;
	}

	.row>.col-2-xlarge {
		width: 16.66667%;
	}

	.row>.off-2-xlarge {
		margin-left: 16.66667%;
	}

	.row>.col-3-xlarge {
		width: 25%;
	}

	.row>.off-3-xlarge {
		margin-left: 25%;
	}

	.row>.col-4-xlarge {
		width: 33.33333%;
	}

	.row>.off-4-xlarge {
		margin-left: 33.33333%;
	}

	.row>.col-5-xlarge {
		width: 41.66667%;
	}

	.row>.off-5-xlarge {
		margin-left: 41.66667%;
	}

	.row>.col-6-xlarge {
		width: 50%;
	}

	.row>.off-6-xlarge {
		margin-left: 50%;
	}

	.row>.col-7-xlarge {
		width: 58.33333%;
	}

	.row>.off-7-xlarge {
		margin-left: 58.33333%;
	}

	.row>.col-8-xlarge {
		width: 66.66667%;
	}

	.row>.off-8-xlarge {
		margin-left: 66.66667%;
	}

	.row>.col-9-xlarge {
		width: 75%;
	}

	.row>.off-9-xlarge {
		margin-left: 75%;
	}

	.row>.col-10-xlarge {
		width: 83.33333%;
	}

	.row>.off-10-xlarge {
		margin-left: 83.33333%;
	}

	.row>.col-11-xlarge {
		width: 91.66667%;
	}

	.row>.off-11-xlarge {
		margin-left: 91.66667%;
	}

	.row>.col-12-xlarge {
		width: 100%;
	}

	.row>.off-12-xlarge {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0;
		margin-left: 0rem;
	}

	.row.gtr-0>* {
		padding: 0 0 0 0rem;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0rem;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0rem;
	}

	.row.gtr-25 {
		margin-top: 0;
		margin-left: -0.375rem;
	}

	.row.gtr-25>* {
		padding: 0 0 0 0.375rem;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -0.375rem;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 0.375rem;
	}

	.row.gtr-50 {
		margin-top: 0;
		margin-left: -0.75rem;
	}

	.row.gtr-50>* {
		padding: 0 0 0 0.75rem;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -0.75rem;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 0.75rem;
	}

	.row {
		margin-top: 0;
		margin-left: -1.5rem;
	}

	.row>* {
		padding: 0 0 0 1.5rem;
	}

	.row.gtr-uniform {
		margin-top: -1.5rem;
	}

	.row.gtr-uniform>* {
		padding-top: 1.5rem;
	}

	.row.gtr-150 {
		margin-top: 0;
		margin-left: -2.25rem;
	}

	.row.gtr-150>* {
		padding: 0 0 0 2.25rem;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -2.25rem;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 2.25rem;
	}

	.row.gtr-200 {
		margin-top: 0;
		margin-left: -3rem;
	}

	.row.gtr-200>* {
		padding: 0 0 0 3rem;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -3rem;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 3rem;
	}

}

@media screen and (max-width: 1280px) {

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-large {
		order: -1;
	}

	.row>.col-1-large {
		width: 8.33333%;
	}

	.row>.off-1-large {
		margin-left: 8.33333%;
	}

	.row>.col-2-large {
		width: 16.66667%;
	}

	.row>.off-2-large {
		margin-left: 16.66667%;
	}

	.row>.col-3-large {
		width: 25%;
	}

	.row>.off-3-large {
		margin-left: 25%;
	}

	.row>.col-4-large {
		width: 33.33333%;
	}

	.row>.off-4-large {
		margin-left: 33.33333%;
	}

	.row>.col-5-large {
		width: 41.66667%;
	}

	.row>.off-5-large {
		margin-left: 41.66667%;
	}

	.row>.col-6-large {
		width: 50%;
	}

	.row>.off-6-large {
		margin-left: 50%;
	}

	.row>.col-7-large {
		width: 58.33333%;
	}

	.row>.off-7-large {
		margin-left: 58.33333%;
	}

	.row>.col-8-large {
		width: 66.66667%;
	}

	.row>.off-8-large {
		margin-left: 66.66667%;
	}

	.row>.col-9-large {
		width: 75%;
	}

	.row>.off-9-large {
		margin-left: 75%;
	}

	.row>.col-10-large {
		width: 83.33333%;
	}

	.row>.off-10-large {
		margin-left: 83.33333%;
	}

	.row>.col-11-large {
		width: 91.66667%;
	}

	.row>.off-11-large {
		margin-left: 91.66667%;
	}

	.row>.col-12-large {
		width: 100%;
	}

	.row>.off-12-large {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0;
		margin-left: 0rem;
	}

	.row.gtr-0>* {
		padding: 0 0 0 0rem;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0rem;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0rem;
	}

	.row.gtr-25 {
		margin-top: 0;
		margin-left: -0.375rem;
	}

	.row.gtr-25>* {
		padding: 0 0 0 0.375rem;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -0.375rem;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 0.375rem;
	}

	.row.gtr-50 {
		margin-top: 0;
		margin-left: -0.75rem;
	}

	.row.gtr-50>* {
		padding: 0 0 0 0.75rem;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -0.75rem;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 0.75rem;
	}

	.row {
		margin-top: 0;
		margin-left: -1.5rem;
	}

	.row>* {
		padding: 0 0 0 1.5rem;
	}

	.row.gtr-uniform {
		margin-top: -1.5rem;
	}

	.row.gtr-uniform>* {
		padding-top: 1.5rem;
	}

	.row.gtr-150 {
		margin-top: 0;
		margin-left: -2.25rem;
	}

	.row.gtr-150>* {
		padding: 0 0 0 2.25rem;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -2.25rem;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 2.25rem;
	}

	.row.gtr-200 {
		margin-top: 0;
		margin-left: -3rem;
	}

	.row.gtr-200>* {
		padding: 0 0 0 3rem;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -3rem;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 3rem;
	}

}

@media screen and (max-width: 980px) {

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-medium {
		order: -1;
	}

	.row>.col-1-medium {
		width: 8.33333%;
	}

	.row>.off-1-medium {
		margin-left: 8.33333%;
	}

	.row>.col-2-medium {
		width: 16.66667%;
	}

	.row>.off-2-medium {
		margin-left: 16.66667%;
	}

	.row>.col-3-medium {
		width: 25%;
	}

	.row>.off-3-medium {
		margin-left: 25%;
	}

	.row>.col-4-medium {
		width: 33.33333%;
	}

	.row>.off-4-medium {
		margin-left: 33.33333%;
	}

	.row>.col-5-medium {
		width: 41.66667%;
	}

	.row>.off-5-medium {
		margin-left: 41.66667%;
	}

	.row>.col-6-medium {
		width: 50%;
	}

	.row>.off-6-medium {
		margin-left: 50%;
	}

	.row>.col-7-medium {
		width: 58.33333%;
	}

	.row>.off-7-medium {
		margin-left: 58.33333%;
	}

	.row>.col-8-medium {
		width: 66.66667%;
	}

	.row>.off-8-medium {
		margin-left: 66.66667%;
	}

	.row>.col-9-medium {
		width: 75%;
	}

	.row>.off-9-medium {
		margin-left: 75%;
	}

	.row>.col-10-medium {
		width: 83.33333%;
	}

	.row>.off-10-medium {
		margin-left: 83.33333%;
	}

	.row>.col-11-medium {
		width: 91.66667%;
	}

	.row>.off-11-medium {
		margin-left: 91.66667%;
	}

	.row>.col-12-medium {
		width: 100%;
	}

	.row>.off-12-medium {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0;
		margin-left: 0rem;
	}

	.row.gtr-0>* {
		padding: 0 0 0 0rem;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0rem;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0rem;
	}

	.row.gtr-25 {
		margin-top: 0;
		margin-left: -0.375rem;
	}

	.row.gtr-25>* {
		padding: 0 0 0 0.375rem;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -0.375rem;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 0.375rem;
	}

	.row.gtr-50 {
		margin-top: 0;
		margin-left: -0.75rem;
	}

	.row.gtr-50>* {
		padding: 0 0 0 0.75rem;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -0.75rem;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 0.75rem;
	}

	.row {
		margin-top: 0;
		margin-left: -1.5rem;
	}

	.row>* {
		padding: 0 0 0 1.5rem;
	}

	.row.gtr-uniform {
		margin-top: -1.5rem;
	}

	.row.gtr-uniform>* {
		padding-top: 1.5rem;
	}

	.row.gtr-150 {
		margin-top: 0;
		margin-left: -2.25rem;
	}

	.row.gtr-150>* {
		padding: 0 0 0 2.25rem;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -2.25rem;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 2.25rem;
	}

	.row.gtr-200 {
		margin-top: 0;
		margin-left: -3rem;
	}

	.row.gtr-200>* {
		padding: 0 0 0 3rem;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -3rem;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 3rem;
	}

	.dashboard {
		display: flex;
		width: 100%;
		max-width: 1240px;
		margin: 0 auto;
		padding: 5px;
		background-color: var(--app-bg);
		border-radius: 8px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}

	.dash-info {
		font-size: 12px;
		max-width: 500px;
		float: none;
		text-align: center;
		gap: 10px;
		/* Espacio entre cada boton */
	}

	.dash-menu {
		margin-right: 10px;
		float: left;
		min-width: 50px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		background-color: var(--surface-bg);
		padding: 5px;
		border-radius: 8px;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	}

	.dash-menu a {
		text-align: center;
		font-size: 14px;
		margin-bottom: 5px;
	}

	.button {
		max-width: 200px;
		font-size: 16px;
		min-height: auto;
		margin: 5px;
	}

}

@media screen and (max-width: 736px) {

	#rotating-message {
		color: rgb(45, 112, 0);
		background-color: rgba(255, 217, 0, 0.911);
		font-size: 0.9rem;
		text-align: center;
		padding: 6px;
		opacity: 0;
		transition: opacity 1s ease-in-out;
	}

	.dashboard {
		display: flex;
		width: 100%;
		max-width: 1240px;
		margin: 0 auto;
		padding: 3px;
		background-color: var(--app-bg);
		border-radius: 8px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}

	.dash-info {
		font-size: 12px;
		max-width: 500px;
		float: none;
		text-align: center;
		gap: 10px;
		/* Espacio entre cada boton */
	}

	.dash-menu {
		margin-right: 10px;
		float: left;
		min-width: 150px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		background-color: var(--surface-bg);
		padding: 3px;
		border-radius: 8px;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	}

	.dash-menu a {
		text-align: center;
		font-size: 14px;
		margin-bottom: 3px;
	}

	.button {
		max-width: 150px;
		font-size: 11px;
		min-height: auto;
		margin: 2px;
	}

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-small {
		order: -1;
	}

	.row>.col-1-small {
		width: 8.33333%;
	}

	.row>.off-1-small {
		margin-left: 8.33333%;
	}

	.row>.col-2-small {
		width: 16.66667%;
	}

	.row>.off-2-small {
		margin-left: 16.66667%;
	}

	.row>.col-3-small {
		width: 25%;
	}

	.row>.off-3-small {
		margin-left: 25%;
	}

	.row>.col-4-small {
		width: 33.33333%;
	}

	.row>.off-4-small {
		margin-left: 33.33333%;
	}

	.row>.col-5-small {
		width: 41.66667%;
	}

	.row>.off-5-small {
		margin-left: 41.66667%;
	}

	.row>.col-6-small {
		width: 50%;
	}

	.row>.off-6-small {
		margin-left: 50%;
	}

	.row>.col-7-small {
		width: 58.33333%;
	}

	.row>.off-7-small {
		margin-left: 58.33333%;
	}

	.row>.col-8-small {
		width: 66.66667%;
	}

	.row>.off-8-small {
		margin-left: 66.66667%;
	}

	.row>.col-9-small {
		width: 75%;
	}

	.row>.off-9-small {
		margin-left: 75%;
	}

	.row>.col-10-small {
		width: 83.33333%;
	}

	.row>.off-10-small {
		margin-left: 83.33333%;
	}

	.row>.col-11-small {
		width: 91.66667%;
	}

	.row>.off-11-small {
		margin-left: 91.66667%;
	}

	.row>.col-12-small {
		width: 100%;
	}

	.row>.off-12-small {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0;
		margin-left: 0rem;
	}

	.row.gtr-0>* {
		padding: 0 0 0 0rem;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0rem;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0rem;
	}

	.row.gtr-25 {
		margin-top: 0;
		margin-left: -0.375rem;
	}

	.row.gtr-25>* {
		padding: 0 0 0 0.375rem;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -0.375rem;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 0.375rem;
	}

	.row.gtr-50 {
		margin-top: 0;
		margin-left: -0.75rem;
	}

	.row.gtr-50>* {
		padding: 0 0 0 0.75rem;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -0.75rem;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 0.75rem;
	}

	.row {
		margin-top: 0;
		margin-left: -1.5rem;
	}

	.row>* {
		padding: 0 0 0 1.5rem;
	}

	.row.gtr-uniform {
		margin-top: -1.5rem;
	}

	.row.gtr-uniform>* {
		padding-top: 1.5rem;
	}

	.row.gtr-150 {
		margin-top: 0;
		margin-left: -2.25rem;
	}

	.row.gtr-150>* {
		padding: 0 0 0 2.25rem;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -2.25rem;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 2.25rem;
	}

	.row.gtr-200 {
		margin-top: 0;
		margin-left: -3rem;
	}

	.row.gtr-200>* {
		padding: 0 0 0 3rem;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -3rem;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 3rem;
	}

}

@media screen and (max-width: 480px) {

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-xsmall {
		order: -1;
	}

	.row>.col-1-xsmall {
		width: 8.33333%;
	}

	.row>.off-1-xsmall {
		margin-left: 8.33333%;
	}

	.row>.col-2-xsmall {
		width: 16.66667%;
	}

	.row>.off-2-xsmall {
		margin-left: 16.66667%;
	}

	.row>.col-3-xsmall {
		width: 25%;
	}

	.row>.off-3-xsmall {
		margin-left: 25%;
	}

	.row>.col-4-xsmall {
		width: 33.33333%;
	}

	.row>.off-4-xsmall {
		margin-left: 33.33333%;
	}

	.row>.col-5-xsmall {
		width: 41.66667%;
	}

	.row>.off-5-xsmall {
		margin-left: 41.66667%;
	}

	.row>.col-6-xsmall {
		width: 50%;
	}

	.row>.off-6-xsmall {
		margin-left: 50%;
	}

	.row>.col-7-xsmall {
		width: 58.33333%;
	}

	.row>.off-7-xsmall {
		margin-left: 58.33333%;
	}

	.row>.col-8-xsmall {
		width: 66.66667%;
	}

	.row>.off-8-xsmall {
		margin-left: 66.66667%;
	}

	.row>.col-9-xsmall {
		width: 75%;
	}

	.row>.off-9-xsmall {
		margin-left: 75%;
	}

	.row>.col-10-xsmall {
		width: 83.33333%;
	}

	.row>.off-10-xsmall {
		margin-left: 83.33333%;
	}

	.row>.col-11-xsmall {
		width: 91.66667%;
	}

	.row>.off-11-xsmall {
		margin-left: 91.66667%;
	}

	.row>.col-12-xsmall {
		width: 100%;
	}

	.row>.off-12-xsmall {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0;
		margin-left: 0rem;
	}

	.row.gtr-0>* {
		padding: 0 0 0 0rem;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0rem;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0rem;
	}

	.row.gtr-25 {
		margin-top: 0;
		margin-left: -0.375rem;
	}

	.row.gtr-25>* {
		padding: 0 0 0 0.375rem;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -0.375rem;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 0.375rem;
	}

	.row.gtr-50 {
		margin-top: 0;
		margin-left: -0.75rem;
	}

	.row.gtr-50>* {
		padding: 0 0 0 0.75rem;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -0.75rem;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 0.75rem;
	}

	.row {
		margin-top: 0;
		margin-left: -1.5rem;
	}

	.row>* {
		padding: 0 0 0 1.5rem;
	}

	.row.gtr-uniform {
		margin-top: -1.5rem;
	}

	.row.gtr-uniform>* {
		padding-top: 1.5rem;
	}

	.row.gtr-150 {
		margin-top: 0;
		margin-left: -2.25rem;
	}

	.row.gtr-150>* {
		padding: 0 0 0 2.25rem;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -2.25rem;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 2.25rem;
	}

	.row.gtr-200 {
		margin-top: 0;
		margin-left: -3rem;
	}

	.row.gtr-200>* {
		padding: 0 0 0 3rem;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -3rem;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 3rem;
	}

}

@media screen and (max-width: 360px) {

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-xxsmall {
		order: -1;
	}

	.row>.col-1-xxsmall {
		width: 8.33333%;
	}

	.row>.off-1-xxsmall {
		margin-left: 8.33333%;
	}

	.row>.col-2-xxsmall {
		width: 16.66667%;
	}

	.row>.off-2-xxsmall {
		margin-left: 16.66667%;
	}

	.row>.col-3-xxsmall {
		width: 25%;
	}

	.row>.off-3-xxsmall {
		margin-left: 25%;
	}

	.row>.col-4-xxsmall {
		width: 33.33333%;
	}

	.row>.off-4-xxsmall {
		margin-left: 33.33333%;
	}

	.row>.col-5-xxsmall {
		width: 41.66667%;
	}

	.row>.off-5-xxsmall {
		margin-left: 41.66667%;
	}

	.row>.col-6-xxsmall {
		width: 50%;
	}

	.row>.off-6-xxsmall {
		margin-left: 50%;
	}

	.row>.col-7-xxsmall {
		width: 58.33333%;
	}

	.row>.off-7-xxsmall {
		margin-left: 58.33333%;
	}

	.row>.col-8-xxsmall {
		width: 66.66667%;
	}

	.row>.off-8-xxsmall {
		margin-left: 66.66667%;
	}

	.row>.col-9-xxsmall {
		width: 75%;
	}

	.row>.off-9-xxsmall {
		margin-left: 75%;
	}

	.row>.col-10-xxsmall {
		width: 83.33333%;
	}

	.row>.off-10-xxsmall {
		margin-left: 83.33333%;
	}

	.row>.col-11-xxsmall {
		width: 91.66667%;
	}

	.row>.off-11-xxsmall {
		margin-left: 91.66667%;
	}

	.row>.col-12-xxsmall {
		width: 100%;
	}

	.row>.off-12-xxsmall {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0;
		margin-left: 0rem;
	}

	.row.gtr-0>* {
		padding: 0 0 0 0rem;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0rem;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0rem;
	}

	.row.gtr-25 {
		margin-top: 0;
		margin-left: -0.375rem;
	}

	.row.gtr-25>* {
		padding: 0 0 0 0.375rem;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -0.375rem;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 0.375rem;
	}

	.row.gtr-50 {
		margin-top: 0;
		margin-left: -0.75rem;
	}

	.row.gtr-50>* {
		padding: 0 0 0 0.75rem;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -0.75rem;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 0.75rem;
	}

	.row {
		margin-top: 0;
		margin-left: -1.5rem;
	}

	.row>* {
		padding: 0 0 0 1.5rem;
	}

	.row.gtr-uniform {
		margin-top: -1.5rem;
	}

	.row.gtr-uniform>* {
		padding-top: 1.5rem;
	}

	.row.gtr-150 {
		margin-top: 0;
		margin-left: -2.25rem;
	}

	.row.gtr-150>* {
		padding: 0 0 0 2.25rem;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -2.25rem;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 2.25rem;
	}

	.row.gtr-200 {
		margin-top: 0;
		margin-left: -3rem;
	}

	.row.gtr-200>* {
		padding: 0 0 0 3rem;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -3rem;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 3rem;
	}

}

/* Box */

.box {
	border: solid 2px;
	margin-bottom: 2rem;
	padding: 1.5rem;
}

.box> :last-child,
.box> :last-child> :last-child,
.box> :last-child> :last-child> :last-child {
	margin-bottom: 0;
}

.box.alt {
	border: 0;
	border-radius: 0;
	padding: 0;
}

.box {
	border-color: var(--border);
}

/* Button */

input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	-moz-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	display: inline-block;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.075em;
	height: 3rem;
	line-height: 3rem;
	padding: 0 2rem;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

input[type="submit"].icon:before,
input[type="reset"].icon:before,
input[type="button"].icon:before,
button.icon:before,
.button.icon:before {
	margin-right: 0.5rem;
}

input[type="submit"].icon.solo,
input[type="reset"].icon.solo,
input[type="button"].icon.solo,
button.icon.solo,
.button.icon.solo {
	position: relative;
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
	border-radius: 4rem;
	text-indent: 4rem;
	overflow: hidden;
	padding: 0;
	white-space: nowrap;
}

input[type="submit"].icon.solo:before,
input[type="reset"].icon.solo:before,
input[type="button"].icon.solo:before,
button.icon.solo:before,
.button.icon.solo:before {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: inherit;
	height: inherit;
	line-height: inherit;
	font-size: 1.25rem;
	margin-right: 0;
	text-align: center;
	text-indent: 0;
}

input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit,
button.fit,
.button.fit {
	width: 100%;
}

input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small,
button.small,
.button.small {
	font-size: 0.7rem;
	height: 2.5rem;
	line-height: 2.5rem;
	padding: 0 1.5rem;
}

input[type="submit"].large,
input[type="reset"].large,
input[type="button"].large,
button.large,
.button.large {
	font-size: 0.9rem;
	height: 3.5rem;
	line-height: 3.5rem;
	padding: 0 2.75rem;
}

@media screen and (max-width: 980px) {

	input[type="submit"],
	input[type="reset"],
	input[type="button"],
	button,
	.button {
		font-size: 0.9rem;
		height: 3.25rem;
		line-height: 3.25rem;
	}

	input[type="submit"].large,
	input[type="reset"].large,
	input[type="button"].large,
	button.large,
	.button.large {
		font-size: 1rem;
		height: 3.75rem;
		line-height: 3.75rem;
	}

	ul.actions.special li .button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		height: auto;
		line-height: 1.4;
		white-space: normal;
		padding: 0.75rem 1.5rem;
	}

	.subscription-card .button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		white-space: normal;
		padding: 0.85rem 1.5rem;
	}

}

@media screen and (max-width: 736px) {

	ul.actions.special {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
	}

	ul.actions.special li {
		width: 100%;
		padding: 0;
	}

	ul.actions.special li .button {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		max-width: 100%;
		padding: 0.85rem 1.25rem;
	}

	.subscription-card .button {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		max-width: 100%;
		padding: 0.85rem 1.25rem;
	}

}

@media screen and (max-width: 480px) {

	ul.actions.special li .button {
		padding: 0.75rem 1rem;
	}

	.subscription-card .button {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0.75rem 1rem;
	}

}

input[type="submit"].disabled,
input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="button"].disabled,
input[type="button"]:disabled,
button.disabled,
button:disabled,
.button.disabled,
.button:disabled {
	pointer-events: none;
	opacity: 0.25;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
	background-color: transparent;
	box-shadow: inset 0 0 0 2px var(--button-outline-border);
	color: var(--button-outline-text) !important;
}

html[data-theme="dark"] input[type="submit"],
html[data-theme="dark"] input[type="reset"],
html[data-theme="dark"] input[type="button"],
html[data-theme="dark"] button,
html[data-theme="dark"] .button {
	box-shadow: inset 0 0 0 2px var(--button-outline-border) !important;
	color: var(--button-outline-text) !important;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover {
	box-shadow: inset 0 0 0 2px var(--button-outline-hover-border);
	color: var(--button-outline-hover-text) !important;
}

html[data-theme="dark"] input[type="submit"]:hover,
html[data-theme="dark"] input[type="reset"]:hover,
html[data-theme="dark"] input[type="button"]:hover,
html[data-theme="dark"] button:hover,
html[data-theme="dark"] .button:hover {
	box-shadow: inset 0 0 0 2px var(--button-outline-hover-border) !important;
	color: var(--button-outline-hover-text) !important;
}

input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
button.primary,
.button.primary {
	background-color: var(--button-bg);
	box-shadow: none;
	color: var(--button-text) !important;
}

html[data-theme="dark"] input[type="submit"].primary,
html[data-theme="dark"] input[type="reset"].primary,
html[data-theme="dark"] input[type="button"].primary,
html[data-theme="dark"] button.primary,
html[data-theme="dark"] .button.primary {
	background-color: var(--button-bg) !important;
	box-shadow: none !important;
	color: var(--button-text) !important;
}

input[type="submit"].primary:hover,
input[type="reset"].primary:hover,
input[type="button"].primary:hover,
button.primary:hover,
.button.primary:hover {
	background-color: var(--button-hover-bg) !important;
}

/* Form */

form {
	margin: 0 0 2rem 0;
}

form> :last-child {
	margin-bottom: 0;
}

form>.fields {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: calc(100% + 3rem);
	margin: -1.5rem 0 2rem -1.5rem;
}

form>.fields>.field {
	-moz-flex-grow: 0;
	-webkit-flex-grow: 0;
	-ms-flex-grow: 0;
	flex-grow: 0;
	-moz-flex-shrink: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	padding: 1.5rem 0 0 1.5rem;
	width: calc(100% - 1.5rem);
}

form>.fields>.field.half {
	width: calc(50% - 0.75rem);
}

form>.fields>.field.third {
	width: calc(100%/3 - 0.5rem);
}

form>.fields>.field.quarter {
	width: calc(25% - 0.375rem);
}

@media screen and (max-width: 480px) {

	form>.fields {
		width: calc(100% + 3rem);
		margin: -1.5rem 0 2rem -1.5rem;
	}

	form>.fields>.field {
		padding: 1.5rem 0 0 1.5rem;
		width: calc(100% - 1.5rem);
	}

	form>.fields>.field.half {
		width: calc(100% - 1.5rem);
	}

	form>.fields>.field.third {
		width: calc(100% - 1.5rem);
	}

	form>.fields>.field.quarter {
		width: calc(100% - 1.5rem);
	}

}

label {
	display: block;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-weight: 900;
	line-height: 1.5;
	letter-spacing: 0.075em;
	font-size: 0.8rem;
	text-transform: uppercase;
	margin: 0 0 0.75rem 0;
}

@media screen and (max-width: 980px) {

	label {
		font-size: 0.9rem;
	}

}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	background: transparent;
	border-radius: 0;
	border: solid 2px;
	color: inherit;
	display: block;
	outline: 0;
	padding: 0 1rem;
	text-decoration: none;
	width: 100%;
}

input[type="text"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
select:invalid,
textarea:invalid {
	box-shadow: none;
}

select {
	background-size: 1.25rem;
	background-repeat: no-repeat;
	background-position: calc(100% - 1rem) center;
	height: 3rem;
	padding-right: 3rem;
	text-overflow: ellipsis;
}

select:focus::-ms-value {
	background-color: transparent;
}

select::-ms-expand {
	display: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
	height: 3rem;
}

textarea {
	padding: 0.75rem 1rem;
}

input[type="checkbox"],
input[type="radio"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: block;
	float: left;
	margin-right: -2rem;
	opacity: 0;
	width: 1rem;
	z-index: -1;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
	text-decoration: none;
	cursor: pointer;
	display: inline-block;
	font-size: 1rem;
	letter-spacing: 0;
	font-family: "Merriweather", Georgia, serif;
	text-transform: none;
	font-weight: 300;
	padding-left: 2.8rem;
	padding-right: 1rem;
	position: relative;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
	border-radius: 0;
	border: solid 2px;
	content: '';
	display: inline-block;
	font-size: 0.8rem;
	height: 1.8rem;
	left: 0;
	line-height: 1.65rem;
	position: absolute;
	text-align: center;
	top: -0.125rem;
	width: 1.8rem;
}

input[type="checkbox"]:checked+label:before,
input[type="radio"]:checked+label:before {
	content: '\f00c';
}

input[type="checkbox"]+label:before {
	border-radius: 0;
}

input[type="radio"]+label:before {
	border-radius: 100%;
}

::-webkit-input-placeholder {
	opacity: 1.0;
}

:-moz-placeholder {
	opacity: 1.0;
}

::-moz-placeholder {
	opacity: 1.0;
}

:-ms-input-placeholder {
	opacity: 1.0;
}

label {
	color: var(--text);
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
	border-color: var(--border);
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
	border-color: var(--accent-primary, #4f46e5);
}

select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%234f46e5' /%3E%3C/svg%3E");
}

select option {
	background-color: #ffffff;
	color: var(--text);
}

.select-wrapper:before {
	color: var(--border);
}

input[type="checkbox"]+label,
input[type="radio"]+label {
	color: var(--text);
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
	border-color: var(--border);
}

input[type="checkbox"]:checked+label:before,
input[type="radio"]:checked+label:before {
	background-color: var(--text);
	border-color: var(--text);
	color: #ffffff;
}

input[type="checkbox"]:focus+label:before,
input[type="radio"]:focus+label:before {
	border-color: var(--accent-primary, #4f46e5);
}

::-webkit-input-placeholder {
	color: var(--muted) !important;
}

:-moz-placeholder {
	color: var(--muted) !important;
}

::-moz-placeholder {
	color: var(--muted) !important;
}

:-ms-input-placeholder {
	color: var(--muted) !important;
}

.formerize-placeholder {
	color: var(--muted) !important;
}

/* Icon */

.icon {
	text-decoration: none;
	border-bottom: none;
	position: relative;
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
}

.icon>.label {
	display: none;
}

.icon:before {
	line-height: inherit;
}

.icon.solid:before {
	font-weight: 900;
}

.icon.brands:before {
	font-family: 'Font Awesome 5 Brands';
}

/* Image */

.image {
	border: 0;
	display: inline-block;
	position: relative;
}

.image img {
	display: block;
}

.image.left,
.image.right {
	max-width: 40%;
}

.image.left img,
.image.right img {
	width: 100%;
}

.image.left {
	float: left;
	margin: 0 2rem 2rem 0;
	top: 0.75rem;
}

.image.right {
	float: right;
	margin: 0 0 2rem 2rem;
	top: 0.75rem;
}

.image.fit {
	display: block;
	margin: 2.5rem 0;
	width: 100%;
}

.image.fit:first-child {
	margin-top: 0;
}

.image.fit img {
	width: auto;
	min-width: 180px;
	height: 240px;
	object-fit: cover;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.image.main {
	display: block;
	margin: 4rem 0;
	width: 100%;
}

.image.main:first-child {
	margin-top: 0;
}

.image.main img {
	width: 100%;
}

@media screen and (max-width: 736px) {

	.image.fit {
		margin: 2rem 0;
		max-width: 98vw;
		min-width: 80px;
	}

	.image.fit img {
		max-width: 98vw;
		min-width: 80px;
		max-height: 180px;
		min-height: 60px;
	}

	.image.main {
		margin: 2rem 0;
	}

}

a.image {
	overflow: hidden;
}

a.image img {
	-moz-transition: -moz-transform 0.2s ease-out;
	-webkit-transition: -webkit-transform 0.2s ease-out;
	-ms-transition: -ms-transform 0.2s ease-out;
	transition: transform 0.2s ease-out;
}

a.image:hover img {
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

/* Actions */

ul.actions {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	cursor: default;
	list-style: none;
	margin-left: -1rem;
	padding-left: 0;
}

ul.actions li {
	padding: 0 0 0 1rem;
	vertical-align: middle;
}

ul.actions.special {
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center !important;
	width: 100%;
	margin-left: 0;
}

ul.actions.special li:first-child {
	padding-left: 0;
}

ul.actions.stacked {
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-left: 0;
}

ul.actions.stacked li {
	padding: 1.3rem 0 0 0;
}

ul.actions.stacked li:first-child {
	padding-top: 0;
}

ul.actions.fit {
	width: calc(100% + 1rem);
}

ul.actions.fit li {
	-moz-flex-grow: 1;
	-webkit-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
	-moz-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-shrink: 1;
	flex-shrink: 1;
	width: 100%;
}

ul.actions.fit li>* {
	width: 100%;
}

ul.actions.fit.stacked {
	width: 100%;
}

@media screen and (max-width: 480px) {

	ul.actions:not(.fixed) {
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-left: 0;
		width: 100% !important;
	}

	ul.actions:not(.fixed) li {
		-moz-flex-grow: 1;
		-webkit-flex-grow: 1;
		-ms-flex-grow: 1;
		flex-grow: 1;
		-moz-flex-shrink: 1;
		-webkit-flex-shrink: 1;
		-ms-flex-shrink: 1;
		flex-shrink: 1;
		padding: 1rem 0 0 0;
		text-align: center;
		width: 100%;
	}

	ul.actions:not(.fixed) li>* {
		width: 100%;
	}

	ul.actions:not(.fixed) li:first-child {
		padding-top: 0;
	}

	ul.actions:not(.fixed) li .button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		width: 100%;
		white-space: normal;
		line-height: 1.4;
		padding: 0.75rem 1rem;
		word-break: break-word;
	}

	ul.actions:not(.fixed) li .button.icon:before {
		margin-left: -0.5rem;
	}
}


/* Icons */

ul.icons {
	cursor: default;
	list-style: none;
	padding-left: 0;
}

ul.icons li {
	display: inline-block;
	padding: 0 0.5rem 0 0;
	vertical-align: middle;
}

ul.icons li:last-child {
	padding-right: 0;
}

ul.icons li .icon:before {
	width: 2.25rem;
	height: 2.25rem;
	line-height: 2.25rem;
	display: inline-block;
	text-align: center;
	border-radius: 100%;
	font-size: 1.25rem;
}

ul.icons.alt li .icon:before {
	-moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	font-size: 1rem;
}

/* List */

ol {
	list-style: decimal;
	margin: 0 0 2rem 0;
	padding-left: 1.25rem;
}

ol li {
	padding-left: 0.25rem;
}

ul {
	list-style: disc;
	margin: 0 0 2rem 0;
	padding-left: 1rem;
}

ul li {
	padding-left: 0.5rem;
}

ul.divided {
	list-style: none;
	padding-left: 0;
}

ul.divided li {
	border-top: solid 1px;
	padding: 0.5rem 0;
}

ul.divided li:first-child {
	border-top: 0;
	padding-top: 0;
}

dl {
	margin: 0 0 2rem 0;
}

dl dt {
	display: block;
	font-weight: 600;
	margin: 0 0 1rem 0;
}

dl dd {
	margin-left: 2rem;
}

ul.divided li {
	border-top-color: var(--border);
}

ul.icons li a.icon:hover:before {
	color: var(--accent-primary, #4f46e5);
}

ul.icons.alt li .icon:before {
	box-shadow: inset 0 0 0 2px var(--border);
}

ul.icons.alt li a.icon:hover:before {
	box-shadow: inset 0 0 0 2px var(--accent-primary, #4f46e5);
}

/* Section/Article */

section.special,
article.special {
	text-align: center;
}

header {
	cursor: default;
}

header>.date {
	display: block;
	font-size: 0.8rem;
	height: 1;
	margin: 0 0 1rem 0;
	position: relative;
}

header>p {
	font-style: italic;
}

header>h1+p {
	font-size: 1.1rem;
	margin-top: -0.5rem;
	line-height: 2;
}

header>h2+p {
	font-size: 1rem;
	margin-top: -0.75rem;
}

header>h3+p {
	font-size: 0.9rem;
	margin-top: -0.75rem;
}

header>h4+p {
	font-size: 0.8rem;
	margin-top: -0.75rem;
}

header.major {
	margin: 0 0 4rem 0;
	text-align: center;
}

header.major> :last-child {
	margin-bottom: 0;
}

header.major>p {
	margin-top: 0;
	text-align: center;
}

header.major>.date {
	font-size: 1rem;
	margin: 0 0 4rem 0;
}

header.major>.date:before,
header.major>.date:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	width: calc(50% - 6rem);
	border-top: solid 2px;
}

header.major>.date:before {
	left: 0;
}

header.major>.date:after {
	right: 0;
}

@media screen and (max-width: 980px) {

	header br {
		display: none;
	}

}

@media screen and (max-width: 736px) {

	header.major {
		margin: 0 0 2rem 0;
	}

}

header.major .date:before,
header.major .date:after {
	border-top-color: var(--border);
}

/* Table */

.table-wrapper {
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
}

table {
	margin: 0 0 2rem 0;
	width: 100%;
}

table tbody tr {
	border: solid 1px;
	border-left: 0;
	border-right: 0;
}

table td {
	padding: 0.75rem 0.75rem;
}

table th {
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.075em;
	line-height: 1.5;
	padding: 0 0.75rem 0.75rem 0.75rem;
	text-align: left;
	text-transform: uppercase;
}

@media screen and (max-width: 980px) {

	table th {
		font-size: 0.9rem;
	}

}

table thead {
	border-bottom: solid 2px;
}

table tfoot {
	border-top: solid 2px;
}

table.alt {
	border-collapse: separate;
}

table.alt tbody tr td {
	border: solid 1px;
	border-left-width: 0;
	border-top-width: 0;
}

table.alt tbody tr td:first-child {
	border-left-width: 1px;
}

table.alt tbody tr:first-child td {
	border-top-width: 1px;
}

table.alt thead {
	border-bottom: 0;
}

table.alt tfoot {
	border-top: 0;
}

table tbody tr {
	border-color: var(--border);
}

table tbody tr:nth-child(2n + 1) {
	background-color: rgba(220, 220, 220, 0.25);
}

table th {
	color: var(--text);
}

table thead {
	border-bottom-color: var(--border);
}

table tfoot {
	border-top-color: var(--border);
}

table.alt tbody tr td {
	border-color: var(--border);
}

/* Pagination */

.pagination {
	display: -moz-inline-flex;
	display: -webkit-inline-flex;
	display: -ms-inline-flex;
	display: inline-flex;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: default;
	list-style: none;
	margin: 0 0 2rem 2px;
	padding: 0;
}

.pagination a,
.pagination span {
	-moz-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
	border: solid 2px;
	display: inline-block;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 0.8rem;
	font-weight: 900;
	height: 3rem;
	letter-spacing: 0.075em;
	line-height: calc(3rem - 4px);
	margin-left: -2px;
	min-width: 3rem;
	position: relative;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.pagination .next,
.pagination .previous {
	text-decoration: none;
	padding: 0 1.75rem;
}

.pagination .next:before,
.pagination .previous:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

.pagination .next:before,
.pagination .previous:before {
	display: inline-block;
	color: inherit !important;
	line-height: inherit;
}

.pagination .previous:before {
	content: '\f104';
	margin-right: 0.9375em;
}

.pagination .next:before {
	content: '\f105';
	float: right;
	margin-left: 0.9375em;
}

@media screen and (max-width: 980px) {

	.pagination a,
	.pagination span {
		font-size: 0.9rem;
	}

}

@media screen and (max-width: 480px) {

	.pagination .page,
	.pagination .extra {
		display: none;
	}

}

.pagination a,
.pagination span {
	border-color: var(--border);
}

.pagination a {
	color: var(--text) !important;
}

.pagination a:hover {
	color: var(--accent-primary, #4f46e5) !important;
	border-color: var(--accent-primary, #4f46e5);
	z-index: 1;
}

.pagination a:hover+a,
.pagination a:hover+span {
	border-left-color: var(--accent-primary, #4f46e5);
}

.pagination a.active {
	background-color: var(--border);
}

.pagination span {
	color: var(--border);
}

/* Wrapper */

#wrapper {
	-moz-transition: opacity 0.35s ease;
	-webkit-transition: opacity 0.35s ease;
	-ms-transition: opacity 0.35s ease;
	transition: opacity 0.35s ease;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

#wrapper>.bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* Degradado morado premium (Light Theme) */
	background-color: #eaddff;
	background-image: linear-gradient(145deg, rgba(33, 33, 33, 0.95) 0%, rgba(39, 0, 96, 0.85) 40%, rgba(165, 100, 235, 0.9) 80%, rgba(115, 40, 200, 0.95) 100%);
	background-size: auto, cover;
	background-position: center, center;
	background-repeat: repeat, no-repeat;
	background-attachment: scroll, fixed;
	z-index: -1;
	transition: background 0.5s ease;
}

html[data-theme="dark"] #wrapper>.bg {
	/* Degradado morado medianoche ultra premium (Dark Theme) */
	background-color: #05020a;
	background-image: linear-gradient(145deg, rgba(0, 0, 0, 0.98) 0%, rgba(37, 6, 79, 0.92) 40%, rgba(15, 3, 35, 0.96) 80%, rgba(5, 1, 15, 0.99) 100%);
}

#wrapper>.bg.fixed {
	position: fixed;
	width: 100vw;
	height: 100vh;
}

#wrapper.fade-in:before {
	pointer-events: none;
	-moz-transition: opacity 1s ease-in-out;
	-webkit-transition: opacity 1s ease-in-out;
	-ms-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
	-moz-transition-delay: 0.75s;
	-webkit-transition-delay: 0.75s;
	-ms-transition-delay: 0.75s;
	transition-delay: 0.75s;
	background: #1e252d;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	width: 100%;
}

body.is-preload #wrapper.fade-in:before {
	opacity: 1;
}

@media screen and (orientation: portrait) {

	#wrapper>.bg {
		background-size: auto, auto, auto 175%;
	}

}

/* Intro */

#intro {
	color: #ffffff;
	padding: 8rem 4rem 6rem 4rem;
	margin-bottom: 4rem;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-moz-justify-content: -moz-flex-end;
	-webkit-justify-content: -webkit-flex-end;
	-ms-justify-content: -ms-flex-end;
	justify-content: flex-end;
	-moz-transition: opacity 1s ease, -moz-transform 1s ease;
	-webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
	-ms-transition: opacity 1s ease, -ms-transform 1s ease;
	transition: opacity 1s ease, transform 1s ease;
	position: relative;
	cursor: default;
	text-align: center;
	z-index: 1;
	min-height: 100vh;
}

@media screen and (min-width: 981px) {
	#intro {
		padding-bottom: 10rem;
	}
}

#intro input,
#intro select,
#intro textarea {
	color: #ffffff;
}

#intro a {
	color: #ffffff;
	border-bottom-color: rgba(255, 255, 255, 0.5);
}

#intro a:hover {
	border-bottom-color: transparent;
	color: var(--accent-primary, #4f46e5) !important;
}

#intro strong,
#intro b {
	color: #ffffff;
}

#intro h1,
#intro h2,
#intro h3,
#intro h4,
#intro h5,
#intro h6 {
	color: #ffffff;
}

#intro blockquote {
	border-left-color: #ffffff;
}

#intro code {
	background: rgba(255, 255, 255, 0.075);
	border-color: #ffffff;
}

#intro hr {
	border-bottom-color: #ffffff;
}

#intro input[type="submit"],
#intro input[type="reset"],
#intro input[type="button"],
#intro button,
#intro .button {
	background-color: transparent;
	box-shadow: inset 0 0 0 2px #ffffff;
	color: #ffffff !important;
}

#intro input[type="submit"]:hover,
#intro input[type="reset"]:hover,
#intro input[type="button"]:hover,
#intro button:hover,
#intro .button:hover {
	box-shadow: inset 0 0 0 2px var(--accent-primary, #4f46e5);
	color: var(--accent-primary, #4f46e5) !important;
}

#intro input[type="submit"].primary,
#intro input[type="reset"].primary,
#intro input[type="button"].primary,
#intro button.primary,
#intro .button.primary {
	background-color: #ffffff;
	box-shadow: none;
	color: var(--text) !important;
}

#intro input[type="submit"].primary:hover,
#intro input[type="reset"].primary:hover,
#intro input[type="button"].primary:hover,
#intro button.primary:hover,
#intro .button.primary:hover {
	background-color: var(--accent-primary, #4f46e5);
}

#intro h1 {
	font-size: 5rem;
	line-height: 1;
}

#intro p {
	font-size: 1.25rem;
	font-style: italic;
	margin-top: -0.25rem;
	text-align: center;
}

#intro+#header {
	margin-top: -20rem;
}

#intro+#header .logo {
	-moz-transform: translateY(2rem);
	-webkit-transform: translateY(2rem);
	-ms-transform: translateY(2rem);
	transform: translateY(2rem);
	opacity: 0;
	visibility: hidden;
}

#intro.hidden {
	pointer-events: none;
	-moz-transform: translateY(2rem);
	-webkit-transform: translateY(2rem);
	-ms-transform: translateY(2rem);
	transform: translateY(2rem);
	-moz-transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
	-webkit-transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
	-ms-transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), -ms-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
	transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
	opacity: 0;
	visibility: hidden;
}

#intro.hidden+#header .logo {
	-moz-transform: translateY(0);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

body.is-preload #intro {
	-moz-transform: translateY(2rem);
	-webkit-transform: translateY(2rem);
	-ms-transform: translateY(2rem);
	transform: translateY(2rem);
	opacity: 0;
}

body.is-preload #intro:not(.hidden)+#header+#nav {
	-moz-transform: translateY(0);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

@media screen and (max-width: 980px) {

	#intro {
		padding: 4rem 4rem 2rem 4rem;
		margin-bottom: 2rem;
		min-height: 90vh;
	}

	#intro p br {
		display: none;
	}

	#intro+#header {
		margin-top: -14rem;
	}

}

@media screen and (max-width: 736px) {

	#intro {
		padding: 3rem 2rem 1rem 2rem;
		margin-bottom: 2rem;
		min-height: 80vh;
	}

	#intro h1 {
		font-size: 3.25rem;
		line-height: 1.1;
		margin-bottom: 1rem;
	}

	#intro p {
		font-size: 1rem;
		margin-top: 0rem;
	}

	#intro .actions {
		display: flex !important;
	}

}

/* Header */

#header {
	color: #ffffff;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-moz-justify-content: -moz-flex-end;
	-webkit-justify-content: -webkit-flex-end;
	-ms-justify-content: -ms-flex-end;
	justify-content: flex-end;
	pointer-events: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: 15rem;
	padding-bottom: 8rem;
	position: relative;
	text-align: center;
	z-index: 2;
}

#header input,
#header select,
#header textarea {
	color: #ffffff;
}

#header a {
	color: #ffffff;
	border-bottom-color: rgba(255, 255, 255, 0.5);
}

#header a:hover {
	border-bottom-color: transparent;
	color: var(--accent-primary, #4f46e5) !important;
}

#header strong,
#header b {
	color: #ffffff;
}

#header h1,
#header h2,
#header h3,
#header h4,
#header h5,
#header h6 {
	color: #ffffff;
}

#header blockquote {
	border-left-color: #ffffff;
}

#header code {
	background: rgba(255, 255, 255, 0.075);
	border-color: #ffffff;
}

#header hr {
	border-bottom-color: #ffffff;
}

#header .logo {
	-moz-transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.5s ease, -moz-transform 0.5s ease, visibility 0.5s;
	-webkit-transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.5s ease, -webkit-transform 0.5s ease, visibility 0.5s;
	-ms-transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.5s ease, -ms-transform 0.5s ease, visibility 0.5s;
	transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
	pointer-events: auto;
	border-style: solid;
	border-color: #ffffff;
	border-width: 5px;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 2.25rem;
	font-weight: 900;
	letter-spacing: 0.075em;
	line-height: 1;
	padding: 1rem 1.75rem;
	text-transform: uppercase;
	visibility: visible;
}

#header .logo:hover {
	border-color: var(--accent-primary, #4f46e5) !important;
	color: var(--accent-primary, #4f46e5) !important;
}

@media screen and (max-width: 980px) {

	#header {
		padding-bottom: 4rem;
	}

}

@media screen and (max-width: 736px) {

	#header {
		padding-bottom: 0.5rem;
		padding-left: 1rem;
		padding-right: 1rem;
		height: 8rem;
	}

	#header .logo {
		border-width: 3px !important;
		padding: 0.5rem 0.75rem;
		max-width: 100%;
		width: 100%;
		box-sizing: border-box;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		display: inline-block;
	}

}

@media screen and (max-width: 480px) {

	#header {
		padding-left: 0.5rem;
		padding-right: 0.5rem;
		height: 6rem;
		padding-bottom: 0.25rem;
	}

	#header .logo {
		padding: 0.4rem 0.6rem;
		letter-spacing: 0.05em;
	}

}

/* Nav */

#nav {
	color: #ffffff;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-transition: -moz-transform 1s ease, opacity 1s ease;
	-webkit-transition: -webkit-transform 1s ease, opacity 1s ease;
	-ms-transition: -ms-transform 1s ease, opacity 1s ease;
	transition: transform 1s ease, opacity 1s ease;
	background: rgba(255, 255, 255, 0.175);
	height: 4rem;
	line-height: 4rem;
	margin: -4rem auto 0 auto;
	overflow: hidden;
	padding: 0 2rem 0 0;
	position: relative;
	width: calc(100% - 4rem);
	max-width: 72rem;
	z-index: 2;
}

#nav ul.divided li {
	border-top-color: #ffffff;
}

#nav ul.icons li a.icon:hover:before {
	color: var(--accent-primary, #4f46e5);
}

#nav ul.icons.alt li .icon:before {
	box-shadow: inset 0 0 0 2px #ffffff;
}

#nav ul.icons.alt li a.icon:hover:before {
	box-shadow: inset 0 0 0 2px var(--accent-primary, #4f46e5);
}

#nav input,
#nav select,
#nav textarea {
	color: #ffffff;
}

#nav a {
	color: #ffffff;
	border-bottom-color: rgba(255, 255, 255, 0.5);
}

#nav a:hover {
	border-bottom-color: transparent;
	color: var(--accent-primary, #4f46e5) !important;
}

#nav strong,
#nav b {
	color: #ffffff;
}

#nav h1,
#nav h2,
#nav h3,
#nav h4,
#nav h5,
#nav h6 {
	color: #ffffff;
}

#nav blockquote {
	border-left-color: #ffffff;
}

#nav code {
	background: rgba(255, 255, 255, 0.075);
	border-color: #ffffff;
}

#nav hr {
	border-bottom-color: #ffffff;
}

#nav ul.links {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-grow: 1;
	-webkit-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
	-moz-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-shrink: 1;
	flex-shrink: 1;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-weight: 900;
	letter-spacing: 0.075em;
	list-style: none;
	margin-bottom: 0;
	padding-left: 0;
	text-transform: uppercase;
}

#nav ul.links li {
	display: block;
	padding-left: 0;
}

#nav ul.links li a {
	-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	display: block;
	font-size: 0.8rem;
	outline: none;
	padding: 0 2rem;
}

#nav ul.links li a:hover {
	color: inherit !important;
	background-color: rgba(255, 255, 255, 0.1);
}

#nav ul.links li.active {
	background-color: rgba(255, 255, 255, 0.10) !important;
}

#nav ul.links li.active a {
	color: rgba(255, 255, 255, 0.92) !important;
}

#nav ul.links li.active a:hover {
	color: var(--accent-primary, #4f46e5) !important;
}

html[data-theme="dark"] #nav ul.links li.active {
	background-color: rgba(255, 255, 255, 0.05) !important;
}

html[data-theme="dark"] #nav ul.links li.active a {
	color: rgba(255, 255, 255, 0.92) !important;
}

#nav ul.icons {
	-moz-flex-grow: 0;
	-webkit-flex-grow: 0;
	-ms-flex-grow: 0;
	flex-grow: 0;
	-moz-flex-shrink: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	margin-bottom: 0;
}

@media screen and (max-width: 980px) {

	#nav {
		display: none;
	}

}

/* Main */

#main {
	background-color: #ffffff;
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	margin: 0 auto;
	width: calc(100% - 4rem);
	max-width: 72rem;
	z-index: 2;
	background-image: none;
}

html[data-theme="dark"] #main {
	background-color: var(--surface-bg);
	color: var(--text);
	background-image: none;
}

html[data-theme="dark"] #main>* {
	background-color: transparent;
	color: var(--text);
	border-top-color: var(--border);
}

#main.retos-list {
	width: calc(100% - 0.5rem);
	max-width: 68rem;
	padding: 0;
}

#main.retos-list>.post {
	padding: 4rem 3rem 2.5rem 3rem;
	text-align: center;
}

#main.retos-list>.post header.major>h1 {
	font-size: clamp(2.25rem, 5vw, 3rem);
	margin-bottom: 1.25rem;
}

#main.retos-list>.post header.major>p {
	max-width: 52ch;
	margin: 0 auto;
	line-height: 1.6;
}

#main>* {
	padding: 2rem 2rem 1rem 2rem;
	border-top: solid 2px var(--border);
	margin: 0;
	background-color: transparent;
	border-top-color: var(--border);
}

#main>*:first-child {
	border-top: 0;
}

#main>footer {
	text-align: center;
}

#main>.post {
	padding: 8rem 8rem 6rem 8rem;
}

#main>.post header.major>.date {
	margin-top: -2rem;
}

#main>.post header.major>h1,
#main>.post header.major h2 {
	font-size: 4rem;
	line-height: 1.1;
	margin: 0 0 1rem 0;
}

#main>.post.featured {
	text-align: center;
}

@media screen and (max-width: 736px) {

	#main>.post.featured header.major>h2 {
		width: 100%;
		max-width: 26rem;
		margin-left: auto;
		margin-right: auto;
	}

	#main>.post.featured header.major>h2>a {
		display: inline-block;
		max-width: 100%;
	}

	#main>.post.featured header.major>h2,
	#main>.post.featured header.major>h2>a {
		white-space: normal;
		overflow-wrap: anywhere;
		word-break: break-word;
		hyphens: auto;
	}

}

@media screen and (max-width: 1280px) {

	#main>.post {
		padding: 6rem 4rem 4rem 4rem;
	}

	#main.retos-list>.post {
		padding: 3.5rem 2.75rem 2rem;
	}

}

@media screen and (max-width: 736px) {

	#main>.post {
		padding: 4rem 2rem 2rem 2rem;
	}

	#main.retos-list>.post {
		padding: 2.5rem 1.75rem 1.5rem;
	}

}

@media screen and (max-width: 480px) {

	#main.retos-list>.posts {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	#main>.post {
		padding: 2rem 1rem 1rem 1rem;
	}

}

#main.retos-list>.posts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	padding: 0 2rem 3rem;
	width: 100%;
}

#main.retos-list>.posts>* {
	width: 100%;
	padding: 0;
}

#main.retos-list>.posts>article {
	margin-top: 1rem;
	border: 1px solid var(--border);
	border-radius: 1.25rem;
	padding: 1.75rem;
	box-shadow: 0 12px 32px rgba(17, 12, 46, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#main.retos-list>.posts>article:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(17, 12, 46, 0.12);
}

html[data-theme="dark"] #main.retos-list>.posts>article {
	border: 1px solid var(--border);
}

#main.retos-list>.posts>article .image {
	margin-bottom: 1.5rem;
}

#main.retos-list>.posts>article .image img {
	border-radius: 0.75rem;
	width: 100%;
	height: auto;
}

#main.retos-list ul.actions.special {
	margin-top: 1.75rem;
}

#main>.posts>article {
	border-color: var(--border);
	border-left-width: 2px;
	border-style: solid;
	border-top-width: 2px;
	text-align: center;
}

/* Limitar el ancho de los artículos en posts para pantallas grandes */
@media screen and (min-width: 981px) {
	#main>.posts {
		display: flex;
		flex-wrap: wrap;
	}

	#main>.posts>* {
		width: 50%;
		padding: 2rem;
		box-sizing: border-box;
	}
}

#main>.posts>article> :last-child {
	margin-bottom: 0;
}

#main>.posts>article:nth-child(2n - 1) {
	border-left-width: 0;
}

#main>.posts>article:nth-child(-n + 2) {
	border-top-width: 0;
}

@media screen and (max-width: 980px) {

	#main>.posts {
		display: flex;
		flex-wrap: wrap;
	}

	#main>.posts>* {
		width: 50%;
	}

	#main>.posts>* {
		padding: 2.5rem;
		width: 50%;
		box-sizing: border-box;
	}

}

@media screen and (max-width: 736px) {

	#main>.posts>* {
		width: 100%;
	}

	#main>.posts>* {
		padding: 2rem;
		width: 100%;
	}

	#main>.posts>article:nth-child(2n - 1) {
		border-left-width: 2px;
	}

	#main>.posts>article:nth-child(-n + 2) {
		border-top-width: 2px;
	}

	#main>.posts>article:nth-child(n) {
		border-left-width: 0;
	}

	#main>.posts>article:nth-child(-n + 1) {
		border-top-width: 0;
	}

	#main>.posts>article .image {
		max-width: 25rem;
		margin-left: auto;
		margin-right: auto;
	}

}

@media screen and (max-width: 736px) {

	#main {
		width: calc(100% - 2rem);
		padding-left: 1rem;
		padding-right: 1rem;
	}

	#main>* {
		width: 100%;
		padding: 1rem 0 0.1rem 0;
	}

}

@media screen and (max-width: 480px) {

	#main {
		width: 98%;
		box-sizing: border-box;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0.5rem;
		padding-right: 0.5rem;
		padding-bottom: 3rem;
	}

	#main>.post {
		padding: 3rem 0rem 2rem 0rem;
	}

	#main>.post.featured header.major>h2 {
		width: 100%;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

}

/* Footer */

#footer {
	color: var(--muted);
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	background-color: var(--app-bg);
	color: var(--muted);
	cursor: default;
	position: relative;
	margin: 0 auto;
	width: calc(100% - 4rem);
	max-width: 72rem;
	z-index: 2;
}

#footer input,
#footer select,
#footer textarea {
	color: var(--muted);
}

#footer a {
	color: var(--muted);
	border-bottom-color: rgba(113, 121, 129, 0.5);
}

#footer a:hover {
	border-bottom-color: transparent;
	color: var(--accent-primary, #4f46e5) !important;
}

#footer strong,
#footer b {
	color: var(--muted);
}

#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer h6 {
	color: var(--muted);
}

#footer blockquote {
	border-left-color: var(--border);
}

#footer code {
	background: rgba(220, 220, 220, 0.5);
	border-color: #e2e2e2;
}

#footer hr {
	border-bottom-color: #e2e2e2;
}

#footer .box {
	border-color: #e2e2e2;
}

#footer input[type="submit"],
#footer input[type="reset"],
#footer input[type="button"],
#footer button,
#footer .button {
	background-color: transparent;
	box-shadow: inset 0 0 0 2px #717981;
	color: #717981 !important;
}

#footer input[type="submit"]:hover,
#footer input[type="reset"]:hover,
#footer input[type="button"]:hover,
#footer button:hover,
#footer .button:hover {
	box-shadow: inset 0 0 0 2px var(--accent-primary, #4f46e5);
	color: var(--accent-primary, #4f46e5) !important;
}

#footer input[type="submit"].primary,
#footer input[type="reset"].primary,
#footer input[type="button"].primary,
#footer button.primary,
#footer .button.primary {
	background-color: var(--muted);
	box-shadow: none;
	color: #f5f5f5 !important;
}

#footer input[type="submit"].primary:hover,
#footer input[type="reset"].primary:hover,
#footer input[type="button"].primary:hover,
#footer button.primary:hover,
#footer .button.primary:hover {
	background-color: var(--accent-primary, #4f46e5);
}

#footer label {
	color: var(--muted);
}

#footer input[type="text"],
#footer input[type="password"],
#footer input[type="email"],
#footer select,
#footer textarea {
	border-color: #e2e2e2;
}

#footer input[type="text"]:focus,
#footer input[type="password"]:focus,
#footer input[type="email"]:focus,
#footer select:focus,
#footer textarea:focus {
	border-color: var(--accent-primary, #4f46e5);
}

#footer select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%23e2e2e2' /%3E%3C/svg%3E");
}

#footer select option {
	background-color: var(--app-bg);
	color: var(--muted);
}

#footer .select-wrapper:before {
	color: #e2e2e2;
}

#footer input[type="checkbox"]+label,
#footer input[type="radio"]+label {
	color: var(--muted);
}

#footer input[type="checkbox"]+label:before,
#footer input[type="radio"]+label:before {
	border-color: #e2e2e2;
}

#footer input[type="checkbox"]:checked+label:before,
#footer input[type="radio"]:checked+label:before {
	background-color: var(--muted);
	border-color: var(--muted);
	color: #f5f5f5;
}

#footer input[type="checkbox"]:focus+label:before,
#footer input[type="radio"]:focus+label:before {
	border-color: var(--accent-primary, #4f46e5);
}

#footer ::-webkit-input-placeholder {
	color: #b3b7bb !important;
}

#footer :-moz-placeholder {
	color: #b3b7bb !important;
}

#footer ::-moz-placeholder {
	color: #b3b7bb !important;
}

#footer :-ms-input-placeholder {
	color: #b3b7bb !important;
}

#footer .formerize-placeholder {
	color: #b3b7bb !important;
}

#footer ul.divided li {
	border-top-color: #e2e2e2;
}

#footer ul.icons li a.icon:hover:before {
	color: var(--accent-primary, #4f46e5);
}

#footer ul.icons.alt li .icon:before {
	box-shadow: inset 0 0 0 2px #e2e2e2;
}

#footer ul.icons.alt li a.icon:hover:before {
	box-shadow: inset 0 0 0 2px var(--accent-primary, #4f46e5);
}

#footer header.major .date:before,
#footer header.major .date:after {
	border-top-color: #e2e2e2;
}

#footer table tbody tr {
	border-color: #e2e2e2;
}

#footer table tbody tr:nth-child(2n + 1) {
	background-color: rgba(220, 220, 220, 0.5);
}

#footer table th {
	color: var(--muted);
}

#footer table thead {
	border-bottom-color: #e2e2e2;
}

#footer table tfoot {
	border-top-color: #e2e2e2;
}

#footer table.alt tbody tr td {
	border-color: #e2e2e2;
}

#footer .pagination a,
#footer .pagination span {
	border-color: #e2e2e2;
}

#footer .pagination a {
	color: #717981 !important;
}

#footer .pagination a:hover {
	color: var(--accent-primary, #4f46e5) !important;
	border-color: var(--accent-primary, #4f46e5);
	z-index: 1;
}

#footer .pagination a:hover+a,
#footer .pagination a:hover+span {
	border-left-color: var(--accent-primary, #4f46e5);
}

#footer .pagination a.active {
	background-color: #e2e2e2;
}

#footer .pagination span {
	color: #e2e2e2;
}

#footer>section {
	-moz-flex-basis: 50%;
	-webkit-flex-basis: 50%;
	-ms-flex-basis: 50%;
	flex-basis: 50%;
	-moz-flex-grow: 1;
	-webkit-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
	-moz-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-shrink: 1;
	flex-shrink: 1;
	padding: 4rem 4rem 2rem 4rem;
	border-left: solid 2px #e2e2e2;
}

#footer>section:first-child {
	border-left: 0;
}

#footer>section.split {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 0;
}

#footer>section.split>section {
	padding: 3rem 4rem 1rem 4rem;
	border-top: solid 2px #e2e2e2;
}

#footer>section.split>section:first-child {
	padding: 5rem 4rem 1rem 4rem;
	border-top: 0;
}

#footer>section.split>section:last-child {
	padding: 3rem 4rem 3rem 4rem;
}

#footer>section.split.contact>section {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	padding: 3.15rem 4rem;
}

#footer>section.split.contact>section>* {
	margin-bottom: 0;
}

#footer>section.split.contact>section> :first-child {
	-moz-flex-shrink: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	-moz-flex-grow: 0;
	-webkit-flex-grow: 0;
	-ms-flex-grow: 0;
	flex-grow: 0;
	width: 6rem;
}

#footer>section.split.contact>section> :last-child {
	-moz-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-shrink: 1;
	flex-shrink: 1;
	-moz-flex-grow: 1;
	-webkit-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
}

#footer>section.split.contact>section:first-child {
	padding: 4rem 4rem 3rem 4rem;
}

#footer>section.split.contact>section:last-child {
	padding: 3rem 4rem 4rem 4rem;
}

#footer>section.split.contact>section.alt {
	-moz-align-items: -moz-flex-start;
	-webkit-align-items: -webkit-flex-start;
	-ms-align-items: -ms-flex-start;
	align-items: flex-start;
}

#footer>section.split.contact>section.alt> :last-child {
	margin-top: -0.325rem;
}

#footer form label,
#footer h3,
#footer p {
	font-size: 0.8rem;
}

@media screen and (max-width: 980px) {

	#footer {
		display: block;
	}

	#footer>section {
		border-top: solid 2px #e2e2e2;
	}

	#footer>section:first-child {
		border-top: 0;
	}

	#footer>section.split>section {
		padding: 4rem 4rem 2rem 4rem;
	}

	#footer>section.split>section:first-child {
		padding: 4rem 4rem 2rem 4rem;
	}

	#footer>section.split>section:last-child {
		padding: 4rem 4rem 2rem 4rem;
	}

	#footer>section.split.contact>section {
		padding: 4rem;
	}

	#footer>section.split.contact>section:first-child {
		padding: 4rem;
	}

	#footer>section.split.contact>section:last-child {
		padding: 4rem;
	}

	#footer form label,
	#footer h3,
	#footer p {
		font-size: 0.9rem;
	}

}

@media screen and (max-width: 736px) {

	#footer>section {
		padding: 2rem 2rem 0.1rem 2rem;
	}

	#footer>section.split>section {
		padding: 2rem 2rem 0.1rem 2rem;
	}

	#footer>section.split>section:first-child {
		padding: 2rem 2rem 0.1rem 2rem;
	}

	#footer>section.split>section:last-child {
		padding: 2rem 2rem 0.1rem 2rem;
	}

	#footer>section.split.contact>section {
		padding: 2rem;
	}

	#footer>section.split.contact>section:first-child {
		padding: 2rem;
	}

	#footer>section.split.contact>section:last-child {
		padding: 2rem;
	}

}

@media screen and (max-width: 480px) {

	#footer {
		width: 100%;
	}

}

#copyright {
	color: #ffffff;
	position: relative;
	color: rgba(255, 255, 255, 0.25);
	cursor: default;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.075em;
	line-height: 1.5;
	text-align: center;
	text-transform: uppercase;
	margin: 4rem auto 8rem auto;
	width: calc(100% - 4rem);
	max-width: 72rem;
	z-index: 2;
}

#copyright input,
#copyright select,
#copyright textarea {
	color: #ffffff;
}

#copyright a {
	color: #ffffff;
	border-bottom-color: rgba(255, 255, 255, 0.5);
}

#copyright a:hover {
	border-bottom-color: transparent;
	color: var(--accent-primary, #4f46e5) !important;
}

#copyright strong,
#copyright b {
	color: #ffffff;
}

#copyright h1,
#copyright h2,
#copyright h3,
#copyright h4,
#copyright h5,
#copyright h6 {
	color: #ffffff;
}

#copyright blockquote {
	border-left-color: #ffffff;
}

#copyright code {
	background: rgba(255, 255, 255, 0.075);
	border-color: #ffffff;
}

#copyright hr {
	border-bottom-color: #ffffff;
}

#copyright a {
	color: inherit;
	border-bottom-color: inherit;
}

#copyright ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

#copyright ul li {
	border-left: solid 2px;
	display: inline-block;
	line-height: 1;
	margin-left: 1rem;
	padding-left: 1rem;
}

#copyright ul li:first-child {
	border-left: 0;
	margin-left: 0;
	padding-left: 0;
}

@media screen and (max-width: 1280px) {

	#copyright {
		margin: 4rem auto;
	}

}

@media screen and (max-width: 480px) {

	#copyright ul li {
		border-left: 0;
		margin: 1rem 0 0 0;
		padding-left: 0;
		display: block;
	}

	#copyright ul li:first-child {
		margin-top: 0;
	}

}

/* Nav Panel */

#navPanelToggle {
	text-decoration: none;
	-moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	display: none;
	position: fixed;
	top: 0.75rem;
	right: 0.75rem;
	border: 0;
	color: #ffffff;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 0.9rem;
	font-weight: 900;
	letter-spacing: 0.075em;
	padding: 0.375rem 1.25rem;
	text-transform: uppercase;
	z-index: 10001;
}

#navPanelToggle:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

#navPanelToggle:before {
	content: '\f0c9';
	margin-right: 0.5rem;
}

#navPanelToggle.alt {
	background-color: rgba(255, 255, 255, 0.875);
	box-shadow: 0 0.125rem 0.75rem 0 rgba(30, 37, 45, 0.25);
	color: var(--text);
}

#navPanelToggle.alt:hover {
	background-color: #ffffff;
}

@media screen and (max-width: 980px) {

	#navPanelToggle {
		display: block;
	}

}

@media screen and (max-width: 736px) {

	#navPanelToggle {
		font-size: 0.8rem;
		padding: 0.25rem 1rem;
	}

}

#navPanel {
	-moz-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	-moz-transition: -moz-transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, visibility 0.35s ease;
	-webkit-transition: -webkit-transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, visibility 0.35s ease;
	-ms-transition: -ms-transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, visibility 0.35s ease;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, visibility 0.35s ease;
	will-change: transform;
	display: none;
	-webkit-overflow-scrolling: touch;
	background: #ffffff;
	box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
	color: var(--text);
	height: 100%;
	max-width: 80%;
	overflow-y: auto;
	padding: 3rem 2rem;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
	width: 20rem;
	z-index: 10002;
}

html[data-theme="dark"] #navPanel {
	background: rgba(15, 23, 42, 0.98) !important;
	color: rgba(255, 255, 255, 0.92) !important;
	box-shadow: -8px 0 24px rgba(0, 0, 0, 0.45) !important;
}

html[data-theme="dark"] #navPanel .links li {
	border-top-color: rgba(255, 255, 255, 0.12) !important;
}

html[data-theme="dark"] #navPanel .links li a {
	color: rgba(255, 255, 255, 0.92) !important;
}

html[data-theme="dark"] #navPanel .close {
	color: rgba(255, 255, 255, 0.72) !important;
}

html[data-theme="dark"] #navPanel .close:hover {
	color: rgba(255, 255, 255, 0.92) !important;
}

html[data-theme="dark"] #navPanelToggle.alt {
	background-color: rgba(22, 0, 73, 0.92) !important;
	box-shadow: 0 0.125rem 0.75rem 0 rgba(0, 0, 0, 0.35) !important;
	color: rgba(255, 255, 255, 0.92) !important;
}

#navPanel .links {
	list-style: none;
	padding-left: 0;
}

#navPanel .links li {
	border-top: solid 2px var(--border);
}

#navPanel .links li a {
	border-bottom: 0;
	display: block;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 0.9rem;
	font-size: 0.9rem;
	font-weight: 900;
	letter-spacing: 0.075em;
	padding: 0.75rem 0;
	text-transform: uppercase;
}

#navPanel .links li:first-child {
	border-top: 0;
}

#navPanel .close {
	text-decoration: none;
	-moz-transition: color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	border: 0;
	color: #585858;
	cursor: pointer;
	display: block;
	height: 3.35rem;
	line-height: 3.25rem;
	padding-right: 1.25rem;
	position: absolute;
	right: 0;
	top: 0.9rem;
	text-align: right;
	width: 8rem;
}

#navPanel .close:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

#navPanel .close:before {
	content: '\f00d';
	font-size: 1.25rem;
}

#navPanel .close:hover {
	color: var(--text);
}

@media screen and (max-width: 736px) {

	#navPanel .close {
		height: 4rem;
		line-height: 4rem;
	}

}

@media screen and (max-width: 980px) {

	#navPanel {
		display: block;
	}

}

@media screen and (max-width: 736px) {

	#navPanel {
		padding: 2.5rem 1.75rem;
	}

}

@media screen and (max-width: 980px) {

	body.is-navPanel-visible #wrapper {
		opacity: 0.5;
	}

	body.is-navPanel-visible #navPanel {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
		box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.2);
		visibility: visible;
	}

}

/* Ocultar footer en móviles */
@media screen and (max-width: 768px) {
	.footer {
		display: none !important;
	}
}

/* Active subscription header styles */
.active-subscription-header {
	color: var(--text);
}

html[data-theme="dark"] .active-subscription-header {
	color: rgba(255, 255, 255, 0.92) !important;
}

html[data-theme="dark"] .active-subscription-header .status-label,
html[data-theme="dark"] .active-subscription-header .plan-title {
	color: rgba(255, 255, 255, 0.92) !important;
}

/* Global responsive table styles */
.table-scroll-container {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.table-scroll-container::-webkit-scrollbar {
	height: 8px;
}

.table-scroll-container::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
}

.table-scroll-container::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 4px;
}

.table-scroll-container::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.3);
}

/* Ensure tables maintain minimum width */
.table-scroll-container .table {
	min-width: 800px;
}

/* Dark theme scrollbar */
html[data-theme="dark"] .table-scroll-container {
	scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

html[data-theme="dark"] .table-scroll-container::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
}

html[data-theme="dark"] .table-scroll-container::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.2);
}

html[data-theme="dark"] .table-scroll-container::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.3);
}

/* Sticky headers for better UX */
.table-scroll-container .table thead th {
	position: sticky;
	top: 0;
	z-index: 10;
	background: inherit;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.table-scroll-container .table {
		min-width: 600px;
	}

	.table-scroll-container .table th,
	.table-scroll-container .table td {
		padding: 0.5rem;
		font-size: 0.875rem;
	}
}

@media (max-width: 480px) {
	.table-scroll-container .table {
		min-width: 500px;
	}

	.table-scroll-container .table th,
	.table-scroll-container .table td {
		padding: 0.4rem;
		font-size: 0.8rem;
	}
}

/* Remove translucent selection boxes - ONLY for non-admin users */
body:not(.is-admin) * {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	-webkit-focus-ring-color: transparent;
}

/* Android-specific: prevent selection on images, videos, and canvas - ONLY for non-admin */
body:not(.is-admin) img,
body:not(.is-admin) video,
body:not(.is-admin) canvas,
body:not(.is-admin) svg,
body:not(.is-admin) iframe,
body:not(.is-admin) embed,
body:not(.is-admin) object {
	-webkit-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	pointer-events: none;
}

/* Android-specific: allow clicks on interactive elements - ONLY for non-admin */
body:not(.is-admin) a,
body:not(.is-admin) button,
body:not(.is-admin) [role="button"],
body:not(.is-admin) input[type="submit"],
body:not(.is-admin) input[type="button"] {
	pointer-events: auto;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

/* Android-specific: remove highlight from all elements - ONLY for non-admin */
body:not(.is-admin) *:focus {
	outline: none;
	-webkit-tap-highlight-color: transparent;
}

/* Remove selection highlighting completely - ONLY for non-admin */
body:not(.is-admin) ::selection {
	background: transparent;
	color: inherit;
}

body:not(.is-admin) ::-moz-selection {
	background: transparent;
	color: inherit;
}

/* Allow selection for specific elements that need it - ONLY for non-admin */
body:not(.is-admin) input,
body:not(.is-admin) textarea,
body:not(.is-admin) [contenteditable="true"] {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	pointer-events: auto;
	touch-action: auto;
}

/* ADMIN USERS: Restore normal selection behavior */
body.is-admin * {
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
	pointer-events: auto;
}

body.is-admin img,
body.is-admin video,
body.is-admin canvas,
body.is-admin svg {
	pointer-events: auto;
}

body.is-admin ::selection {
	background: #b3d4fc;
	color: inherit;
}

body.is-admin ::-moz-selection {
	background: #b3d4fc;
	color: inherit;
}

/* =====================================================
   RETO PREMIUM CARD - Modo claro y oscuro
   ===================================================== */

/* Contenedor principal del card premium */
.reto-premium-card {
	max-width: 420px;
	margin: 0 auto;
	padding: 24px;
	border-radius: 20px;
	background: var(--surface-bg);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	text-align: center;
	border: 1px solid var(--border);
	transition: box-shadow 0.3s ease;
}

.reto-premium-card:hover {
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

html[data-theme="dark"] .reto-premium-card {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .reto-premium-card:hover {
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

/* Icono principal */
.reto-premium-icon {
	font-size: 2.5rem;
	margin-bottom: 12px;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-5px);
	}
}

/* Título */
.reto-premium-title {
	color: var(--link);
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 1.25rem;
}

/* Prueba social */
.reto-social-proof {
	font-size: 0.85rem;
	margin-bottom: 14px;
	color: var(--muted);
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.reto-rating {
	color: #f1c40f;
	font-weight: 600;
}

/* Subtítulo */
.reto-premium-subtitle {
	color: var(--muted);
	font-size: 0.95rem;
	margin-bottom: 20px;
	line-height: 1.5;
}

/* Lista de beneficios */
.reto-benefits {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
	font-size: 0.9rem;
	text-align: left;
}

.reto-benefit-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 10px;
	background: rgba(59, 130, 246, 0.05);
	color: var(--text);
	transition: background 0.2s ease;
}

.reto-benefit-item:hover {
	background: rgba(59, 130, 246, 0.1);
}

.reto-benefit-icon {
	font-size: 1.1rem;
	flex-shrink: 0;
}

html[data-theme="dark"] .reto-benefit-item {
	background: rgba(59, 130, 246, 0.1);
}

html[data-theme="dark"] .reto-benefit-item:hover {
	background: rgba(59, 130, 246, 0.15);
}

/* Botón premium */
.reto-premium-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 50px;
	font-weight: 600;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	color: white;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.reto-premium-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(59, 130, 246, 0.45);
	color: white;
	text-decoration: none;
}

.reto-premium-btn:active {
	transform: translateY(0);
}

.reto-btn-icon {
	font-size: 1.1rem;
}

/* =====================================================
   RETO GRATIS CARD - Modo claro y oscuro
   ===================================================== */

/* Wrapper exterior */
.reto-gratis-wrapper {
	margin-bottom: 1.5rem;
	width: 100%;
}

/* Card principal */
.reto-gratis-card {
	width: 100%;
	padding: 24px;
	border-radius: 20px;
	background: var(--surface-bg);
	border: 2px solid rgba(34, 197, 94, 0.2);
	box-shadow: 0 4px 20px rgba(79, 70, 229, 0.1);
	text-align: center;
	transition: box-shadow 0.3s ease;
}

.reto-gratis-card:hover {
	box-shadow: 0 6px 28px rgba(99, 102, 241, 0.15);
}

html[data-theme="dark"] .reto-gratis-card {
	border-color: rgba(34, 197, 94, 0.3);
	box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
}

html[data-theme="dark"] .reto-gratis-card:hover {
	box-shadow: 0 6px 28px rgba(34, 197, 94, 0.25);
}

/* Header con icono */
.reto-gratis-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 16px;
}

.reto-gratis-icon {
	font-size: 2rem;
	animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-4px);
	}
}

.reto-gratis-title {
	color: var(--accent-primary, #4f46e5);
	font-weight: 700;
	font-size: 1.3rem;
	margin: 0;
}

/* Descripción */
.reto-gratis-desc {
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

.reto-gratis-highlight {
	display: block;
	margin-top: 8px;
	color: var(--accent-primary, #4f46e5);
	font-weight: 700;
}

html[data-theme="dark"] .reto-gratis-highlight {
	color: var(--accent-primary, #6366f1);
}

/* Botón toggle */
.reto-gratis-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 50px;
	border: 2px solid rgba(79, 70, 229, 0.4);
	background: transparent;
	color: var(--accent-primary, #4f46e5);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.reto-gratis-toggle:hover {
	background: rgba(79, 70, 229, 0.1);
	border-color: rgba(79, 70, 229, 0.6);
}

.reto-toggle-icon {
	display: inline-flex;
	transition: transform 0.3s ease;
}

html[data-theme="dark"] .reto-gratis-toggle {
	border-color: rgba(99, 102, 241, 0.5);
	color: var(--accent-primary, #6366f1);
}

html[data-theme="dark"] .reto-gratis-toggle:hover {
	background: rgba(99, 102, 241, 0.15);
	border-color: rgba(99, 102, 241, 0.7);
}

/* Pasos colapsables */
.reto-gratis-steps {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, opacity 0.3s ease;
	opacity: 0;
}

.reto-gratis-steps.show {
	max-height: none;
	opacity: 1;
	margin-top: 24px;
	overflow: visible;
}

/* Lista de pasos */
.reto-steps-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
	text-align: left;
}

.reto-step-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px;
	margin-bottom: 8px;
	border-radius: 12px;
	background: rgba(79, 70, 229, 0.05);
	color: var(--text);
	transition: background 0.2s ease;
}

.reto-step-item:hover {
	background: rgba(79, 70, 229, 0.1);
}

.reto-step-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-secondary, #1e40af), var(--accent-primary, #4f46e5));
	color: white;
	font-weight: 700;
	font-size: 0.85rem;
	flex-shrink: 0;
}

.reto-step-text {
	flex: 1;
	line-height: 1.5;
}

html[data-theme="dark"] .reto-step-item {
	background: rgba(79, 70, 229, 0.1);
}

html[data-theme="dark"] .reto-step-item:hover {
	background: rgba(99, 102, 241, 0.15);
}

/* Links de redes sociales */
.reto-social-link {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	margin: 0 2px;
	transition: transform 0.2s ease;
}

.reto-social-link:hover {
	transform: translateY(-1px);
	text-decoration: none;
}

.reto-link-ig {
	background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
	color: white !important;
}

.reto-link-x {
	background: #1a1a1a;
	color: white !important;
}

html[data-theme="dark"] .reto-link-x {
	background: #000;
}

/* Botones de acción */
.reto-gratis-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

/* Ocultar preview viejo (se usa el nuevo dentro del panel) */
.reto-share-preview-static {
	display: none !important;
}

/* Panel de instrucciones Instagram */
.reto-instagram-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
	opacity: 0;
	background: var(--surface-bg);
	border: 2px solid rgba(225, 48, 108, 0.3);
	border-radius: 16px;
	padding: 0 16px;
}

.reto-instagram-panel.show {
	max-height: 1500px;
	opacity: 1;
	padding: 20px;
	margin-bottom: 16px;
	overflow: visible;
}

@media (min-width: 768px) {
	.reto-instagram-panel.show {
		max-height: 1600px;
		padding: 24px;
	}
}

@media (min-width: 992px) {
	.reto-instagram-panel.show {
		max-height: 1000px;
	}
}

html[data-theme="dark"] .reto-instagram-panel {
	border-color: rgba(225, 48, 108, 0.5);
	background: rgba(225, 48, 108, 0.05);
}

/* Header del panel Instagram */
.reto-ig-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 2px solid rgba(225, 48, 108, 0.2);
}

.reto-ig-header-icon {
	font-size: 2rem;
	background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.reto-ig-header-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0;
	color: var(--text);
}

/* Grid de contenido */
.reto-ig-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 768px) {
	.reto-ig-content {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
		align-items: start;
	}
}

@media (min-width: 992px) {
	.reto-ig-content {
		grid-template-columns: 1.2fr 0.8fr;
		gap: 40px;
	}
}

/* Columna de pasos */
.reto-ig-steps-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: center;
}

@media (min-width: 768px) {
	.reto-ig-steps-col {
		gap: 16px;
	}
}

.reto-ig-step-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background: var(--surface-bg);
	border-radius: 12px;
	border: 1px solid var(--border);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reto-ig-step-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

html[data-theme="dark"] .reto-ig-step-card {
	background: rgba(255, 255, 255, 0.05);
}

.reto-ig-step-num {
	width: 32px;
	height: 32px;
	min-width: 32px;
	background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
}

.reto-ig-step-content {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
}

.reto-ig-step-img {
	width: 40px;
	height: 40px;
	min-width: 40px;
	background: rgba(225, 48, 108, 0.1);
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #E1306C;
	font-size: 1.2rem;
	line-height: 0;
}

.reto-ig-step-desc {
	flex: 1;
	font-size: 0.95rem;
	color: var(--text);
	line-height: 1.4;
}

.reto-ig-preview-wrapper {
	text-align: center;
	width: 100%;
}

.reto-ig-preview-label {
	font-size: 0.9rem;
	color: var(--muted);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.reto-ig-preview {
	position: relative;
	width: 100%;
	max-width: 240px;
	margin: 0 auto;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	background: #000;
}

.reto-ig-preview canvas {
	width: 100%;
	height: auto;
	display: block;
}

@media (min-width: 768px) {
	.reto-ig-preview {
		max-width: 280px;
	}
}

@media (min-width: 992px) {
	.reto-ig-preview {
		max-width: 260px;
	}
}

@media (min-width: 1200px) {
	.reto-ig-preview {
		max-width: 300px;
	}
}

/* Botones */
.reto-ig-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	max-width: 240px;
	margin: 0 auto;
	align-items: stretch;
}

@media (min-width: 768px) {
	.reto-ig-buttons {
		max-width: 280px;
	}
}

@media (min-width: 992px) {
	.reto-ig-buttons {
		max-width: 260px;
	}
}

@media (min-width: 1200px) {
	.reto-ig-buttons {
		max-width: 300px;
	}
}

.reto-btn-main {
	width: 100%;
	padding: 14px 20px;
	font-size: 0.95rem;
	justify-content: center;
}

@media (min-width: 768px) {
	.reto-btn-main {
		padding: 16px 24px;
		font-size: 1rem;
	}
}

/* Mejorar alineación de columna de acciones */
.reto-ig-actions-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	width: 100%;
}

.reto-ig-overlay {
	position: absolute;
	bottom: 45px;
	left: 0;
	right: 0;
	padding: 10px 16px;
	text-align: center;
}

.reto-ig-overlay-title {
	font-family: 'Permanent Marker', cursive;
	font-size: 1.1rem;
	font-weight: 400;
	color: white !important;
	margin: 0 auto;
	line-height: 1.2;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	max-width: 70%;
	word-wrap: break-word;
	letter-spacing: 1px;
}

/* Botones fullwidth - responsive */
.reto-btn-fullwidth,
.reto-action-btn.reto-btn-fullwidth {
	width: 100%;
	max-width: 400px;
}

@media (min-width: 768px) {

	.reto-btn-fullwidth,
	.reto-action-btn.reto-btn-fullwidth {
		max-width: 320px;
	}
}

.reto-btn-ig-action {
	background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737) !important;
	margin-top: 8px;
}

/* Icono de Instagram más grande */
.reto-btn-ig .fa-instagram {
	font-size: 1.4em;
	margin-right: 8px;
}

.reto-action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 240px;
	max-width: 90vw;
	padding: 14px 20px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

.reto-action-btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
	color: white;
}

/* Botón Instagram */
.reto-btn-ig {
	background: linear-gradient(135deg, #f09433, #e6683c, #dc2743);
	color: white;
	box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.reto-btn-ig:hover {
	box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.reto-btn-ig-icon {
	font-size: 1.2rem;
}

/* Botón X/Twitter */
.reto-btn-x {
	background: #1a1a1a;
	color: white;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .reto-btn-x {
	background: #000;
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.reto-btn-x:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .reto-btn-x:hover {
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.reto-btn-x-icon {
	font-size: 1.1rem;
	font-weight: 700;
}

/* Footer */
.reto-gratis-footer {
	text-align: right;
	margin: 12px 5px 0 0;
	font-size: 0.85rem;
	color: var(--muted);
}

.reto-gratis-footer i {
	color: #e11d48;
	margin-right: 4px;
}

/* =====================================================
   RETO SHARE IMAGE GENERATOR
   ===================================================== */

.reto-share-image-section {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px dashed var(--border);
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.reto-share-hint {
	font-size: 0.95rem;
	color: var(--muted);
	margin-bottom: 16px;
	text-align: center;
}

/* Canvas wrapper (hidden but rendered for capture) */
.reto-share-canvas-wrapper {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 400px;
	height: 711px;
}

/* The actual share card design (9:16 ratio ~ Instagram Story) */
.reto-share-card {
	width: 400px;
	height: 711px;
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.reto-share-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.reto-share-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
}

.reto-share-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px;
	text-align: center;
	color: white;
}

.reto-share-logo {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 30px;
	opacity: 0.9;
}

.reto-share-emoji {
	font-size: 5rem;
	margin-bottom: 20px;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

.reto-share-title {
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 12px;
	line-height: 1.2;
	color: white !important;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.reto-share-desc {
	font-size: 1.3rem;
	margin-bottom: 30px;
	opacity: 0.95;
	color: white !important;
}

.reto-share-qr-hint {
	font-size: 1rem;
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 25px;
	margin-bottom: 30px;
	backdrop-filter: blur(10px);
}

.reto-share-brand {
	font-size: 0.9rem;
	opacity: 0.8;
	font-style: italic;
}

/* Preview visible */
.reto-share-preview {
	width: 200px;
	height: 356px;
	margin: 0 auto 20px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
	display: none;
}

.reto-share-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reto-share-preview.show {
	display: block;
}

/* Botón descargar */
.reto-btn-download {
	background: linear-gradient(135deg, #8b5cf6, #7c3aed);
	color: white;
	box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.reto-btn-download:hover {
	box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Preview estático con overlay del reto */
.reto-share-preview-static {
	position: relative;
	width: 280px;
	max-width: 90vw;
	margin: 0 auto 20px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.reto-share-preview-static img {
	width: 100%;
	height: auto;
	display: block;
}

.reto-share-overlay {
	position: absolute;
	bottom: 45px;
	left: 0;
	right: 0;
	padding: 12px 20px;
	text-align: center;
}

.reto-share-overlay-desc {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 6px;
}

.reto-share-overlay-title {
	font-family: 'Permanent Marker', cursive;
	font-size: 1.4rem;
	font-weight: 400;
	color: white !important;
	margin: 0 auto;
	line-height: 1.2;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	max-width: 68%;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
	letter-spacing: 1px;
}

/* ==========================================================================
   PayPal Button Containers Global Sizing and Alignment
   ========================================================================== */
#paypal-button-container,
#paypal-button-container-sesion,
#paypal-button-container-registro,
#paypal-button-container-login,
#paypal-button-container-basic,
.paypal-container {
	display: block !important;
	width: 100% !important;
	max-width: 420px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 0 !important;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
}

/* ==========================================================================
   PayPal Overlay Backdrop Safeguards (Preventing Screen Lock)
   ========================================================================== */
div[class*="paypal-checkout-sandbox"],
div[class*="paypal-overlay-context"],
div[id^="zoid-paypal-checkout"],
div[class*="paypal-checkout-overlay"] {
	pointer-events: none !important;
}

div[class*="paypal-checkout-sandbox"] *,
div[class*="paypal-overlay-context"] *,
div[id^="zoid-paypal-checkout"] *,
div[class*="paypal-checkout-overlay"] *,
div[class*="paypal-checkout-sandbox"] iframe,
div[class*="paypal-overlay-context"] iframe,
div[id^="zoid-paypal-checkout"] iframe {
	pointer-events: auto !important;
}