/* Asesoría Energética VR — identidad corporativa + motion suave */
:root {
	/* Corporativo VR */
	--vr-lime: #96d43d;
	--vr-green: #67a244;
	--vr-forest: #35724b;
	--vr-deep: #215b49;

	--color-ink: #0f2419;
	--color-muted: #3d5346;
	--color-surface: #ffffff;
	--color-surface-alt: #f4f8f2;
	--color-border: #d4e5cf;
	--color-brand: var(--vr-green);
	--color-brand-dark: var(--vr-forest);
	--color-accent: var(--vr-lime);
	--color-accent-deep: var(--vr-deep);
	--color-positive: var(--vr-forest);
	--font-display: "DM Sans", system-ui, sans-serif;
	--font-body: "Source Sans 3", system-ui, sans-serif;
	--shadow-sm: 0 2px 8px rgba(33, 91, 73, 0.08);
	--shadow-md: 0 14px 40px rgba(33, 91, 73, 0.12);
	--shadow-glow: 0 0 0 1px rgba(150, 212, 61, 0.35);
	--radius: 14px;
	--radius-lg: 22px;
	--container: min(1180px, 100% - 2.5rem);
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--transition-fast: 0.2s var(--ease-out);
	--transition-med: 0.35s var(--ease-out);
}

@keyframes mesh-shift {

	0%,
	100% {
		opacity: 0.55;
		transform: scale(1) translate(0, 0);
	}

	50% {
		opacity: 0.85;
		transform: scale(1.04) translate(2%, -1%);
	}
}

@keyframes float-y {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes hero-kenburns {
	0% {
		transform: scale(1) translate(0, 0);
	}

	100% {
		transform: scale(1.07) translate(-1.5%, -0.5%);
	}
}

@keyframes marquee-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@keyframes pulse-ring {
	0% {
		box-shadow: 0 0 0 0 rgba(150, 212, 61, 0.45);
	}

	70% {
		box-shadow: 0 0 0 14px rgba(150, 212, 61, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(150, 212, 61, 0);
	}
}

@keyframes gradient-flow {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes section-ambient-mesh {
	0%,
	100% {
		background-position: 8% 25%, 92% 55%, 45% 95%;
		opacity: 0.62;
	}

	33% {
		background-position: 55% 15%, 25% 80%, 70% 40%;
		opacity: 0.52;
	}

	66% {
		background-position: 30% 70%, 85% 30%, 15% 60%;
		opacity: 0.58;
	}
}

@keyframes section-photo-drift {
	0% {
		transform: scale(1) translate3d(0, 0, 0);
	}

	100% {
		transform: scale(1.03) translate3d(-0.4%, 0.3%, 0);
	}
}

@keyframes energy-flow-shift {
	0%,
	100% {
		background-position: 0% 40%, 100% 70%, 50% 100%;
		opacity: 0.62;
	}

	35% {
		background-position: 45% 20%, 72% 88%, 18% 62%;
		opacity: 0.5;
	}

	70% {
		background-position: 18% 82%, 92% 34%, 70% 54%;
		opacity: 0.58;
	}
}

@keyframes energy-lines-drift {
	0% {
		background-position: 0 0, 0 0;
		opacity: 0.22;
	}

	50% {
		background-position: 140px 70px, -100px 56px;
		opacity: 0.3;
	}

	100% {
		background-position: 280px 140px, -200px 112px;
		opacity: 0.22;
	}
}

@keyframes energy-dash {
	to {
		stroke-dashoffset: -220;
	}
}

@keyframes pulse-node {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.45;
	}

	50% {
		transform: scale(1.35);
		opacity: 0.9;
	}
}

@keyframes float-soft-card {
	0%,
	100% {
		transform: translateY(0) rotate(-5deg);
	}

	50% {
		transform: translateY(-18px) rotate(-2deg);
	}
}

@keyframes float-soft-chart {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-14px);
	}
}

@keyframes ring-drift {
	0%,
	100% {
		transform: scale(1) translateY(0);
		opacity: 0.2;
	}

	50% {
		transform: scale(1.08) translateY(-8px);
		opacity: 0.32;
	}
}

@keyframes reveal-up {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

html {
	scroll-behavior: smooth;
	overflow-x: clip;
	scrollbar-color: var(--vr-forest) #dfead8;
	scrollbar-width: thin;
}

::-webkit-scrollbar {
	width: 11px;
	height: 11px;
}

::-webkit-scrollbar-track {
	background: linear-gradient(180deg, #eef5ea, #e2ebd9);
	border-radius: 999px;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--vr-green), var(--vr-deep));
	border-radius: 999px;
	border: 2px solid #dfead8;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, var(--vr-lime), var(--vr-green));
}

::-webkit-scrollbar-corner {
	background: #eef5ea;
}

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.site-header,
	.site-header .header-inner,
	.site-header .logo-img,
	.site-header .logo-text,
	.site-header .logo-mark,
	.site-header .site-nav__link {
		transition-duration: 0.28s !important;
	}
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--color-muted);
	background: var(--color-surface-alt);
}

::selection {
	background: rgba(150, 212, 61, 0.38);
	color: var(--color-ink);
}

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

a {
	color: var(--color-brand-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color var(--transition-fast);
}

a:hover {
	color: var(--vr-lime);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--color-ink);
	color: #fff;
	padding: 0.75rem 1rem;
	z-index: 1000;
}

.skip-link:focus {
	left: 1rem;
}

.container {
	width: var(--container);
	margin-inline: auto;
}

h1,
h2,
h3,
.heading {
	font-family: var(--font-display);
	color: var(--color-ink);
	font-weight: 650;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

h1 {
	font-size: clamp(2rem, 4vw, 2.85rem);
}

h2 {
	font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}

h3 {
	font-size: 1.15rem;
}

.muted {
	color: var(--color-muted);
}

.lead {
	font-size: 1.15rem;
	color: var(--color-muted);
	max-width: 52ch;
}

/* Reveal on scroll */
.reveal-on-scroll {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-on-scroll.reveal-delay-1 {
	transition-delay: 0.08s;
}

.reveal-on-scroll.reveal-delay-2 {
	transition-delay: 0.16s;
}

.reveal-on-scroll.reveal-delay-3 {
	transition-delay: 0.24s;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(53, 114, 75, 0.15);
	transition:
		box-shadow 0.4s var(--ease-out),
		background 0.4s var(--ease-out),
		border-color 0.4s var(--ease-out);
}

.site-header:hover {
	box-shadow: var(--shadow-sm);
}

.site-header.is-compact {
	box-shadow: 0 10px 32px rgba(33, 91, 73, 0.12);
	border-bottom-color: rgba(53, 114, 75, 0.22);
	background: rgba(255, 255, 255, 0.98);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem 0;
	transition: padding 0.4s var(--ease-out);
}

.site-header.is-compact .header-inner {
	padding: 0.42rem 0;
}

.logo {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	color: var(--color-ink);
	font-family: var(--font-display);
	font-weight: 700;
	transition: transform var(--transition-fast);
}

.logo:hover {
	transform: translateY(-1px);
}

.logo-img {
	height: 48px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
	transition: height 0.4s var(--ease-out), max-width 0.4s var(--ease-out);
}

.site-header.is-compact .logo-img {
	height: 34px;
	max-width: 168px;
}

.logo-img--footer {
	height: 44px;
	max-width: 180px;
	opacity: 0.98;
}

.logo-mark {
	display: inline-grid;
	place-items: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--vr-lime), var(--vr-forest));
	color: #fff;
	font-size: 0.85rem;
	box-shadow: var(--shadow-sm);
	transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), font-size 0.4s var(--ease-out);
}

