/* COVESA LAB — brand tokens, Manual de Identidad Corporativa v2.0 (2026-08-24) */
:root {
	--covesa-fucsia: #FF0081;
	--covesa-vino: #9D2454;
	/* Darker vino for :hover/:active states on vino buttons — gives visible
	   press feedback without ever falling back to fucsia (the recurring
	   contrast-failure color for white text, ~3.8-4.18:1, fails WCAG AA).
	   Contrast with white text is even higher than the base vino's ~7.5:1. */
	--covesa-vino-dark: #7B1C3E;
	--covesa-indigo: #29255E;
	--covesa-azul-medio: #2C6096;
	--covesa-cian: #2BA9E1;
	--covesa-neutro-oscuro: #141019;
	--covesa-neutro-medio: #6B6B76;
	--covesa-neutro-claro: #ECECF1;
	--covesa-font: 'Source Sans 3', Arial, sans-serif;
}

body {
	font-family: var(--covesa-font);
	padding-top: 174px; /* clears the fixed .covesa-site-header */
}

/* Hide the block theme's own header/footer template parts — replaced
   site-wide by .covesa-site-header (injected via wp_body_open, see
   covesa-lab-site.php) so Elementor pages (no theme header at all under
   elementor_canvas) and plain block-theme pages both get the same real nav,
   with no double header — and no leftover placeholder footer (Blog/Events/
   Shop/Patterns/Themes demo links from the default twentytwentyfive footer). */
header.wp-block-template-part,
footer.wp-block-template-part {
	display: none !important;
}

/* ==========================================================================
   Site header / nav — hand-built (no Elementor Pro Theme Builder available)
   ========================================================================== */
.covesa-site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	height: 174px;
	background: #fff;
	box-shadow: 0 1px 0 rgba(41, 37, 94, 0.08), 0 4px 20px rgba(41, 37, 94, 0.06);
	display: flex;
	align-items: center;
}
.covesa-site-header__inner {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 6vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.covesa-site-header__brand img {
	height: 126px; /* +50% from 84px, 2026-08-25 — now matches .covesa-site-footer__logo */
	width: auto;
	display: block;
}
.covesa-site-header__brand {
	line-height: 0;
	flex-shrink: 0;
}

.covesa-site-header__nav {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-left: auto;
}
.covesa-nav-menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 26px;
	margin: 0;
	padding: 0;
}
.covesa-nav-menu li {
	position: relative;
}
.covesa-nav-menu > li > a {
	color: var(--covesa-indigo);
	text-decoration: none;
	font-family: var(--covesa-font);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}
.covesa-nav-menu > li > a:hover {
	color: var(--covesa-fucsia);
}
.covesa-nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	list-style: none;
	margin: 0;
	padding: 10px 0;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 16px 32px rgba(20, 16, 25, 0.18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.covesa-nav-menu li:hover > .sub-menu,
.covesa-nav-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.covesa-nav-menu .sub-menu a {
	display: block;
	padding: 10px 20px;
	color: var(--covesa-neutro-oscuro);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
}
.covesa-nav-menu .sub-menu a:hover {
	background: var(--covesa-neutro-claro);
	color: var(--covesa-vino);
}

.covesa-site-header__cta {
	/* Solid vino (not the fucsia->vino gradient) — the gradient's fucsia end
	   only holds ~3.8:1 white-on-fucsia contrast (fails WCAG AA's 4.5:1 for
	   body-size text; confirmed by /impeccable's 2026-08-28 detector pass).
	   Same fix already applied to the hero CTA on 2026-08-25. Vino gives
	   ~7.5:1. The gradient stays in use elsewhere (.c-sec .elementor-button)
	   — flag if the user wants it swapped sitewide too. */
	background: var(--covesa-vino);
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	border-radius: 999px;
	padding: 11px 22px;
	white-space: nowrap;
	flex-shrink: 0;
}

.covesa-site-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}
.covesa-site-header__toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--covesa-indigo);
}

@media (max-width: 900px) {
	body { padding-top: 126px; }
	.covesa-site-header { height: 126px; }
	.covesa-site-header__brand img { height: 90px; } /* +50% from 60px, 2026-08-25 */
	.covesa-site-header__toggle { display: flex; }
	.covesa-site-header__nav {
		position: fixed;
		top: 126px;
		left: 0;
		right: 0;
		bottom: 0;
		margin: 0;
		background: #fff;
		flex-direction: column;
		align-items: flex-start;
		padding: 28px 6vw;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform 0.2s ease;
	}
	.covesa-site-header__nav.is-open {
		transform: translateX(0);
	}
	.covesa-nav-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		width: 100%;
	}
	.covesa-nav-menu > li {
		width: 100%;
	}
	.covesa-nav-menu > li > a {
		display: block;
		padding: 14px 0;
		border-bottom: 1px solid rgba(41, 37, 94, 0.12);
	}
	.covesa-nav-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: var(--covesa-neutro-claro);
		display: none;
		transition: none;
	}
	.covesa-nav-menu li:hover > .sub-menu,
	.covesa-nav-menu li:focus-within > .sub-menu {
		display: block;
	}
	.covesa-nav-menu .sub-menu a {
		color: var(--covesa-indigo);
	}
	.covesa-nav-menu .sub-menu a:hover {
		background: #fff;
		color: var(--covesa-fucsia);
	}
	.covesa-site-header__cta {
		margin-top: 20px;
	}
}

/* ==========================================================================
   Site footer
   ========================================================================== */
