/* ==========================================================================
   Eficens — theme.css (v0.8 — design-system refresh)
   Implementa o sistema visual entregue pelo Claude Design Kit.
   Cores, tipografia, raios e componentes seguem o brand book Eficens p.05–11
   e o kit `eficens-design-system/project/ui_kits/marketing`.
   Regras absolutas: paleta oficial, hierarquia Poppins → Satoshi → Calibri,
   gradiente verde→azul apenas em coberturas/marketing, nunca em dados.
   ========================================================================== */

:root {
	/* Motion */
	--ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
	--ease-in-out:     cubic-bezier(0.65, 0, 0.35, 1);
	--dur-fast:        120ms;
	--dur-base:        200ms;
	--dur-slow:        360ms;

	/* Shadows (cool-toned per kit) */
	--shadow-xs:        0 1px 2px 0 rgba(15, 35, 50, 0.06);
	--shadow-sm:        0 1px 3px rgba(15, 35, 50, 0.07), 0 1px 2px rgba(15, 35, 50, 0.04);
	--shadow-md:        0 6px 16px -4px rgba(15, 35, 50, 0.10), 0 2px 4px rgba(15, 35, 50, 0.05);
	--shadow-lg:        0 18px 40px -12px rgba(15, 35, 50, 0.18), 0 6px 12px -6px rgba(15, 35, 50, 0.10);
	--shadow-xl:        0 32px 60px -16px rgba(0, 75, 100, 0.25);
	--shadow-glow-blue: 0 0 0 4px rgba(0, 153, 204, 0.20);
	--shadow-glow-green:0 0 0 4px rgba(153, 204, 102, 0.25);

	/* Brand gradient (always green → blue) */
	--grad-brand:    linear-gradient(90deg,  #99CC66 0%, #0099CC 100%);
	--grad-brand-d:  linear-gradient(135deg, #99CC66 0%, #0099CC 100%);
	--grad-brand-v:  linear-gradient(180deg, #99CC66 0%, #0099CC 100%);

	/* Layout */
	--container-xl:  1240px;
	--container-lg:  1024px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

/* Container — mirrors kit's `.container { max-width:1240px; padding:0 24px }` */
.eficens-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	text-wrap: pretty;
}

/* ==========================================================================
   HEADER STICKY — compact, blurred, sutil
   ========================================================================== */

body > .wp-site-blocks > header.wp-block-template-part,
.wp-site-blocks > header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(10px);
	-webkit-backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid var(--wp--preset--color--neutral-200);
	transition: box-shadow var(--dur-base) var(--ease-out);
}

body.is-scrolled > .wp-site-blocks > header.wp-block-template-part,
body.is-scrolled .wp-site-blocks > header {
	box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   TYPOGRAPHY — eyebrow, tagline, lede
   ========================================================================== */

.eyebrow,
.has-label-font-size {
	display: inline-block;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 0.8125rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--brand-blue);
	margin: 0;
}

.eyebrow--green,
.has-label-font-size.eyebrow--green {
	color: var(--wp--preset--color--green-700);
}

.tagline {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 500;
	font-size: 0.8125rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--neutral-dark);
}

.has-subtitle-font-size {
	color: var(--wp--preset--color--neutral-dark);
	font-weight: 400;
	line-height: 1.55;
}

/* Headings inherit Poppins family from theme.json — extra polish */
.eficens-display {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.05;
}

/* Gradient text helper (use sparingly — heroes/banners only) */
.eficens-gradient-text,
.eficens-text-gradient {
	background: var(--grad-brand-d);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* ==========================================================================
   PILL BADGES — small icon + label, used in hero & cards
   ========================================================================== */

.eficens-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--wp--preset--color--support-blue);
	color: var(--wp--preset--color--blue-700);
}

.eficens-pill .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--wp--preset--color--brand-blue);
}

.eficens-pill--green {
	background: var(--wp--preset--color--support-green);
	color: var(--wp--preset--color--green-700);
}

.eficens-pill--green .dot {
	background: var(--wp--preset--color--green-700);
}

.eficens-pill--gradient {
	background: var(--grad-brand-d);
	color: #fff;
	padding: 7px 14px;
}

/* ==========================================================================
   BUTTONS — pill, hover background shift, focus glow
   ========================================================================== */

.wp-block-button__link {
	font-family: var(--wp--preset--font-family--poppins) !important;
	font-weight: 600 !important;
	letter-spacing: 0.005em;
	border-radius: 999px !important;
	padding: 0.8125rem 1.5rem;
	border: 1.5px solid transparent;
	transition: background var(--dur-base) var(--ease-out),
	            color var(--dur-base) var(--ease-out),
	            transform var(--dur-fast) var(--ease-out),
	            box-shadow var(--dur-base) var(--ease-out);
}

.wp-block-button__link:active {
	transform: translateY(1px) scale(0.99);
}

.wp-block-button__link:focus-visible {
	outline: none;
	box-shadow: var(--shadow-glow-blue);
}

.wp-block-button.is-style-outline .wp-block-button__link {
	border-width: 1.5px !important;
	background: transparent !important;
	color: var(--wp--preset--color--brand-blue) !important;
	border-color: var(--wp--preset--color--brand-blue) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: var(--wp--preset--color--support-blue) !important;
}

/* ghost / icon-like button variant */
.eficens-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 0.875rem;
	padding: 0.5rem 0.875rem;
	border-radius: 999px;
	background: transparent;
	color: var(--wp--preset--color--neutral-900);
	transition: background var(--dur-base) var(--ease-out);
}

