/* ==========================================================================
   APEX Hello — Design System
   Deep navy shell, living gold accents, platinum text.
   Vanilla CSS custom properties. No frameworks. No jQuery.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
	/* Surfaces — deep navy family from the brand mark */
	--apex-navy-950: #060b12;
	--apex-navy-900: #081018;
	--apex-navy-850: #0a1120;
	--apex-navy-800: #0d1b2e;
	--apex-navy-700: #13233b;

	/* Gold family — always in gradients, never flat */
	--apex-gold: #d4af37;
	--apex-gold-hi: #f5d67b;
	--apex-gold-deep: #b8860b;
	--apex-gold-dark: #9a7b1e;

	/* Platinum / silver text */
	--apex-plat: #c8ccd4;
	--apex-plat-hi: #e8eaee;
	--apex-plat-dim: #8b919e;

	/* Hairlines & glows */
	--apex-hairline: rgba(212, 175, 55, 0.16);
	--apex-hairline-strong: rgba(212, 175, 55, 0.38);
	--apex-glow: rgba(212, 175, 55, 0.22);

	/* Gradients */
	--apex-gold-grad: linear-gradient(135deg, var(--apex-gold-dark) 0%, var(--apex-gold) 38%, var(--apex-gold-hi) 50%, var(--apex-gold) 62%, var(--apex-gold-deep) 100%);
	--apex-surface-grad: radial-gradient(120% 90% at 20% 0%, var(--apex-navy-800) 0%, var(--apex-navy-850) 42%, var(--apex-navy-950) 100%);

	/* Typography */
	--apex-font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
	--apex-font-body: "Jost", "Inter", system-ui, -apple-system, sans-serif;

	/* Spacing scale (4px base) */
	--apex-space-1: 0.25rem;
	--apex-space-2: 0.5rem;
	--apex-space-3: 0.75rem;
	--apex-space-4: 1rem;
	--apex-space-5: 1.5rem;
	--apex-space-6: 2rem;
	--apex-space-7: 3rem;
	--apex-space-8: 4rem;

	/* Geometry */
	--apex-sidebar-w: 280px;
	--apex-radius: 14px;
	--apex-radius-lg: 22px;

	/* Motion */
	--apex-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--apex-dur-fast: 220ms;
	--apex-dur-med: 480ms;
	--apex-dur-slow: 900ms;

	/* Layers */
	--apex-z-sidebar: 60;
	--apex-z-toggle: 70;
	--apex-z-backdrop: 55;
	--apex-z-noise: 1;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body.apex-theme {
	margin: 0;
	background: var(--apex-navy-900);
	color: var(--apex-plat);
	font-family: var(--apex-font-body);
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: 0.01em;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* Radial vignette + page gradient — mirrors the logo's atmosphere */
body.apex-has-sidebar {
	background: var(--apex-surface-grad) fixed;
}

/* CSS-only noise + vignette overlay (fixed, pointer-events none) */
body.apex-theme::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: var(--apex-z-noise);
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
	mix-blend-mode: overlay;
}

body.apex-theme::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: var(--apex-z-noise);
	pointer-events: none;
	background: radial-gradient(140% 120% at 50% 40%, transparent 55%, rgba(4, 7, 11, 0.55) 100%);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--apex-font-display);
	font-weight: 500;
	color: var(--apex-plat-hi);
	line-height: 1.15;
	letter-spacing: 0.015em;
}

a {
	color: var(--apex-gold);
	text-decoration: none;
	transition: color var(--apex-dur-fast) var(--apex-ease);
}

a:hover {
	color: var(--apex-gold-hi);
}

/* Focus visibility — gold outline everywhere */
.apex-theme :focus-visible {
	outline: 2px solid var(--apex-gold);
	outline-offset: 3px;
	border-radius: 2px;
}

::selection {
	background: rgba(212, 175, 55, 0.28);
	color: var(--apex-plat-hi);
}

/* --------------------------------------------------------------------------
   3. Keyframes — living gold
   -------------------------------------------------------------------------- */

/* Shimmer sweep across gradient backgrounds (text, borders) */
@keyframes apex-shimmer {
	0%   { background-position: 200% center; }
	100% { background-position: -200% center; }
}

/* Slow traveling light along the sidebar's right edge */
@keyframes apex-edge-travel {
	0%   { transform: translateY(-120%); opacity: 0; }
	12%  { opacity: 1; }
	88%  { opacity: 1; }
	100% { transform: translateY(1200%); opacity: 0; }
}

/* Gentle glow pulse for the shield divider */
@keyframes apex-pulse-glow {
	0%, 100% { filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.25)); }
	50%      { filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.55)); }
}

/* Staggered nav entrance */
@keyframes apex-nav-in {
	from { opacity: 0; transform: translateX(-18px); }
	to   { opacity: 1; transform: translateX(0); }
}