.covesa-site-footer {
	background: var(--covesa-indigo);
	color: rgba(255, 255, 255, 0.75);
	padding: 72px 6vw 0;
}
.covesa-site-footer__inner {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 56px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.covesa-site-footer__brand { max-width: 320px; }
/* Full COVESA LAB lockup (not just the icon+text stand-in this replaced),
   forced to solid white via filter — the manual's real "blanco + acento"
   logo variant file doesn't exist yet (BRAND-TOKENS.md), this approximates
   it until that asset is produced. */
.covesa-site-footer__logo {
	height: 126px; /* matches .covesa-site-header__brand img, 2026-08-25 — user asked for header/footer logos to match */
	width: auto;
	display: block;
	margin-bottom: 20px;
	filter: brightness(0) invert(1);
}
.covesa-site-footer__brand p {
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}
.covesa-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.covesa-footer-menu a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 13px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}
.covesa-footer-menu a:hover {
	color: var(--covesa-fucsia);
}
.covesa-site-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.covesa-site-footer__contact a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 14px;
	width: fit-content;
}
.covesa-site-footer__contact a:hover {
	color: var(--covesa-fucsia);
}
.covesa-site-footer__contact p {
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.5);
	margin: 6px 0 0;
	max-width: 280px;
}
.covesa-site-footer__legal {
	max-width: 1440px;
	margin: 0 auto;
	padding: 24px 0;
}
.covesa-site-footer__legal p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
	margin: 0;
}

@media (max-width: 900px) {
	.covesa-site-footer { padding: 56px 6vw 0; }
	.covesa-site-footer__inner {
		grid-template-columns: 1fr;
		gap: 36px;
		padding-bottom: 40px;
	}
}

/* ==========================================================================
   Home hero (§01) — hand-coded HTML/CSS/GSAP (STORY-tier motion), replaces
   the old Elementor-built hero. Markup injected via wp_body_open in
   covesa-lab-site.php; entrance stagger + desktop-only parallax in
   assets/js/hero-motion.js. Full-bleed by design — sits below the fixed
   .covesa-site-header via `body`'s padding-top, same as every other page.
   ========================================================================== */
.covesa-hero-cinematic {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	color: #fff;
}
.covesa-hero-cinematic__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.covesa-hero-cinematic__img,
.covesa-hero-cinematic__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	/* scaled up so the GSAP parallax (yPercent 12, desktop only) never
	   reveals an edge underneath the image */
	transform: scale(1.14);
	will-change: transform;
}
.covesa-hero-cinematic__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		200deg,
		rgba(20, 16, 25, 0.35) 0%,
		rgba(41, 37, 94, 0.72) 45%,
		rgba(41, 37, 94, 0.94) 100%
	);
}
.covesa-hero-cinematic__inner {
	position: relative;
	z-index: 2;
	padding: 0 6vw 7vw;
	max-width: 1040px;
}

/* Kicker redesign 2026-09-05, second pass — the line+label version from
   earlier the same day "sigue sin convencer" (user feedback). Replaced with
   a self-contained tag: solid índigo pill + fucsia dot + white label. The
   solid background is deliberate, not decorative — it guarantees the same
   legible contrast regardless of what's behind it (hero video, a photo, the
   índigo Cifras gradient, or a plain white section), instead of depending
   on text-color-vs-background contrast per instance the way both the
   original plain-text version and the line+label version did. Also moves
   off using fucsia as a text color for pure UI chrome, matching the
   manual's 60/30/10 índigo/neutro/fucsia usage ratio (fucsia now marks only
   the accent dot). Shared shape across the 4 eyebrow-style classes sitewide. */
.covesa-hero-cinematic__eyebrow,
.c-cifras__eyebrow,
.c-capacidad__eyebrow,
.c-eyebrow-block {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 16px 7px 12px;
	border-radius: 999px;
	background: var(--covesa-indigo);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin: 0 0 20px;
}
.covesa-hero-cinematic__eyebrow::before,
.c-cifras__eyebrow::before,
.c-capacidad__eyebrow::before,
.c-eyebrow-block::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--covesa-fucsia);
	flex-shrink: 0;
}
.covesa-hero-cinematic__eyebrow {
	margin: 0 0 24px;
}

.covesa-hero-cinematic__title {
	margin: 0 0 28px;
}
.covesa-hero-cinematic__line {
	display: block;
	font-family: var(--covesa-font);
	font-weight: 200;
	/* Reduced from clamp(40px, 9vw, 120px) 2026-09-05 per user request
	   ("bájale al tamaño de la letra del banner") — same floor for mobile,
	   ~20% smaller at desktop widths. */
	font-size: clamp(40px, 7.4vw, 96px);
	line-height: 0.98;
	color: #fff;
	/* The section overlay gradient alone isn't reliable insurance here — its
	   darkest stop sits at the bottom-right, but this ultralight (200) weight
	   at large sizes can still blend into a bright video frame anywhere else
	   it lands. Same insurance already applied to the eyebrow above. */
	text-shadow: 0 2px 24px rgba(20, 16, 25, 0.55), 0 1px 4px rgba(20, 16, 25, 0.5);
}
.covesa-hero-cinematic__line strong {
	font-weight: 700;
}

.covesa-hero-cinematic__body {
	font-size: clamp(16px, 1.3vw, 19px);
	line-height: 1.5;
	max-width: 640px;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 28px;
}

.covesa-hero-cinematic__stat {
	font-size: clamp(15px, 1.15vw, 17px);
	font-weight: 600;
	line-height: 1.5;
	color: #fff;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	padding-top: 18px;
	max-width: 560px;
	margin: 0 0 32px;
}

.covesa-hero-cinematic__cta {
	display: inline-block;
	/* Solid vino, not the fucsia/vino gradient used elsewhere — the gradient's
	   white-on-fucsia end tests at ~3.8:1 (fails WCAG AA), flagged by the
	   2026-08-24 /impeccable critique. Solid vino (#9D2454) with white text
	   is ~7.5:1, comfortably AA/AAA. Scoped to this hero CTA only — the
	   sitewide gradient button is a separate, still-open fix. */
	background: var(--covesa-vino);
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	padding: 16px 36px;
	font-weight: 600;
	font-size: 15px;
	font-family: var(--covesa-font);
	transition: background 0.2s ease;
}
.covesa-hero-cinematic__cta:hover,
.covesa-hero-cinematic__cta:focus-visible {
	/* Was fucsia (~3.8:1, fails AA) — reintroduced the exact contrast bug
	   this rule's own resting-state comment says was fixed. Darker vino
	   instead: visible feedback, stays well above AA. */
	background: var(--covesa-vino-dark);
}

