/* =========================================================
   Neo502 Suite — estilos del sitio
   Las variables de color y tipografía se inyectan desde
   Neo502 → Identidad visual (functions.php).
   ========================================================= */

:root {
	--neo-primary: #0B2B5B;
	--neo-secondary: #1E6FD9;
	--neo-sky: #6FB3F2;
	--neo-accent: #00B39A;
	--neo-surface: #F4F7FB;
	--neo-text: #16202C;
	--neo-muted: #5A6B7F;
	--neo-font-head: 'Manrope', sans-serif;
	--neo-font-body: 'Inter', sans-serif;
	--neo-head-weight: 700;
	--neo-size: 17px;
	--neo-leading: 1.65;
	--neo-scale: 1.22;

	--neo-white: #fff;
	--neo-line: #E1E8F1;
	--neo-radius: 14px;
	--neo-radius-lg: 22px;
	--neo-shadow: 0 1px 2px rgba(11, 43, 91, .05), 0 12px 32px rgba(11, 43, 91, .07);
	--neo-shadow-sm: 0 1px 2px rgba(11, 43, 91, .06);
	--neo-gap: clamp(1rem, 3vw, 2rem);
	--neo-section: clamp(3.25rem, 8vw, 6rem);
	--neo-wrap: 1180px;

	--neo-h1: clamp(2rem, 1.3rem + 3.2vw, 3.4rem);
	--neo-h2: clamp(1.55rem, 1.1rem + 1.9vw, 2.35rem);
	--neo-h3: clamp(1.15rem, 1rem + .7vw, 1.4rem);
}

/* ---------- Base ---------- */

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

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

body {
	margin: 0;
	font-family: var(--neo-font-body);
	font-size: var(--neo-size);
	line-height: var(--neo-leading);
	color: var(--neo-text);
	background: var(--neo-white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--neo-font-head);
	font-weight: var(--neo-head-weight);
	line-height: 1.18;
	letter-spacing: -.015em;
	color: var(--neo-primary);
	margin: 0 0 .6em;
	text-wrap: balance;
}

h1 { font-size: var(--neo-h1); }
h2 { font-size: var(--neo-h2); }
h3 { font-size: var(--neo-h3); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--neo-secondary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--neo-primary); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { padding-left: 1.15rem; }

:focus-visible {
	outline: 3px solid var(--neo-accent);
	outline-offset: 2px;
	border-radius: 4px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}

.neo-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	background: var(--neo-primary);
	color: #fff;
	padding: .75rem 1.25rem;
	border-radius: 0 0 8px 0;
}
.neo-skip:focus { left: 0; color: #fff; }

.neo-wrap {
	width: min(100% - 2.5rem, var(--neo-wrap));
	margin-inline: auto;
}
.neo-wrap--narrow { width: min(100% - 2.5rem, 820px); }

.neo-empty {
	background: var(--neo-surface);
	border: 1px dashed var(--neo-line);
	border-radius: var(--neo-radius);
	padding: 1.5rem;
	color: var(--neo-muted);
}

/* ---------- Botones ---------- */

.neo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	min-height: 48px;
	padding: .7rem 1.4rem;
	border-radius: 999px;
	font-family: var(--neo-font-head);
	font-weight: 600;
	font-size: .97rem;
	line-height: 1.2;
	text-decoration: none;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.neo-btn--primary {
	background: var(--neo-primary);
	color: #fff;
}
.neo-btn--primary:hover { background: var(--neo-secondary); color: #fff; transform: translateY(-1px); }

.neo-btn--product { background: var(--p-color, var(--neo-primary)); }
.neo-btn--product:hover { background: var(--p-color-2, var(--neo-secondary)); }

.neo-btn--ghost {
	background: transparent;
	border-color: var(--neo-line);
	color: var(--neo-primary);
}
.neo-btn--ghost:hover { border-color: var(--neo-primary); background: var(--neo-surface); }

.neo-btn--on-dark { color: #fff; border-color: rgba(255, 255, 255, .45); }
.neo-btn--on-dark:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: #fff; }

.neo-btn--link {
	padding: .5rem .25rem;
	min-height: 40px;
	color: var(--neo-secondary);
	background: none;
}
.neo-btn--link:hover { color: var(--neo-primary); text-decoration: underline; }

/* ---------- Encabezado ---------- */

.neo-topbar {
	background: var(--neo-primary);
	color: #fff;
	font-size: .9rem;
	text-align: center;
	padding: .55rem 0;
}
.neo-topbar a { color: #fff; }

.neo-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--neo-line);
}

.neo-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 72px;
}

.neo-logo { display: inline-flex; align-items: center; text-decoration: none; }
.neo-logo img { max-height: 42px; width: auto; }
.neo-logo__text {
	font-family: var(--neo-font-head);
	font-weight: 800;
	font-size: 1.35rem;
	letter-spacing: -.02em;
	color: var(--neo-primary);
}

.neo-header__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	background: transparent;
	border: 1.5px solid var(--neo-line);
	border-radius: 12px;
	cursor: pointer;
}
.neo-header__toggle-bars,
.neo-header__toggle-bars::before,
.neo-header__toggle-bars::after {
	display: block;
	width: 20px; height: 2px;
	background: var(--neo-primary);
	position: relative;
	transition: transform .2s ease, opacity .2s ease;
}
.neo-header__toggle-bars::before,
.neo-header__toggle-bars::after { content: ""; position: absolute; left: 0; }
.neo-header__toggle-bars::before { top: -6px; }
.neo-header__toggle-bars::after { top: 6px; }
.neo-header__toggle[aria-expanded="true"] .neo-header__toggle-bars { background: transparent; }
.neo-header__toggle[aria-expanded="true"] .neo-header__toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.neo-header__toggle[aria-expanded="true"] .neo-header__toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