.eficens-btn-ghost:hover {
	background: var(--wp--preset--color--neutral-light);
	text-decoration: none;
}

/* ==========================================================================
   HERO — split layout: copy + gradient symbol card with floating chips
   Legacy `.eficens-hero` (centered hero for non-home pages) shares the same
   ambient background; it just doesn't use the side-by-side grid.
   ========================================================================== */

.eficens-hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background:
		radial-gradient(1100px 600px at 110% -10%, rgba(0, 153, 204, 0.10) 0%, rgba(255, 255, 255, 0) 60%),
		radial-gradient(900px 500px at -10% 10%, rgba(153, 204, 102, 0.14) 0%, rgba(255, 255, 255, 0) 50%),
		var(--wp--preset--color--white) !important;
}

.eficens-hero.has-support-blue-background-color {
	background:
		radial-gradient(1100px 600px at 110% -10%, rgba(0, 153, 204, 0.10) 0%, rgba(255, 255, 255, 0) 60%),
		radial-gradient(900px 500px at -10% 10%, rgba(153, 204, 102, 0.14) 0%, rgba(255, 255, 255, 0) 50%),
		var(--wp--preset--color--white) !important;
}

.eficens-hero h1 {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.05;
	text-wrap: balance;
}

.eficens-hero-section {
	position: relative;
	padding: 4.5rem 0 6rem;
	background:
		radial-gradient(1100px 600px at 110% -10%, rgba(0, 153, 204, 0.10) 0%, rgba(255, 255, 255, 0) 60%),
		radial-gradient(900px 500px at -10% 10%, rgba(153, 204, 102, 0.14) 0%, rgba(255, 255, 255, 0) 50%);
	overflow: hidden;
}

.eficens-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 3.5rem;
	align-items: center;
}

.eficens-hero-copy {
	display: flex;
	flex-direction: column;
	gap: 1.375rem;
}

.eficens-hero-copy h1 {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 800;
	font-size: clamp(2.5rem, 6vw, 4rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--neutral-900);
	text-wrap: balance;
	margin: 0;
}

.eficens-hero-copy .lede {
	font-size: 1.1875rem;
	line-height: 1.55;
	color: var(--wp--preset--color--neutral-dark);
	max-width: 540px;
}

.eficens-hero-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-top: 0.25rem;
}

.eficens-hero-trust {
	margin-top: 1.125rem;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.eficens-hero-trust-logos {
	display: flex;
	gap: 1.375rem;
	align-items: center;
	flex-wrap: wrap;
}

.eficens-hero-trust-logo {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	color: var(--wp--preset--color--neutral-mid);
	letter-spacing: 0.02em;
	font-size: 1.0625rem;
}

/* Visual side: gradient card + floating chips */
.eficens-hero-visual {
	position: relative;
	min-height: 480px;
}

.eficens-hero-symbol {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 380px;
	max-width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 32px;
	background: var(--grad-brand-d);
	box-shadow: 0 30px 60px -20px rgba(0, 90, 120, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
}

.eficens-hero-symbol img {
	width: 60%;
	height: 60%;
	object-fit: contain;
	filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.12));
}

.eficens-float-card {
	position: absolute;
	background: #fff;
	border-radius: 14px;
	padding: 0.75rem 1rem;
	box-shadow: 0 16px 30px -12px rgba(15, 35, 50, 0.18);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 240px;
	font-family: var(--wp--preset--font-family--poppins);
}

.eficens-float-card--tl { left: -10px; top: 60px; }
.eficens-float-card--br { right: -16px; bottom: 80px; }

.eficens-float-card__icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.eficens-float-card__icon--green {
	background: var(--wp--preset--color--support-green);
	color: var(--wp--preset--color--green-700);
}

.eficens-float-card__icon--blue {
	background: var(--wp--preset--color--support-blue);
	color: var(--wp--preset--color--brand-blue);
}

.eficens-float-card__icon svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.eficens-float-card__title {
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--wp--preset--color--neutral-900);
	line-height: 1.3;
}

.eficens-float-card__sub {
	font-size: 0.75rem;
	color: var(--wp--preset--color--neutral-dark);
	margin-top: 2px;
}

/* ==========================================================================
   SECTIONS — vertical rhythm
   ========================================================================== */

.eficens-section {
	padding: 6rem 0;
}

.eficens-section--tight {
	padding: 4rem 0;
}

.eficens-section--soft {
	background: var(--wp--preset--color--neutral-50);
}

.eficens-section-head {
	max-width: 720px;
	margin-bottom: 3rem;
}

.eficens-section-head h2 {
	margin-top: 0.5rem;
}

.eficens-section-head .lede {
	margin-top: 0.875rem;
	max-width: 620px;
	font-size: 1.1875rem;
	line-height: 1.55;
	color: var(--wp--preset--color--neutral-dark);
}

/* ==========================================================================
   SERVICE CARDS — 3 × 2 grid with NR tag, icon tile, link arrow
   ========================================================================== */

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

.eficens-service-card {
	background: #fff;
	border: 1px solid var(--wp--preset--color--neutral-200);
	border-radius: 18px;
	padding: 1.75rem;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	position: relative;
	overflow: hidden;
	transition: transform var(--dur-base) var(--ease-out),
	            box-shadow var(--dur-base) var(--ease-out);
}

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

.eficens-service-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--wp--preset--color--support-blue);
	color: var(--wp--preset--color--brand-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.625rem;
}