@media (max-width: 900px) {
	.covesa-hero-cinematic { min-height: 82vh; }
	.covesa-hero-cinematic__img,
	.covesa-hero-cinematic__video { transform: none; } /* no parallax on mobile, no scale needed */
}

/* ==========================================================================
   Reusable section system (§02–§15) — generic classes applied at COLUMN
   level via Elementor's "CSS Classes" advanced control, which DOES apply
   reliably (unlike the widget-level control used nowhere below). Every
   widget lives alone in its own column so this stays simple. All selectors
   are `body`-prefixed to out-specify Elementor's own generated post CSS.
   ========================================================================== */

/* --- section background variants (set on the section itself) --- */
body .c-sec {
	padding: 110px 6vw;
}
body .c-sec--light { background: var(--covesa-neutro-claro); }
body .c-sec--white { background: #fff; }
body .c-sec--indigo { background: var(--covesa-indigo); }
body .c-sec--gradient {
	background: linear-gradient(135deg, var(--covesa-indigo) 0%, var(--covesa-vino) 100%);
}

/* --- full-bleed image section (§04 Color Expertise). 78vh read as way too
   much empty air above the bottom-pinned text on a large desktop monitor
   (flagged 2026-08-25) — trimmed to 58vh. --- */
body .c-sec--image {
	position: relative;
	min-height: 58vh;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	color: #fff;
	padding: 0;
}
body .c-sec--image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(200deg, rgba(20,16,25,0.30) 0%, rgba(41,37,94,0.75) 50%, rgba(41,37,94,0.95) 100%);
	z-index: 1;
}
/* Consistent content width across every section type. Elementor's
   `layout: full_width` leaves .elementor-container unconstrained by default,
   so split/text sections were stretching to ~1740px on wide screens while
   image sections (their own narrower rule below, higher specificity so it
   wins here) stayed capped at 980px — inconsistent widths, fixed by giving
   every section the same 1320px ceiling except the intentionally narrower
   image-section text column. */
body .c-sec > .elementor-container {
	max-width: 1320px;
	margin: 0 auto;
}
body .c-sec.c-sec--image > .elementor-container { position: relative; z-index: 2; padding: 6vw; max-width: 980px; margin: 0; }

/* `.c-sec--image-panel` (2026-09-05) — for the one image section on the site
   whose content is dense enough (long bullet list) that it needs its own
   surface, not just the section-wide dark gradient. A frosted índigo glass
   card keeps it legible regardless of what's happening in the photo behind
   it, and reads as a deliberately-designed element rather than text merely
   dropped on a picture. */
body .c-sec.c-sec--image-panel > .elementor-container {
	max-width: 620px;
	margin: 0 0 6vw 6vw;
	padding: clamp(28px, 4vw, 44px);
	background: rgba(29, 26, 66, 0.6);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 20px;
	box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
	body .c-sec.c-sec--image-panel > .elementor-container { margin: 0 4vw 8vw; max-width: none; }
}

/* --- text roles: targeted generically by tag/widget-type within a scoping
   wrapper (`.c-sec--*` on the section, or `.c-textcol`/`.c-media` on a column
   — both confirmed to apply reliably, unlike per-widget "CSS Classes"). --- */

body .c-sec .elementor-heading-title {
	font-family: var(--covesa-font);
	font-weight: 200;
	font-size: clamp(30px, 3.4vw, 48px);
	line-height: 1.15;
	margin: 0 0 24px;
	color: var(--covesa-neutro-oscuro);
}
body .c-sec--image .elementor-heading-title { font-size: clamp(30px, 3.6vw, 52px); }
body .c-sec--image .elementor-heading-title,
body .c-sec--indigo .elementor-heading-title,
body .c-sec--gradient .elementor-heading-title {
	color: #fff;
}

/* Elementor's default kit typography (Roboto) otherwise wins over the plain
   `body { font-family }` rule inside every Text Editor widget — a class
   selector beats an element selector regardless of source order. Confirmed
   by /impeccable's 2026-08-30 detector pass: 40 elements across 15
   c-sec text-editor widgets were rendering in Roboto instead of Source
   Sans 3. Force it explicitly on the whole widget, not just <p>. */
body .c-sec .elementor-widget-text-editor,
body .c-sec .elementor-widget-text-editor * {
	font-family: var(--covesa-font);
}
body .c-sec .elementor-widget-text-editor p {
	font-size: clamp(16px, 1.15vw, 18px);
	line-height: 1.6;
	max-width: 640px;
	color: var(--covesa-neutro-medio);
	margin: 0 0 20px;
}
body .c-sec--image .elementor-widget-text-editor p,
body .c-sec--indigo .elementor-widget-text-editor p,
body .c-sec--gradient .elementor-widget-text-editor p {
	color: rgba(255,255,255,0.85);
}

body .c-sec .elementor-button {
	/* Solid vino, not the fucsia->vino gradient — the gradient's fucsia end
	   measures 4.18:1 white-on-fucsia (fails WCAG AA's 4.5:1 for 15px/600
	   text; confirmed by /impeccable's 2026-08-30 detector pass on "Conocer
	   Expertos en Color"). Same fix already applied to the header and hero
	   CTAs on 2026-08-25 — now applied sitewide for consistency. Vino gives
	   ~7.5:1. */
	background: var(--covesa-vino);
	color: #fff;
	border-radius: 999px;
	padding: 16px 36px;
	font-weight: 600;
	font-size: 15px;
	border: none;
	font-family: var(--covesa-font);
}
/* Cierre (§10) sits on an índigo->vino gradient background — the default
   fucsia->vino button would either fail contrast (fucsia end, same 3.8:1
   issue already fixed on the header CTA) or blend into the section itself
   near the vino end. Inverted to a solid white pill instead, which stays
   unambiguously legible regardless of where the button lands on the
   section's diagonal gradient. */