.site-header.is-compact .logo-mark {
	width: 2rem;
	height: 2rem;
	font-size: 0.76rem;
	border-radius: 10px;
}

.logo-text {
	font-size: 0.95rem;
	max-width: 15rem;
	line-height: 1.2;
	transition: font-size 0.4s var(--ease-out), max-width 0.4s var(--ease-out);
}

.site-header.is-compact .logo-text {
	font-size: 0.82rem;
	max-width: 12rem;
}

@media (min-width: 961px) {
	.site-header.is-compact .site-nav__link {
		font-size: 0.82rem;
	}
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: 0.5rem;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--color-ink);
	transition: transform var(--transition-fast);
}

.site-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 0.65rem;
	align-items: center;
	justify-content: flex-end;
}

.site-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	text-decoration: none;
	color: var(--color-muted);
	font-weight: 600;
	font-size: 0.88rem;
	position: relative;
	transition: color var(--transition-fast), font-size 0.4s var(--ease-out);
	padding: 0.25rem 0;
}

.aevr-icon--nav {
	width: 1.05rem;
	height: 1.05rem;
	flex-shrink: 0;
	opacity: 0.88;
}

.site-nav__link:hover .aevr-icon--nav,
.site-nav__link[aria-current="page"] .aevr-icon--nav {
	opacity: 1;
	color: inherit;
}

.site-nav__txt {
	white-space: nowrap;
}

.site-nav__cta-wrap {
	margin-left: 0.15rem;
}

.site-nav__cta {
	padding: 0.52rem 1rem;
	font-size: 0.86rem;
	gap: 0.4rem;
	box-shadow: 0 4px 16px rgba(33, 91, 73, 0.22);
}

.site-nav__cta .aevr-icon {
	width: 1.05rem;
	height: 1.05rem;
}

.site-nav__link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--vr-lime), var(--vr-green));
	transition: width var(--transition-fast);
}

.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
	width: 100%;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
	color: var(--vr-deep);
}

@media (max-width: 960px) {
	.nav-toggle {
		display: flex;
	}

	.site-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: #fff;
		border-bottom: 1px solid var(--color-border);
		padding: 1rem;
		display: none;
		flex-direction: column;
		gap: 1rem;
		box-shadow: var(--shadow-md);
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0.15rem;
	}

	.site-nav__link {
		padding: 0.55rem 0.35rem;
		border-radius: 10px;
		font-size: 0.95rem;
	}

	.site-nav__link::after {
		display: none;
	}

	.site-nav__link:hover,
	.site-nav__link[aria-current="page"] {
		background: rgba(150, 212, 61, 0.12);
	}

	.site-nav__cta-wrap {
		margin-left: 0;
		margin-top: 0.5rem;
		padding-top: 0.5rem;
		border-top: 1px solid var(--color-border);
	}

	.site-nav__cta {
		width: 100%;
		justify-content: center;
	}
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.78rem 1.35rem;
	border-radius: 999px;
	font-family: var(--font-display);
	font-weight: 650;
	font-size: 0.95rem;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast),
		transform 0.12s ease, box-shadow var(--transition-fast);
}

.btn:active {
	transform: translateY(1px);
}

.btn--primary {
	background: linear-gradient(135deg, var(--vr-green), var(--vr-deep));
	color: #fff;
	border-color: transparent;
	box-shadow: 0 4px 16px rgba(33, 91, 73, 0.28);
}

.btn--primary:hover {
	background: linear-gradient(135deg, var(--vr-lime), var(--vr-green));
	color: #0f2419;
	box-shadow: 0 6px 24px rgba(103, 162, 68, 0.35);
}

.btn--ghost {
	background: rgba(255, 255, 255, 0.75);
	border-color: rgba(53, 114, 75, 0.35);
	color: var(--vr-deep);
}

.btn--ghost:hover {
	border-color: var(--vr-green);
	background: #fff;
	color: var(--vr-forest);
}

.btn--sm {
	padding: 0.55rem 1rem;
	font-size: 0.88rem;
}

.btn--block {
	width: 100%;
}

/* Sections */
.section {
	padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.section--tight {
	padding: clamp(1.25rem, 3vw, 2rem) 0;
}

.section--surface {
	background: var(--color-surface);
}

.section--gradient {
	position: relative;
	overflow: hidden;
	background: linear-gradient(145deg, #e8f5e4 0%, #f4faf2 38%, #ffffff 72%);
}

.section--gradient::before {
	content: "";
	position: absolute;
	inset: -40% -20% auto -20%;
	height: 70%;
	z-index: 1;
	background: radial-gradient(ellipse at 30% 20%, rgba(150, 212, 61, 0.35), transparent 55%),
		radial-gradient(ellipse at 80% 40%, rgba(53, 114, 75, 0.2), transparent 50%);
	animation: mesh-shift 14s ease-in-out infinite;
	pointer-events: none;
}

/* Capa ambiental en secciones (sin tocar el hero principal) */
.section:not(.hero) {
	position: relative;
	isolation: isolate;
	z-index: 0; /* crea contexto de apilado para que el ::after no acabe detrás de fondos */
}

/* Capa ambiental en secciones (sin grid de puntos): mallas suaves animadas, contenida al ancho para evitar scroll-x */
.section:not(.hero)::after {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	max-width: 100%;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(ellipse 140% 90% at 12% 18%, rgba(150, 212, 61, 0.18), transparent 56%),
		radial-gradient(ellipse 120% 85% at 88% 42%, rgba(53, 114, 75, 0.12), transparent 54%),
		radial-gradient(ellipse 100% 75% at 48% 102%, rgba(103, 162, 68, 0.11), transparent 58%);
	background-size: 220% 220%, 240% 240%, 200% 200%;
	background-position: 10% 30%, 90% 60%, 50% 100%;
	animation: section-ambient-mesh 24s ease-in-out infinite;
}

.section:not(.hero) .container {
	position: relative;
	z-index: 2;
}

/* Fondo fotográfico opcional (variable --section-photo); misma idea que .hero-photo-bg */
.section.section--has-photo {
	overflow: hidden;
}

.section.section--has-photo::before {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	max-width: 100%;
	z-index: 0;
	background-image: var(--section-photo);
	background-size: cover;
	background-position: center;
	opacity: 0.2;
	filter: saturate(0.92);
	pointer-events: none;
	transform-origin: center;
	animation: section-photo-drift 38s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
	.section.section--has-photo::before {
		animation: none;
		inset: 0;
	}
}

.section-title {
	margin: 0 0 0.5rem;
}

.section-intro {
	margin: 0 0 2rem;
	max-width: 62ch;
}

.section-intro--narrow {
	max-width: 48ch;
	margin-bottom: 1.5rem;
}

.section-head .section-intro {
	margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
	.section:not(.hero)::after {
		animation: none;
		opacity: 0.55;
	}
}

/* Hero */
.hero {
	padding: clamp(2.75rem, 6vw, 5.25rem) 0 clamp(3rem, 5vw, 4rem);
}

.hero--rich {
	isolation: isolate;
}

.hero-photo-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.26;
	pointer-events: none;
	animation: hero-kenburns 32s ease-in-out infinite alternate;
}

.hero-scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(105deg,
			rgba(255, 255, 255, 0.97) 0%,
			rgba(255, 255, 255, 0.88) 36%,
			rgba(255, 255, 255, 0.55) 58%,
			rgba(244, 250, 242, 0.35) 100%);
}