.eficens-service-card__icon svg {
	width: 26px;
	height: 26px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.eficens-service-card__tag {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wp--preset--color--brand-blue);
}

.eficens-service-card h3 {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--wp--preset--color--neutral-900);
	margin: 0;
	letter-spacing: -0.005em;
}

.eficens-service-card p {
	margin: 0.25rem 0 0;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--wp--preset--color--neutral-dark);
}

.eficens-service-card__link {
	margin-top: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--wp--preset--color--brand-blue);
	transition: gap var(--dur-fast) var(--ease-out);
}

.eficens-service-card__link:hover {
	gap: 0.625rem;
	text-decoration: none;
}

/* ==========================================================================
   PROCESS TIMELINE — 4 steps with big number + gradient bar
   ========================================================================== */

.eficens-process {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.75rem;
}

.eficens-process li {
	position: relative;
	padding-top: 0.25rem;
}

.eficens-process__num {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 800;
	font-size: 2.25rem;
	color: var(--wp--preset--color--brand-blue);
	letter-spacing: -0.02em;
	display: block;
}

.eficens-process__line {
	margin-top: 0.75rem;
	height: 2px;
	background: linear-gradient(90deg, var(--wp--preset--color--brand-green) 0%, var(--wp--preset--color--brand-blue) 100%);
	border-radius: 2px;
}

.eficens-process h3 {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--wp--preset--color--neutral-900);
	margin: 0.875rem 0 0;
	line-height: 1.3;
}

.eficens-process p {
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--wp--preset--color--neutral-dark);
	margin: 0.375rem 0 0;
}

/* ==========================================================================
   STATS STRIP — gradient band with 4 key figures
   ========================================================================== */

.eficens-stats {
	background: var(--grad-brand-d);
	color: #fff;
	padding: 3.5rem 0;
}

.eficens-stats__row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.eficens-stats__cell {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.eficens-stats__num {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 800;
	font-size: 3.5rem;
	line-height: 1;
	letter-spacing: -0.02em;
}

.eficens-stats__label {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 0.8125rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.9;
	margin-top: 0.375rem;
}

/* ==========================================================================
   TESTIMONIAL — large quote + green mark + attribution
   ========================================================================== */

.eficens-testimonial {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 3.5rem;
	align-items: center;
}

.eficens-testimonial__mark {
	width: 200px;
	height: 200px;
	background: #fff;
	border: 1px solid var(--wp--preset--color--neutral-200);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-sm);
}

.eficens-testimonial__mark img {
	width: 130px;
	height: 130px;
	object-fit: contain;
}

.eficens-testimonial__quote {
	margin: 0.875rem 0 1.5rem;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 500;
	font-size: 1.75rem;
	line-height: 1.35;
	letter-spacing: -0.005em;
	color: var(--wp--preset--color--neutral-900);
	text-wrap: balance;
	max-width: 760px;
}

.eficens-testimonial__attrib {
	display: flex;
	align-items: center;
	gap: 0.875rem;
}

.eficens-testimonial__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--grad-brand-d);
	color: #fff;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.03em;
}

.eficens-testimonial__name {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	color: var(--wp--preset--color--neutral-900);
}

.eficens-testimonial__role {
	font-size: 0.8125rem;
	color: var(--wp--preset--color--neutral-dark);
	margin-top: 2px;
}

/* ==========================================================================
   DARK CTA BANNER — neutral-900 with symbol watermark
   ========================================================================== */

.eficens-cta-banner {
	background: var(--wp--preset--color--neutral-900);
	color: #fff;
	position: relative;
	overflow: hidden;
	padding: 4.5rem 0;
}

.eficens-cta-banner__watermark {
	position: absolute;
	right: -120px;
	top: -80px;
	width: 460px;
	height: 460px;
	opacity: 0.06;
	pointer-events: none;
}

.eficens-cta-banner__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	align-items: center;
	gap: 2rem;
	position: relative;
}

.eficens-cta-banner h2 {
	color: #fff;
	max-width: 600px;
}

.eficens-cta-banner .lede {
	color: rgba(255, 255, 255, 0.85);
	margin-top: 0.75rem;
	max-width: 540px;
	font-size: 1.1875rem;
	line-height: 1.55;
}

.eficens-cta-banner__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: stretch;
	max-width: 320px;
	justify-self: end;
}

/* ==========================================================================
   LEGACY KPI / DIFF / CARD CLASSES — manter compatibilidade com templates
   antigos (Soluções, Sobre) — agora estilizadas no idioma do kit
   ========================================================================== */

.eficens-card {
	background: #fff;
	border: 1px solid var(--wp--preset--color--neutral-200);
	border-radius: 18px;
	padding: 1.75rem;
	box-shadow: var(--shadow-sm);
	transition: transform var(--dur-base) var(--ease-out),
	            box-shadow var(--dur-base) var(--ease-out);
	height: 100%;
	overflow: hidden;
	position: relative;
}

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

.eficens-card__icon {
	width: 52px;
	height: 52px;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: var(--wp--preset--color--support-blue);
	color: var(--wp--preset--color--brand-blue);
}

.eficens-card--safety .eficens-card__icon {
	background: var(--wp--preset--color--support-green);
	color: var(--wp--preset--color--green-700);
}

.eficens-card--consult .eficens-card__icon {
	background: var(--wp--preset--color--neutral-light);
	color: var(--wp--preset--color--neutral-dark);
}