body .c-sec--gradient .elementor-button {
	background: #fff;
	color: var(--covesa-vino);
}

/* --- media column (image inside split layouts) --- */
body .c-media img {
	border-radius: 4px;
	width: 100%;
	height: auto;
	display: block;
}
body .c-textcol { display: flex; flex-direction: column; justify-content: center; }

/* --- default list style: simple dotted bullet list (§03, §09) --- */
body .c-sec ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
body .c-sec ul li {
	font-size: 16px;
	line-height: 1.5;
	color: var(--covesa-neutro-oscuro);
	padding: 14px 0 14px 28px;
	border-top: 1px solid rgba(41,37,94,0.12);
	position: relative;
}
body .c-sec ul li:last-child { border-bottom: 1px solid rgba(41,37,94,0.12); }
body .c-sec--indigo ul li,
body .c-sec--gradient ul li,
body .c-sec--image ul li {
	color: rgba(255,255,255,0.9);
	border-top-color: rgba(255,255,255,0.2);
}
body .c-sec--indigo ul li:last-child,
body .c-sec--gradient ul li:last-child,
body .c-sec--image ul li:last-child {
	border-bottom-color: rgba(255,255,255,0.2);
}
body .c-sec ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 22px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--covesa-fucsia);
}

/* --- numbered process list (§07, §08) --- */
body .c-list-steps ul { display: flex; flex-wrap: wrap; gap: 28px; }
body .c-list-steps ul li {
	flex: 1 1 220px;
	color: var(--covesa-neutro-oscuro);
	font-size: 15px;
	line-height: 1.5;
	padding: 16px 0 0;
	border: none;
	border-top: 2px solid var(--covesa-fucsia);
}
body .c-sec--indigo.c-list-steps ul li,
body .c-sec--gradient.c-list-steps ul li {
	color: rgba(255,255,255,0.9);
}

/* --- §02 "Elige cómo quieres trabajar con COVESA LAB" (2026-08-30 redesign,
   replaced a bare 5-item bullet list flagged by /impeccable as flat and
   reading like a broken/half-loaded section). These 5 options are alternative
   engagement models, not a sequence, so cards + icon instead of the
   numeral-de-contorno device (that device is reserved for real sequences,
   see §05/§09 below). --- */
body .c-modalidades {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 32px;
	margin-top: 40px;
}
body .c-modalidades__card {
	padding: 32px 28px;
	background: #fff;
	border-radius: 4px;
	border-top: 3px solid var(--covesa-fucsia);
	box-shadow: 0 4px 20px rgba(41, 37, 94, 0.06);
}
body .c-modalidades__icon {
	display: flex;
	width: 44px;
	height: 44px;
	color: var(--covesa-fucsia);
	margin-bottom: 20px;
}
body .c-modalidades__icon svg { width: 100%; height: 100%; }
body .c-modalidades__title {
	font-family: var(--covesa-font);
	font-weight: 700;
	font-size: 17px;
	line-height: 1.3;
	color: var(--covesa-indigo);
	margin: 0 0 10px;
}
body .c-modalidades__desc {
	font-family: var(--covesa-font);
	font-size: 14px;
	line-height: 1.5;
	color: var(--covesa-neutro-medio);
	margin: 0;
}
@media (max-width: 767px) {
	body .c-modalidades { grid-template-columns: 1fr; gap: 20px; }
}

/* --- §09 ¿Para quién trabajamos? — "numeral de contorno", one of the
   manual's 3 sanctioned graphic devices (BRAND-TOKENS.md), replacing the old
   bordered-table `.c-list-profiles` grid (looked like a spreadsheet,
   flagged 2026-08-25 for a redesign). Raw HTML widget. --- */
body .c-audience { margin-top: 8px; }
body .c-audience__row {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 28px 0;
	border-top: 1px solid rgba(41, 37, 94, 0.12);
}
body .c-audience__row:last-child {
	border-bottom: 1px solid rgba(41, 37, 94, 0.12);
}
body .c-audience__num {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 1.5px solid var(--covesa-fucsia);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--covesa-font);
	font-weight: 700;
	font-size: 16px;
	color: var(--covesa-fucsia);
	transition: background 0.2s ease, color 0.2s ease;
}
body .c-audience__row:hover .c-audience__num {
	background: var(--covesa-fucsia);
	color: #fff;
}
body .c-audience__label {
	font-family: var(--covesa-font);
	font-weight: 200;
	font-size: clamp(20px, 2.2vw, 32px);
	color: var(--covesa-neutro-oscuro);
}
@media (max-width: 767px) {
	body .c-audience__row { gap: 18px; padding: 20px 0; }
	body .c-audience__num { width: 44px; height: 44px; font-size: 14px; }
}
body .c-list-profiles ul li::before { display: none; }
body .c-list-steps ul li::before { display: none; }

/* --- §05 "De tu idea a tu fórmula" step badge (2026-08-28 redesign,
   replaced the old GSAP pinned-scroll "civm" section) — reuses the
   "numeral de contorno" device (same visual language as c-audience above)
   so the sequential moment number (01–07) reads as the primary hierarchy
   and the original 12-step range is a small secondary caption, fixing the
   old "01, 02, 03–04..." single-number confusion flagged by /impeccable. */