.hero--commercial.hero--has-photo .hero-photo-bg {
	opacity: 0.42;
}

.hero--commercial.hero--has-photo .hero-scrim {
	background: linear-gradient(105deg,
			rgba(255, 255, 255, 0.96) 0%,
			rgba(255, 255, 255, 0.82) 40%,
			rgba(255, 255, 255, 0.45) 62%,
			rgba(232, 245, 228, 0.22) 100%);
}

.hero--commercial.hero--has-photo .hero-mesh {
	opacity: 0.48;
}

.hero--has-photo .hero-mesh {
	opacity: 0.92;
}

.hero-mesh {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(120deg,
			rgba(150, 212, 61, 0.12),
			rgba(103, 162, 68, 0.08),
			rgba(33, 91, 73, 0.06),
			rgba(150, 212, 61, 0.1));
	background-size: 200% 200%;
	animation: gradient-flow 18s ease infinite;
	pointer-events: none;
}

.hero .container {
	position: relative;
	z-index: 3;
}

.hero-shell {
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 3vw, 2.25rem);
}

.hero-grid--commercial {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.95fr) minmax(0, 1fr);
	gap: clamp(1rem, 2.5vw, 1.75rem);
	align-items: stretch;
}

@media (max-width: 1180px) {
	.hero-grid--commercial {
		grid-template-columns: 1fr 1fr;
	}

	.form-card--lead {
		grid-column: 1 / -1;
		max-width: 520px;
		margin-inline: auto;
		width: 100%;
	}
}

@media (max-width: 820px) {
	.hero-grid--commercial {
		grid-template-columns: 1fr;
	}

	.form-card--lead {
		max-width: none;
	}

	.hero-process,
	.hero-process:hover {
		transform: none;
	}
}

.hero-process {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(53, 114, 75, 0.16);
	border-radius: var(--radius-lg);
	box-shadow: 0 14px 40px rgba(33, 91, 73, 0.1);
	padding: 1.35rem 1.2rem 1.2rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	transform: rotate(-1.7deg);
	transform-origin: center;
	transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.hero-process:hover {
	transform: rotate(-0.5deg) translateY(-2px);
}

.hero-process__eyebrow {
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--vr-forest);
	margin: 0;
}

.hero-process__title {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.25;
	color: var(--color-ink);
}

.hero-process__sub {
	margin: 0;
	font-size: 0.88rem;
	color: var(--color-muted);
	line-height: 1.45;
}

.hero-process__list {
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.hero-process__list li {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.55rem 0.65rem;
	align-items: center;
	padding: 0.55rem 0.6rem;
	border-radius: var(--radius);
	background: rgba(248, 252, 246, 0.9);
	border: 1px solid rgba(53, 114, 75, 0.1);
}

.hero-process__ico .aevr-icon {
	width: 1.15rem;
	height: 1.15rem;
	color: var(--vr-deep);
}

.hero-process__body {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	font-size: 0.86rem;
	line-height: 1.35;
}

.hero-process__body strong {
	font-size: 0.9rem;
	color: var(--color-ink);
}

.hero-process__check .aevr-icon--tick {
	width: 1rem;
	height: 1rem;
	color: var(--vr-green);
	stroke-width: 2.25;
}

.hero-process__highlight {
	margin-top: auto;
	padding: 0.85rem 0.9rem;
	border-radius: var(--radius);
	background: linear-gradient(135deg, rgba(150, 212, 61, 0.22), rgba(103, 162, 68, 0.12));
	border: 1px solid rgba(53, 114, 75, 0.15);
}

.hero-process__highlight-label {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--vr-deep);
}

.hero-process__highlight-range {
	margin: 0.25rem 0 0;
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--vr-forest);
}

.hero-process__highlight-note {
	margin: 0.35rem 0 0;
	font-size: 0.78rem;
	color: var(--color-muted);
}

.hero-trust {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin: 1.25rem 0 0;
	max-width: 52ch;
	font-size: 0.9rem;
	line-height: 1.45;
	color: var(--color-ink);
}

.hero-trust__icon .aevr-icon {
	width: 1.35rem;
	height: 1.35rem;
	flex-shrink: 0;
	color: var(--vr-green);
	margin-top: 0.1rem;
}

.btn--with-icon .aevr-icon {
	width: 1.15rem;
	height: 1.15rem;
	flex-shrink: 0;
}

.form-card--lead {
	overflow: hidden;
	padding: 0;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(53, 114, 75, 0.18);
	box-shadow: 0 18px 48px rgba(33, 91, 73, 0.14);
}

.form-card__banner {
	padding: 1.1rem 1.15rem 1rem;
	background: linear-gradient(125deg, var(--vr-deep) 0%, #1a4d3e 55%, var(--vr-forest) 100%);
	color: #fff;
}

.form-card__banner-title {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
}

.form-card__banner-lead {
	margin: 0.4rem 0 0;
	font-size: 0.88rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.88);
}

.form-card__body {
	padding: 1rem 1.1rem 1.15rem;
	background: #fff;
}