/* Scroll-reveal (JS toggles .is-revealed) */
@keyframes apex-reveal {
	from { opacity: 0; transform: translateY(28px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* CTA breathing glow + shimmer sweep */
@keyframes apex-cta-glow {
	0%, 100% { box-shadow: 0 0 10px -4px var(--apex-glow); }
	50%      { box-shadow: 0 0 22px -4px var(--apex-glow); }
}

@keyframes apex-cta-shimmer {
	0%   { transform: translateX(-180%) skewX(-18deg); }
	38%  { transform: translateX(340%) skewX(-18deg); }
	100% { transform: translateX(340%) skewX(-18deg); }
}

/* --------------------------------------------------------------------------
   4. Layout shell
   -------------------------------------------------------------------------- */
.apex-content-wrap {
	min-height: 100dvh;
}

body.apex-has-sidebar .apex-content-wrap {
	margin-left: var(--apex-sidebar-w);
}

.apex-main {
	max-width: 1180px;
	margin: 0 auto;
	padding: clamp(1.25rem, 3vw, 2.25rem) clamp(1.25rem, 4vw, 4rem) clamp(2rem, 5vw, 5rem);
}

/* Tighten hero top gap (page-embedded .apex-pg-hero sets clamp(2rem,4vw,3.5rem);
   higher specificity here wins so content starts closer to the topbar) */
.apex-main .apex-pg-hero {
	--padding-top: clamp(1.25rem, 2.5vw, 2rem);
}

/* Inline isotipo accents (contacto / verify) */
.apex-mark-accent {
	display: block;
	margin: 0 0 1.15rem;
	line-height: 0;
}
.apex-mark-accent img {
	width: 58px;
	height: 58px;
	filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.38));
}
@media (max-width: 768px) {
	.apex-mark-accent img {
		width: 48px;
		height: 48px;
	}
}

/* Elementor canvas keeps the viewport untouched */
body.apex-no-sidebar .apex-sidebar,
body.apex-no-sidebar .apex-toggle,
body.apex-no-sidebar .apex-mobilebar,
body.apex-no-sidebar .apex-backdrop {
	display: none;
}

/* --------------------------------------------------------------------------
   5. Sidebar
   -------------------------------------------------------------------------- */
.apex-sidebar {
	position: fixed;
	inset: 0 auto 0 0;
	width: var(--apex-sidebar-w);
	z-index: var(--apex-z-sidebar);
	display: flex;
	background:
		radial-gradient(160% 60% at 0% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 55%),
		linear-gradient(180deg, var(--apex-navy-850) 0%, var(--apex-navy-900) 45%, var(--apex-navy-950) 100%);
	border-right: 1px solid var(--apex-hairline);
}

/* Traveling light along the hairline right border */
.apex-sidebar__edge {
	position: absolute;
	top: 0;
	right: -1px;
	width: 1px;
	height: 12%;
	background: linear-gradient(180deg, transparent, var(--apex-gold-hi), transparent);
	animation: apex-edge-travel 7s linear infinite;
	pointer-events: none;
}

/* Sparkle canvas sits behind content */
.apex-sparkles {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0.6;
}

.apex-sidebar__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: var(--apex-space-7) var(--apex-space-5) var(--apex-space-6);
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: thin;
	scrollbar-color: rgba(212, 175, 55, 0.35) transparent;
}

/* Thin custom gold scrollbar (WebKit) */
.apex-sidebar__inner::-webkit-scrollbar {
	width: 4px;
}
.apex-sidebar__inner::-webkit-scrollbar-track {
	background: transparent;
}
.apex-sidebar__inner::-webkit-scrollbar-thumb {
	background: rgba(212, 175, 55, 0.3);
	border-radius: 4px;
}
.apex-sidebar__inner::-webkit-scrollbar-thumb:hover {
	background: rgba(212, 175, 55, 0.55);
}

/* --------------------------------------------------------------------------
   6. Logo block
   -------------------------------------------------------------------------- */
.apex-logo {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--apex-space-4);
	padding: var(--apex-space-3) 0 var(--apex-space-5);
	text-align: center;
}

.apex-logo__frame {
	position: relative;
	width: 132px;
	height: 130px;
	display: grid;
	place-items: center;
	background: radial-gradient(circle at 50% 34%, rgba(212, 175, 55, 0.13), transparent 60%);
}

.apex-logo__frame img {
	width: 120px;
	height: auto;
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.55));
}

.apex-logo__name {
	font-family: var(--apex-font-display);
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: var(--apex-gold-grad);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: apex-shimmer 6s linear infinite;
}

/* --------------------------------------------------------------------------
   7. Navigation
   -------------------------------------------------------------------------- */
.apex-nav {
	flex: 1 1 auto;
	margin-top: var(--apex-space-4);
}

.apex-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--apex-space-2);
}

.apex-nav__item {
	position: relative;
	/* Staggered entrance — inline delay applied via nth-child below */
	opacity: 0;
	animation: apex-nav-in var(--apex-dur-med) var(--apex-ease) forwards;
}

.apex-nav__item:nth-child(1) { animation-delay: 0.10s; }
.apex-nav__item:nth-child(2) { animation-delay: 0.17s; }
.apex-nav__item:nth-child(3) { animation-delay: 0.24s; }
.apex-nav__item:nth-child(4) { animation-delay: 0.31s; }
.apex-nav__item:nth-child(5) { animation-delay: 0.38s; }
.apex-nav__item:nth-child(6) { animation-delay: 0.45s; }
.apex-nav__item:nth-child(7) { animation-delay: 0.52s; }
.apex-nav__item:nth-child(8) { animation-delay: 0.59s; }

.apex-nav__link {
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--apex-space-3);
	padding: var(--apex-space-3) var(--apex-space-4);
	border-radius: var(--apex-radius);
	color: var(--apex-plat);
	font-size: 0.95rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	overflow: hidden;
	transition:
		color var(--apex-dur-fast) var(--apex-ease),
		background var(--apex-dur-fast) var(--apex-ease);
}