body .c-step__badge {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}
body .c-step__num {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 1.5px solid var(--covesa-fucsia);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--covesa-font);
	font-weight: 700;
	font-size: 18px;
	color: var(--covesa-fucsia);
}
body .c-step__range {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 12px;
	font-weight: 700;
	color: var(--covesa-neutro-medio);
}
body .c-step__ctas {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}
body .c-step__secondary-link {
	color: var(--covesa-indigo);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}
body .c-step__secondary-link:hover { color: var(--covesa-fucsia); }

/* --- §05 featured steps (2026-08-30): the 7-step narrative repeated one
   identical template for 7 consecutive full-height screens with no change
   in scale/emphasis, flagged by /impeccable as a scroll-fatigue risk right
   where the page should be building momentum. Applied only to the two
   highest-stakes steps (Formulación, Producto terminado) so the sequence
   still reads as one system with two real beats, not a redesign of all 7. */
body .c-sec--step-featured .c-step__num {
	width: 72px;
	height: 72px;
	font-size: 22px;
	background: var(--covesa-fucsia);
	color: #fff;
}
body .c-sec--step-featured .elementor-heading-title {
	font-size: clamp(34px, 4vw, 60px);
}
body .c-sec--step-featured .c-textcol {
	padding-left: 28px;
	border-left: 3px solid var(--covesa-fucsia);
}
@media (max-width: 767px) {
	body .c-sec--step-featured .c-textcol { padding-left: 18px; border-left-width: 2px; }
}
/* Solid vino, not the default fucsia->vino gradient — same WCAG contrast
   fix as the header/hero CTAs (fucsia end alone only holds ~3.8:1). */
body .c-step__ctas .elementor-button { background: var(--covesa-vino); }
@media (max-width: 767px) {
	body .c-step__num { width: 44px; height: 44px; font-size: 15px; }
}

/* --- category card grid (merged "Desarrollo" section, §03) --- */
body .c-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
	margin-bottom: 18px;
	/* light-toned product shots (e.g. attachment 170) were blending into the
	   c-sec--white background with no visible edge — a subtle border gives
	   every card image definition regardless of its own tonal range */
	box-shadow: inset 0 0 0 1px rgba(41, 37, 94, 0.08);
}
body .c-card .elementor-heading-title {
	font-family: var(--covesa-font);
	font-size: 19px;
	font-weight: 700;
	color: var(--covesa-indigo);
	margin: 0 0 8px;
}
body .c-card .elementor-widget-text-editor p {
	font-size: 14px;
	line-height: 1.5;
	color: var(--covesa-neutro-medio);
	max-width: none;
	margin: 0;
}

/* tighten the gap between stacked sub-blocks that form one merged section */
body .c-sec--tight-top { padding-top: 8px; }
body .c-sec--tight-bottom { padding-bottom: 8px; }

@media (max-width: 767px) {
	body .c-sec { padding: 64px 6vw; }
	body .c-sec--tight-top { padding-top: 8px; }
	body .c-sec--tight-bottom { padding-bottom: 8px; }
}

/* ==========================================================================
   Home redesign (2026-08-25), covesa-home-wireframe.md §02–§10.
   ========================================================================== */

/* --- generic SECTION-tier reveal-on-scroll (IntersectionObserver, no GSAP —
   assets/js/section-motion.js), used across §02/§03/§05-mobile/§08. `--i` set
   inline per item for a simple stagger within a group. --- */
body .c-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	transition-delay: calc(var(--i, 0) * 90ms);
}
body .c-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* --- §02 Intro — typographic only, no image, no list/CTA. Caps the TEXT's
   own max-width instead of re-centering a narrower `.elementor-container` —
   the earlier version gave this section a different left edge than every
   other section (all sharing the same 1320px container), which read as
   "floating"/unaligned on desktop even though it looked fine on the mobile
   single-column layout where the mismatch isn't visible. --- */
body .c-sec--intro .elementor-heading-title {
	font-weight: 200;
	font-size: clamp(28px, 3.6vw, 46px);
	line-height: 1.3;
	color: var(--covesa-neutro-oscuro);
	max-width: 820px;
	margin-bottom: 28px;
}
body .c-sec--intro .elementor-widget-text-editor p {
	font-size: clamp(16px, 1.3vw, 19px);
	font-weight: 600;
	color: var(--covesa-vino);
	max-width: 820px;
	border-top: 1px solid rgba(41, 37, 94, 0.15);
	padding-top: 18px;
	margin: 0;
}

/* --- §03 Expertise mosaic (raw HTML widget — CSS grid row-span doesn't map
   onto Elementor's percentage-based columns) --- */
body .c-mosaic {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	grid-auto-rows: 1fr;
	gap: 4px;
	margin-top: 8px;
}
body .c-mosaic__item {
	position: relative;
	display: block;
	overflow: hidden;
	min-height: 180px;
	text-decoration: none;
	color: #fff;
}
body .c-mosaic__item--lg {
	grid-row: 1 / span 3;
	min-height: 420px;
}
body .c-mosaic__item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
body .c-mosaic__item:hover img {
	transform: scale(1.06);
}
body .c-mosaic__item .c-mosaic__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(200deg, rgba(20, 16, 25, 0.25) 0%, rgba(41, 37, 94, 0.55) 55%, rgba(41, 37, 94, 0.85) 100%);
}
body .c-mosaic__text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 24px;
	z-index: 2;
}
body .c-mosaic__text h3 {
	font-family: var(--covesa-font);
	font-weight: 700;
	font-size: 20px;
	margin: 0 0 6px;
}
body .c-mosaic__item--lg .c-mosaic__text h3 {
	font-size: 28px;
}
body .c-mosaic__text p {
	font-size: 13px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	max-width: 320px;
}
@media (max-width: 900px) {
	body .c-mosaic { grid-template-columns: 1fr; }
	body .c-mosaic__item--lg { grid-row: auto; min-height: 280px; order: -1; }
	body .c-mosaic__item { min-height: 220px; }
}