.form-card__body--compact {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hero-mini-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.hero-mini-list li {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.9rem;
	color: var(--color-muted);
}

.hero-mini-list .aevr-icon {
	width: 1rem;
	height: 1rem;
	color: var(--vr-green);
	flex-shrink: 0;
}

.hero-form-grid {
	gap: 0.65rem 0.85rem;
}

.hero-form-grid--rest {
	margin-top: 0.85rem;
}

.hero-dropzone {
	margin: 0.85rem 0 0;
}

.hero-dropzone__label {
	display: block;
	cursor: pointer;
	margin: 0;
}

.hero-dropzone__input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.hero-dropzone__ui {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 1.25rem 1rem;
	border: 2px dashed rgba(53, 114, 75, 0.35);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(248, 252, 246, 0.95), #fff);
	text-align: center;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-dropzone:hover .hero-dropzone__ui,
.hero-dropzone.is-dragover .hero-dropzone__ui {
	border-color: var(--vr-green);
	background: rgba(232, 245, 228, 0.65);
	box-shadow: 0 0 0 3px rgba(150, 212, 61, 0.2);
}

.hero-dropzone__icon .aevr-icon {
	width: 1.75rem;
	height: 1.75rem;
	color: var(--vr-green);
}

.hero-dropzone__title {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--vr-deep);
}

.hero-dropzone__hint {
	font-size: 0.82rem;
	color: var(--color-muted);
	max-width: 28ch;
}

.hero-form-lock {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0.85rem 0 0;
	font-size: 0.82rem;
}

.hero-form-lock__ico .aevr-icon {
	width: 1.1rem;
	height: 1.1rem;
	flex-shrink: 0;
	color: var(--vr-green);
}

.hero-form-submit {
	margin-top: 0.75rem;
}

.hero-value-bar {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem 1.25rem;
	padding: 1.15rem 1.25rem;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(53, 114, 75, 0.12);
	border-radius: var(--radius-lg);
	box-shadow: 0 8px 28px rgba(33, 91, 73, 0.08);
}

.hero-value-bar__item {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.82rem;
	line-height: 1.4;
	color: var(--color-muted);
}

.hero-value-bar__item .aevr-icon--value {
	width: 1.35rem;
	height: 1.35rem;
	flex-shrink: 0;
	color: var(--vr-green);
	margin-top: 0.05rem;
}

.hero-value-bar__item strong {
	display: block;
	font-family: var(--font-display);
	font-size: 0.95rem;
	color: var(--vr-deep);
	margin-bottom: 0.15rem;
}

.hero-value-bar__desc {
	display: block;
	margin-top: 0.1rem;
}

@media (max-width: 900px) {
	.hero-value-bar {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 520px) {
	.hero-value-bar {
		grid-template-columns: 1fr;
	}
}

.hero-grid--triple {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr 1fr;
	gap: clamp(1.25rem, 3vw, 2.25rem);
	align-items: start;
}

@media (max-width: 1100px) {
	.hero-grid--triple {
		grid-template-columns: 1fr 1fr;
	}

	.hero-showcase {
		order: 3;
		grid-column: 1 / -1;
	}

	.form-card--hero {
		order: 2;
	}
}

@media (max-width: 700px) {
	.hero-grid--triple {
		grid-template-columns: 1fr;
	}

	.hero-showcase {
		grid-column: auto;
	}
}

.hero-copy {
	position: relative;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	background: rgba(150, 212, 61, 0.22);
	color: var(--vr-deep);
	font-weight: 700;
	font-size: 0.8rem;
	margin-bottom: 1rem;
	border: 1px solid rgba(53, 114, 75, 0.2);
}

.hero-badge__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--vr-lime);
	animation: pulse-ring 2.8s ease-out infinite;
}

.hero h1 {
	margin: 0 0 1rem;
}

.hero-note {
	font-size: 0.92rem;
	max-width: 52ch;
	margin-top: 0.5rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1.5rem 0 1rem;
}

.hero-kpis {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}

@media (max-width: 640px) {
	.hero-kpis {
		grid-template-columns: 1fr;
	}
}

.kpi {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 1rem 1.1rem;
	box-shadow: var(--shadow-sm);
	border-left: 4px solid var(--vr-lime);
	transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.kpi:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.kpi strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: var(--vr-deep);
}

.kpi span {
	font-size: 0.85rem;
	color: var(--color-muted);
}

/* Hero showcase column */
.hero-showcase {
	position: relative;
	min-height: 280px;
	border-radius: var(--radius-lg);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(232, 245, 228, 0.95));
	border: 1px solid rgba(53, 114, 75, 0.18);
	box-shadow: var(--shadow-md);
	padding: 1.5rem 1.25rem 1.25rem;
	overflow: hidden;
}

.hero-orbs {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(0.5px);
	opacity: 0.55;
	animation: float-y 6s ease-in-out infinite;
}

.hero-orb--1 {
	width: 120px;
	height: 120px;
	background: radial-gradient(circle, var(--vr-lime), transparent 70%);
	top: 8%;
	right: 10%;
	animation-delay: 0s;
}

.hero-orb--2 {
	width: 90px;
	height: 90px;
	background: radial-gradient(circle, var(--vr-green), transparent 70%);
	bottom: 18%;
	left: 8%;
	animation-delay: 1.2s;
}

.hero-orb--3 {
	width: 70px;
	height: 70px;
	background: radial-gradient(circle, var(--vr-forest), transparent 70%);
	top: 40%;
	left: 35%;
	animation-delay: 2.4s;
}

.hero-wave {
	position: relative;
	margin-top: auto;
	opacity: 0.9;
	animation: float-y 8s ease-in-out infinite;
	animation-delay: 0.5s;
}

.hero-wave img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	filter: drop-shadow(0 10px 24px rgba(33, 91, 73, 0.18));
	transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}

.hero-showcase:hover .hero-wave img {
	transform: translateY(-4px) scale(1.01);
	filter: drop-shadow(0 14px 28px rgba(53, 114, 75, 0.22));
}

@media (prefers-reduced-motion: reduce) {
	.hero-showcase:hover .hero-wave img {
		transform: none;
	}
}

.hero-showcase__tag {
	position: relative;
	margin: 1rem 0 0;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--vr-deep);
	text-align: center;
}

.form-card--hero {
	box-shadow: 0 16px 48px rgba(33, 91, 73, 0.12);
	border: 1px solid rgba(53, 114, 75, 0.15);
	transition: box-shadow var(--transition-med), transform var(--transition-fast);
}

.form-card--hero:hover {
	box-shadow: 0 20px 56px rgba(33, 91, 73, 0.16);
}

/* Logo strip (hint) */
.logo-strip {
	text-align: center;
	padding: 1rem 1.25rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(90deg, rgba(150, 212, 61, 0.12), rgba(255, 255, 255, 0.95), rgba(103, 162, 68, 0.1));
	border: 1px dashed rgba(53, 114, 75, 0.35);
}