.eficens-card__icon svg {
	width: 26px;
	height: 26px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.eficens-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--wp--preset--color--brand-blue);
	margin-top: 1rem;
	transition: gap var(--dur-fast) var(--ease-out);
}

.eficens-card__link:hover {
	gap: 0.625rem;
	text-decoration: none;
}

.eficens-kpi {
	background: #fff;
	border: 1px solid var(--wp--preset--color--neutral-200);
	border-radius: 18px;
	padding: 2rem 1.75rem;
	box-shadow: var(--shadow-sm);
	transition: transform var(--dur-base) var(--ease-out),
	            box-shadow var(--dur-base) var(--ease-out);
	height: 100%;
	position: relative;
	overflow: hidden;
}

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

.eficens-kpi__label {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--wp--preset--color--brand-blue);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin: 0 0 0.875rem;
	line-height: 1.3;
}

.eficens-kpi__number {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: clamp(2.5rem, 5.5vw, 3.75rem);
	font-weight: 800;
	line-height: 1;
	color: var(--wp--preset--color--neutral-900);
	letter-spacing: -0.02em;
	margin: 0 0 0.875rem;
}

.eficens-kpi__number-suffix {
	font-size: 0.5em;
	font-weight: 600;
	color: var(--wp--preset--color--brand-blue);
	margin-left: 0.25rem;
	letter-spacing: 0;
}

.eficens-kpi__description {
	font-size: 1rem;
	color: var(--wp--preset--color--neutral-dark);
	margin: 0;
	line-height: 1.55;
}

.eficens-diff {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.25rem 1rem;
	border-radius: 12px;
	transition: background var(--dur-fast) var(--ease-out);
}

.eficens-diff:hover {
	background: var(--wp--preset--color--neutral-50);
}

.eficens-diff__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--wp--preset--color--support-blue);
	color: var(--wp--preset--color--brand-blue);
	display: flex;
	align-items: center;
	justify-content: center;
}

.eficens-diff__icon svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.eficens-diff h3 {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--wp--preset--color--neutral-900);
	margin: 0 0 0.375rem;
}

.eficens-diff p {
	font-size: 0.9375rem;
	color: var(--wp--preset--color--neutral-dark);
	margin: 0;
	line-height: 1.55;
}

/* ==========================================================================
   MARQUEE / CARROSSEL DE LOGOS
   ========================================================================== */

.eficens-marquee {
	overflow: hidden;
	position: relative;
	padding: 1rem 0;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
	        mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.eficens-marquee__track {
	display: flex;
	gap: 2.5rem;
	width: max-content;
	animation: eficens-marquee 50s linear infinite;
}

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

.eficens-marquee__item {
	flex-shrink: 0;
	width: 220px;
	height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	background: #fff;
	border: 1px solid var(--wp--preset--color--neutral-200);
	border-radius: 14px;
	transition: border-color var(--dur-fast) var(--ease-out),
	            box-shadow var(--dur-fast) var(--ease-out);
}

.eficens-marquee__item:hover {
	border-color: var(--wp--preset--color--brand-blue);
	box-shadow: var(--shadow-sm);
}

.eficens-marquee__logo {
	max-height: 56px;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: filter var(--dur-fast) var(--ease-out),
	            opacity var(--dur-fast) var(--ease-out);
}

.eficens-marquee__item:hover .eficens-marquee__logo {
	filter: grayscale(0%);
	opacity: 1;
}

.eficens-marquee__placeholder {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--wp--preset--color--neutral-mid);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	text-align: center;
}

@keyframes eficens-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ==========================================================================
   ALERTS / CALLOUTS — border-left brand
   ========================================================================== */

.alert-info    { background: var(--wp--preset--color--support-blue);       border-left: 3px solid var(--wp--preset--color--brand-blue);   padding: 1.25rem 1.5rem; border-radius: 8px; }
.alert-success { background: var(--wp--preset--color--support-green);      border-left: 3px solid var(--wp--preset--color--brand-green);  padding: 1.25rem 1.5rem; border-radius: 8px; }
.alert-warning { background: var(--wp--preset--color--support-yellow);     border-left: 3px solid var(--wp--preset--color--neutral-dark); padding: 1.25rem 1.5rem; border-radius: 8px; }
.alert-error   { background: var(--wp--preset--color--support-red-light);  border-left: 3px solid var(--wp--preset--color--support-red);  padding: 1.25rem 1.5rem; border-radius: 8px; }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */

.eficens-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
	will-change: opacity, transform;
}

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

.eficens-reveal[data-reveal-delay="100"] { transition-delay: 100ms; }
.eficens-reveal[data-reveal-delay="200"] { transition-delay: 200ms; }
.eficens-reveal[data-reveal-delay="300"] { transition-delay: 300ms; }
.eficens-reveal[data-reveal-delay="400"] { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
	.eficens-reveal { opacity: 1; transform: none; transition: none; }
	.eficens-marquee__track { animation: none; }
	html { scroll-behavior: auto; }
}

/* ==========================================================================
   HEADER LOCKUP — flex row: brand | nav | dual CTA
   ========================================================================== */

.eficens-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	height: 76px;
}

.eficens-header-brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.eficens-header-brand img {
	height: 38px;
	width: auto;
	display: block;
}

.eficens-header-nav {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	flex: 1;
	justify-content: center;
}

.eficens-header-nav a {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 500;
	font-size: 0.9375rem;
	color: var(--wp--preset--color--neutral-900);
	padding: 0.5rem 0.125rem;
	position: relative;
	transition: color var(--dur-fast) var(--ease-out);
	text-decoration: none;
}