/* --- §04 Color Expertise — circular mask reveal (clip-path, toggled by
   assets/js/section-motion.js via IntersectionObserver, no GSAP). Applies to
   the existing `.c-sec--image` section itself so the whole section (photo +
   overlay + text) irises open together. --- */
body .c-color-reveal {
	clip-path: circle(0% at 50% 45%);
	transition: clip-path 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
body .c-color-reveal.is-revealed {
	clip-path: circle(140% at 50% 45%);
}


/* --- §08 Datos y cifras — odometer-style count-up boxes (assets/js/
   section-motion.js) over an animated "moving pigment" background. Azul
   medio + cián are used ONLY here, per creative-direction's rule #1 — never
   mixed with índigo/blanco/fucsia elsewhere. --- */
body .c-sec--cifras {
	position: relative;
	overflow: hidden;
	background: var(--covesa-indigo);
}
body .c-sec--cifras::before {
	content: '';
	position: absolute;
	inset: -20%;
	background:
		radial-gradient(circle at 20% 30%, var(--covesa-cian) 0%, transparent 45%),
		radial-gradient(circle at 80% 25%, var(--covesa-azul-medio) 0%, transparent 50%),
		radial-gradient(circle at 50% 85%, var(--covesa-fucsia) 0%, transparent 40%);
	filter: blur(70px);
	opacity: 0.45;
	animation: civ-pigment-drift 24s ease-in-out infinite alternate;
}
@keyframes civ-pigment-drift {
	0% { transform: translate(0, 0) rotate(0deg); }
	100% { transform: translate(4%, -3%) rotate(8deg); }
}
body .c-sec--cifras > .elementor-container { position: relative; z-index: 1; }

/* .c-cifras__eyebrow's own type/color rules removed 2026-09-05 — fully
   superseded by the shared solid-índigo-pill kicker design above (which
   also makes the FF66AC contrast-fix tint from the previous round moot,
   since the pill's own background no longer depends on the section's). */
.c-cifras__heading {
	font-family: var(--covesa-font);
	font-weight: 200;
	font-size: clamp(30px, 3.4vw, 48px);
	line-height: 1.15;
	color: #fff;
	margin: 0 0 14px;
}
.c-cifras__cert {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.72);
	margin: 0 0 40px;
}
.c-cifras__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4px;
}
.c-odometer {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 6px;
	padding: 28px 20px;
	text-align: center;
}
.c-odometer__num {
	display: block;
	font-family: var(--covesa-font);
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	font-size: clamp(28px, 2.6vw, 40px);
	color: #fff;
	white-space: nowrap;
}
.c-odometer__label {
	display: block;
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 900px) {
	.c-cifras__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   COVESA LAB / Nosotros page (2026-08-25) — merged Nosotros + Experiencia +
   Infraestructura + Sostenibilidad into one page, per user request (the
   4-item nav dropdown felt heavier than the content justified). §01/§04 use
   the existing `.c-sec--image` + `.c-color-reveal` mask-reveal; §02 reuses
   the home's odometer `.c-cifras` verbatim; §03 (Infraestructura) is new —
   a grid of individually-staggered capability blocks instead of a plain
   list, so it reads as "bloques animados" rather than one shared fade-in.
   ========================================================================== */
/* .c-capacidad__eyebrow's own type/color rules removed 2026-09-05 — fully
   superseded by the shared solid-índigo-pill kicker design above. */
.c-capacidad__heading {
	font-family: var(--covesa-font);
	font-weight: 200;
	font-size: clamp(30px, 3.4vw, 48px);
	line-height: 1.15;
	color: #fff;
	margin: 0 0 48px;
	max-width: 720px;
}
.c-capacidad__grid {
	display: grid;
	/* auto-fit (not auto-fill/a fixed column count) so a row with fewer
	   items than a full row stretches to fill it instead of leaving empty
	   trailing cells — this grid is reused with varying item counts (5 on
	   Desarrollo, 7 on Nosotros/COVESA LAB) and a fixed column count looked
	   wrong on whichever count didn't divide evenly. */
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1px;
	background: rgba(255, 255, 255, 0.14);
}
.c-capacidad__item {
	background: var(--covesa-indigo);
	padding: 32px 28px;
}
.c-capacidad__num {
	display: block;
	font-family: var(--covesa-font);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--covesa-fucsia);
	margin-bottom: 16px;
}
.c-capacidad__item p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	line-height: 1.5;
	margin: 0;
}
@media (max-width: 900px) {
	.c-capacidad__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.c-capacidad__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Expertos en Color page (2026-08-25) — "rituales de color" cards (from the
   corporate brochure, docs/covesa-brochure-content.md) + a cosmetic-forms
   pill cloud. Both raw HTML widgets, both use the existing `.c-reveal`
   stagger mechanism (assets/js/section-motion.js).
   ========================================================================== */
.c-rituales__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}
.c-rituales__card {
	background: #fff;
	border: 1px solid rgba(41, 37, 94, 0.12);
	border-radius: 4px;
	padding: 32px 28px;
}
.c-rituales__name {
	font-family: var(--covesa-font);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.01em;
	color: var(--covesa-vino);
	margin: 0 0 10px;
}
.c-rituales__desc {
	font-size: 15px;
	line-height: 1.5;
	color: var(--covesa-neutro-oscuro);
	margin: 0 0 16px;
}
.c-rituales__spec {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--covesa-fucsia);
	border-top: 1px solid rgba(41, 37, 94, 0.12);
	padding-top: 14px;
}
@media (max-width: 900px) {
	.c-rituales__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.c-rituales__grid { grid-template-columns: 1fr; }
}

/* Generic eyebrow/heading pair for raw-HTML section content (the Elementor
   heading widget's own `.elementor-heading-title` class doesn't apply here
   since these sections use the HTML widget, not the heading widget). */