.logo-strip__label {
	margin: 0 0 0.35rem;
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--vr-deep);
	font-size: 0.95rem;
}

.logo-strip__hint {
	margin: 0;
	font-size: 0.88rem;
	color: var(--color-muted);
}

.logo-strip code {
	font-size: 0.82rem;
	background: rgba(150, 212, 61, 0.15);
	padding: 0.12rem 0.35rem;
	border-radius: 6px;
}

/* Franja conversión (marketing, bajo hero) */
.conversion-strip {
	position: relative;
	padding: clamp(1.35rem, 3.5vw, 2rem) 0;
	background: linear-gradient(95deg, rgba(33, 91, 73, 0.06) 0%, #ffffff 42%, rgba(150, 212, 61, 0.12) 100%);
	border-top: 1px solid rgba(53, 114, 75, 0.12);
	border-bottom: 1px solid rgba(53, 114, 75, 0.1);
	overflow: hidden;
}

.conversion-strip::before {
	content: "";
	position: absolute;
	inset: -30% 40% auto -20%;
	height: 120%;
	background: radial-gradient(ellipse at 30% 0%, rgba(150, 212, 61, 0.2), transparent 55%);
	pointer-events: none;
}

.conversion-strip__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
	gap: 1rem 1.5rem;
	align-items: stretch;
}

@media (max-width: 1024px) {
	.conversion-strip__inner {
		grid-template-columns: 1fr 1fr;
	}

	.conversion-strip__cta {
		grid-column: 1 / -1;
		justify-self: center;
		min-width: min(100%, 280px);
		text-align: center;
	}
}

@media (max-width: 640px) {
	.conversion-strip__inner {
		grid-template-columns: 1fr;
	}
}

.conversion-pill {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1rem 1.15rem;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(53, 114, 75, 0.16);
	box-shadow: var(--shadow-sm);
	transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.conversion-pill:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: rgba(150, 212, 61, 0.45);
}

.conversion-pill__icon {
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 12px;
	display: grid;
	place-items: center;
	color: var(--vr-deep);
	background: linear-gradient(135deg, rgba(150, 212, 61, 0.45), rgba(53, 114, 75, 0.2));
}

.conversion-pill__icon .aevr-icon {
	width: 1.2rem;
	height: 1.2rem;
}

.conversion-pill strong {
	display: block;
	font-family: var(--font-display);
	color: var(--vr-deep);
	font-size: 1rem;
	margin-bottom: 0.2rem;
}

.conversion-pill__sub {
	display: block;
	font-size: 0.88rem;
	color: var(--color-muted);
	line-height: 1.45;
}

.conversion-strip__cta {
	align-self: center;
	white-space: nowrap;
	box-shadow: 0 6px 22px rgba(33, 91, 73, 0.28);
}

.conversion-strip__cta:hover {
	transform: translateY(-2px);
}

/* Visual gallery */
.section--visual-gallery {
	background: linear-gradient(180deg, #ffffff 0%, #f0f7ec 100%);
}

.photo-showcase {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

@media (max-width: 900px) {
	.photo-showcase {
		grid-template-columns: 1fr;
	}
}

.photo-card {
	margin: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.photo-card:hover {
	transform: translateY(-6px) scale(1.01);
	box-shadow: var(--shadow-md);
}

.photo-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(135deg, var(--vr-deep), var(--vr-forest));
}

.photo-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease-out);
}

.photo-card:hover .photo-card__media img {
	transform: scale(1.05);
}

.photo-card__media--ph {
	position: relative;
	display: grid;
	place-items: center;
}

.photo-card__ph-inner {
	width: 72%;
	height: 55%;
	border-radius: 20px;
	background: linear-gradient(135deg,
			rgba(150, 212, 61, 0.45),
			rgba(103, 162, 68, 0.35),
			rgba(33, 91, 73, 0.55));
	background-size: 200% 200%;
	animation: gradient-flow 10s ease infinite;
	box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.15);
}

.photo-card__media--ph[data-tone="2"] .photo-card__ph-inner {
	animation-duration: 13s;
}

.photo-card__media--ph[data-tone="3"] .photo-card__ph-inner {
	animation-duration: 16s;
}

.photo-card__cap {
	padding: 0.85rem 1rem 1.1rem;
	font-family: var(--font-display);
	font-weight: 650;
	font-size: 0.95rem;
	color: var(--vr-deep);
	text-align: center;
}

/* Cards & grids */
.grid-3 {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
	.grid-3 {
		grid-template-columns: 1fr;
	}

	.grid-2 {
		grid-template-columns: 1fr;
	}
}

.card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 1.35rem 1.5rem;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: rgba(150, 212, 61, 0.45);
}

.card h3 {
	margin-top: 0;
}

.card--service .icon-pill {
	margin-bottom: 0.65rem;
}

.card--benefit .icon-pill {
	width: 2.35rem;
	height: 2.35rem;
	margin-bottom: 0.65rem;
}

.icon-pill {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, rgba(150, 212, 61, 0.35), rgba(53, 114, 75, 0.15));
	color: var(--vr-deep);
	margin-bottom: 0.75rem;
}

.icon-pill .aevr-icon {
	width: 1.28rem;
	height: 1.28rem;
}

.card--service .icon-pill .aevr-icon {
	width: 1.2rem;
	height: 1.2rem;
}

svg.aevr-icon {
	display: block;
	flex-shrink: 0;
	width: 1.35rem;
	height: 1.35rem;
	color: var(--vr-deep);
	overflow: visible;
}

/* Steps */
.steps {
	display: grid;
	gap: 1rem;
	counter-reset: step;
}

.step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: start;
	padding: 1.25rem;
	border-radius: var(--radius-lg);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.step:hover {
	border-color: rgba(103, 162, 68, 0.45);
	box-shadow: var(--shadow-sm);
}

.step::before {
	counter-increment: step;
	content: counter(step);
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--vr-green), var(--vr-deep));
	color: #fff;
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.step:hover::before {
	transform: scale(1.06);
	box-shadow: 0 0 0 4px rgba(150, 212, 61, 0.25);
}

@media (prefers-reduced-motion: no-preference) {
	.step {
		animation: step-breathe 12s ease-in-out infinite;
	}

	.step:nth-child(2) {
		animation-delay: -3s;
	}

	.step:nth-child(3) {
		animation-delay: -6s;
	}

	.step:nth-child(4) {
		animation-delay: -9s;
	}
}

@keyframes step-breathe {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-3px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.step {
		animation: none;
	}
}

/* Trust strip + marquee */
.trust-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	padding: 1rem 0;
}