.neo-nav {
	display: none;
	position: absolute;
	left: 0; right: 0;
	top: 100%;
	background: #fff;
	border-bottom: 1px solid var(--neo-line);
	padding: 1rem 1.25rem 1.75rem;
	max-height: calc(100vh - 72px);
	overflow-y: auto;
}
.neo-nav.is-open { display: block; }

.neo-nav__list { list-style: none; margin: 0; padding: 0; }
.neo-nav__list a {
	display: block;
	padding: .8rem .25rem;
	color: var(--neo-primary);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid var(--neo-line);
}
.neo-nav__list a:hover { color: var(--neo-secondary); }
.neo-nav__list .sub-menu { list-style: none; margin: 0; padding: 0 0 .5rem .75rem; }

.neo-nav__product-inner { display: flex; gap: .75rem; align-items: flex-start; }
.neo-nav__product-inner i { color: var(--neo-secondary); width: 22px; text-align: center; margin-top: .2rem; }
.neo-nav__product-text { display: block; }
.neo-nav__product-text span { display: block; font-size: .85rem; color: var(--neo-muted); font-weight: 400; }

.neo-nav__actions { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.25rem; }
.neo-nav__empty { font-size: .9rem; }

@media (min-width: 1024px) {
	.neo-header__toggle { display: none; }

	.neo-nav {
		display: flex;
		position: static;
		align-items: center;
		justify-content: flex-end;
		gap: 1.75rem;
		padding: 0;
		border: 0;
		background: none;
		overflow: visible;
		max-height: none;
		flex: 1;
	}
	.neo-nav__list { display: flex; align-items: center; gap: .35rem; }
	.neo-nav__list > li { position: relative; }
	.neo-nav__list > li > a {
		border: 0;
		padding: .55rem .7rem;
		border-radius: 10px;
		font-size: .95rem;
	}
	.neo-nav__list > li > a:hover { background: var(--neo-surface); }
	.neo-nav__list .current-menu-item > a { color: var(--neo-secondary); }
	.neo-nav__list .neo-menu-cta > a {
		background: var(--neo-surface);
		border: 1.5px solid var(--neo-line);
	}

	.neo-nav__list .sub-menu {
		position: absolute;
		top: calc(100% + .5rem);
		left: 50%;
		transform: translateX(-50%) translateY(-6px);
		min-width: 560px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: .25rem;
		background: #fff;
		border: 1px solid var(--neo-line);
		border-radius: var(--neo-radius-lg);
		box-shadow: var(--neo-shadow);
		padding: .75rem;
		opacity: 0;
		visibility: hidden;
		transition: opacity .18s ease, transform .18s ease, visibility .18s;
		z-index: 70;
	}
	.neo-nav__list > li:hover > .sub-menu,
	.neo-nav__list > li:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) translateY(0);
	}
	.neo-nav__list .sub-menu a { border: 0; border-radius: 12px; padding: .75rem; }
	.neo-nav__list .sub-menu a:hover { background: var(--neo-surface); }

	.neo-nav__actions { flex-direction: row; align-items: center; margin: 0; }
}