.eficens-header-nav a:hover {
	color: var(--wp--preset--color--brand-blue);
	text-decoration: none;
}

.eficens-header-nav a.is-active {
	color: var(--wp--preset--color--brand-blue);
}

.eficens-header-nav a.is-active::after {
	content: "";
	position: absolute;
	left: 2px;
	right: 2px;
	bottom: 2px;
	height: 2px;
	border-radius: 2px;
	background: var(--wp--preset--color--brand-blue);
}

.eficens-header-ctas {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.eficens-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 0.9375rem;
	letter-spacing: 0.005em;
	border-radius: 999px;
	padding: 0.8125rem 1.5rem;
	background: var(--wp--preset--color--brand-blue);
	color: #fff !important;
	border: 1.5px solid transparent;
	transition: background var(--dur-base) var(--ease-out),
	            transform var(--dur-fast) var(--ease-out),
	            box-shadow var(--dur-base) var(--ease-out);
	text-decoration: none;
}

.eficens-btn-primary:hover {
	background: var(--wp--preset--color--brand-blue-hover);
	text-decoration: none;
}

.eficens-btn-primary:active {
	transform: translateY(1px) scale(0.99);
}

.eficens-btn-primary:focus-visible {
	outline: none;
	box-shadow: var(--shadow-glow-blue);
}

.eficens-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 0.9375rem;
	letter-spacing: 0.005em;
	border-radius: 999px;
	padding: 0.8125rem 1.5rem;
	background: var(--wp--preset--color--brand-green);
	color: var(--wp--preset--color--neutral-900) !important;
	border: 1.5px solid transparent;
	transition: background var(--dur-base) var(--ease-out),
	            transform var(--dur-fast) var(--ease-out);
	text-decoration: none;
}

.eficens-btn-secondary:hover {
	background: var(--wp--preset--color--brand-green-hover);
	text-decoration: none;
}

.eficens-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 0.9375rem;
	letter-spacing: 0.005em;
	border-radius: 999px;
	padding: 0.8125rem 1.5rem;
	background: transparent;
	color: var(--wp--preset--color--brand-blue) !important;
	border: 1.5px solid var(--wp--preset--color--brand-blue);
	transition: background var(--dur-base) var(--ease-out);
	text-decoration: none;
}

.eficens-btn-outline:hover {
	background: var(--wp--preset--color--support-blue);
	text-decoration: none;
}

.eficens-btn-outline--white {
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.6);
}

.eficens-btn-outline--white:hover {
	background: rgba(255, 255, 255, 0.08);
}

.eficens-btn-sm {
	font-size: 0.8125rem;
	padding: 0.5625rem 1rem;
}

.eficens-btn-lg {
	font-size: 1rem;
	padding: 0.9375rem 1.875rem;
}

.eficens-header-menu-btn {
	display: none;
	background: transparent;
	border: 0;
	color: var(--wp--preset--color--neutral-900);
	padding: 0.5rem;
	cursor: pointer;
}

.eficens-nav-mobile-only {
	display: none !important;
}

@media (max-width: 960px) {
	.eficens-header-nav,
	.eficens-header-ctas > .eficens-btn-ghost {
		display: none;
	}
	.eficens-header-menu-btn {
		display: inline-flex;
	}
	body.eficens-menu-open .eficens-header-nav {
		display: flex;
		position: absolute;
		top: 76px;
		left: 0;
		right: 0;
		flex-direction: column;
		gap: 0;
		background: #fff;
		border-bottom: 1px solid var(--wp--preset--color--neutral-200);
		padding: 0.5rem 1.5rem 1rem;
		box-shadow: var(--shadow-sm);
	}
	body.eficens-menu-open .eficens-header-nav a {
		padding: 0.75rem 0;
		border-bottom: 1px solid var(--wp--preset--color--neutral-200);
	}
	body.eficens-menu-open .eficens-nav-mobile-only {
		display: flex !important;
		font-weight: 600;
		color: var(--wp--preset--color--brand-blue);
	}
}

/* ==========================================================================
   FOOTER — dark, brand mark left, 4 link columns right, fineprint row
   ========================================================================== */

footer.wp-block-template-part {
	background: var(--wp--preset--color--neutral-900);
	color: var(--wp--preset--color--neutral-mid);
}

footer.wp-block-template-part a {
	color: var(--wp--preset--color--neutral-mid);
	transition: color var(--dur-fast) var(--ease-out);
}

footer.wp-block-template-part a:hover {
	color: var(--wp--preset--color--brand-green);
	text-decoration: none;
}

footer .wp-block-separator {
	background-color: rgba(255, 255, 255, 0.08) !important;
	color: rgba(255, 255, 255, 0.08) !important;
	opacity: 1;
	border: 0;
}

.eficens-footer-logo img {
	height: 36px;
	width: auto;
	display: block;
}

.eficens-footer-col-h {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 0.8125rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wp--preset--color--neutral-light);
	margin: 0 0 0.75rem;
}