/* Gold left-edge indicator — slides in on hover/active */
.apex-nav__link::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 2px;
	height: 0%;
	background: var(--apex-gold-grad);
	border-radius: 2px;
	transform: translateY(-50%);
	transition: height var(--apex-dur-fast) var(--apex-ease);
}

.apex-nav__link:hover::before,
.apex-nav__item.is-active .apex-nav__link::before {
	height: 62%;
}

.apex-nav__link:hover {
	color: var(--apex-plat-hi);
	background: rgba(212, 175, 55, 0.06);
}

.apex-nav__icon {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	border-radius: 10px;
	border: 1px solid var(--apex-hairline);
	background: rgba(13, 27, 46, 0.55);
	color: var(--apex-gold);
	transition:
		border-color var(--apex-dur-fast) var(--apex-ease),
		box-shadow var(--apex-dur-fast) var(--apex-ease),
		transform var(--apex-dur-fast) var(--apex-ease);
}

.apex-icon {
	width: 17px;
	height: 17px;
	display: block;
}

.apex-nav__link:hover .apex-nav__icon {
	border-color: var(--apex-hairline-strong);
	box-shadow: 0 0 14px -2px var(--apex-glow);
	transform: translateY(-1px);
}

/* Label letter-spacing micro-animation */
.apex-nav__label {
	transition: letter-spacing var(--apex-dur-fast) var(--apex-ease);
}

/*
 * Aquí había letter-spacing: 0.1em al pasar el cursor. Se veía bien con
 * etiquetas cortas, pero ensancha el texto: en reposo son 0.6px por letra y al
 * pasar el cursor ~1.6px, así que «Decisiones y estatus» crecía unos 20px, ya
 * no cabía en la columna de 280px y saltaba a dos renglones bajo el puntero.
 * El desplazamiento hace lo mismo visualmente y NO refluye, porque transform no
 * participa en el cálculo del diseño. El resto de las señales de hover —color,
 * fondo, el marco del icono y la barra lateral— siguen intactas.
 */
.apex-nav__label {
	transition: transform var(--apex-dur-fast) var(--apex-ease);
}

.apex-nav__link:hover .apex-nav__label {
	transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
	.apex-nav__link:hover .apex-nav__label {
		transform: none;
	}
}

/* Soft gold glow behind the active item */
.apex-nav__glow {
	position: absolute;
	inset: 0;
	border-radius: var(--apex-radius);
	background: radial-gradient(90% 120% at 0% 50%, rgba(212, 175, 55, 0.14), transparent 70%);
	opacity: 0;
	transition: opacity var(--apex-dur-med) var(--apex-ease);
	pointer-events: none;
}

.apex-nav__item.is-active .apex-nav__glow {
	opacity: 1;
}

.apex-nav__item.is-active .apex-nav__link {
	color: var(--apex-plat-hi);
	background: rgba(212, 175, 55, 0.08);
}

.apex-nav__item.is-active .apex-nav__icon {
	border-color: var(--apex-hairline-strong);
	background: linear-gradient(145deg, rgba(212, 175, 55, 0.18), rgba(13, 27, 46, 0.6));
	box-shadow: 0 0 18px -4px var(--apex-glow);
}

/* --------------------------------------------------------------------------
   8. Shield-check divider
   -------------------------------------------------------------------------- */
.apex-divider {
	display: flex;
	align-items: center;
	gap: var(--apex-space-3);
	margin: var(--apex-space-6) 0;
}

.apex-divider__line {
	flex: 1 1 auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--apex-hairline-strong), transparent);
	position: relative;
	overflow: hidden;
}

/* Traveling light along divider lines */
.apex-divider__line::after {
	content: "";
	position: absolute;
	top: 0;
	left: -30%;
	width: 30%;
	height: 100%;
	background: linear-gradient(90deg, transparent, var(--apex-gold-hi), transparent);
	animation: apex-divider-travel 4.5s linear infinite;
}

.apex-divider__line:last-child::after {
	animation-delay: 2.25s;
}

@keyframes apex-divider-travel {
	to { left: 130%; }
}

.apex-divider__shield {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--apex-hairline-strong);
	background: radial-gradient(circle at 35% 30%, rgba(212, 175, 55, 0.16), rgba(8, 16, 24, 0.9) 70%);
	color: var(--apex-gold);
	animation: apex-pulse-glow 3.2s ease-in-out infinite;
}

.apex-divider__shield .apex-icon {
	width: 18px;
	height: 18px;
}

/* --------------------------------------------------------------------------
   9. Sidebar footer — tagline + CTA
   -------------------------------------------------------------------------- */
.apex-sidebar__footer {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--apex-space-4);
}

.apex-tagline {
	margin: 0;
	font-size: 0.68rem;
	font-weight: 400;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	text-align: center;
	color: var(--apex-plat-dim);
}

/* CTA — static gold hairline, breathing glow, periodic shimmer sweep */
.apex-cta {
	position: relative;
	display: inline-block;
	padding: 1px;
	border-radius: 999px;
	overflow: hidden;
	isolation: isolate;
	animation: apex-cta-glow 4.8s ease-in-out infinite;
}

.apex-cta__border {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, var(--apex-gold-deep), var(--apex-gold) 45%, var(--apex-gold-hi) 55%, var(--apex-gold-deep));
	z-index: -1;
}