/* ---------- Hero ---------- */

.neo-hero {
	background:
		radial-gradient(1100px 420px at 88% -8%, rgba(111, 179, 242, .30), transparent 62%),
		linear-gradient(180deg, var(--neo-surface), #fff 88%);
	padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(3rem, 8vw, 5.5rem);
	border-bottom: 1px solid var(--neo-line);
}

.neo-hero__inner {
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: center;
}

.neo-hero__eyebrow {
	font-size: .85rem;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-weight: 600;
	color: var(--neo-secondary);
	margin-bottom: .9rem;
}

.neo-hero__title { margin-bottom: .5em; }

.neo-hero__lead {
	font-size: clamp(1.02rem, .95rem + .4vw, 1.2rem);
	color: var(--neo-muted);
	max-width: 34em;
}

.neo-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

.neo-hero__image {
	border-radius: var(--neo-radius-lg);
	box-shadow: var(--neo-shadow);
	width: 100%;
}

@media (min-width: 900px) {
	.neo-hero__inner { grid-template-columns: 1.05fr .95fr; }
}

/* Composición de interfaz del hero (elemento distintivo) */

.neo-mock { position: relative; padding-bottom: 2.5rem; }

.neo-mock__window {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: var(--neo-radius-lg);
	box-shadow: var(--neo-shadow);
	overflow: hidden;
}

.neo-mock__bar {
	display: flex;
	gap: 6px;
	padding: .8rem 1rem;
	background: var(--neo-surface);
	border-bottom: 1px solid var(--neo-line);
}
.neo-mock__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--neo-line); }
.neo-mock__bar span:first-child { background: var(--neo-sky); }

.neo-mock__body { display: grid; grid-template-columns: 68px 1fr; min-height: 300px; }