.eficens-footer-grid {
	display: grid;
	grid-template-columns: 1fr 2.2fr;
	gap: 3.5rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eficens-footer-brand {
	max-width: 280px;
}

.eficens-footer-cnpj {
	margin-top: 0.75rem;
	font-size: 0.75rem;
	color: #858585;
	line-height: 1.6;
}

.eficens-footer-cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.eficens-footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.eficens-footer-col a {
	color: #858585;
	font-size: 0.875rem;
	text-decoration: none;
	transition: color var(--dur-fast) var(--ease-out);
}

.eficens-footer-col a:hover {
	color: var(--wp--preset--color--brand-green);
	text-decoration: none;
}

.eficens-footer-col-text {
	color: #858585;
	font-size: 0.875rem;
	line-height: 1.7;
	margin: 0;
}

.eficens-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 0 0;
	font-size: 0.75rem;
	color: #858585;
	flex-wrap: wrap;
	gap: 1rem;
}

.eficens-footer-bottom a {
	color: #858585;
	text-decoration: none;
	margin-left: 1.375rem;
}

.eficens-footer-bottom a:hover {
	color: var(--wp--preset--color--brand-green);
}

@media (max-width: 960px) {
	.eficens-footer-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.eficens-footer-cols {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

/* ==========================================================================
   BLOG — archive cards grid + single post
   ========================================================================== */

.eficens-blog-grid .wp-block-post-template {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eficens-blog-grid .wp-block-post-template > li {
	list-style: none;
	margin: 0;
}

.eficens-blog-card {
	background: #fff;
	border: 1px solid var(--wp--preset--color--neutral-200);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--dur-base) var(--ease-out),
	            box-shadow var(--dur-base) var(--ease-out);
	height: 100%;
	display: flex;
	flex-direction: column;
}

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

.eficens-blog-card__media img,
.eficens-blog-card .wp-block-post-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.eficens-blog-card .wp-block-post-featured-image {
	margin: 0;
	background: linear-gradient(135deg, var(--wp--preset--color--support-blue) 0%, var(--wp--preset--color--support-green) 100%);
}

.eficens-blog-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.eficens-blog-card__cat,
.eficens-blog-card .wp-block-post-terms {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wp--preset--color--brand-blue);
	margin: 0;
}

.eficens-blog-card__cat a,
.eficens-blog-card .wp-block-post-terms a {
	color: var(--wp--preset--color--brand-blue);
	text-decoration: none;
}

.eficens-blog-card__title,
.eficens-blog-card .wp-block-post-title {
	font-family: var(--wp--preset--font-family--poppins);
	color: var(--wp--preset--color--neutral-900);
}

.eficens-blog-card__title a,
.eficens-blog-card .wp-block-post-title a {
	color: inherit;
	text-decoration: none;
}

.eficens-blog-card__title a:hover,
.eficens-blog-card .wp-block-post-title a:hover {
	color: var(--wp--preset--color--brand-blue);
	text-decoration: none;
}

.eficens-blog-card__excerpt,
.eficens-blog-card .wp-block-post-excerpt {
	color: var(--wp--preset--color--neutral-dark);
	font-size: 0.9375rem;
	line-height: 1.55;
	margin: 0;
}

.eficens-blog-card .wp-block-post-excerpt__more-link {
	display: none;
}

.eficens-blog-card__meta {
	margin-top: auto;
	padding-top: 0.75rem;
	border-top: 1px solid var(--wp--preset--color--neutral-200);
}

.eficens-blog-grid .wp-block-query-pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 3rem;
}

.eficens-blog-grid .wp-block-query-pagination a,
.eficens-blog-grid .wp-block-query-pagination span {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 0.875rem;
	padding: 0.5rem 0.875rem;
	border-radius: 8px;
	color: var(--wp--preset--color--neutral-dark);
	text-decoration: none;
	transition: background var(--dur-fast) var(--ease-out);
}

.eficens-blog-grid .wp-block-query-pagination a:hover {
	background: var(--wp--preset--color--neutral-50);
	color: var(--wp--preset--color--brand-blue);
}

.eficens-blog-grid .wp-block-query-pagination .current {
	background: var(--wp--preset--color--brand-blue);
	color: #fff;
}

/* Single post */
.eficens-post-header {
	background: var(--wp--preset--color--neutral-50);
	padding: 1.25rem 0 0;
	border-bottom: 1px solid var(--wp--preset--color--neutral-200);
}

.eficens-post-header__inner {
	padding-bottom: 1rem;
}

.eficens-post-back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 500;
	font-size: 0.875rem;
	color: var(--wp--preset--color--neutral-dark);
	text-decoration: none;
	transition: color var(--dur-fast) var(--ease-out);
}

.eficens-post-back:hover {
	color: var(--wp--preset--color--brand-blue);
	text-decoration: none;
}

.eficens-post-meta .wp-block-post-author-name,
.eficens-post-meta .wp-block-post-date {
	font-family: var(--wp--preset--font-family--poppins);
}

.eficens-post-content {
	font-family: var(--wp--preset--font-family--satoshi);
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--wp--preset--color--neutral-900);
}

.eficens-post-content > * {
	margin-bottom: 1.25rem;
}

.eficens-post-content h2 {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 1.2;
	letter-spacing: -0.015em;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	color: var(--wp--preset--color--neutral-900);
}

.eficens-post-content h3 {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 1.375rem;
	line-height: 1.3;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	color: var(--wp--preset--color--neutral-900);
}

.eficens-post-content p,
.eficens-post-content ul,
.eficens-post-content ol {
	color: var(--wp--preset--color--neutral-dark);
}

.eficens-post-content blockquote {
	border-left: 3px solid var(--wp--preset--color--brand-blue);
	padding: 0.5rem 0 0.5rem 1.5rem;
	margin: 2rem 0;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1.4;
	color: var(--wp--preset--color--neutral-900);
}