.trust-marquee {
	position: relative;
	overflow: hidden;
	padding: 0.75rem 0;
	margin: 0 -0.5rem;
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.trust-marquee__track {
	display: flex;
	flex-wrap: nowrap;
	gap: 2.5rem;
	width: max-content;
	animation: marquee-scroll 38s linear infinite;
}

.trust-marquee:hover .trust-marquee__track {
	animation-play-state: paused;
}

.trust-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--color-ink);
	white-space: nowrap;
	flex-shrink: 0;
}

.trust-item::before {
	content: "✓";
	color: var(--vr-lime);
	font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
	.trust-marquee {
		mask-image: none;
		overflow: visible;
	}

	.trust-marquee__track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		gap: 0.75rem 1.25rem;
	}

	.trust-marquee__track .trust-item:nth-child(n + 6) {
		display: none;
	}
}

/* Testimonios (home) */
.section--testimonials {
	background: linear-gradient(180deg, #eef6ea 0%, #ffffff 55%);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: stretch;
}

@media (max-width: 960px) {
	.testimonial-grid {
		grid-template-columns: 1fr;
	}
}

.testimonial-card {
	position: relative;
	margin: 0;
	padding: 1.5rem 1.35rem 1.25rem;
	border-radius: var(--radius-lg);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.testimonial-card .aevr-icon--quote {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 1.75rem;
	height: 1.75rem;
	opacity: 0.16;
	color: var(--vr-deep);
}

.testimonial-card blockquote {
	margin: 0 0 1.1rem;
	padding: 0;
	border: 0;
}

.testimonial-card__text {
	font-family: var(--font-display);
	font-size: 1.02rem;
	line-height: 1.5;
	color: var(--color-ink);
}

.testimonial-card__footer {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.testimonial-card__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	flex-shrink: 0;
	object-fit: cover;
	border: 2px solid rgba(150, 212, 61, 0.45);
}

.testimonial-card__avatar--ph {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--vr-green), var(--vr-deep));
	border: 0;
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.02em;
}

.testimonial-card__meta {
	min-width: 0;
}

.testimonial-card__meta strong {
	display: block;
	font-size: 0.95rem;
	color: var(--color-ink);
}

.testimonial-card__meta span {
	display: block;
	font-size: 0.84rem;
	color: var(--color-muted);
	margin-top: 0.15rem;
}

.testimonial-note {
	margin: 1.5rem 0 0;
	text-align: center;
	font-size: 0.86rem;
	color: var(--color-muted);
	max-width: 56ch;
	margin-inline: auto;
}

/* Forms */
.form-card {
	background: var(--color-surface);
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	padding: clamp(1.25rem, 3vw, 2rem);
	box-shadow: var(--shadow-md);
}

.form-card.form-card--lead {
	padding: 0;
}

.form-grid {
	display: grid;
	gap: 0.85rem 1rem;
	grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
	.form-grid {
		grid-template-columns: 1fr;
	}
}

.form-grid .full {
	grid-column: 1 / -1;
}

label {
	display: block;
	font-weight: 650;
	font-size: 0.82rem;
	color: var(--color-ink);
	margin-bottom: 0.28rem;
}

.form-card input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="image"]),
input[type="text"],
input[type="email"],
input[type="tel"],
select {
	width: 100%;
	padding: 0.45rem 0.72rem;
	min-height: 2.35rem;
	line-height: 1.3;
	border-radius: 10px;
	border: 1px solid var(--color-border);
	font: inherit;
	font-size: 0.95rem;
	background: #fff;
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
	-webkit-appearance: none;
	appearance: none;
}

input[type="file"] {
	width: 100%;
	padding: 0.4rem 0.55rem;
	border-radius: 10px;
	border: 1px solid var(--color-border);
	font: inherit;
	font-size: 0.88rem;
	background: #fff;
	line-height: 1.35;
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus,
input[type="file"]:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--vr-green);
	box-shadow: 0 0 0 3px rgba(150, 212, 61, 0.35);
}

textarea {
	width: 100%;
	min-height: 100px;
	padding: 0.5rem 0.72rem;
	line-height: 1.45;
	border-radius: 10px;
	border: 1px solid var(--color-border);
	font: inherit;
	font-size: 0.95rem;
	background: #fff;
	resize: vertical;
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.check-row {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
	font-size: 0.92rem;
}

.check-row input {
	width: auto;
	margin-top: 0.25rem;
}

.form-msg {
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	border-radius: 10px;
	display: none;
}

.form-msg.is-visible {
	display: block;
}

.form-msg--ok {
	background: #ecfdf5;
	color: #166534;
	border: 1px solid #bbf7d0;
}

.form-msg--err {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

.hp-field {
	position: absolute;
	left: -5000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* CTA band */
.cta-band {
	background: linear-gradient(125deg, var(--vr-deep) 0%, var(--vr-forest) 45%, #1a4036 100%);
	color: #e2f0e8;
	padding: clamp(2.5rem, 5vw, 3.75rem) 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.cta-band.cta-band--photo::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--cta-photo);
	background-size: cover;
	background-position: center;
	opacity: 0.24;
	filter: saturate(0.75) brightness(0.55);
	pointer-events: none;
}

.cta-band::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(150, 212, 61, 0.25), transparent 55%);
	pointer-events: none;
}

.cta-band .container {
	position: relative;
	z-index: 2;
}

.cta-band h2 {
	color: #fff;
	margin: 0 0 0.75rem;
}

.cta-band .btn--primary {
	background: var(--vr-lime);
	color: var(--vr-deep);
	border-color: var(--vr-lime);
	font-weight: 750;
}

.cta-band .btn--primary:hover {
	background: #fff;
	color: var(--vr-deep);
	border-color: #fff;
}

/* Page hero inner */
.page-hero {
	padding: clamp(2rem, 4vw, 3rem) 0 1rem;
	background: linear-gradient(180deg, #ffffff, var(--color-surface-alt));
	border-bottom: 1px solid var(--color-border);
}

/* Estudio factura: fondo dinámico específico (más movimiento visual) */
.page-estudio .page-hero,
.page-estudio .section--energy-flow {
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

.page-estudio .page-hero::before,
.page-estudio .section--energy-flow::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 135% 85% at 8% 18%, rgba(150, 212, 61, 0.2), transparent 56%),
		radial-gradient(ellipse 110% 80% at 92% 64%, rgba(53, 114, 75, 0.15), transparent 54%),
		radial-gradient(ellipse 95% 65% at 52% 104%, rgba(103, 162, 68, 0.14), transparent 58%);
	background-size: 230% 230%, 240% 240%, 190% 190%;
	animation: energy-flow-shift 18s ease-in-out infinite;
}

.page-estudio .page-hero::after,
.page-estudio .section--energy-flow::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	mix-blend-mode: multiply;
	background-image:
		repeating-linear-gradient(116deg,
			rgba(53, 114, 75, 0.08) 0 2px,
			transparent 2px 18px),
		repeating-linear-gradient(116deg,
			rgba(150, 212, 61, 0.06) 0 1px,
			transparent 1px 12px);
	background-size: 320px 220px, 280px 200px;
	animation: energy-lines-drift 22s linear infinite;
}