.apex-cta__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--apex-space-2);
	padding: 0.62rem 1.15rem;
	border-radius: 999px;
	background: linear-gradient(160deg, var(--apex-navy-800), var(--apex-navy-900));
	color: var(--apex-gold-hi);
	font-size: 0.74rem;
	font-weight: 500;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	transition:
		color var(--apex-dur-fast) var(--apex-ease),
		background var(--apex-dur-fast) var(--apex-ease),
		box-shadow var(--apex-dur-fast) var(--apex-ease),
		transform var(--apex-dur-fast) var(--apex-ease);
}

.apex-cta__inner > * {
	position: relative;
	z-index: 1;
}

/* Gold shimmer sweep crossing the pill every few seconds */
.apex-cta__inner::after {
	content: "";
	position: absolute;
	top: -20%;
	bottom: -20%;
	left: 0;
	width: 45%;
	background: linear-gradient(105deg, transparent 0%, rgba(245, 214, 123, 0.12) 35%, rgba(245, 214, 123, 0.38) 50%, rgba(245, 214, 123, 0.12) 65%, transparent 100%);
	transform: translateX(-180%) skewX(-18deg);
	animation: apex-cta-shimmer 4.8s var(--apex-ease) infinite;
	z-index: 0;
	pointer-events: none;
}

.apex-cta__inner .apex-icon {
	width: 1.5em;
	height: 1.5em;
	flex: none;
}

.apex-cta:hover {
	animation-play-state: paused;
	box-shadow: 0 0 28px -4px var(--apex-glow);
}

.apex-cta:hover .apex-cta__inner {
	background: var(--apex-gold-grad);
	background-size: 200% auto;
	color: var(--apex-navy-950);
	box-shadow: 0 0 24px -4px var(--apex-glow);
	transform: translateY(-2px);
}

.apex-cta:active .apex-cta__inner {
	transform: translateY(0) scale(0.98);
}

/* --------------------------------------------------------------------------
   9b. Sidebar submenu (accordion) + social links
   -------------------------------------------------------------------------- */

/* Parent accordion button — matches .apex-nav__link visually.
   Element+class selector needed to outrank Hello's button reset. */
button.apex-nav__toggle {
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--apex-space-3);
	width: 100%;
	margin: 0;
	padding: var(--apex-space-3) var(--apex-space-4);
	border: 0;
	border-radius: var(--apex-radius);
	background: transparent;
	color: var(--apex-plat);
	font: inherit;
	letter-spacing: 0.04em;
	text-align: left;
	text-transform: none;
	overflow: hidden;
	cursor: pointer;
	transition:
		color var(--apex-dur-fast) var(--apex-ease),
		background var(--apex-dur-fast) var(--apex-ease);
}

button.apex-nav__toggle:hover {
	color: var(--apex-plat-hi);
	background: rgba(212, 175, 55, 0.06);
}

/* Neutralize Hello's pink button reset on focus/hover */
button.apex-nav__toggle:focus,
button.apex-nav__toggle:focus:not(:focus-visible) {
	background: transparent;
	color: var(--apex-plat);
}

.apex-nav__chevron {
	display: grid;
	place-items: center;
	margin-left: auto;
	width: 18px;
	height: 18px;
	color: var(--apex-plat-dim);
	transition:
		transform var(--apex-dur-med) var(--apex-ease),
		color var(--apex-dur-fast) var(--apex-ease);
}

.apex-nav__chevron .apex-icon {
	width: 14px;
	height: 14px;
}

.apex-nav__toggle:hover .apex-nav__chevron,
.apex-nav__item--parent.is-open .apex-nav__chevron {
	color: var(--apex-gold);
}

.apex-nav__item--parent.is-open .apex-nav__chevron {
	transform: rotate(180deg);
}

/* Submenu list — smooth height accordion via max-height */
.apex-nav__sub {
	list-style: none;
	margin: 0;
	padding: 0 0 0 calc(17px + var(--apex-space-3));
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--apex-dur-med) var(--apex-ease);
}

.apex-nav__item--parent.is-open > .apex-nav__sub,
.apex-nav__subitem--parent.is-open > .apex-nav__sub {
	/*
	 * Holgado a propósito. El tope viejo de 220px alcanzaba para tres enlaces;
	 * con un acordeón anidado dentro, el contenido pasa de 200px y el recorte
	 * no avisa: simplemente corta el último renglón. La barra lateral ya hace
	 * overflow-y: auto, así que sobrar aquí no rompe nada.
	 */
	max-height: 720px;
}

/* Nivel 3: cabe menos, y un techo más ajustado mantiene viva la animación. */
.apex-nav__subitem--parent.is-open > .apex-nav__sub--l2 {
	max-height: 360px;
}

/* --- Acordeón de segundo nivel ------------------------------------------ */

/* Hereda el aspecto de un sublink; solo se le abre hueco para el chevron. */
.apex-nav__subtoggle {
	width: 100%;
	background: none;
	border: 0;
	border-left: 1px solid var(--apex-hairline);
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	padding-right: var(--apex-space-2);
}

.apex-nav__subtoggle .apex-nav__chevron {
	width: 15px;
	height: 15px;
	opacity: 0.7;
}

.apex-nav__subtoggle .apex-nav__chevron .apex-icon {
	width: 12px;
}