.neo-mock__side {
	background: linear-gradient(180deg, var(--neo-primary), #123f7f);
	padding: 1rem .75rem;
	display: flex;
	flex-direction: column;
	gap: .7rem;
}
.neo-mock__side-item { height: 10px; border-radius: 5px; background: rgba(255, 255, 255, .22); }
.neo-mock__side-item:first-child { background: var(--neo-accent); width: 70%; }

.neo-mock__content { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }

.neo-mock__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.neo-mock__kpis span {
	height: 52px;
	border-radius: 12px;
	background: var(--neo-surface);
	border: 1px solid var(--neo-line);
}
.neo-mock__kpis span:nth-child(2) { background: rgba(30, 111, 217, .10); border-color: rgba(30, 111, 217, .25); }

.neo-mock__chart {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	height: 116px;
	padding: .75rem;
	border: 1px solid var(--neo-line);
	border-radius: 12px;
}
.neo-mock__chart i {
	flex: 1;
	border-radius: 5px 5px 2px 2px;
	background: linear-gradient(180deg, var(--neo-secondary), var(--neo-sky));
	animation: neo-rise .9s cubic-bezier(.22, .8, .3, 1) both;
}
.neo-mock__chart i:nth-child(2) { animation-delay: .06s; }
.neo-mock__chart i:nth-child(3) { animation-delay: .12s; }
.neo-mock__chart i:nth-child(4) { animation-delay: .18s; background: linear-gradient(180deg, var(--neo-accent), #7fdccf); }
.neo-mock__chart i:nth-child(5) { animation-delay: .24s; }
.neo-mock__chart i:nth-child(6) { animation-delay: .30s; }
.neo-mock__chart i:nth-child(7) { animation-delay: .36s; }

@keyframes neo-rise { from { transform: scaleY(.1); transform-origin: bottom; opacity: .2; } to { transform: scaleY(1); opacity: 1; } }

.neo-mock__rows { display: flex; flex-direction: column; gap: .5rem; }
.neo-mock__rows span { height: 12px; border-radius: 6px; background: var(--neo-surface); }
.neo-mock__rows span:nth-child(2) { width: 88%; }
.neo-mock__rows span:nth-child(3) { width: 72%; }
.neo-mock__rows span:nth-child(4) { width: 80%; }

.neo-mock__chips {
	list-style: none;
	margin: -1.5rem 0 0;
	padding: 0 0 0 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	position: relative;
}
.neo-mock__chips li {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	background: #fff;
	border: 1px solid var(--neo-line);
	border-left: 4px solid var(--chip-color, var(--neo-secondary));
	border-radius: 999px;
	padding: .45rem .9rem;
	font-size: .85rem;
	font-weight: 600;
	font-family: var(--neo-font-head);
	color: var(--neo-primary);
	box-shadow: var(--neo-shadow-sm);
}
.neo-mock__chips i { color: var(--chip-color, var(--neo-secondary)); }

/* ---------- Secciones ---------- */

.neo-section { padding: var(--neo-section) 0; }
.neo-section--alt { background: var(--neo-surface); }

.neo-section__head { max-width: 42em; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.neo-section__head p { color: var(--neo-muted); margin-bottom: 0; }

.neo-page-head {
	padding: clamp(2rem, 5vw, 3.25rem) 0 1rem;
}
.neo-page-head h1 { margin-bottom: .35em; }
.neo-page-head p { color: var(--neo-muted); }

.neo-breadcrumbs { font-size: .85rem; margin-bottom: 1rem; }
.neo-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.neo-breadcrumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--neo-muted); }
.neo-breadcrumbs [aria-current="page"] { color: var(--neo-muted); }

.neo-grid { display: grid; gap: var(--neo-gap); }
.neo-grid--cards { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.neo-grid--advantages { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.neo-grid--features { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.neo-grid--sectors { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.neo-grid--plans { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.neo-grid--three { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.neo-grid--cases,
.neo-grid--posts { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.neo-grid--shots { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.neo-grid--testimonials { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* ---------- Tarjeta de producto ---------- */

.neo-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: var(--neo-radius-lg);
	padding: 1.6rem 1.5rem 1.4rem;
	box-shadow: var(--neo-shadow-sm);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.neo-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: var(--card-color, var(--neo-secondary));
}
.neo-card:hover { transform: translateY(-3px); box-shadow: var(--neo-shadow); border-color: var(--card-color, var(--neo-secondary)); }

.neo-card__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }

.neo-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px; height: 52px;
	border-radius: 14px;
	background: var(--card-bg, var(--neo-surface));
	color: var(--card-color, var(--neo-secondary));
	font-size: 1.35rem;
}
.neo-card__icon img { width: 32px; height: 32px; object-fit: contain; }

.neo-card__badge {
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-weight: 700;
	color: var(--card-color, var(--neo-secondary));
	background: var(--card-bg, var(--neo-surface));
	padding: .3rem .6rem;
	border-radius: 999px;
}

.neo-card__title { margin-bottom: .4rem; font-size: 1.3rem; }
.neo-card__text { color: var(--neo-muted); margin-bottom: .9rem; }

.neo-card__market { font-size: .85rem; color: var(--neo-muted); margin-bottom: 1.25rem; }
.neo-card__market-label {
	display: inline-block;
	font-weight: 700;
	color: var(--neo-primary);
	text-transform: uppercase;
	font-size: .7rem;
	letter-spacing: .08em;
	margin-right: .35rem;
}

.neo-card__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin-top: auto; }

/* ---------- Pasos, ventajas, sectores ---------- */

.neo-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--neo-gap);
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	counter-reset: neo;
}
.neo-step {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: var(--neo-radius);
	padding: 1.4rem;
}
.neo-step__num {
	display: inline-block;
	font-family: var(--neo-font-head);
	font-size: .95rem;
	font-weight: 800;
	color: var(--neo-secondary);
	margin-bottom: .6rem;
}
.neo-step__title { font-size: 1.08rem; display: flex; align-items: center; gap: .5rem; margin-bottom: .4rem; }
.neo-step__icon { color: var(--neo-secondary); }
.neo-step p { color: var(--neo-muted); margin: 0; font-size: .95rem; }

.neo-advantage {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: var(--neo-radius);
	padding: 1.4rem;
}
.neo-advantage__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border-radius: 12px;
	background: var(--neo-surface);
	color: var(--neo-secondary);
	margin-bottom: .9rem;
}
.neo-advantage--product .neo-advantage__icon { color: var(--p-color, var(--neo-secondary)); background: var(--p-bg, var(--neo-surface)); }
.neo-advantage h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.neo-advantage p { color: var(--neo-muted); font-size: .95rem; margin: 0; }
.neo-advantage__metric {
	font-family: var(--neo-font-head);
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--p-color, var(--neo-primary));
	margin: 0 0 .2rem;
}

.neo-sector {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: var(--neo-radius);
	padding: 1.4rem;
}
.neo-sector__icon {
	display: inline-flex;
	width: 44px; height: 44px;
	align-items: center; justify-content: center;
	border-radius: 12px;
	background: var(--neo-surface);
	color: var(--neo-secondary);
	margin-bottom: .8rem;
}
.neo-sector__title { font-size: 1.05rem; margin-bottom: .4rem; }
.neo-sector__text { color: var(--neo-muted); font-size: .93rem; }
.neo-sector__list { list-style: none; padding: 0; margin: .5rem 0 0; font-size: .93rem; }
.neo-sector__list li { padding: .2rem 0; }

/* ---------- Producto ---------- */

.neo-product__hero {
	background: linear-gradient(180deg, var(--p-bg, var(--neo-surface)), #fff);
	padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(2.5rem, 6vw, 4rem);
	border-bottom: 1px solid var(--neo-line);
}
.neo-product__hero-inner { display: grid; gap: clamp(2rem, 5vw, 3rem); align-items: center; }

@media (min-width: 900px) {
	.neo-product__hero-inner { grid-template-columns: 1fr 1fr; }
}

.neo-product__identity { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.neo-product__icon {
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 62px; height: 62px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--neo-line);
	color: var(--p-color, var(--neo-secondary));
	font-size: 1.6rem;
	flex: none;
}
.neo-product__icon img { width: 38px; height: 38px; object-fit: contain; }
.neo-product__eyebrow {
	margin: 0;
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-weight: 700;
	color: var(--p-color, var(--neo-secondary));
}
.neo-product__name { margin: 0; font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.9rem); }
.neo-product__claim { font-size: clamp(1.15rem, 1rem + .8vw, 1.6rem); font-family: var(--neo-font-head); font-weight: 600; color: var(--neo-primary); }
.neo-product__lead { color: var(--neo-muted); max-width: 34em; }
.neo-product__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.neo-product__demo-note { margin-top: 1rem; font-size: .92rem; }
.neo-product__hero-media img { border-radius: var(--neo-radius-lg); box-shadow: var(--neo-shadow); }
.neo-product__intro { font-size: 1.1rem; color: var(--neo-muted); }

.neo-featgroup + .neo-featgroup { margin-top: clamp(2rem, 5vw, 3rem); }
.neo-featgroup__title {
	font-size: .82rem;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--neo-muted);
	border-bottom: 1px solid var(--neo-line);
	padding-bottom: .6rem;
	margin-bottom: 1.5rem;
}

.neo-feature {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: var(--neo-radius);
	padding: 1.25rem;
}
.neo-feature__icon {
	display: inline-flex;
	width: 40px; height: 40px;
	align-items: center; justify-content: center;
	border-radius: 11px;
	background: var(--p-bg, var(--neo-surface));
	color: var(--p-color, var(--neo-secondary));
	margin-bottom: .75rem;
}
.neo-feature h4 { font-family: var(--neo-font-head); font-size: 1rem; margin: 0 0 .3rem; color: var(--neo-primary); }
.neo-feature p { font-size: .92rem; color: var(--neo-muted); margin: 0; }

.neo-list-card {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: var(--neo-radius);
	padding: 1.4rem;
}
.neo-list-card h3 { font-size: 1rem; }
.neo-list-card ul { margin: 0; padding-left: 1.1rem; color: var(--neo-muted); font-size: .95rem; }
.neo-list-card li { padding: .18rem 0; }

.neo-shot {
	margin: 0;
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: var(--neo-radius);
	overflow: hidden;
}
.neo-shot img { width: 100%; object-fit: cover; }
.neo-shot figcaption { padding: 1rem 1.15rem; font-size: .92rem; color: var(--neo-muted); }
.neo-shot figcaption strong { display: block; color: var(--neo-primary); font-family: var(--neo-font-head); }

/* ---------- Planes ---------- */

.neo-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: var(--neo-radius-lg);
	padding: 1.75rem 1.5rem;
}
.neo-plan--featured { border-color: var(--neo-secondary); box-shadow: var(--neo-shadow); }
.neo-plan__badge {
	position: absolute;
	top: -.75rem; left: 1.5rem;
	background: var(--neo-secondary);
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: .3rem .75rem;
	border-radius: 999px;
}
.neo-plan__title { margin-bottom: .3rem; }
.neo-plan__desc { color: var(--neo-muted); font-size: .95rem; }
.neo-plan__price { margin: 1rem 0; }
.neo-plan__amount { font-family: var(--neo-font-head); font-size: 1.7rem; font-weight: 800; color: var(--neo-primary); }
.neo-plan__amount--quote { font-size: 1.25rem; }
.neo-plan__period { color: var(--neo-muted); font-size: .9rem; margin-left: .35rem; }
.neo-plan__users { font-size: .9rem; color: var(--neo-muted); }
.neo-plan__features { list-style: none; padding: 0; margin: 1rem 0 1.5rem; font-size: .94rem; }
.neo-plan__features li { display: flex; gap: .55rem; padding: .35rem 0; color: var(--neo-text); }
.neo-plan__features i { color: var(--neo-accent); margin-top: .28rem; }
.neo-plan .neo-btn { margin-top: auto; }

/* ---------- FAQ, CTA, demo ---------- */

.neo-faq { border-top: 1px solid var(--neo-line); }
.neo-faq__item { border-bottom: 1px solid var(--neo-line); }
.neo-faq__q {
	cursor: pointer;
	list-style: none;
	padding: 1.1rem .5rem 1.1rem 0;
	font-family: var(--neo-font-head);
	font-weight: 600;
	color: var(--neo-primary);
	position: relative;
	padding-right: 2.5rem;
}
.neo-faq__q::-webkit-details-marker { display: none; }
.neo-faq__q::after {
	content: "+";
	position: absolute;
	right: .5rem; top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	color: var(--neo-secondary);
	line-height: 1;
}
.neo-faq__item[open] .neo-faq__q::after { content: "–"; }
.neo-faq__a { padding: 0 2.5rem 1.2rem 0; color: var(--neo-muted); }

.neo-demo-block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	background: linear-gradient(120deg, var(--neo-primary), #14477f 65%, var(--neo-secondary));
	color: #fff;
	border-radius: var(--neo-radius-lg);
	padding: clamp(1.75rem, 4vw, 3rem);
}
.neo-demo-block h2 { color: #fff; margin-bottom: .4rem; }
.neo-demo-block p { color: rgba(255, 255, 255, .82); margin: 0; max-width: 40em; }
.neo-demo-block .neo-btn--primary { background: #fff; color: var(--neo-primary); }
.neo-demo-block .neo-btn--primary:hover { background: var(--neo-accent); color: #062b25; }

.neo-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	background: var(--neo-primary);
	color: #fff;
	border-radius: var(--neo-radius-lg);
	padding: clamp(1.75rem, 4vw, 3rem);
}
.neo-cta h2 { color: #fff; margin-bottom: .35rem; }
.neo-cta p { color: rgba(255, 255, 255, .82); margin: 0; }
.neo-cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.neo-cta .neo-btn--primary { background: #fff; color: var(--neo-primary); }
.neo-cta .neo-btn--primary:hover { background: var(--neo-accent); color: #062b25; }

/* ---------- Formularios ---------- */

.neo-form {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: var(--neo-radius-lg);
	padding: clamp(1.25rem, 4vw, 2rem);
	box-shadow: var(--neo-shadow-sm);
}
.neo-form__hp { position: absolute; left: -9999px; }
.neo-form__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) {
	.neo-form__grid { grid-template-columns: 1fr 1fr; }
	.neo-form__field--full { grid-column: 1 / -1; }
}
.neo-form__field { margin: 0; }
.neo-form label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; color: var(--neo-primary); }
.neo-form input[type="text"],
.neo-form input[type="email"],
.neo-form input[type="tel"],
.neo-form input[type="date"],
.neo-form input[type="url"],
.neo-form input[type="search"],
.neo-form select,
.neo-form textarea,
.neo-search input[type="search"] {
	width: 100%;
	min-height: 48px;
	padding: .7rem .9rem;
	font: inherit;
	font-size: 1rem;
	color: var(--neo-text);
	background: #fff;
	border: 1.5px solid var(--neo-line);
	border-radius: 12px;
}
.neo-form textarea { min-height: 120px; resize: vertical; }
.neo-form input:focus, .neo-form select:focus, .neo-form textarea:focus { border-color: var(--neo-secondary); }
.neo-form__check { margin-top: 1.25rem; }
.neo-form__check label { display: flex; gap: .6rem; align-items: flex-start; font-weight: 400; font-size: .93rem; color: var(--neo-text); }
.neo-form__check input { margin-top: .25rem; width: 20px; height: 20px; flex: none; }
.neo-form__actions { margin-top: 1.5rem; }
.neo-form__actions .neo-btn { width: 100%; }
@media (min-width: 700px) { .neo-form__actions .neo-btn { width: auto; } }

.neo-alert {
	border-radius: var(--neo-radius);
	padding: 1.25rem 1.5rem;
	margin-bottom: 1.5rem;
	border: 1px solid var(--neo-line);
}
.neo-alert--ok { background: rgba(0, 179, 154, .08); border-color: rgba(0, 179, 154, .35); }
.neo-alert--ok h2 { margin-bottom: .3rem; }
.neo-alert--error { background: #FEF2F2; border-color: #FCA5A5; color: #7F1D1D; }
.neo-alert__folio { margin-bottom: 0; }

.neo-search { display: flex; gap: .5rem; flex-wrap: wrap; }
.neo-search input[type="search"] { flex: 1 1 220px; }

.neo-contact { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); margin-bottom: 2rem; }
.neo-contact__item { display: flex; gap: .8rem; align-items: flex-start; background: #fff; border: 1px solid var(--neo-line); border-radius: var(--neo-radius); padding: 1.1rem; }
.neo-contact__icon { color: var(--neo-secondary); font-size: 1.1rem; margin-top: .15rem; }
.neo-contact__label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--neo-muted); font-weight: 700; }

/* ---------- Entradas y contenido ---------- */

.neo-entry { padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.neo-entry--narrow { width: min(100% - 2.5rem, 780px); }
.neo-entry img { border-radius: var(--neo-radius); }
.neo-entry__thumb { margin-bottom: 1.75rem; }
.neo-entry h2 { margin-top: 1.8em; }
.neo-entry h3 { margin-top: 1.5em; }
.neo-entry blockquote {
	margin: 1.75rem 0;
	padding: 1rem 1.5rem;
	border-left: 4px solid var(--neo-secondary);
	background: var(--neo-surface);
	border-radius: 0 var(--neo-radius) var(--neo-radius) 0;
}
.neo-entry table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.neo-entry th, .neo-entry td { border: 1px solid var(--neo-line); padding: .65rem .85rem; text-align: left; }

.neo-layout { display: grid; gap: var(--neo-gap); padding-bottom: var(--neo-section); }
@media (min-width: 960px) { .neo-layout:has(.neo-layout__aside) { grid-template-columns: minmax(0, 1fr) 300px; } }
.neo-layout__aside .widget { background: var(--neo-surface); border-radius: var(--neo-radius); padding: 1.25rem; margin-bottom: 1.25rem; }

.neo-post {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: var(--neo-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.neo-post__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.neo-post__title { font-size: 1.15rem; padding: 1.1rem 1.25rem 0; margin: 0; }
.neo-post__title a { text-decoration: none; color: var(--neo-primary); }
.neo-post__meta { font-size: .85rem; color: var(--neo-muted); padding: .35rem 1.25rem 0; margin: 0; }
.neo-post__excerpt { padding: .6rem 1.25rem 1.4rem; color: var(--neo-muted); font-size: .95rem; margin: 0; }

.neo-case { background: #fff; border: 1px solid var(--neo-line); border-radius: var(--neo-radius); padding: 1.4rem; }
.neo-case__media img { border-radius: 10px; margin-bottom: 1rem; }
.neo-case h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.neo-case h3 a { text-decoration: none; }
.neo-case__org { font-size: .85rem; color: var(--neo-muted); margin-bottom: .5rem; }
.neo-case p { color: var(--neo-muted); font-size: .95rem; }

.neo-testimonial { background: #fff; border: 1px solid var(--neo-line); border-radius: var(--neo-radius); padding: 1.5rem; margin: 0; }
.neo-testimonial blockquote { margin: 0 0 1rem; font-size: 1.02rem; }
.neo-testimonial figcaption span { display: block; font-size: .88rem; color: var(--neo-muted); }

.pagination, .navigation.pagination { margin-top: 2rem; }
.pagination .page-numbers {
	display: inline-flex;
	min-width: 44px; min-height: 44px;
	align-items: center; justify-content: center;
	border: 1px solid var(--neo-line);
	border-radius: 10px;
	margin-right: .35rem;
	text-decoration: none;
}
.pagination .current { background: var(--neo-primary); color: #fff; border-color: var(--neo-primary); }

/* ---------- Footer ---------- */

.neo-footer { background: var(--neo-primary); color: rgba(255, 255, 255, .78); padding-top: clamp(2.5rem, 6vw, 4rem); }
.neo-footer__grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); padding-bottom: 2.5rem; }
.neo-footer__brand { grid-column: 1 / -1; max-width: 26rem; }
@media (min-width: 900px) { .neo-footer__brand { grid-column: auto; } }
.neo-footer .neo-logo__text { color: #fff; }
.neo-footer__brand p { margin-top: 1rem; font-size: .94rem; }
.neo-footer h2 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
.neo-footer__list { list-style: none; margin: 0; padding: 0; font-size: .94rem; }
.neo-footer__list li { padding: .3rem 0; }
.neo-footer a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.neo-footer a:hover { color: #fff; text-decoration: underline; }
.neo-footer__social { list-style: none; display: flex; gap: .5rem; padding: 0; margin: 1.25rem 0 0; }
.neo-footer__social a {
	display: inline-flex;
	width: 42px; height: 42px;
	align-items: center; justify-content: center;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 12px;
}
.neo-footer__social a:hover { background: rgba(255, 255, 255, .12); }
.neo-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .16); padding: 1.25rem 0; font-size: .88rem; }
.neo-footer__bottom-inner { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.neo-footer__bottom p { margin: 0; }
.neo-footer__legal { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; padding: 0; }

/* ---------- Botón flotante ---------- */

.neo-float-cta {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 55;
	display: inline-flex;
	align-items: center;
	min-height: 50px;
	padding: .75rem 1.35rem;
	border-radius: 999px;
	background: var(--neo-primary);
	color: #fff;
	font-family: var(--neo-font-head);
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	box-shadow: 0 10px 26px rgba(11, 43, 91, .28);
}
.neo-float-cta:hover { background: var(--neo-secondary); color: #fff; }
@media (min-width: 1024px) { .neo-float-cta { display: none; } }

/* ---------- Movimiento reducido e impresión ---------- */

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
}

@media print {
	.neo-header, .neo-footer, .neo-float-cta, .neo-form { display: none !important; }
	body { color: #000; }
}

/* ---------- Comentarios ---------- */

.neo-comments { width: min(100% - 2.5rem, 780px); margin: 0 auto clamp(2rem, 5vw, 3.5rem); }
.neo-comments__title { font-size: 1.25rem; margin-bottom: 1.25rem; }
.neo-comments__list { list-style: none; margin: 0 0 2rem; padding: 0; }
.neo-comments__list .comment-body {
	background: var(--neo-surface);
	border-radius: var(--neo-radius);
	padding: 1.15rem 1.25rem;
	margin-bottom: 1rem;
}
.neo-comments__list .children { list-style: none; padding-left: 1.25rem; }
.neo-comments__list .comment-meta { font-size: .85rem; color: var(--neo-muted); margin-bottom: .5rem; }
.neo-comments__list .avatar { border-radius: 50%; float: left; margin-right: .75rem; }
.neo-comments .comment-respond { background: #fff; border: 1px solid var(--neo-line); border-radius: var(--neo-radius-lg); padding: clamp(1.25rem, 4vw, 2rem); }
.neo-comments .comment-form-author,
.neo-comments .comment-form-email,
.neo-comments .comment-form-url,
.neo-comments .comment-form-comment { margin-bottom: 1rem; }
.neo-comments input[type="text"],
.neo-comments input[type="email"],
.neo-comments input[type="url"],
.neo-comments textarea {
	width: 100%;
	min-height: 48px;
	padding: .7rem .9rem;
	font: inherit;
	border: 1.5px solid var(--neo-line);
	border-radius: 12px;
}
.neo-comments textarea { min-height: 130px; }
.neo-comments label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; color: var(--neo-primary); }