.eficens-post-content img {
	border-radius: 12px;
	max-width: 100%;
	height: auto;
}

.eficens-post-content a {
	color: var(--wp--preset--color--brand-blue);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(0, 153, 204, 0.35);
}

.eficens-post-content a:hover {
	text-decoration-color: var(--wp--preset--color--brand-blue);
}

.eficens-post-content code {
	background: var(--wp--preset--color--neutral-50);
	padding: 0.12em 0.4em;
	border-radius: 4px;
	font-size: 0.9em;
}

/* Tabelas dentro de posts — padrão da marca: cabeçalho #0099CC, zebra #F5F5F5.
   Gutenberg envolve a tabela em <figure class="wp-block-table">. */
.eficens-post-content .wp-block-table {
	margin: 2rem 0;
	overflow-x: auto; /* rolagem horizontal no mobile sem quebrar o layout */
}

.eficens-post-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.eficens-post-content table th {
	background: var(--wp--preset--color--brand-blue);
	color: var(--wp--preset--color--white);
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	text-align: left;
	padding: 0.75rem 0.875rem;
	border: 1px solid var(--wp--preset--color--neutral-mid);
}

.eficens-post-content table td {
	padding: 0.75rem 0.875rem;
	border: 1px solid var(--wp--preset--color--neutral-mid);
	vertical-align: top;
	color: var(--wp--preset--color--neutral-dark);
}

.eficens-post-content table tr:nth-child(odd) td  { background: var(--wp--preset--color--white); }
.eficens-post-content table tr:nth-child(even) td { background: var(--wp--preset--color--neutral-light); }

@media (max-width: 960px) {
	.eficens-blog-grid .wp-block-post-template {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.eficens-blog-grid .wp-block-post-template {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   CASE STUDIES — page-clientes service deep-dives
   ========================================================================== */

.eficens-case {
	background: #fff;
	border: 1px solid var(--wp--preset--color--neutral-200);
	border-radius: 24px;
	padding: 3rem;
	box-shadow: var(--shadow-sm);
}

.eficens-case__head {
	max-width: 820px;
	margin-bottom: 2.5rem;
}

.eficens-case__head h2 {
	font-size: clamp(1.625rem, 3.5vw, 2.25rem);
	letter-spacing: -0.015em;
	line-height: 1.15;
}

.eficens-case__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem 2.5rem;
}

.eficens-case__block h3 {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wp--preset--color--brand-blue);
	margin: 0 0 0.875rem;
}

.eficens-case__block p {
	margin: 0;
	color: var(--wp--preset--color--neutral-dark);
	font-size: 0.9375rem;
	line-height: 1.65;
}

.eficens-case__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.eficens-case__list li {
	position: relative;
	padding-left: 1.25rem;
	color: var(--wp--preset--color--neutral-dark);
	font-size: 0.9375rem;
	line-height: 1.55;
}

.eficens-case__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.625rem;
	width: 6px;
	height: 6px;
	background: var(--wp--preset--color--brand-blue);
	border-radius: 50%;
}

.eficens-case__block--result {
	background: linear-gradient(135deg, var(--wp--preset--color--support-green) 0%, var(--wp--preset--color--support-blue) 100%);
	border-radius: 14px;
	padding: 1.25rem 1.5rem;
	margin: 0;
}

.eficens-case__block--result h3 {
	color: var(--wp--preset--color--green-700);
}

.eficens-case__block--result p {
	color: var(--wp--preset--color--neutral-900);
	font-size: 1rem;
	line-height: 1.6;
}

.eficens-case__norms {
	margin-top: 2.5rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--wp--preset--color--neutral-200);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.eficens-case__norm-label {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--neutral-dark);
	margin-right: 0.5rem;
}

@media (max-width: 960px) {
	.eficens-case { padding: 2rem 1.5rem; border-radius: 18px; }
	.eficens-case__grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ==========================================================================
   PORTAL DO CLIENTE — split layout: institucional + login card
   ========================================================================== */

.eficens-portal-section {
	background:
		radial-gradient(1100px 600px at 110% -10%, rgba(0, 153, 204, 0.10) 0%, rgba(255, 255, 255, 0) 60%),
		radial-gradient(900px 500px at -10% 10%, rgba(153, 204, 102, 0.14) 0%, rgba(255, 255, 255, 0) 50%);
	padding: 5rem 0 6rem;
}

.eficens-portal-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 4rem;
	align-items: center;
}

.eficens-portal-copy {
	display: flex;
	flex-direction: column;
	gap: 1.375rem;
}

.eficens-portal-copy h1 {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 800;
	font-size: clamp(2.25rem, 5.5vw, 3.5rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--neutral-900);
	text-wrap: balance;
	margin: 0;
}

.eficens-portal-list {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.eficens-portal-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	color: var(--wp--preset--color--neutral-dark);
	font-size: 0.9375rem;
	line-height: 1.55;
}

.eficens-portal-list li svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--wp--preset--color--brand-green);
}

.eficens-portal-help {
	margin: 0.75rem 0 0;
	font-size: 0.875rem;
	color: var(--wp--preset--color--neutral-dark);
}

.eficens-portal-card {
	background: #fff;
	border: 1px solid var(--wp--preset--color--neutral-200);
	border-radius: 22px;
	padding: 2rem;
	box-shadow: var(--shadow-lg);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.eficens-portal-card__head {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--wp--preset--color--neutral-200);
}

.eficens-portal-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.eficens-field {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.eficens-field label {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--wp--preset--color--neutral-dark);
	letter-spacing: 0;
	text-transform: none;
	margin-bottom: 0;
}