/* .c-eyebrow-block's own type/color rules removed 2026-09-05 — fully
   superseded by the shared solid-índigo-pill kicker design above. */
.c-heading-block {
	font-family: var(--covesa-font);
	font-weight: 200;
	font-size: clamp(28px, 3.2vw, 44px);
	line-height: 1.2;
	color: var(--covesa-neutro-oscuro);
	margin: 0;
	max-width: 820px;
}

.c-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}
.c-pills__item {
	background: #fff;
	border: 1px solid rgba(41, 37, 94, 0.18);
	border-radius: 999px;
	padding: 10px 22px;
	font-size: 14px;
	font-weight: 600;
	color: var(--covesa-indigo);
}

/* ==========================================================================
   Contacto page (2026-08-25) — Contact Form 7 styled to match the design
   system. CF7's own class names (wpcf7-form-control, wpcf7-submit, etc.)
   are stable/documented core classes, not guessed.
   ========================================================================== */
body .c-contact-form { max-width: 640px; }
body .c-contact-form form p { margin: 0 0 20px; }
body .c-contact-form .wpcf7-form-control-wrap { display: block; }
body .c-contact-form input.wpcf7-form-control,
body .c-contact-form textarea.wpcf7-form-control {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid rgba(41, 37, 94, 0.2);
	border-radius: 4px;
	font-family: var(--covesa-font);
	font-size: 15px;
	color: var(--covesa-neutro-oscuro);
	background: #fff;
	transition: border-color 0.2s ease;
}
body .c-contact-form textarea.wpcf7-form-control {
	min-height: 140px;
	resize: vertical;
}
body .c-contact-form input.wpcf7-form-control:focus,
body .c-contact-form textarea.wpcf7-form-control:focus {
	outline: none;
	border-color: var(--covesa-fucsia);
	/* Border-color alone is a weak focus signal for low-vision users —
	   pair it with a visible ring, same strength as the Fluent Forms
	   fields' focus state below, instead of relying on color change alone. */
	box-shadow: 0 0 0 3px rgba(255, 0, 129, 0.18);
}
body .c-contact-form input.wpcf7-form-control::placeholder,
body .c-contact-form textarea.wpcf7-form-control::placeholder {
	color: var(--covesa-neutro-medio);
}
body .c-contact-form .wpcf7-not-valid-tip {
	color: var(--covesa-fucsia);
	font-size: 13px;
	margin-top: 6px;
}
body .c-contact-form input.wpcf7-submit {
	/* Solid vino, not the fucsia->vino gradient — see .c-sec .elementor-button
	   above for the 4.18:1 contrast-failure fix this mirrors. */
	background: var(--covesa-vino);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 16px 40px;
	font-weight: 600;
	font-size: 15px;
	font-family: var(--covesa-font);
	cursor: pointer;
	transition: opacity 0.2s ease;
}
body .c-contact-form input.wpcf7-submit:hover { opacity: 0.9; }
body .c-contact-form input.wpcf7-submit:disabled { opacity: 0.6; cursor: default; }
body .c-contact-form .wpcf7-response-output {
	border-radius: 4px;
	padding: 16px 20px;
	margin-top: 20px;
	font-size: 14px;
	border: 1px solid rgba(41, 37, 94, 0.15);
}
body .c-contact-form form.sent .wpcf7-response-output {
	border-color: var(--covesa-fucsia);
	color: var(--covesa-vino);
}
body .c-contact-form form.invalid .wpcf7-response-output,
body .c-contact-form form.failed .wpcf7-response-output,
body .c-contact-form form.spam .wpcf7-response-output {
	border-color: #c0392b;
	color: #c0392b;
}
body .c-contact-form .wpcf7-spinner { margin-left: 12px; }

/* Inicia tu proyecto — Google Calendar Appointment Schedule embed. */
body .c-booking-panel {
	max-width: 760px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid rgba(41, 37, 94, 0.15);
	border-radius: 8px;
	padding: clamp(1.5rem, 4vw, 2.5rem);
}
body .c-booking-panel iframe {
	display: block;
	width: 100%;
	max-width: 100%;
	border: 0;
}

/* "Inicia tu proyecto" — invite copy above the form panel. */
body .c-precal-invite {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}
body .c-precal-invite__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 22px;
	border-radius: 999px;
	background: rgba(255, 0, 129, 0.08);
	border: 1px solid rgba(255, 0, 129, 0.35);
	color: var(--covesa-fucsia);
	font-family: var(--covesa-font);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 13px;
}
body .c-precal-invite__heading {
	font-family: var(--covesa-font);
	font-weight: 200;
	font-size: clamp(32px, 4vw, 48px);
	color: var(--covesa-indigo);
	margin: 20px 0 12px;
}
body .c-precal-invite__body {
	color: var(--covesa-neutro-medio);
	font-size: 18px;
	line-height: 1.6;
	margin: 0;
}

/* "Inicia tu proyecto" — the form itself, raised as one clear white card so
   it reads as the page's one place to act, not a bare shortcode dropped on
   a plain background. */
body .c-precal-panel {
	max-width: 820px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid rgba(41, 37, 94, 0.1);
	border-radius: 16px;
	box-shadow: 0 32px 70px -32px rgba(41, 37, 94, 0.35);
	padding: clamp(1.5rem, 4vw, 2.5rem);
}
/* Fluent Forms' "Powered by Fluent Forms" link (`.ffc_power`) is actually
   hidden by the Design tab's own disable_branding='yes' setting (set in
   scripts/style-precalificacion-form.php — confirmed in the plugin's own
   JS: `"yes"!=design.disable_branding` is the only condition gating this
   element, not a Pro check). This CSS rule is just a belt-and-braces
   backstop in case that meta is ever reset by re-running the style script
   with a stale default. */