.page-estudio .page-hero .container,
.page-estudio .section--energy-flow>.container {
	position: relative;
	z-index: 1;
}

.page-estudio .estudio-section {
	background:
		linear-gradient(135deg, rgba(150, 212, 61, 0.08), rgba(255, 255, 255, 0.92)),
		#f7faf4;
}

.page-estudio .estudio-section > .container {
	position: relative;
	z-index: 2;
}

.page-estudio .estudio-section .energy-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	opacity: 0.85;
}

.page-estudio .estudio-section .energy-lines {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.page-estudio .estudio-section .energy-lines .line {
	fill: none;
	stroke-width: 1.4;
	stroke-linecap: round;
	opacity: 0.22;
}

.page-estudio .estudio-section .line-1 {
	stroke: #96d43d;
	stroke-dasharray: 8 14;
	animation: energy-dash 18s linear infinite;
}

.page-estudio .estudio-section .line-2 {
	stroke: #67a244;
	stroke-dasharray: 4 12;
	animation: energy-dash 24s linear infinite reverse;
}

.page-estudio .estudio-section .line-3 {
	stroke: #35724b;
	stroke-dasharray: 10 16;
	animation: energy-dash 28s linear infinite;
}

.page-estudio .estudio-section .line-4 {
	stroke: #215b49;
	stroke-dasharray: 6 18;
	animation: energy-dash 26s linear infinite reverse;
	opacity: 0.16;
}

.page-estudio .estudio-section .energy-node {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #96d43d;
	box-shadow: 0 0 0 8px rgba(150, 212, 61, 0.12);
	animation: pulse-node 4s ease-in-out infinite;
}

.page-estudio .estudio-section .node-1 {
	top: 24%;
	left: 16%;
}

.page-estudio .estudio-section .node-2 {
	top: 58%;
	left: 38%;
	background: #67a244;
}

.page-estudio .estudio-section .node-3 {
	top: 36%;
	right: 18%;
	background: #35724b;
}

.page-estudio .estudio-section .node-4 {
	top: 18%;
	left: 62%;
	background: #215b49;
}

.page-estudio .estudio-section .node-5 {
	top: 72%;
	right: 28%;
	background: #96d43d;
}

.page-estudio .estudio-section .ghost-card {
	position: absolute;
	width: 180px;
	height: 115px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(53, 114, 75, 0.12);
	box-shadow: 0 18px 60px rgba(33, 91, 73, 0.08);
	backdrop-filter: blur(8px);
	animation: float-soft-card 16s ease-in-out infinite;
}

.page-estudio .estudio-section .ghost-card-1 {
	left: 8%;
	bottom: 12%;
}

.page-estudio .estudio-section .ghost-card-2 {
	right: 22%;
	bottom: 6%;
	width: 140px;
	height: 92px;
	border-radius: 18px;
	opacity: 0.72;
	animation-duration: 18s;
}

.page-estudio .estudio-section .ghost-card span {
	display: block;
	height: 8px;
	margin: 16px 18px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(53, 114, 75, 0.18), rgba(150, 212, 61, 0.34));
}

.page-estudio .estudio-section .ghost-chart {
	position: absolute;
	right: 9%;
	top: 18%;
	display: flex;
	align-items: end;
	gap: 7px;
	height: 86px;
	opacity: 0.22;
	animation: float-soft-chart 20s ease-in-out infinite reverse;
}

.page-estudio .estudio-section .ghost-chart i {
	display: block;
	width: 14px;
	border-radius: 999px 999px 0 0;
	background: linear-gradient(180deg, #96d43d, #215b49);
}

.page-estudio .estudio-section .ghost-chart i:nth-child(1) { height: 32px; }
.page-estudio .estudio-section .ghost-chart i:nth-child(2) { height: 48px; }
.page-estudio .estudio-section .ghost-chart i:nth-child(3) { height: 40px; }
.page-estudio .estudio-section .ghost-chart i:nth-child(4) { height: 68px; }
.page-estudio .estudio-section .ghost-chart i:nth-child(5) { height: 58px; }

.page-estudio .estudio-section .ghost-chart-2 {
	left: 18%;
	top: 14%;
	right: auto;
	height: 68px;
	gap: 6px;
	opacity: 0.16;
	animation-duration: 24s;
}

.page-estudio .estudio-section .ghost-chart-2 i {
	width: 10px;
}

.page-estudio .estudio-section .ghost-chart-2 i:nth-child(1) { height: 24px; }
.page-estudio .estudio-section .ghost-chart-2 i:nth-child(2) { height: 40px; }
.page-estudio .estudio-section .ghost-chart-2 i:nth-child(3) { height: 30px; }
.page-estudio .estudio-section .ghost-chart-2 i:nth-child(4) { height: 52px; }

.page-estudio .estudio-section .energy-ring {
	position: absolute;
	border-radius: 999px;
	border: 1px solid rgba(53, 114, 75, 0.2);
	background: radial-gradient(circle at center, rgba(150, 212, 61, 0.1), transparent 65%);
	animation: ring-drift 14s ease-in-out infinite;
}

.page-estudio .estudio-section .ring-1 {
	width: 180px;
	height: 180px;
	top: 46%;
	left: -40px;
}

.page-estudio .estudio-section .ring-2 {
	width: 140px;
	height: 140px;
	top: 8%;
	right: 4%;
	animation-duration: 18s;
}

@media (max-width: 900px) {
	.page-estudio .estudio-section .ghost-card,
	.page-estudio .estudio-section .ghost-chart {
		opacity: 0.14;
	}

	.page-estudio .estudio-section .energy-ring {
		opacity: 0.16;
	}
}

@media (prefers-reduced-motion: reduce) {
	.page-estudio .estudio-section .line-1,
	.page-estudio .estudio-section .line-2,
	.page-estudio .estudio-section .line-3,
	.page-estudio .estudio-section .line-4,
	.page-estudio .estudio-section .energy-node,
	.page-estudio .estudio-section .ghost-card,
	.page-estudio .estudio-section .ghost-chart,
	.page-estudio .estudio-section .energy-ring {
		animation: none;
	}
}

.page-hero h1 {
	margin: 0 0 0.75rem;
}

/* Footer */
.site-footer {
	background: linear-gradient(180deg, #1a3d32 0%, #0f2419 100%);
	color: #c5ddd0;
	padding: 3rem 0 0;
	margin-top: 0;
}

.footer-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1.2fr repeat(3, 1fr);
}

@media (max-width: 900px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
}

.footer-title {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(196, 221, 208, 0.75);
	margin: 0 0 0.75rem;
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links a {
	color: #e8f5ec;
	text-decoration: none;
}

.footer-links a:hover {
	color: var(--vr-lime);
}

.footer-lead {
	max-width: 36ch;
	margin: 0.5rem 0 0;
}

.footer-bottom {
	border-top: 1px solid rgba(150, 212, 61, 0.2);
	margin-top: 2rem;
	padding: 1rem 0;
	font-size: 0.88rem;
	color: rgba(196, 221, 208, 0.7);
}

.logo--footer .logo-mark {
	background: linear-gradient(135deg, rgba(150, 212, 61, 0.9), var(--vr-forest));
}

.logo--footer .logo-text {
	color: #fff;
}

/* Legal prose */
.prose {
	max-width: 70ch;
	margin: 0 auto;
	padding: 2rem 0 4rem;
}

.prose h2 {
	margin-top: 2rem;
}

/* Blog cards */
.article-list {
	display: grid;
	gap: 1rem;
}

.article-card {
	padding: 1.25rem;
	transition: box-shadow var(--transition-fast);
}

.article-card:hover {
	box-shadow: var(--shadow-sm);
}

.article-card time {
	font-size: 0.85rem;
	color: var(--color-muted);
}

/* —— Home: salto de sección, acordeón, ribetes —— */
.section-eyebrow {
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--vr-forest);
	margin: 0 0 0.45rem;
}

.section-eyebrow+.section-title {
	margin-top: 0;
}

.section--accent-edge {
	box-shadow: inset 4px 0 0 0 rgba(150, 212, 61, 0.85);
}

/* Índice flotante (portada): capa fija, pestaña a la derecha; el panel usa [hidden] sin reglas contradictorias */
.toc-float {
	position: fixed;
	inset: 0;
	z-index: 55;
	pointer-events: none;
}

.toc-float__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 36, 25, 0.22);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.22s var(--ease-out), visibility 0.22s;
	pointer-events: none;
}