.eficens-portal-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 0.25rem 0 0.25rem;
}

@media (max-width: 960px) {
	.eficens-portal-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

/* ==========================================================================
   FORM FIELDS — generous radii, brand-blue focus glow
   ========================================================================== */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
	width: 100%;
	padding: 0.75rem 0.875rem;
	font-family: var(--wp--preset--font-family--satoshi);
	font-size: 0.9375rem;
	color: var(--wp--preset--color--neutral-900);
	background: #fff;
	border: 1.5px solid var(--wp--preset--color--neutral-200);
	border-radius: 10px;
	transition: border-color var(--dur-base) var(--ease-out),
	            box-shadow var(--dur-base) var(--ease-out);
	outline: none;
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--wp--preset--color--brand-blue);
	box-shadow: 0 0 0 4px rgba(0, 153, 204, 0.15);
}

input.is-valid,
textarea.is-valid,
select.is-valid {
	border-color: var(--wp--preset--color--brand-green);
	background: var(--wp--preset--color--support-green);
}

input.is-invalid,
textarea.is-invalid,
select.is-invalid {
	border-color: var(--wp--preset--color--support-red);
	background: var(--wp--preset--color--support-red-light);
}

label,
.form-label {
	display: block;
	margin-bottom: 0.375rem;
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--wp--preset--color--neutral-dark);
	letter-spacing: 0;
	text-transform: none;
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */

.eficens-whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25D366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px 0 rgba(37, 211, 102, 0.35);
	z-index: 90;
	transition: transform var(--dur-fast) var(--ease-out),
	            box-shadow var(--dur-fast) var(--ease-out);
}

.eficens-whatsapp-float:hover {
	transform: scale(1.06);
	box-shadow: 0 10px 28px 0 rgba(37, 211, 102, 0.45);
}

.eficens-whatsapp-float svg {
	width: 30px;
	height: 30px;
	fill: white;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 960px) {
	.eficens-hero-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.eficens-hero-visual { min-height: 340px; max-width: 380px; margin: 0 auto; width: 100%; }
	.eficens-hero-symbol { width: 280px; }
	.eficens-service-grid { grid-template-columns: repeat(2, 1fr); }
	.eficens-process { grid-template-columns: repeat(2, 1fr); }
	.eficens-stats__row { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
	.eficens-testimonial { grid-template-columns: 140px 1fr; gap: 2rem; }
	.eficens-testimonial__mark { width: 140px; height: 140px; }
	.eficens-testimonial__mark img { width: 90px; height: 90px; }
	.eficens-cta-banner__inner { grid-template-columns: 1fr; }
	.eficens-cta-banner__actions { justify-self: stretch; max-width: 100%; }
}

@media (max-width: 781px) {
	.eficens-section { padding: 4rem 0; }
	.eficens-section--tight { padding: 3rem 0; }
	.eficens-portal-section { padding: 3.5rem 0 4.5rem; }
	.eficens-portal-card { padding: 1.5rem; }

	.eficens-hero-section { padding: 2.5rem 0 3.5rem; }
	.eficens-hero-copy h1 { font-size: clamp(2rem, 8vw, 2.75rem) !important; }

	/* On phones the gradient card has no room for absolute float chips;
	   inline them below the visual instead. */
	.eficens-hero-visual { min-height: 280px; max-width: 320px; }
	.eficens-hero-symbol { width: 100%; }
	.eficens-float-card { display: none; }

	.eficens-service-grid { grid-template-columns: 1fr; }
	.eficens-process { grid-template-columns: 1fr; gap: 1.25rem; }
	.eficens-process li { padding-top: 0.25rem; }

	.eficens-stats { padding: 2.5rem 0; }
	.eficens-stats__num { font-size: 2.5rem; }
	.eficens-stats__label { font-size: 0.6875rem; letter-spacing: 0.12em; }

	.eficens-testimonial {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		justify-items: start;
	}
	.eficens-testimonial__mark { width: 96px; height: 96px; }
	.eficens-testimonial__mark img { width: 64px; height: 64px; }
	.eficens-testimonial__quote { font-size: 1.25rem; line-height: 1.4; }

	.eficens-cta-banner { padding: 3rem 0; }
	.eficens-cta-banner__watermark { width: 320px; height: 320px; right: -100px; top: -60px; }

	.eficens-marquee__item { width: 160px; height: 80px; padding: 1rem; }
	.eficens-marquee__logo { max-height: 44px; }
	.eficens-marquee__track { gap: 1.5rem; animation-duration: 35s; }

	.eficens-hero-trust-logos { gap: 0.875rem 1rem; }
	.eficens-hero-trust-logo { font-size: 0.9375rem; }

	/* Header on phone: shrink CTA + hide ghost link (Portal accessed via menu) */
	.eficens-header-ctas .eficens-btn-primary {
		font-size: 0.75rem;
		padding: 0.5rem 0.75rem;
	}
}

@media (max-width: 480px) {
	.eficens-hero-copy h1 { font-size: 2rem !important; }
	.eficens-hero-actions { flex-direction: column; align-items: stretch; }
	.eficens-hero-actions .eficens-btn-primary,
	.eficens-hero-actions .eficens-btn-outline {
		justify-content: center;
	}
	.eficens-cta-banner__actions { gap: 0.625rem; }
	.eficens-stats__row { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
	.eficens-stats__num { font-size: 2.25rem; }
}