.apex-nav__subitem--parent.is-open > .apex-nav__subtoggle .apex-nav__chevron {
	color: var(--apex-gold);
	transform: rotate(180deg);
}

/*
 * El reset del sitio pone white-space: nowrap en todo <button>. Los rótulos del
 * acordeón viven dentro de un botón, así que lo heredaban: "Certificación de
 * Sistemas de Gestión" medía 267px dentro de un botón de 202px y la barra lo
 * cortaba a media palabra, sin puntos suspensivos que avisaran. Un rótulo de
 * menú puede ocupar dos renglones; lo que no puede es mentir sobre su nombre.
 */
.apex-nav__toggle,
.apex-nav__subtoggle,
.apex-nav__toggle .apex-nav__label,
.apex-nav__subtoggle .apex-nav__label {
	white-space: normal;
}

/*
 * Dos clases sueltas empatan en especificidad y gana la que va después en el
 * archivo: este botón lleva .apex-nav__sublink y .apex-nav__subtoggle, y el
 * primero se declara más abajo, así que se llevaba el relleno. Calificar con el
 * <li> padre rompe el empate sin recurrir a !important.
 *
 * El rótulo es el más largo del menú y el sangrado le dejaba 119px, que lo
 * partían en tres renglones. Con el relleno recortado le caben dos.
 */
.apex-nav__subitem--parent > .apex-nav__subtoggle {
	align-items: flex-start;
	gap: var(--apex-space-2);
	padding-left: var(--apex-space-2);
	padding-right: 0;
}

.apex-nav__subtoggle .apex-nav__label {
	line-height: 1.35;
	padding-top: 1px;
}

/* Con dos renglones, el numeral y el chevron se anclan arriba en vez de
   quedar flotando a media altura. */
.apex-nav__subtoggle .apex-nav__num,
.apex-nav__subtoggle .apex-nav__chevron {
	margin-top: 2px;
	flex: 0 0 auto;
}

/* El tercer nivel se sangra para que no se confunda con el segundo, y pierde
   el numeral en dorado pleno: es detalle, no jerarquía. */
.apex-nav__sub--l2 {
	padding-left: var(--apex-space-4);
}

.apex-nav__subitem--l2 .apex-nav__sublink {
	font-size: 0.82rem;
}

.apex-nav__subitem--l2 .apex-nav__num {
	opacity: 0.55;
}

.apex-nav__subitem {
	margin-top: 2px;
}

.apex-nav__sublink {
	display: flex;
	align-items: center;
	gap: var(--apex-space-3);
	padding: 0.5rem var(--apex-space-4) 0.5rem var(--apex-space-3);
	border-radius: 10px;
	color: var(--apex-plat-dim);
	font-size: 0.86rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	border-left: 1px solid var(--apex-hairline);
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	transition:
		color var(--apex-dur-fast) var(--apex-ease),
		border-color var(--apex-dur-fast) var(--apex-ease),
		background var(--apex-dur-fast) var(--apex-ease);
}

.apex-nav__num {
	font-family: var(--apex-font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--apex-gold);
	opacity: 0.75;
	transition: opacity var(--apex-dur-fast) var(--apex-ease);
}

.apex-nav__sublink:hover {
	color: var(--apex-plat-hi);
	border-left-color: var(--apex-hairline-strong);
	background: rgba(212, 175, 55, 0.05);
}

.apex-nav__sublink:hover .apex-nav__num {
	opacity: 1;
}

.apex-nav__subitem.is-active .apex-nav__sublink {
	color: var(--apex-gold-hi);
	border-left-color: var(--apex-gold);
	background: rgba(212, 175, 55, 0.08);
}

.apex-nav__subitem.is-active .apex-nav__num {
	opacity: 1;
}

/* Social icon row (sidebar bottom + footer brand column) */
.apex-social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: var(--apex-space-3);
}

.apex-social a {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	border: 1px solid var(--apex-hairline);
	background: rgba(13, 27, 46, 0.55);
	color: var(--apex-plat-dim);
	transition:
		color var(--apex-dur-fast) var(--apex-ease),
		border-color var(--apex-dur-fast) var(--apex-ease),
		box-shadow var(--apex-dur-fast) var(--apex-ease),
		transform var(--apex-dur-fast) var(--apex-ease);
}

.apex-social a .apex-icon {
	width: 16px;
	height: 16px;
}

.apex-social a:hover {
	color: var(--apex-gold-hi);
	border-color: var(--apex-hairline-strong);
	box-shadow: 0 0 14px -2px var(--apex-glow);
	transform: translateY(-1px);
}

/* [apex_social] block inside page content (contact page info column) */
.apex-contact-social {
	display: flex;
	flex-direction: column;
	gap: var(--apex-space-3);
	margin-top: var(--apex-space-2);
}