body .c-precal-panel .ffc_power {
	display: none !important;
}
body .c-precal-result {
	max-width: 640px;
	margin: 0 auto;
	text-align: left;
}
body .c-precal-result h2 {
	color: var(--covesa-indigo);
	font-family: var(--covesa-font);
}
body .c-precal-result p {
	color: var(--covesa-neutro-medio);
	line-height: 1.6;
}
body .c-precal-cta {
	display: inline-block;
	margin-top: 12px;
	padding: 14px 32px;
	border-radius: 999px;
	background: linear-gradient( 90deg, var(--covesa-fucsia), var(--covesa-vino) );
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

/* --- Precalificación form (Inicia tu proyecto) — brand-color override for
   Fluent Forms' free-tier Conversational Form UI.
   Free Fluent Forms saves the custom Design-tab colors (fucsia/índigo, set
   in scripts/style-precalificacion-form.php) but its own renderer,
   FluentConversational\Classes\Form::getGeneratedCss(), only turns those
   into real CSS when FLUENTFORMPRO is defined — on the free plugin it
   always falls back to a hardcoded #0445AF blue theme instead, regardless
   of what's saved. Custom conversational-form colors are a Pro-only
   feature; since this project stays on free Fluent Forms (deliberate,
   confirmed decision — see MEMORY.md), the fix is the same one already
   used everywhere else free Elementor/Fluent falls short on this project:
   a scoped CSS override, not a Pro purchase. `body` prefix (established
   project convention) gives (0,2,1) specificity vs. Fluent's own (0,2,0)
   selectors, so this wins even where Fluent's rules use !important, no
   matter DOM order (this stylesheet loads in <head>; Fluent's inline
   <style> block for this form renders later, inside the page body). */
body .ff_conv_app_3 { background-color: #FFFFFF; }
body .ff_conv_app_3 .fh2 .f-text { color: var(--covesa-indigo) !important; }
body .ff_conv_app_3 .fh2 .f-tagline,
body .ff_conv_app_3 .f-sub .f-help { color: var(--covesa-neutro-medio) !important; }
body .ff_conv_app_3 .f-label-wrap,
body .ff_conv_app_3 .f-answer { color: var(--covesa-neutro-oscuro) !important; }
body .ff_conv_app_3 .f-label-wrap .f-key,
body .ff_conv_app_3 .f-label-wrap .f-key-hint { border-color: var(--covesa-fucsia) !important; }
body .ff_conv_app_3 .f-answer .f-radios-wrap ul li {
	background-color: rgba(255, 0, 129, 0.06) !important;
	border: 1px solid var(--covesa-fucsia);
}
body .ff_conv_app_3 .f-answer .f-radios-wrap ul li:focus,
body .ff_conv_app_3 .f-answer .f-radios-wrap ul li:hover { background-color: rgba(255, 0, 129, 0.16) !important; }
body .ff_conv_app_3 .f-answer .f-radios-wrap ul li.f-selected .f-key {
	background-color: var(--covesa-fucsia) !important;
	color: #fff !important;
}
body .ff_conv_app_3 .f-answer .f-radios-wrap ul li.f-selected .f-key-hint { background-color: var(--covesa-fucsia) !important; }
body .ff_conv_app_3 .f-answer .f-radios-wrap ul li.f-selected svg { fill: var(--covesa-fucsia) !important; }
body .ff_conv_app_3 .f-answer input,
body .ff_conv_app_3 .f-answer textarea {
	color: var(--covesa-neutro-oscuro) !important;
	box-shadow: var(--covesa-fucsia) 0px 1px !important;
}
body .ff_conv_app_3 .f-answer input:focus,
body .ff_conv_app_3 .f-answer textarea:focus { box-shadow: var(--covesa-fucsia) 0px 2px !important; }
body .ff_conv_app_3 .f-answer textarea::placeholder,
body .ff_conv_app_3 .f-answer input::placeholder { color: rgba(20, 16, 25, 0.45) !important; }
body .ff_conv_app_3 .text-success { color: var(--covesa-fucsia) !important; }
body .ff_conv_app_3 .ff_conv_input .f-info { color: var(--covesa-fucsia) !important; }
body .ff_conv_app_3 .f-enter .f-enter-desc { color: var(--covesa-fucsia) !important; }
/* .o-btn-action ("Continuar") was fucsia at rest (~3.8-4.18:1, fails WCAG AA
   for white text) — the site's highest-intent conversion button, in a state
   every visitor sees before ever hovering. Vino at rest + darker vino on
   hover matches the fix already applied to the header/hero/sitewide CTAs. */
body .ff_conv_app_3 .q-inner .o-btn-action { background-color: var(--covesa-vino) !important; }
body .ff_conv_app_3 .footer-inner-wrap .f-nav { background-color: var(--covesa-fucsia) !important; }
body .ff_conv_app_3 .q-inner .o-btn-action:hover { background-color: var(--covesa-vino-dark) !important; }
body .ff_conv_app_3 .q-inner .o-btn-action:focus::after { box-shadow: var(--covesa-fucsia) 0px 0px 0px 2px !important; }
body .ff_conv_app_3 .q-inner .o-btn-action span,
body .ff_conv_app_3 .footer-inner-wrap .f-nav a { color: #fff !important; }
body .ff_conv_app_3 .footer-inner-wrap .f-nav a svg { fill: #fff !important; }
body .ff_conv_app_3 .vff-footer .f-progress-bar { background-color: rgba(255, 0, 129, 0.18) !important; }
body .ff_conv_app_3 .vff-footer .f-progress-bar-inner { background-color: var(--covesa-fucsia) !important; }
body .ff_conv_app_3 .ffc-counter-div span { color: var(--covesa-indigo) !important; }
body .ff_conv_app_3 .ffc-counter-div .counter-icon-span svg { fill: var(--covesa-indigo) !important; }