.toc-float.is-open .toc-float__backdrop {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.toc-float__tab {
	position: fixed;
	right: max(0.5rem, env(safe-area-inset-right));
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	z-index: 57;
	pointer-events: auto;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	min-height: 6.5rem;
	padding: 0.65rem 0.45rem;
	margin: 0;
	border: 0;
	border-radius: 10px 0 0 10px;
	cursor: pointer;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: #fff;
	background: linear-gradient(180deg, var(--vr-green), var(--vr-deep));
	box-shadow: -4px 4px 20px rgba(33, 91, 73, 0.35);
	transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.toc-float__tab:hover {
	filter: brightness(1.06);
	box-shadow: -6px 6px 26px rgba(33, 91, 73, 0.4);
}

.toc-float.is-open .toc-float__tab {
	background: linear-gradient(180deg, var(--vr-forest), #1a4036);
}

.toc-float__tab-label {
	display: inline-block;
}

.toc-float__panel {
	position: fixed;
	right: calc(2.75rem + max(0.5rem, env(safe-area-inset-right)));
	top: 50%;
	transform: translateY(-50%);
	z-index: 56;
	pointer-events: auto;
	width: min(17.5rem, calc(100vw - 3.75rem));
	max-height: min(70vh, 28rem);
	overflow-y: auto;
	padding: 1rem 1.1rem 1.1rem;
	border-radius: 12px;
	background: #fff;
	border: 1px solid rgba(53, 114, 75, 0.2);
	box-shadow: -12px 12px 40px rgba(33, 91, 73, 0.18);
}

.toc-float__panel[hidden] {
	display: none !important;
}

.toc-float__heading {
	margin: 0 0 0.65rem;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 750;
	color: var(--vr-deep);
}

.toc-float__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.toc-float__list a {
	display: block;
	padding: 0.4rem 0.25rem;
	font-size: 0.92rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--vr-forest);
	border-radius: 8px;
}

.toc-float__list a:hover {
	background: rgba(150, 212, 61, 0.15);
	color: var(--color-ink);
}

@media (max-width: 900px) {
	.toc-float__tab {
		top: auto;
		bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
		transform: none;
		writing-mode: horizontal-tb;
		min-height: unset;
		border-radius: 999px;
		padding: 0.55rem 1rem;
		box-shadow: 0 6px 20px rgba(33, 91, 73, 0.3);
	}

	.toc-float__panel {
		top: auto;
		bottom: calc(5.25rem + 3.35rem + env(safe-area-inset-bottom, 0px));
		right: max(0.5rem, env(safe-area-inset-right));
		transform: none;
		width: min(18rem, calc(100vw - 2rem));
		max-height: min(55vh, 22rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.toc-float__panel,
	.toc-float__backdrop {
		transition: none;
	}
}

.accordion--why {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: 720px;
}

.accordion__item {
	border-radius: var(--radius-lg);
	border: 1px solid rgba(53, 114, 75, 0.16);
	background: linear-gradient(135deg, #ffffff, rgba(240, 247, 236, 0.55));
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.accordion__item:hover {
	border-color: rgba(150, 212, 61, 0.45);
}

.accordion__item[open] {
	border-color: rgba(103, 162, 68, 0.45);
	box-shadow: var(--shadow-md);
}

.accordion__summary {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 1rem;
	cursor: pointer;
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--color-ink);
	user-select: none;
}

.accordion__summary::-webkit-details-marker {
	display: none;
}

.accordion__summary::after {
	content: "+";
	margin-left: auto;
	font-weight: 800;
	color: var(--vr-green);
	font-size: 1.1rem;
	line-height: 1;
	transition: transform 0.25s var(--ease-out);
}

.accordion__item[open] .accordion__summary::after {
	content: "−";
	transform: rotate(180deg);
}

.accordion__icon-wrap {
	display: grid;
	place-items: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 11px;
	background: linear-gradient(135deg, rgba(150, 212, 61, 0.35), rgba(53, 114, 75, 0.12));
	color: var(--vr-deep);
	flex-shrink: 0;
}

.accordion__icon-wrap .aevr-icon {
	width: 1.15rem;
	height: 1.15rem;
}

.accordion__title {
	font-size: 1rem;
}

.accordion__panel {
	padding: 0 1rem 1rem 3.25rem;
}

@media (max-width: 520px) {
	.accordion__panel {
		padding-left: 1rem;
	}
}

.grid-3--sectors-snap {
	scroll-snap-type: none;
}

@media (max-width: 900px) {
	.grid-3--sectors-snap {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 1rem;
		overflow-x: auto;
		padding-bottom: 0.35rem;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.grid-3--sectors-snap>.card {
		flex: 0 0 min(86vw, 300px);
		scroll-snap-align: start;
	}
}

body.page-home .form-card--hero {
	border: 1px solid rgba(150, 212, 61, 0.35);
	box-shadow: 0 12px 40px rgba(33, 91, 73, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}