.apex-contact-social__heading {
	display: block;
	color: var(--apex-gold);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   10. Mobile / off-canvas (below 1024px)
   -------------------------------------------------------------------------- */
/* button. prefix outranks Hello reset.css's [type=button] pink style */
button.apex-toggle {
	display: none;
}

.apex-mobilebar {
	display: none;
}

.apex-backdrop {
	display: none;
}

@media (max-width: 1023px) {

	body.apex-has-sidebar .apex-content-wrap {
		margin-left: 0;
		/* Reserve space for the fixed mobile bar so content never slides under it */
		padding-top: 58px;
	}

	.apex-sidebar {
		transform: translateX(-100%);
		transition: transform var(--apex-dur-med) var(--apex-ease);
		box-shadow: 40px 0 80px -40px rgba(0, 0, 0, 0.9);
		width: min(320px, 86vw);
	}

	body.apex-nav-open .apex-sidebar {
		transform: translateX(0);
	}

	/* Fixed mobile top bar — solid navy, docks the hamburger + wordmark.
	   It owns the top zone, so the toggle can never float over body text. */
	.apex-mobilebar {
		position: fixed;
		inset: 0 0 auto 0;
		z-index: var(--apex-z-toggle);
		display: flex;
		align-items: center;
		gap: var(--apex-space-4);
		height: 58px;
		padding: 0 var(--apex-space-4);
		background: #060c14;
		border-bottom: 1px solid var(--apex-hairline);
	}

	/* Gold hamburger — lives inside the mobile bar, morphs to X */
	button.apex-toggle {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 5px;
		width: 42px;
		height: 42px;
		padding: 0;
		border-radius: 12px;
		border: 1px solid var(--apex-hairline-strong);
		background: rgba(10, 17, 32, 0.85);
		cursor: pointer;
		transition:
			border-color var(--apex-dur-fast) var(--apex-ease),
			box-shadow var(--apex-dur-fast) var(--apex-ease);
	}

	button.apex-toggle:hover {
		border-color: var(--apex-gold);
		box-shadow: 0 0 18px -4px var(--apex-glow);
	}

	/* Keep the navy shell on focus/hover — outranks Hello's pink button reset */
	button.apex-toggle:hover,
	button.apex-toggle:focus,
	button.apex-toggle:focus:not(:focus-visible) {
		background: rgba(10, 17, 32, 0.85);
		color: var(--apex-gold);
	}

	.apex-toggle__line {
		display: block;
		width: 20px;
		height: 1.5px;
		background: var(--apex-gold);
		border-radius: 2px;
		transition:
			transform var(--apex-dur-fast) var(--apex-ease),
			opacity var(--apex-dur-fast) var(--apex-ease);
	}

	.apex-toggle[aria-expanded="true"] .apex-toggle__line:nth-child(1) {
		transform: translateY(6.5px) rotate(45deg);
	}

	.apex-toggle[aria-expanded="true"] .apex-toggle__line:nth-child(2) {
		opacity: 0;
	}

	.apex-toggle[aria-expanded="true"] .apex-toggle__line:nth-child(3) {
		transform: translateY(-6.5px) rotate(-45deg);
	}

	/* Wordmark inside the mobile bar */
	.apex-mobilebar__brand {
		display: flex;
		align-items: center;
		gap: 0.55rem;
		line-height: 1;
	}

	.apex-mobilebar__mark {
		width: 34px;
		height: 34px;
		object-fit: contain;
		display: block;
	}

	.apex-mobilebar__name {
		font-family: var(--apex-font-display);
		font-size: 1.15rem;
		font-weight: 600;
		letter-spacing: 0.22em;
		background: var(--apex-gold-grad);
		background-size: 200% auto;
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}

	.apex-mobilebar__sub {
		font-family: var(--apex-font-body);
		font-size: 0.58rem;
		font-weight: 500;
		letter-spacing: 0.3em;
		text-transform: uppercase;
		color: var(--apex-plat-dim);
	}

	/* Backdrop with blur */
	.apex-backdrop {
		position: fixed;
		inset: 0;
		z-index: var(--apex-z-backdrop);
		display: block;
		background: rgba(6, 11, 18, 0.6);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		opacity: 0;
		transition: opacity var(--apex-dur-med) var(--apex-ease);
	}

	body.apex-nav-open .apex-backdrop {
		opacity: 1;
	}

	body.apex-nav-open {
		overflow: hidden;
	}
}

/* --------------------------------------------------------------------------
   11. Brand utility classes for Elementor users
   -------------------------------------------------------------------------- */

/* Animated gold gradient text */
.apex-gold-text {
	background: var(--apex-gold-grad);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: apex-shimmer 8s linear infinite;
}

/* Gold gradient divider with traveling light */
.apex-gold-divider {
	position: relative;
	height: 1px;
	border: 0;
	background: linear-gradient(90deg, transparent, var(--apex-hairline-strong), transparent);
	overflow: hidden;
	margin: var(--apex-space-6) 0;
}

.apex-gold-divider::after {
	content: "";
	position: absolute;
	top: 0;
	left: -30%;
	width: 30%;
	height: 100%;
	background: linear-gradient(90deg, transparent, var(--apex-gold-hi), transparent);
	animation: apex-divider-travel 4.5s linear infinite;
}

/* Premium card — double-bezel shell on navy */
.apex-card {
	position: relative;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border-radius: var(--apex-radius-lg);
	border: 1px solid var(--apex-hairline);
	background: linear-gradient(160deg, rgba(19, 35, 59, 0.55), rgba(8, 16, 24, 0.85));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.04),
		0 30px 60px -30px rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
	transition:
		border-color var(--apex-dur-fast) var(--apex-ease),
		box-shadow var(--apex-dur-fast) var(--apex-ease),
		transform var(--apex-dur-med) var(--apex-ease);
}

.apex-card:hover {
	border-color: var(--apex-hairline-strong);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		0 40px 80px -34px rgba(0, 0, 0, 0.8),
		0 0 40px -18px var(--apex-glow);
	transform: translateY(-3px);
}

/* Solid gold button */
.apex-btn-gold {
	display: inline-flex;
	align-items: center;
	gap: var(--apex-space-2);
	padding: 0.85rem 2rem;
	border: 0;
	border-radius: 999px;
	background: var(--apex-gold-grad);
	background-size: 200% auto;
	color: var(--apex-navy-950);
	font-family: var(--apex-font-body);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		background-position var(--apex-dur-med) var(--apex-ease),
		box-shadow var(--apex-dur-fast) var(--apex-ease),
		transform var(--apex-dur-fast) var(--apex-ease);
}

.apex-btn-gold:hover {
	background-position: right center;
	color: var(--apex-navy-950);
	box-shadow: 0 12px 34px -10px rgba(212, 175, 55, 0.45);
	transform: translateY(-2px);
}

.apex-btn-gold:active {
	transform: translateY(0) scale(0.98);
}

/* Scroll-reveal primitives (JS: IntersectionObserver adds .is-revealed) */
.apex-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity var(--apex-dur-slow) var(--apex-ease),
		transform var(--apex-dur-slow) var(--apex-ease);
}

.apex-reveal.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

.apex-reveal-delay-1 { transition-delay: 0.1s; }
.apex-reveal-delay-2 { transition-delay: 0.2s; }
.apex-reveal-delay-3 { transition-delay: 0.3s; }

/* Eyebrow tag — micro pill above headings */
.apex-eyebrow {
	display: inline-block;
	padding: 0.3rem 0.9rem;
	border-radius: 999px;
	border: 1px solid var(--apex-hairline);
	background: rgba(212, 175, 55, 0.06);
	color: var(--apex-gold);
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   12. Reduced motion — all animations off
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	.apex-theme *,
	.apex-theme *::before,
	.apex-theme *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.apex-nav__item {
		opacity: 1;
	}

	.apex-reveal {
		opacity: 1;
		transform: none;
	}

	.apex-sparkles {
		display: none;
	}

	.elementor-element.elementor-invisible {
		visibility: visible !important;
	}

	.elementor-element.animated {
		animation: none !important;
		opacity: 1 !important;
	}
}

/* --------------------------------------------------------------------------
   13. Top info bar (global strip above the content area)
   -------------------------------------------------------------------------- */
.apex-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--apex-space-4);
	min-height: 36px;
	padding: 0 clamp(1.25rem, 4vw, 4rem);
	background: #060c14;
	border-bottom: 1px solid rgba(212, 175, 55, 0.25);
	font-size: 0.66rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.apex-topbar__coverage {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--apex-plat-dim);
	white-space: nowrap;
}

.apex-topbar__pin {
	display: inline-flex;
	width: 13px;
	height: 13px;
	color: var(--apex-gold);
}

.apex-topbar__pin svg {
	width: 100%;
	height: 100%;
}

.apex-topbar__contact {
	display: inline-flex;
	align-items: center;
	gap: var(--apex-space-5);
}

.apex-topbar__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--apex-gold);
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--apex-dur-fast) var(--apex-ease);
}

.apex-topbar__link:hover {
	color: var(--apex-gold-hi);
}

.apex-topbar__icon {
	display: inline-flex;
	width: 13px;
	height: 13px;
}

.apex-topbar__icon svg {
	width: 100%;
	height: 100%;
}

@media (max-width: 767px) {

	.apex-topbar {
		justify-content: flex-end;
		min-height: 42px;
	}

	.apex-topbar__coverage {
		display: none;
	}

	/* Compact: icons only, text labels hidden */
	.apex-topbar__text {
		display: none;
	}

	.apex-topbar__icon {
		width: 16px;
		height: 16px;
	}
}

/* --------------------------------------------------------------------------
   14. Global footer
   -------------------------------------------------------------------------- */
.apex-footer {
	background: #060c14;
	border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.apex-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 0.8fr 1fr 1.1fr;
	gap: clamp(1.75rem, 3.5vw, 2.8rem);
	max-width: 1180px;
	margin: 0 auto;
	padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 4rem) clamp(2rem, 4vw, 3rem);
}

.apex-footer__logo {
	display: inline-block;
	width: 210px;
	max-width: 100%;
}

.apex-footer__logo img {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
	transition: filter 0.45s var(--apex-ease);
}

.apex-footer__logo:hover img,
.apex-footer__logo:focus-visible img {
	filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.38));
}

.apex-footer__tagline {
	margin: var(--apex-space-3) 0 0;
	color: var(--apex-plat-dim);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.65;
}

.apex-footer__heading {
	display: block;
	margin-bottom: var(--apex-space-3);
	color: var(--apex-gold);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.apex-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.apex-footer__links a {
	color: var(--apex-plat-dim);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
	text-decoration: none;
	transition: color var(--apex-dur-fast) var(--apex-ease);
}

.apex-footer__links a:hover {
	color: var(--apex-gold-hi);
}

/* Contact strip — horizontal row between the columns and the legal line */
.apex-footer__contact {
	position: relative;
	border-top: 1px solid var(--apex-hairline-strong);
	background:
		radial-gradient(58% 130% at 50% 0%, rgba(212, 175, 55, 0.08), transparent 70%),
		var(--apex-navy-950);
}

.apex-footer__contact-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: clamp(1rem, 1.8vw, 1.5rem);
	row-gap: 0.8rem;
	max-width: 1180px;
	margin: 0 auto;
	padding: var(--apex-space-4) clamp(1rem, 2vw, 2rem);
}

.apex-footer__citem {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--apex-plat);
	font-size: 0.94rem;
	font-weight: 300;
	line-height: 1.5;
	white-space: nowrap;
	text-decoration: none;
	transition: color var(--apex-dur-fast) var(--apex-ease);
}

/*
 * El nowrap de arriba mantiene icono y texto en un renglón, correcto en
 * escritorio. En un teléfono de 375px la línea del domicilio no cabe y empuja
 * la página entera: medido, el documento se iba a 387px y TODAS las páginas del
 * sitio arrastraban desplazamiento horizontal por este único elemento.
 *
 * Va DESPUÉS de la regla base a propósito: una media query no añade
 * especificidad, así que colocada antes la pisaba la declaración posterior.
 */
@media (max-width: 700px) {
	.apex-footer__citem {
		white-space: normal;
		align-items: flex-start;
	}

	.apex-footer__cicon {
		flex: 0 0 auto;
		margin-top: 2px;
	}
}

a.apex-footer__citem:hover {
	color: var(--apex-gold-hi);
}

.apex-footer__cicon {
	display: inline-flex;
	flex: none;
	color: var(--apex-gold);
}

.apex-footer__cicon .apex-icon {
	width: 18px;
	height: 18px;
}

.apex-footer__csep {
	width: 1px;
	height: 1.35em;
	background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.apex-footer__legal {
	max-width: 1180px;
	margin: 0 auto;
	padding: var(--apex-space-4) clamp(1.25rem, 4vw, 4rem) var(--apex-space-5);
	border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.apex-footer__acreditacion,
.apex-footer__copy {
	margin: 0;
	color: var(--apex-plat-dim);
	font-size: 0.8rem;
	font-weight: 300;
	letter-spacing: 0.04em;
	line-height: 1.65;
}

.apex-footer__copy {
	margin-top: 0.35rem;
	color: rgba(138, 145, 158, 0.75);
}

.apex-footer__social-h {
	margin-top: var(--apex-space-5);
}

.apex-footer__brand .apex-social {
	margin-top: var(--apex-space-2);
}

@media (max-width: 1023px) {

	.apex-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 1240px) {

	.apex-footer__csep {
		display: none;
	}

	.apex-footer__contact-inner {
		column-gap: 1.4rem;
	}
}

@media (max-width: 560px) {

	.apex-footer__grid {
		grid-template-columns: 1fr;
	}

	.apex-footer__contact-inner {
		flex-direction: column;
		align-items: flex-start;
		row-gap: 0.7rem;
	}
}

/* --------------------------------------------------------------------------
   15. Branded 404 page
   -------------------------------------------------------------------------- */
.apex-404 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 62vh;
	padding: var(--apex-space-8) clamp(1.25rem, 4vw, 4rem);
	text-align: center;
}

.apex-404__code {
	font-family: var(--apex-font-display);
	font-size: clamp(5.5rem, 16vw, 9.5rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.06em;
	background: var(--apex-gold-grad);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: apex-shimmer 8s linear infinite;
	filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.5));
}

.apex-404__title {
	margin: var(--apex-space-4) 0 0;
	color: var(--apex-plat-hi);
	font-family: var(--apex-font-display);
	font-size: clamp(1.6rem, 3.4vw, 2.2rem);
	font-weight: 500;
	letter-spacing: 0.04em;
}

.apex-404__lead {
	max-width: 46ch;
	margin: var(--apex-space-3) 0 0;
	color: var(--apex-plat-dim);
	font-size: 1.02rem;
	font-weight: 300;
	line-height: 1.7;
}

.apex-404__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--apex-space-3);
	margin-top: var(--apex-space-6);
}

.apex-404__btn {
	display: inline-flex;
	align-items: center;
	padding: 0.85rem 2rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	transition:
		background-position var(--apex-dur-med) var(--apex-ease),
		box-shadow var(--apex-dur-fast) var(--apex-ease),
		color var(--apex-dur-fast) var(--apex-ease),
		transform var(--apex-dur-fast) var(--apex-ease);
}

.apex-404__btn--gold {
	background: var(--apex-gold-grad);
	background-size: 200% auto;
	color: var(--apex-navy-950);
}

.apex-404__btn--gold:hover {
	background-position: right center;
	color: var(--apex-navy-950);
	box-shadow: 0 12px 34px -10px rgba(212, 175, 55, 0.45);
	transform: translateY(-2px);
}

.apex-404__btn--ghost {
	border: 1px solid var(--apex-hairline-strong);
	color: var(--apex-gold);
}

.apex-404__btn--ghost:hover {
	color: var(--apex-gold-hi);
	border-color: var(--apex-gold);
	box-shadow: 0 10px 28px -14px rgba(212, 175, 55, 0.35);
	transform: translateY(-2px);
}

.apex-404__btn:active {
	transform: translateY(0) scale(0.98);
}

.apex-404__contact {
	margin: var(--apex-space-5) 0 0;
	color: var(--apex-plat-dim);
	font-size: 0.95rem;
	font-weight: 300;
}

.apex-404__contact a {
	color: var(--apex-gold);
	text-decoration: none;
	border-bottom: 1px solid var(--apex-hairline-strong);
	transition: color var(--apex-dur-fast) var(--apex-ease);
}

.apex-404__contact a:hover {
	color: var(--apex-gold-hi);
}
