/* ========================================
   CERCAI THEME — Custom CSS v3.0
   Neo-Brutalist Design System
   Faithful to Soyio.id
   ======================================== */


/* ===========================================
   1. GLOBAL
   =========================================== */

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

::selection {
	background: #C8902A;
	color: #000;
}


/* ===========================================
   2. HEADER
   =========================================== */

.cercai-header {
	z-index: 100;
	border-bottom: 2px solid #000;
	transition: box-shadow 0.2s ease, backdrop-filter 0.2s ease;
}
/* Desktop: logo izq | nav centro | botón der */
@media (min-width: 900px) {
	.cercai-header > .wp-block-group {
		flex-wrap: nowrap !important;
		align-items: center;
		justify-content: space-between !important;
	}
	/* Logo: fijo a la izquierda */
	.cercai-logo-wrap {
		flex-shrink: 0;
	}
	/* Nav: solo ocupa lo que necesita, centrado por space-between */
	.cercai-header .wp-block-navigation {
		flex: 0 0 auto;
	}
	.cercai-header .wp-block-navigation .wp-block-navigation__container {
		flex-wrap: nowrap !important;
		gap: 1.5rem !important;
	}
	/* Botón CTA: fijo a la derecha */
	.cercai-header .wp-block-buttons {
		flex-shrink: 0;
	}
}

/* .cercai-header.is-scrolled — dark glass variant in section 33 */

.cercai-header .wp-block-navigation-item a {
	transition: color 0.2s ease, background-color 0.2s ease;
}

.cercai-header .wp-block-navigation-item a:hover {
	color: var(--wp--preset--color--primary) !important;
}


/* ===========================================
   3. HERO — (dark hero styles in section 32)
   =========================================== */


/* ===========================================
   4. HEADING SPACING
   =========================================== */

.wp-block-heading + p,
.wp-block-heading + .has-text-align-center {
	margin-top: 0.5rem !important;
}

/* H2 de secciones claras — teal para contraste visual con subtítulo */
h2.cercai-section-heading,
.cercai-section-heading.wp-block-heading {
	color: var(--wp--preset--color--primary) !important;
}

/* Subtítulo de sección — gris medio, subordinado al título */
p.cercai-section-subheading {
	color: #4B5563 !important;
}


/* ===========================================
   5. CARD SYSTEM — NEO-BRUTALIST
   =========================================== */

/* Base card styles — hard borders, sharp shadows, tight radius */
.cercai-service-card,
/* Industry icon badge — no background, larger emoji */
.cercai-industry-icon {
	display: block;
	font-size: 2rem;
	line-height: 1;
	margin-bottom: 1rem;
	background: none;
	border: none;
	border-radius: 0;
	padding: 0;
}

.cercai-industry-card,
.cercai-problem-card,
.cercai-blog-card,
.cercai-metric-card,
.cercai-icon-grid-item {
	border: 2px solid #000 !important;
	border-radius: 0.25rem !important;
	box-shadow: 4px 4px 0 #000;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	background: #fff;
}

/* Hover lift */
.cercai-service-card:hover,
.cercai-industry-card:hover,
.cercai-problem-card:hover,
.cercai-blog-card:hover,
.cercai-metric-card:hover,
.cercai-icon-grid-item:hover {
	transform: translate3d(-2px, -2px, 0);
	box-shadow: 6px 6px 0 #000;
}

/* Active press */
.cercai-service-card:active,
.cercai-industry-card:active,
.cercai-problem-card:active,
.cercai-blog-card:active,
.cercai-metric-card:active,
.cercai-icon-grid-item:active {
	transform: translate(2px, 2px);
	box-shadow: 0 0 0 #000;
}

/* Service card links */
.cercai-service-card .has-small-font-size a {
	font-weight: 600;
	text-decoration: none;
	color: var(--wp--preset--color--primary);
	transition: opacity 0.2s ease;
}

.cercai-service-card .has-small-font-size a:hover {
	opacity: 0.7;
}

/* Industry card links */
.cercai-industry-card h4 a {
	text-decoration: none;
	color: var(--wp--preset--color--dark);
	transition: color 0.2s ease;
}

.cercai-industry-card:hover h4 a {
	color: var(--wp--preset--color--primary);
}


/* ===========================================
   6. STEP NUMBERS — NEO-BRUTALIST
   =========================================== */

.cercai-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 0.25rem;
	border: 2px solid #000;
	box-shadow: 3px 3px 0 #000;
	background: var(--wp--preset--color--accent);
	color: #000;
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}


/* ===========================================
   7. FOOTER LINKS
   =========================================== */

/* Footer on primary (indigo) background */
.wp-block-group.alignfull.has-primary-background-color .is-style-no-bullets a,
.wp-block-group.alignfull.has-dark-background-color .is-style-no-bullets a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.2s ease;
}

.wp-block-group.alignfull.has-primary-background-color .is-style-no-bullets a:hover,
.wp-block-group.alignfull.has-dark-background-color .is-style-no-bullets a:hover {
	color: var(--wp--preset--color--white);
}


/* ===========================================
   8. BUTTONS — NEO-BRUTALIST
   =========================================== */

.wp-block-button__link {
	border: 2px solid #000 !important;
	border-radius: 0.25rem !important;
	box-shadow: 3px 3px 0 #000;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 700;
}

.wp-block-button__link:hover {
	transform: translate3d(-2px, -2px, 0);
	box-shadow: 5px 5px 0 #000;
}

.wp-block-button__link:active {
	transform: translate(2px, 2px) !important;
	box-shadow: 0 0 0 #000 !important;
}

/* Outline buttons */
.wp-block-button.is-style-outline .wp-block-button__link {
	border: 2px solid #000 !important;
	box-shadow: 3px 3px 0 #000;
	background: transparent !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	transform: translate3d(-2px, -2px, 0);
	box-shadow: 5px 5px 0 #000;
	background: rgba(0, 0, 0, 0.03) !important;
}

/* Buttons on dark backgrounds — accent bg for contrast */
.has-dark-background-color .wp-block-button:not(.is-style-outline) .wp-block-button__link,
.has-dark-alt-background-color .wp-block-button:not(.is-style-outline) .wp-block-button__link {
	background-color: var(--wp--preset--color--accent) !important;
	color: #000 !important;
	font-weight: 700 !important;
	border: 2px solid #000 !important;
	box-shadow: 3px 3px 0 #000;
}

.has-dark-background-color .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover,
.has-dark-alt-background-color .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
	transform: translate3d(-2px, -2px, 0);
	box-shadow: 5px 5px 0 #000;
}


/* ===========================================
   9. INDUSTRY PAGE LAYOUTS
   =========================================== */

/* Stats bar numbers */
.cercai-stat-number {
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 800;
	line-height: 1;
	color: var(--wp--preset--color--accent) !important;
}

.cercai-stat-label {
	font-size: 0.9375rem;
	color: var(--wp--preset--color--gray-dark);
	margin-top: 0.5rem;
}

/* Zigzag cards — same brutalist system */
.cercai-zigzag-card {
	border-radius: 0.25rem;
	border: 2px solid #000;
	box-shadow: 4px 4px 0 #000;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cercai-zigzag-card:hover {
	transform: translate3d(-2px, -2px, 0);
	box-shadow: 6px 6px 0 #000;
}

/* Before/After columns */
.cercai-before-col {
	border: 2px solid #000;
	border-radius: 0.25rem;
	padding: 2rem;
	background: #fff;
	box-shadow: 4px 4px 0 #000;
}

.cercai-after-col {
	border: 2px solid #000;
	border-radius: 0.25rem;
	padding: 2rem;
	background: var(--wp--preset--color--primary-subtle);
	box-shadow: 4px 4px 0 var(--wp--preset--color--primary);
}

/* Metric cards 2x2 — inherits base card styles, just add padding */
.cercai-metric-card {
	padding: 1.75rem;
}

/* Feature list with left accent — hard border */
.cercai-feature-item {
	border-left: 4px solid #000;
	padding-left: 1.5rem;
	transition: border-color 0.2s ease;
}

.cercai-feature-item:hover {
	border-left-color: var(--wp--preset--color--accent);
}

/* Full-width step rows */
.cercai-step-wide {
	padding: 1.75rem 0;
}

/* CTA split layout */
.cercai-cta-split .wp-block-button__link {
	font-size: 1.0625rem;
	padding: 1rem 2.5rem;
}


/* ===========================================
   10. UNIQUE LAYOUT TYPES
   =========================================== */

/* Checklist items */
.cercai-checklist-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem 0;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.cercai-checklist-item:last-child {
	border-bottom: none;
}

/* Numbered Benefits */
.cercai-numbered-benefit {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem 0;
}

.cercai-benefit-number {
	font-size: clamp(2.25rem, 6vw, 3.5rem);
	font-weight: 800;
	line-height: 1;
	color: var(--wp--preset--color--accent) !important;
	opacity: 0.3 !important;
	flex-shrink: 0;
}

/* Icon Grid items — already has card base styles above, just add padding */
.cercai-icon-grid-item {
	text-align: center;
	padding: 1.5rem;
}

/* Timeline Vertical — square dots, hard lines */
.cercai-timeline-item {
	position: relative;
	padding-left: 3rem;
	padding-bottom: 2rem;
	border-left: 2px solid #000 !important;
}

.cercai-timeline-item:last-child {
	border-left-color: transparent !important;
}

.cercai-timeline-dot {
	position: absolute;
	left: -7px;
	top: 0.25rem;
	width: 12px;
	height: 12px;
	border-radius: 0 !important;
	background: var(--wp--preset--color--accent) !important;
	border: 2px solid #000 !important;
	box-shadow: 2px 2px 0 #000 !important;
}

/* Quote Highlight — hard left border */
.cercai-quote-highlight {
	border-left: 4px solid #000 !important;
	padding: 1.5rem 2rem;
	background: var(--wp--preset--color--primary-subtle);
	border-radius: 0;
}

/* Stats Single Highlight */
.cercai-stat-hero {
	font-size: clamp(3.5rem, 8vw, 5rem);
	font-weight: 800;
	line-height: 1;
	color: var(--wp--preset--color--accent) !important;
}

.cercai-stat-hero-label {
	font-size: 1.25rem;
	color: var(--wp--preset--color--gray-dark);
	margin-top: 0.75rem;
}

/* Sobre Nosotros feature cards — same system */
.cercai-feature-card {
	border: 2px solid #000;
	border-radius: 0.25rem;
	box-shadow: 4px 4px 0 #000;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cercai-feature-card:hover {
	transform: translate3d(-2px, -2px, 0);
	box-shadow: 6px 6px 0 #000;
}

/* FAQ items (legacy static pages) — same system */
.cercai-faq-item {
	border: 2px solid #000 !important;
	border-radius: 0.25rem !important;
	box-shadow: 4px 4px 0 #000;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	margin-bottom: 0.75rem;
}

.cercai-faq-item:hover {
	transform: translate3d(-2px, -2px, 0);
	box-shadow: 6px 6px 0 #000;
}


/* ===========================================
   11. MODAL — BRUTALIST
   =========================================== */

.cercai-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.cercai-modal[aria-hidden="false"] {
	opacity: 1;
	visibility: visible;
}

.cercai-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(4px);
}

.cercai-modal__container {
	position: relative;
	background: #fff;
	border: 3px solid #000;
	border-radius: 0.25rem;
	box-shadow: 8px 8px 0 #000;
	max-width: 520px;
	width: 92%;
	max-height: 90vh;
	overflow-y: auto;
	transform: translateY(24px);
	transition: transform 0.2s ease;
}

.cercai-modal[aria-hidden="false"] .cercai-modal__container {
	transform: translateY(0);
}

.cercai-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: transparent;
	border: 2px solid #000;
	border-radius: 0.25rem;
	box-shadow: 2px 2px 0 #000;
	font-size: 1.5rem;
	color: #000;
	cursor: pointer;
	line-height: 1;
	padding: 6px 10px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cercai-modal__close:hover {
	transform: translate3d(-1px, -1px, 0);
	box-shadow: 3px 3px 0 #000;
}

.cercai-modal__close:active {
	transform: translate(1px, 1px);
	box-shadow: 0 0 0 #000;
}

.cercai-modal__content {
	padding: 2.5rem 2.5rem 2rem;
}

.cercai-modal__title {
	font-size: 1.5rem;
	font-weight: 800;
	color: #0F172A;
	margin: 0 0 0.5rem;
	line-height: 1.2;
}

.cercai-modal__subtitle {
	color: #475569;
	font-size: 1.0625rem;
	margin: 0 0 1.5rem;
	line-height: 1.5;
}

.cercai-modal__benefits {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}

.cercai-modal__benefits li {
	padding: 0.5rem 0 0.5rem 2rem;
	position: relative;
	color: #334155;
	font-size: 0.95rem;
	line-height: 1.55;
}

.cercai-modal__benefits li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.65rem;
	width: 20px;
	height: 20px;
	border-radius: 0.25rem;
	background: var(--wp--preset--color--primary-subtle);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%233340CF'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
	background-size: 14px;
	background-repeat: no-repeat;
	background-position: center;
}

.cercai-modal__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.cercai-modal__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	padding: 0.95rem 1.5rem;
	border: 2px solid #000;
	border-radius: 0.25rem;
	box-shadow: 3px 3px 0 #000;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	cursor: pointer;
}

.cercai-modal__btn:hover {
	transform: translate3d(-2px, -2px, 0);
	box-shadow: 5px 5px 0 #000;
}

.cercai-modal__btn:active {
	transform: translate(2px, 2px);
	box-shadow: 0 0 0 #000;
}

.cercai-modal__btn--primary {
	background: var(--wp--preset--color--primary);
	color: #fff;
}

.cercai-modal__btn--primary:hover {
	background: var(--wp--preset--color--primary-dark);
	color: #fff;
}

.cercai-modal__btn--whatsapp {
	background: #25D366;
	color: #fff;
}

.cercai-modal__btn--whatsapp:hover {
	background: #1DA851;
	color: #fff;
}

.cercai-modal__note {
	text-align: center;
	color: #94A3B8;
	font-size: 0.8rem;
	margin: 1rem 0 0;
}


/* ===========================================
   12. NO-BULLETS LIST
   =========================================== */

.is-style-no-bullets {
	list-style: none;
	padding-left: 0;
}


/* ===========================================
   13. TYPOGRAPHY TUNING
   =========================================== */

h1, .wp-block-heading[class*="wp-block-heading"] {
	word-spacing: -0.04em;
}

h2 {
	word-spacing: -0.03em;
}

h3 {
	word-spacing: -0.02em;
}

p, li, td, label {
	font-size: clamp(1rem, 2vw, 1.125rem);
}


/* ===========================================
   14. CONTACT FORM 7 — BRUTALIST
   =========================================== */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
	border: 2px solid #000 !important;
	border-radius: 0.25rem !important;
	padding: 0.85rem 1.125rem;
	font-size: 1rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	background: #fff;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	outline: none;
	border-color: var(--wp--preset--color--primary) !important;
	box-shadow: 3px 3px 0 var(--wp--preset--color--primary);
	background: #fff;
}

.wpcf7 input[type="submit"] {
	border: 2px solid #000 !important;
	border-radius: 0.25rem !important;
	box-shadow: 3px 3px 0 #000;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
	transform: translate3d(-2px, -2px, 0);
	box-shadow: 5px 5px 0 #000;
}

.wpcf7 input[type="submit"]:active {
	transform: translate(2px, 2px) !important;
	box-shadow: 0 0 0 #000 !important;
}


/* ===========================================
   15. MOBILE RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
	.wp-block-group.alignfull {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	.wp-block-group.alignfull > .wp-block-group__inner-container,
	.wp-block-group.alignfull > .wp-block-group {
		padding-left: 1.25rem !important;
		padding-right: 1.25rem !important;
	}

	/* Full-width buttons on mobile */
	.wp-block-buttons.is-layout-flex {
		flex-direction: column;
	}

	.wp-block-button {
		width: 100%;
	}

	.wp-block-button__link {
		width: 100%;
		text-align: center;
	}

	.wp-block-columns {
		gap: 1rem !important;
	}

	/* Reduced shadows on mobile */
	.cercai-service-card,
	.cercai-industry-card,
	.cercai-problem-card,
	.cercai-blog-card,
	.cercai-metric-card,
	.cercai-icon-grid-item,
	.cercai-zigzag-card,
	.cercai-feature-card,
	.cercai-faq-item {
		box-shadow: 2px 2px 0 #000;
	}

	.wp-block-button__link {
		box-shadow: 2px 2px 0 #000;
	}

	.cercai-step-number {
		box-shadow: 2px 2px 0 #000;
	}

	/* Cards padding */
	.cercai-service-card,
	.cercai-industry-card,
	.cercai-problem-card {
		padding: 1.5rem !important;
	}

	/* Mobile typography */
	h1 {
		font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
	}

	h2 {
		font-size: clamp(1.35rem, 5vw, 1.875rem) !important;
	}

	h3 {
		font-size: clamp(1.1rem, 4vw, 1.35rem) !important;
	}

	/* Stats on mobile */
	.cercai-stat-number {
		font-size: 2rem !important;
	}

	.cercai-stat-hero {
		font-size: clamp(2rem, 10vw, 2.75rem) !important;
	}

	.cercai-stat-hero-label {
		font-size: 1rem !important;
	}

	.cercai-benefit-number {
		font-size: 2.25rem !important;
	}

	p, li, td, label {
		font-size: 1rem !important;
	}

	h1, h2, h3, h4, p {
		word-break: break-word;
		overflow-wrap: break-word;
	}

	.hero-home {
		text-align: center;
	}

	/* Modal mobile adjustments */
	.cercai-modal__container {
		box-shadow: 4px 4px 0 #000;
		margin: 1rem;
		width: calc(100% - 2rem);
	}

	/* Hero split — stack on mobile */
	.cercai-hero-split {
		flex-direction: column !important;
	}
	.cercai-hero-split__text,
	.cercai-hero-split__image {
		width: 100% !important;
		max-width: 100% !important;
		flex: none !important;
	}
	.cercai-hero-split__image { display: none; }

	/* Services grid — 1 col on mobile */
	.cercai-services-grid {
		grid-template-columns: 1fr !important;
	}

	/* Industry cards — 1 col on mobile */
	.cercai-industries-grid,
	.cercai-icon-grid {
		grid-template-columns: 1fr !important;
	}

	/* Zigzag — stack on mobile */
	.cercai-zigzag-row {
		flex-direction: column !important;
	}
	.cercai-zigzag-card,
	.cercai-zigzag-image {
		width: 100% !important;
		max-width: 100% !important;
	}

	/* Before/After — stack on mobile */
	.cercai-ba-grid {
		grid-template-columns: 1fr !important;
	}

	/* Stats bar — 2 col on mobile */
	.cercai-stats-bar {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1rem !important;
	}

	/* Timeline — reduce padding */
	.cercai-timeline-item { padding-left: 2.5rem !important; }

	/* CTA sections — center text */
	.cercai-cta-split {
		flex-direction: column !important;
		text-align: center !important;
	}

	/* Footer columns — stack */
	.wp-block-group.alignfull > .wp-block-columns {
		flex-direction: column;
	}

	/* Navigation CTA button — smaller on mobile */
	.cercai-header .wp-block-button__link {
		font-size: 0.8rem !important;
		padding: 0.65rem 1.25rem !important;
	}

	/* Cards full width */
	.wp-block-column { width: 100% !important; flex-basis: 100% !important; }

	/* Reduce section vertical padding */
	.wp-block-group.alignfull {
		padding-top: 2.5rem !important;
		padding-bottom: 2.5rem !important;
	}
}

@media (max-width: 781px) {
	.cercai-modal__content {
		padding: 2rem 1.5rem 1.5rem;
	}

	.cercai-modal__title {
		font-size: 1.25rem;
	}
}

@media (max-width: 600px) {
	.cercai-modal__container {
		width: 95%;
		margin: 0 auto;
	}
}


/* =========================================== */
/* 20. SPLIT HERO                              */
/* =========================================== */
.cercai-hero-split {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	min-height: 80vh;
}
@media (min-width: 768px) {
	.cercai-hero-split {
		flex-direction: row;
		align-items: center;
		gap: 3rem;
	}
	.cercai-hero-split__text { flex: 0 0 45%; max-width: 45%; }
	.cercai-hero-split__image { flex: 0 0 55%; max-width: 55%; }
}
.cercai-hero-split__text { text-align: left; }
@media (max-width: 767px) {
	.cercai-hero-split__text { text-align: center; }
}
.cercai-trust-badges {
	display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; align-items: center;
}
@media (max-width: 767px) {
	.cercai-trust-badges { justify-content: center; }
}
.cercai-trust-badge {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.4rem 0.9rem; border: 2px solid #000;
	border-radius: 0.25rem; font-size: 0.8125rem; font-weight: 600;
	color: var(--wp--preset--color--dark);
	box-shadow: 2px 2px 0 #000;
}


/* =========================================== */
/* 21. LOGO CAROUSEL                           */
/* =========================================== */
.cercai-logos-wrapper {
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.cercai-logos-track {
	display: flex; gap: 3rem;
	animation: cercai-scroll-logos 30s linear infinite;
	width: max-content;
}
.cercai-logos-track:hover { animation-play-state: paused; }
.cercai-logo-item {
	flex-shrink: 0; display: flex; align-items: center; justify-content: center;
	height: 2rem; padding: 0 1rem;
	opacity: 0.4; filter: grayscale(100%);
	transition: opacity 0.2s ease, filter 0.2s ease;
	font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
	text-transform: uppercase; color: var(--wp--preset--color--gray);
}
.cercai-logo-item:hover { opacity: 1; filter: grayscale(0%); }
@keyframes cercai-scroll-logos {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
	.cercai-logos-track { gap: 2rem; }
	.cercai-logo-item { height: 1.5rem; font-size: 0.625rem; }
}


/* =========================================== */
/* 22. SERVICES CARD GRID                      */
/* =========================================== */
.cercai-services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}
@media (min-width: 600px) {
	.cercai-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
	.cercai-services-grid { grid-template-columns: repeat(3, 1fr); }
}
.cercai-service-card {
	border: 2px solid #000;
	border-radius: 0.25rem;
	box-shadow: 4px 4px 0 #000;
	background: var(--wp--preset--color--white);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex; flex-direction: column;
}
.cercai-service-card:hover {
	transform: translate3d(-2px, -2px, 0);
	box-shadow: 6px 6px 0 #000;
}
.cercai-service-card:active {
	transform: translate(2px, 2px);
	box-shadow: 0 0 0 #000;
}
.cercai-service-card__image {
	border-bottom: 2px solid #000;
	flex-shrink: 0;
}
.cercai-service-card__image .cercai-image-placeholder {
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}
.cercai-service-card__body {
	padding: 1.125rem 1.25rem 1.375rem;
	display: flex; flex-direction: column; flex: 1;
}
.cercai-service-card__body h3 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.0625rem; font-weight: 700;
	margin: 0.5rem 0 0.625rem; color: var(--wp--preset--color--dark);
	line-height: 1.3;
}
.cercai-service-card__body p {
	color: var(--wp--preset--color--gray-dark);
	line-height: 1.55; font-size: 0.9rem;
	margin-bottom: 1rem; flex: 1;
}
.cercai-module-tag {
	display: inline-block; padding: 0.2rem 0.6rem;
	background: rgba(200,144,42,0.1);
	color: #A87220;
	font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.08em; border-radius: 0.25rem;
	border: 1px solid rgba(200,144,42,0.4);
}
.cercai-module-link {
	display: inline-flex; align-items: center; gap: 0.3rem;
	color: #000; font-weight: 700; font-size: 0.8125rem;
	text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em;
	border: 2px solid #000; padding: 0.5rem 1rem;
	border-radius: 0.25rem; margin-top: 2rem;
	background: transparent;
	box-shadow: 2px 2px 0 #000;
	transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.cercai-module-link:hover {
	background: #C8902A; color: #000; border-color: #000;
	transform: translate3d(-1px,-1px,0); box-shadow: 3px 3px 0 #000;
	text-decoration: none;
}


/* =========================================== */
/* 23. BLOG CAROUSEL                           */
/* =========================================== */
.cercai-blog-carousel {
	display: flex; gap: 1.5rem;
	overflow-x: auto; scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 1rem; scrollbar-width: none;
}
.cercai-blog-carousel::-webkit-scrollbar { display: none; }
.cercai-blog-carousel-card {
	flex: 0 0 320px; scroll-snap-align: start;
	border: 2px solid #000; border-radius: 0.25rem;
	overflow: hidden; box-shadow: 4px 4px 0 #000;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	background: #fff; text-decoration: none; color: inherit;
}
.cercai-blog-carousel-card:hover {
	transform: translate3d(-2px, -2px, 0); box-shadow: 6px 6px 0 #000;
}
.cercai-blog-carousel-card:active {
	transform: translate(2px, 2px); box-shadow: 0 0 0 #000;
}
.cercai-blog-carousel-card__header {
	background: var(--wp--preset--color--primary-dark);
	padding: 1.5rem; min-height: 140px;
	display: flex; flex-direction: column; justify-content: flex-end;
}
.cercai-blog-carousel-card__header h3 {
	color: #fff; font-size: 1.125rem; font-weight: 700;
	line-height: 1.3; margin: 0;
	font-family: var(--wp--preset--font-family--heading);
}
.cercai-blog-carousel-card__header h3 a {
	color: inherit; text-decoration: none;
}
.cercai-blog-carousel-card__category {
	display: inline-block; font-size: 0.6875rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.1em;
	color: var(--wp--preset--color--accent); margin-bottom: 0.5rem;
}
.cercai-blog-carousel-card__body {
	padding: 1.25rem 1.5rem;
}
.cercai-blog-carousel-card__body p {
	color: var(--wp--preset--color--gray-dark); font-size: 0.875rem;
	line-height: 1.5; margin: 0 0 0.75rem;
}
.cercai-blog-carousel-card__date {
	font-size: 0.75rem; color: var(--wp--preset--color--gray);
	font-weight: 500;
}
@media (max-width: 768px) {
	.cercai-blog-carousel-card { flex: 0 0 280px; box-shadow: 2px 2px 0 #000; }
}


/* =========================================== */
/* 24. TESTIMONIALS — FROSTED GLASS            */
/* =========================================== */
.cercai-testimonials-grid {
	display: grid; grid-template-columns: 1fr; gap: 1.5rem;
	max-width: 1100px; margin: 0 auto;
	padding: 0 var(--wp--preset--spacing--30);
}
@media (min-width: 768px) {
	.cercai-testimonials-grid { grid-template-columns: 1fr 1fr; }
}
.cercai-testimonial-card {
	backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0.25rem; padding: 2rem;
	box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cercai-testimonial-card:hover {
	transform: translate3d(-5px, -5px, 0);
	box-shadow: 5px 5px 0 #fff;
	border-color: rgba(255, 255, 255, 0.3);
}
.cercai-testimonial-card__text {
	font-style: italic; font-size: 1.0625rem; line-height: 1.65;
	color: rgba(255, 255, 255, 0.9); margin-bottom: 1.5rem;
}
.cercai-testimonial-card__author {
	font-weight: 700; color: var(--wp--preset--color--accent); display: block;
}
.cercai-testimonial-card__role {
	font-size: 0.8125rem; color: rgba(255, 255, 255, 0.45); display: block; margin-top: 0.25rem;
}


/* =========================================== */
/* 25. FAQ ACCORDION                           */
/* =========================================== */
.cercai-faq-accordion { max-width: 880px; margin: 0 auto; }
.cercai-faq-accordion-item { border-bottom: 2px solid rgba(0, 0, 0, 0.1); }
.cercai-faq-trigger {
	display: flex; justify-content: space-between; align-items: center;
	width: 100%; padding: 1.5rem 0; background: none; border: none;
	cursor: pointer; text-align: left;
	font-family: var(--wp--preset--font-family--heading);
	font-size: clamp(1rem, 2.5vw, 1.25rem); font-weight: 600;
	color: var(--wp--preset--color--dark);
	transition: color 0.2s ease;
}
.cercai-faq-trigger:hover { color: var(--wp--preset--color--primary); }
.cercai-faq-trigger__icon {
	flex-shrink: 0; width: 22px; height: 22px;
	position: relative; margin-left: 1rem;
}
.cercai-faq-trigger__icon::before,
.cercai-faq-trigger__icon::after {
	content: ''; position: absolute; background: currentColor;
	transition: transform 0.2s ease;
}
.cercai-faq-trigger__icon::before {
	top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%);
}
.cercai-faq-trigger__icon::after {
	top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%);
}
.cercai-faq-accordion-item.is-open .cercai-faq-trigger__icon::after {
	transform: translateX(-50%) rotate(90deg);
}
.cercai-faq-accordion-item.is-open .cercai-faq-trigger {
	color: var(--wp--preset--color--primary);
}
.cercai-faq-answer {
	max-height: 0; overflow: hidden;
	transition: max-height 0.2s ease;
}
.cercai-faq-answer__inner {
	padding-bottom: 1.5rem;
	color: var(--wp--preset--color--gray-dark); line-height: 1.7;
}


/* =========================================== */
/* 26. CTA OSCURO — base (glow enhancement in section 34) */
/* =========================================== */
.cercai-cta-gradient h2 { text-shadow: none; }
@media (min-width: 768px) {
	.cercai-cta-gradient {
		padding-top: 6rem !important; padding-bottom: 6rem !important;
	}
}


/* =========================================== */
/* 27. IMAGE PLACEHOLDERS — MOCKUP SCREENS     */
/* =========================================== */

/* Base: Dark app screen — NO black border, these are screen mockups */
.cercai-image-placeholder {
	background: linear-gradient(145deg, #0f0f22 0%, #1a1a38 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	border-radius: 0.75rem;
	display: flex; flex-direction: column;
	align-items: center; justify-content: flex-end;
	min-height: 300px; padding: 2rem 2rem 1.5rem;
	position: relative; overflow: hidden;
}

/* Chrome bar with traffic light dots */
.cercai-image-placeholder::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0;
	height: 32px;
	background:
		radial-gradient(circle at 16px 16px, #ff5f57 4px, transparent 4.5px),
		radial-gradient(circle at 32px 16px, #febc2e 4px, transparent 4.5px),
		radial-gradient(circle at 48px 16px, #28c840 4px, transparent 4.5px),
		linear-gradient(to bottom, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border-bottom: 1px solid rgba(255,255,255,0.06);
	z-index: 2;
}

/* Animated shimmer sweep */
.cercai-image-placeholder::after {
	content: '';
	position: absolute; top: 0; left: -50%;
	width: 40%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(200,144,42,0.05), transparent);
	animation: cercai-shimmer 4s ease-in-out infinite;
	z-index: 1;
}

@keyframes cercai-shimmer {
	0% { left: -40%; }
	100% { left: 100%; }
}

/* Label as subtle badge */
.cercai-image-placeholder__label {
	position: relative; z-index: 3;
	font-size: 0.6875rem; font-weight: 600;
	color: rgba(255,255,255,0.35);
	text-transform: uppercase; letter-spacing: 0.1em;
	background: rgba(255,255,255,0.05);
	padding: 0.35rem 1rem; border-radius: 0.25rem;
	border: 1px solid rgba(255,255,255,0.08);
}

/* Hero — dashboard hints (sidebar + data rows + brand glows) */
.cercai-hero-split__image .cercai-image-placeholder {
	min-height: 420px;
	background:
		linear-gradient(to right, rgba(255,255,255,0.025) 22%, transparent 22%),
		repeating-linear-gradient(to bottom,
			transparent 56px, rgba(255,255,255,0.018) 56px,
			rgba(255,255,255,0.018) 58px, transparent 58px),
		radial-gradient(ellipse at 65% 50%, rgba(42,138,140,0.1) 0%, transparent 55%),
		radial-gradient(ellipse at 40% 70%, rgba(200,144,42,0.05) 0%, transparent 45%),
		linear-gradient(145deg, #0a1a1a, #1a3030);
}

/* Module placeholders — brand glow */
.cercai-module-image .cercai-image-placeholder,
.cercai-module-mobile-image .cercai-image-placeholder {
	background:
		radial-gradient(ellipse at 55% 45%, rgba(200,144,42,0.08) 0%, transparent 50%),
		radial-gradient(ellipse at 40% 60%, rgba(200,144,42,0.04) 0%, transparent 40%),
		linear-gradient(145deg, #0f0f22, #1a1a38);
}


/* =========================================== */
/* 28. GLOBAL VISUAL POLISH                    */
/* =========================================== */

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb { background: var(--wp--preset--color--primary); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--wp--preset--color--accent); }

/* Logo in header */
.cercai-logo-wrap { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.cercai-logo-wrap img,
.wp-block-site-logo img {
	height: 44px;
	width: auto;
	display: block;
}
@media (max-width: 899px) {
	.cercai-logo-wrap img,
	.wp-block-site-logo img { height: 36px; }
}

/* Service card equal heights + bottom-align buttons */
.wp-block-column > .cercai-service-card {
	height: 100%;
	display: flex; flex-direction: column;
}

/* Push button block to bottom with breathing room */
.cercai-service-card .wp-block-buttons {
	margin-top: auto;
	padding-top: 1.5rem;
}

/* Button inside service cards — teal bg, white text, full width */
.cercai-service-card .wp-block-button__link {
	font-size: 0.8125rem !important;
	padding: 0.625rem 1.25rem !important;
	width: 100%;
	text-align: center;
	display: block;
	background-color: var(--wp--preset--color--primary) !important;
	color: #fff !important;
}

.cercai-service-card .wp-block-button__link:hover {
	background-color: var(--wp--preset--color--primary-dark) !important;
	color: #fff !important;
}

/* Plain paragraph links (servicios-grid pattern) */
.cercai-service-card > p:last-child,
.cercai-service-card > .wp-block-paragraph:last-child {
	margin-top: auto;
	padding-top: 1.5rem;
}

/* Module active indicator — stronger */
.cercai-module-text.cercai-module-text-active {
	border-left-width: 4px;
}

/* Smooth link underlines */
a { text-underline-offset: 3px; }

/* Better heading spacing in cards */
.cercai-service-card h3 {
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
}


/* =========================================== */
/* 29. MOCKUP INNER ELEMENTS                   */
/* =========================================== */

/* Chrome bar (for enriched placeholders) */
.cercai-mockup__chrome {
	position: absolute; top: 0; left: 0; right: 0;
	height: 32px; display: flex; align-items: center;
	padding-left: 12px; gap: 6px;
	background: rgba(255,255,255,0.03);
	border-bottom: 1px solid rgba(255,255,255,0.06);
	z-index: 3;
}
.cercai-mockup__chrome span {
	width: 8px; height: 8px; border-radius: 50%;
}
.cercai-mockup__chrome span:nth-child(1) { background: #ff5f57; }
.cercai-mockup__chrome span:nth-child(2) { background: #febc2e; }
.cercai-mockup__chrome span:nth-child(3) { background: #28c840; }

/* Mockup body (below chrome) */
.cercai-mockup__body {
	position: absolute; top: 32px; left: 0; right: 0; bottom: 0;
	display: flex; z-index: 2;
}

/* Dashboard sidebar */
.cercai-mockup__sidebar {
	width: 22%; background: rgba(255,255,255,0.02);
	border-right: 1px solid rgba(255,255,255,0.05);
	padding: 1.5rem 0.75rem; display: flex;
	flex-direction: column; gap: 0.75rem;
}

/* Sidebar nav lines */
.cercai-mockup__line {
	height: 8px; border-radius: 0;
	background: rgba(255,255,255,0.06);
}

/* Dashboard main content */
.cercai-mockup__main {
	flex: 1; padding: 1.5rem;
	display: flex; align-items: flex-end;
	gap: 0.75rem;
}

/* Chart bars */
.cercai-mockup__bar {
	flex: 1; border-radius: 2px 2px 0 0;
	background: linear-gradient(to top,
		rgba(42,138,140,0.5) 0%,
		rgba(200,144,42,0.3) 100%);
	min-height: 20px;
}

/* Chat variant */
.cercai-mockup__messages {
	position: absolute; top: 32px; left: 0; right: 0; bottom: 48px;
	padding: 1.25rem; display: flex;
	flex-direction: column; gap: 0.75rem;
	justify-content: flex-end; z-index: 2;
}
.cercai-mockup__bubble {
	max-width: 70%; padding: 0.6rem 1rem;
	border-radius: 0.25rem; min-height: 16px;
}
.cercai-mockup__bubble--bot {
	align-self: flex-start;
	background: rgba(200,144,42,0.3);
	border-bottom-left-radius: 0;
}
.cercai-mockup__bubble--user {
	align-self: flex-end;
	background: rgba(255,255,255,0.08);
	border-bottom-right-radius: 0;
}
.cercai-mockup__input {
	position: absolute; bottom: 0; left: 0; right: 0;
	height: 48px; background: rgba(255,255,255,0.03);
	border-top: 1px solid rgba(255,255,255,0.06);
	z-index: 2;
}

/* Phone variant */
.cercai-mockup__phone {
	position: absolute; top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 220px; height: 380px;
	border: 3px solid rgba(255,255,255,0.15);
	border-radius: 24px; overflow: hidden;
	background: #0f0f22; z-index: 2;
}
.cercai-mockup__phone-notch {
	width: 80px; height: 6px; border-radius: 3px;
	background: rgba(255,255,255,0.1);
	margin: 10px auto 0;
}
.cercai-mockup__phone-content {
	padding: 1rem 0.75rem; display: flex;
	flex-direction: column; gap: 0.5rem;
}
.cercai-mockup__phone-card {
	height: 48px; border-radius: 0.25rem;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.06);
}

/* When mockup has inner elements, hide the base ::before chrome bar */
.cercai-image-placeholder:has(.cercai-mockup__chrome)::before {
	display: none;
}


/* =========================================== */
/* 30. GLASSMORPHISM & GLOW SYSTEM            */
/* =========================================== */

/* Glass panel — frosted glass on dark backgrounds */
.cercai-glass {
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	background: rgba(15, 23, 42, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.5rem;
}

.cercai-glass-card {
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.25rem;
	transition: transform 0.2s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cercai-glass-card:hover {
	border-color: rgba(0, 229, 204, 0.3);
	box-shadow: 0 0 20px rgba(0, 229, 204, 0.08);
	transform: translateY(-2px);
}

/* Neon glow effects */
.cercai-glow-teal {
	box-shadow: 0 0 20px rgba(0, 229, 204, 0.15), 0 0 60px rgba(42, 138, 140, 0.08);
}

.cercai-glow-gold {
	box-shadow: 0 0 20px rgba(255, 184, 0, 0.15), 0 0 60px rgba(200, 144, 42, 0.08);
}

/* Animated glow border */
.cercai-glow-border {
	position: relative;
}

.cercai-glow-border::before {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(0, 229, 204, 0.3), rgba(200, 144, 42, 0.3), rgba(0, 229, 204, 0.3));
	background-size: 200% 200%;
	animation: cercai-gradient-shift 4s ease infinite;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.cercai-glow-border:hover::before {
	opacity: 1;
}

@keyframes cercai-gradient-shift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}


/* =========================================== */
/* 31. SCROLL ANIMATIONS                       */
/* =========================================== */

@keyframes cercaiFadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cercaiFadeInScale {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes cercaiPulseGlow {
	0%, 100% { box-shadow: 0 0 20px rgba(0, 229, 204, 0.2); }
	50% { box-shadow: 0 0 40px rgba(0, 229, 204, 0.4), 0 0 80px rgba(0, 229, 204, 0.1); }
}

/* Elements waiting to be animated */
.cercai-animate-up {
	opacity: 0;
	transform: translateY(30px);
}

.cercai-animate-scale {
	opacity: 0;
	transform: scale(0.95);
}

/* Animated state */
.cercai-animate-up.is-visible {
	animation: cercaiFadeInUp 0.6s ease forwards;
}

.cercai-animate-scale.is-visible {
	animation: cercaiFadeInScale 0.5s ease forwards;
}

/* Stagger delays for sequential elements */
.cercai-animate-up.is-visible:nth-child(2),
.cercai-animate-scale.is-visible:nth-child(2) { animation-delay: 0.1s; }
.cercai-animate-up.is-visible:nth-child(3),
.cercai-animate-scale.is-visible:nth-child(3) { animation-delay: 0.2s; }
.cercai-animate-up.is-visible:nth-child(4),
.cercai-animate-scale.is-visible:nth-child(4) { animation-delay: 0.3s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
	.cercai-animate-up,
	.cercai-animate-scale {
		opacity: 1;
		transform: none;
		animation: none !important;
	}
	.cercai-glow-border::before { animation: none; }
	.cercai-chat-bubble { animation: none !important; }
}


/* =========================================== */
/* 32. DARK HERO HOMEPAGE                      */
/* =========================================== */

.hero-dark {
	position: relative;
	overflow: hidden;
	background: #070B14 !important;
}

/* Ambient glow orbs — amplified */
.hero-dark::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background:
		radial-gradient(ellipse 60% 60% at 10% 50%, rgba(0, 229, 204, 0.18) 0%, transparent 65%),
		radial-gradient(ellipse 50% 60% at 85% 25%, rgba(200, 144, 42, 0.14) 0%, transparent 55%),
		radial-gradient(ellipse 70% 50% at 50% 90%, rgba(42, 138, 140, 0.10) 0%, transparent 55%);
	pointer-events: none;
	z-index: 0;
}

/* Grid overlay */
.hero-dark::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	pointer-events: none;
	z-index: 0;
}

/* Bottom glow border — transition from dark hero to light content */
.hero-dark {
	border-bottom: 2px solid rgba(0, 229, 204, 0.25);
	box-shadow: 0 4px 30px rgba(0, 229, 204, 0.08);
}

.hero-dark > .wp-block-group {
	position: relative;
	z-index: 1;
}

/* Trust badges on dark hero */
.hero-dark .cercai-trust-badge {
	border-color: rgba(0, 229, 204, 0.3);
	color: rgba(255, 255, 255, 0.85);
	box-shadow: 0 0 12px rgba(0, 229, 204, 0.08);
	background: rgba(0, 229, 204, 0.06);
	backdrop-filter: blur(8px);
}

.hero-dark .cercai-trust-badge:hover {
	border-color: rgba(0, 229, 204, 0.5);
	color: #fff;
	box-shadow: 0 0 20px rgba(0, 229, 204, 0.15);
}

/* Header transparent on hero (before scroll) */
body:has(.hero-dark) .cercai-header:not(.is-scrolled) {
	background: transparent !important;
	border-bottom-color: transparent;
	box-shadow: none;
}

/* Buttons on dark hero */
.hero-dark .wp-block-button__link {
	border-color: rgba(255, 255, 255, 0.2) !important;
	box-shadow: 0 0 20px rgba(0, 229, 204, 0.1);
}

.hero-dark .wp-block-button:not(.is-style-outline) .wp-block-button__link {
	background-color: var(--wp--preset--color--accent) !important;
	color: #000 !important;
	border-color: rgba(255, 184, 0, 0.3) !important;
	box-shadow: 0 0 25px rgba(200, 144, 42, 0.2);
}

.hero-dark .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
	transform: translate3d(-2px, -2px, 0);
	box-shadow: 0 0 35px rgba(200, 144, 42, 0.35);
}

.hero-dark .is-style-outline .wp-block-button__link {
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.25) !important;
	background: rgba(255, 255, 255, 0.05) !important;
}

.hero-dark .is-style-outline .wp-block-button__link:hover {
	border-color: rgba(0, 229, 204, 0.4) !important;
	background: rgba(0, 229, 204, 0.08) !important;
	color: #00E5CC !important;
	box-shadow: 0 0 25px rgba(0, 229, 204, 0.15);
}

/* Hero mockup on dark — amplified glow */
.hero-dark .cercai-image-placeholder {
	border-color: rgba(0, 229, 204, 0.2);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 80px rgba(0, 229, 204, 0.1), 0 0 120px rgba(42, 138, 140, 0.05);
}

/* Mockup bars on dark hero — more vibrant */
.hero-dark .cercai-mockup__bar {
	background: linear-gradient(to top,
		rgba(0, 229, 204, 0.5) 0%,
		rgba(200, 144, 42, 0.4) 100%);
}

/* Hero H1 glow text shadow */
.hero-dark h1 {
	text-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}


/* =========================================== */
/* 33. DARK HEADER ON SCROLL                   */
/* =========================================== */

.cercai-header.is-scrolled {
	background: rgba(7, 11, 20, 0.92) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cercai-header.is-scrolled .wp-block-navigation-item a {
	color: rgba(255, 255, 255, 0.75) !important;
}

.cercai-header.is-scrolled .wp-block-navigation-item a:hover {
	color: #00E5CC !important;
}

.cercai-header.is-scrolled .cercai-logo-wrap img {
	filter: brightness(0) invert(1);
}

.cercai-header.is-scrolled .wp-block-button__link {
	background-color: var(--wp--preset--color--accent) !important;
	color: #000 !important;
	border-color: rgba(255, 184, 0, 0.3) !important;
	box-shadow: 0 0 15px rgba(200, 144, 42, 0.15);
}


/* =========================================== */
/* 34. CTA GLOW ENHANCEMENT                   */
/* =========================================== */

.cercai-cta-gradient {
	background: #070B14 !important;
	border-top: 2px solid rgba(0, 229, 204, 0.2);
	position: relative;
	overflow: hidden;
}

/* Ambient glow on CTA */
.cercai-cta-gradient::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background:
		radial-gradient(ellipse 50% 60% at 50% 0%, rgba(0, 229, 204, 0.06) 0%, transparent 70%),
		radial-gradient(ellipse 40% 50% at 50% 100%, rgba(200, 144, 42, 0.04) 0%, transparent 60%);
	pointer-events: none;
}

.cercai-cta-gradient > * {
	position: relative;
	z-index: 1;
}

/* CTA button glow */
.cercai-cta-gradient .wp-block-button__link {
	border-color: rgba(255, 255, 255, 0.15) !important;
	box-shadow: 0 0 25px rgba(0, 229, 204, 0.12);
	transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cercai-cta-gradient .wp-block-button__link:hover {
	box-shadow: 0 0 40px rgba(0, 229, 204, 0.25), 0 0 80px rgba(42, 138, 140, 0.1);
	transform: translate3d(-2px, -2px, 0);
}


/* =========================================== */
/* 35. CHAT WIDGET                             */
/* =========================================== */

/* Floating bubble */
.cercai-chat-bubble {
	position: fixed;
	bottom: 24px; right: 24px;
	width: 56px; height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2A8A8C, #1A6E70);
	color: #fff;
	border: 2px solid rgba(0, 229, 204, 0.3);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 229, 204, 0.15);
	cursor: pointer;
	z-index: 9999;
	display: flex; align-items: center; justify-content: center;
	transition: transform 0.2s ease, box-shadow 0.3s ease;
	animation: cercaiPulseGlow 3s ease-in-out infinite;
}

.cercai-chat-bubble:hover {
	transform: scale(1.08);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 229, 204, 0.25);
}

.cercai-chat-bubble.is-hidden {
	display: none;
}

/* Chat panel */
.cercai-chat-panel {
	position: fixed;
	bottom: 24px; right: 24px;
	width: 400px; height: 520px;
	border-radius: 0.75rem;
	overflow: hidden;
	z-index: 10001;
	display: flex; flex-direction: column;
	background: rgba(7, 11, 20, 0.95);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 229, 204, 0.05);
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px) scale(0.96);
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.cercai-chat-panel.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

/* Header */
.cercai-chat-header {
	display: flex; align-items: center; justify-content: space-between;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
}

.cercai-chat-header__info {
	display: flex; align-items: center; gap: 0.75rem;
}

.cercai-chat-avatar {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2A8A8C, #C8902A);
	display: flex; align-items: center; justify-content: center;
	color: #fff; font-weight: 800; font-size: 0.875rem;
	flex-shrink: 0;
}

.cercai-chat-header__name {
	color: #fff; font-weight: 700; font-size: 0.9375rem;
	font-family: var(--wp--preset--font-family--heading);
}

.cercai-chat-header__status {
	color: #00E5CC; font-size: 0.75rem; font-weight: 500;
}

.cercai-chat-close {
	background: transparent; border: none; color: rgba(255, 255, 255, 0.5);
	cursor: pointer; padding: 4px;
	transition: color 0.2s ease;
}

.cercai-chat-close:hover { color: #fff; }

/* Messages area */
.cercai-chat-messages {
	flex: 1; overflow-y: auto; padding: 1.25rem;
	display: flex; flex-direction: column; gap: 0.75rem;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.cercai-chat-messages::-webkit-scrollbar { width: 4px; }
.cercai-chat-messages::-webkit-scrollbar-track { background: transparent; }
.cercai-chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

/* Welcome message */
.cercai-chat-welcome p {
	color: rgba(255, 255, 255, 0.7); font-size: 0.9375rem; line-height: 1.5;
	margin: 0;
}

/* Quick prompts */
.cercai-chat-quicks {
	display: flex; flex-wrap: wrap; gap: 0.5rem;
	margin-top: 0.5rem;
}

.cercai-chat-quick {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 1rem;
	padding: 0.4rem 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.8125rem;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cercai-chat-quick:hover {
	background: rgba(0, 229, 204, 0.1);
	border-color: rgba(0, 229, 204, 0.3);
	color: #00E5CC;
}

/* Message bubbles */
.cercai-chat-msg {
	display: flex; gap: 0.5rem; max-width: 88%;
}

.cercai-chat-msg--user {
	align-self: flex-end; flex-direction: row-reverse;
}

.cercai-chat-msg--assistant {
	align-self: flex-start;
}

.cercai-chat-msg__avatar {
	width: 28px; height: 28px; border-radius: 50%;
	background: linear-gradient(135deg, #2A8A8C, #1A6E70);
	display: flex; align-items: center; justify-content: center;
	color: #fff; font-weight: 700; font-size: 0.6875rem;
	flex-shrink: 0; margin-top: 2px;
}

.cercai-chat-msg__text {
	padding: 0.625rem 0.875rem;
	border-radius: 0.5rem;
	font-size: 0.875rem; line-height: 1.55;
	white-space: pre-wrap;
	word-break: break-word;
}

.cercai-chat-msg--user .cercai-chat-msg__text {
	background: rgba(42, 138, 140, 0.25);
	color: #fff;
	border-bottom-right-radius: 0.125rem;
}

.cercai-chat-msg--assistant .cercai-chat-msg__text {
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.85);
	border-bottom-left-radius: 0.125rem;
}

/* Loading dots */
.cercai-chat-dots {
	display: flex; gap: 4px; padding: 4px 0;
}

.cercai-chat-dots span {
	width: 6px; height: 6px; border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	animation: cercaiDotBounce 1.2s ease-in-out infinite;
}

.cercai-chat-dots span:nth-child(2) { animation-delay: 0.15s; }
.cercai-chat-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes cercaiDotBounce {
	0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
	40% { transform: translateY(-6px); opacity: 1; }
}

/* Input form */
.cercai-chat-form {
	display: flex; align-items: center; gap: 0.5rem;
	padding: 0.75rem 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.02);
}

.cercai-chat-input {
	flex: 1; background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.5rem;
	padding: 0.6rem 0.875rem;
	color: #fff; font-size: 0.875rem;
	outline: none;
	transition: border-color 0.2s ease;
}

.cercai-chat-input::placeholder { color: rgba(255, 255, 255, 0.35); }

.cercai-chat-input:focus {
	border-color: rgba(0, 229, 204, 0.4);
}

.cercai-chat-send {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: var(--wp--preset--color--primary, #2A8A8C);
	color: #fff; border: none;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer; flex-shrink: 0;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.cercai-chat-send:hover {
	background: var(--wp--preset--color--primary-dark, #1A6E70);
	box-shadow: 0 0 15px rgba(0, 229, 204, 0.2);
}

/* Mobile responsive */
@media (max-width: 480px) {
	.cercai-chat-panel {
		width: calc(100vw - 16px);
		height: calc(100vh - 100px);
		bottom: 8px; right: 8px;
		border-radius: 0.5rem;
	}

	.cercai-chat-bubble {
		bottom: 16px; right: 16px;
		width: 50px; height: 50px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cercai-chat-bubble { animation: none; }
	.cercai-chat-panel { transition: none; }
}

/* =========================================================
   CERCAI v6 — Rediseño (Claude Design handoff)
   Tokens de Design System v2: teal #2A8A8C, gold #C8902A,
   ink #0F172A, Manrope/Inter, spacing 4px, shadows suaves.
   Scope Fase 3: solo Hero. Resto del sitio no afectado.
   ========================================================= */

.cercai-v6-hero {
	background: #0F172A;
	color: rgba(255, 255, 255, 0.92);
	padding: 48px 24px 56px;
}

.cercai-v6-hero__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

.cercai-v6-hero__eyebrow {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #C8902A;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.cercai-v6-hero__title {
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 800;
	font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: #fff;
	margin: 14px 0 16px;
	max-width: 520px;
}

.cercai-v6-hero__title em {
	font-style: normal;
	color: #C8902A;
}

.cercai-v6-hero__lede {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: rgba(255, 255, 255, 0.65);
	font-size: 17px;
	line-height: 1.6;
	max-width: 520px;
	margin: 0;
}

.cercai-v6-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.cercai-v6-btn {
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 600;
	font-size: 16px;
	padding: 13px 22px;
	border-radius: 8px;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background 150ms cubic-bezier(.2,.6,.2,1), color 150ms cubic-bezier(.2,.6,.2,1), box-shadow 150ms cubic-bezier(.2,.6,.2,1), transform 150ms cubic-bezier(.2,.6,.2,1);
	box-shadow: 0 1px 2px rgba(15, 23, 42, .06);
	text-decoration: none;
	line-height: 1.2;
}

.cercai-v6-btn--primary {
	background: #2A8A8C;
	color: #fff;
}

.cercai-v6-btn--primary:hover,
.cercai-v6-btn--primary:focus-visible {
	background: #1A6E70;
	color: #fff;
}

.cercai-v6-btn--ghost-dark {
	background: transparent;
	color: #fff;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.cercai-v6-btn--ghost-dark:hover,
.cercai-v6-btn--ghost-dark:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
	color: #fff;
}

.cercai-v6-btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(42, 138, 140, 0.25);
}

.cercai-v6-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 20px;
}

.cercai-v6-hero__trust-item {
	color: rgba(255, 255, 255, 0.7);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.cercai-v6-hero__trust-item svg {
	color: #2A8A8C;
	flex: none;
}

/* Mock dashboard */
.cercai-v6-mock {
	background: #1E293B;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.cercai-v6-mock__chrome {
	padding: 10px 14px;
	display: flex;
	gap: 6px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cercai-v6-mock__chrome span {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
}

.cercai-v6-mock__body {
	display: grid;
	grid-template-columns: 140px 1fr;
	min-height: 320px;
}

.cercai-v6-mock__sidebar {
	padding: 16px 14px;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cercai-v6-mock__sidebar-item {
	height: 10px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 4px;
}

.cercai-v6-mock__sidebar-item.is-active {
	background: #2A8A8C;
}

.cercai-v6-mock__main {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cercai-v6-mock__kpis {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.cercai-v6-mock__kpi {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 10px;
	padding: 12px;
}

.cercai-v6-mock__kpi-label {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
}

.cercai-v6-mock__kpi-value {
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #fff;
	margin-top: 4px;
	letter-spacing: -0.02em;
}

.cercai-v6-mock__kpi-delta {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 11px;
	color: #2A8A8C;
	margin-top: 2px;
}

.cercai-v6-mock__chart {
	flex: 1;
	display: flex;
	align-items: flex-end;
	gap: 6px;
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cercai-v6-mock__bar {
	flex: 1;
	background: linear-gradient(180deg, #2A8A8C 0%, rgba(42, 138, 140, 0.3) 100%);
	border-radius: 4px 4px 0 0;
	min-height: 8px;
}

/* Responsive */
@media (min-width: 640px) {
	.cercai-v6-hero__cta { gap: 12px; }
}

@media (min-width: 1024px) {
	.cercai-v6-hero {
		padding: 96px 24px 104px;
	}
	.cercai-v6-hero__inner {
		grid-template-columns: 1fr 1fr;
		gap: 64px;
	}
}

@media (max-width: 480px) {
	.cercai-v6-mock__body {
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.cercai-v6-mock__sidebar {
		display: none;
	}
	.cercai-v6-mock__kpi-value {
		font-size: 18px;
	}
	.cercai-v6-hero__trust {
		gap: 12px;
	}
	.cercai-v6-btn {
		width: 100%;
		justify-content: center;
	}
}

/* --- Platform Strip v6 --- */
.cercai-v6-platform-strip {
	background: #F8FAFB;
	padding: 40px 24px;
	border-top: 1px solid #E2E8F0;
}

.cercai-v6-platform-strip__inner {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.cercai-v6-platform-strip__label {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #94A3B8;
	margin: 0 0 20px;
}

.cercai-v6-platforms {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.cercai-v6-platform-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid #E2E8F0;
	border-radius: 999px;
	padding: 8px 14px;
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 600;
	font-size: 13px;
	color: #0F172A;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.cercai-v6-platform-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #2A8A8C;
	flex: none;
}

.cercai-v6-platform-chip--wa .cercai-v6-platform-dot {
	background: #25D366;
}

/* --- Sección genérica v6 (fondo muted para que las cards blancas destaquen) --- */
.cercai-v6-section {
	background: #F8FAFB;
	padding: 48px 24px;
}

.cercai-v6-section__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.cercai-v6-eyebrow {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #2A8A8C;
	margin-bottom: 12px;
}

.cercai-v6-section-title {
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 700;
	font-size: clamp(1.375rem, 2vw + 0.75rem, 1.875rem);
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #0F172A;
	max-width: 720px;
	margin: 0;
}

.cercai-v6-section-sub {
	color: #475569;
	font-size: 17px;
	line-height: 1.6;
	margin-top: 10px;
	max-width: 640px;
}

/* --- Service Cards Grid v6 --- */
.cercai-v6-grid-3 {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
	margin-top: 40px;
}

@media (min-width: 640px) {
	.cercai-v6-grid-3 {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1024px) {
	.cercai-v6-section {
		padding: 64px 24px;
	}
	.cercai-v6-grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.cercai-v6-card {
	background: #fff;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
	transition: transform 200ms cubic-bezier(.2,.6,.2,1), box-shadow 200ms cubic-bezier(.2,.6,.2,1);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cercai-v6-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10);
}

.cercai-v6-card__icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #E7F2F2;
	color: #2A8A8C;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
}

.cercai-v6-card__title {
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: #0F172A;
	letter-spacing: -0.01em;
	margin: 0;
	line-height: 1.3;
}

.cercai-v6-card__body {
	color: #475569;
	font-size: 14px;
	line-height: 1.6;
	flex: 1;
	margin: 0;
}

.cercai-v6-card__link {
	color: #2A8A8C;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 600;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	text-decoration: none;
	margin-top: auto;
	transition: color 150ms cubic-bezier(.2,.6,.2,1);
}

.cercai-v6-card__link:hover {
	color: #1A6E70;
}

/* --- Compliance Band v6 --- */
.cercai-v6-compliance {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-top: 48px;
	background: #FFFBF3;
	border: 1px solid rgba(200, 144, 42, 0.25);
	border-radius: 12px;
	padding: 20px 24px;
	flex-wrap: wrap;
}

.cercai-v6-compliance__icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #F7EFE0;
	color: #C8902A;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
}

.cercai-v6-compliance__body {
	flex: 1;
	min-width: 200px;
}

.cercai-v6-compliance__title {
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: #5D3E0E;
	margin: 0;
}

.cercai-v6-compliance__sub {
	color: #8A5D18;
	font-size: 13px;
	margin: 4px 0 0;
	line-height: 1.5;
}

.cercai-v6-badge-ley {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(200, 144, 42, 0.12);
	color: #A87220;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 12px;
	font-weight: 600;
	border: 1px solid rgba(200, 144, 42, 0.2);
	text-decoration: none;
	transition: background 150ms cubic-bezier(.2,.6,.2,1);
	white-space: nowrap;
	align-self: center;
}

.cercai-v6-badge-ley:hover {
	background: rgba(200, 144, 42, 0.2);
	color: #A87220;
}

.cercai-v6-badge-ley svg {
	color: #C8902A;
	flex: none;
}

/* =========================================================
   CERCAI v6 — Header (glass nav, reemplaza border negro Neo-Brutalist)
   ========================================================= */

.cercai-header {
	backdrop-filter: blur(12px) !important;
	-webkit-backdrop-filter: blur(12px) !important;
	background: rgba(255,255,255,0.88) !important;
	border-bottom: 1px solid #E2E8F0 !important;
	box-shadow: 0 1px 0 rgba(15,23,42,0.04) !important;
}

.cercai-header .wp-block-navigation-item a,
.cercai-header .wp-block-navigation__container a {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #475569 !important;
	text-decoration: none !important;
	transition: color 150ms cubic-bezier(.2,.6,.2,1) !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
}

.cercai-header .wp-block-navigation-item a:hover,
.cercai-header .wp-block-navigation__container a:hover {
	color: #2A8A8C !important;
}

.cercai-header .cta-consultoria .wp-block-button__link,
.cercai-header .wp-block-button__link {
	background: #2A8A8C !important;
	color: #fff !important;
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-weight: 600 !important;
	font-size: 13px !important;
	padding: 8px 16px !important;
	border-radius: 8px !important;
	box-shadow: 0 1px 2px rgba(15,23,42,0.08) !important;
	border: none !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
}

.cercai-header .cta-consultoria .wp-block-button__link:hover,
.cercai-header .wp-block-button__link:hover {
	background: #1A6E70 !important;
}

/* =========================================================
   CERCAI v6 — Industrias Grid
   ========================================================= */

.cercai-v6-ind-section {
	background: #F8FAFB;
	padding: 48px 24px;
	border-top: 1px solid #E2E8F0;
}

.cercai-v6-ind-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 32px;
}

@media (min-width: 1024px) {
	.cercai-v6-ind-section {
		padding: 64px 24px;
	}
	.cercai-v6-ind-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.cercai-v6-ind {
	background: #fff;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-decoration: none;
	transition: transform 200ms cubic-bezier(.2,.6,.2,1), box-shadow 200ms cubic-bezier(.2,.6,.2,1), border-color 200ms cubic-bezier(.2,.6,.2,1);
	box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}

.cercai-v6-ind:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(15,23,42,0.08);
	border-color: #2A8A8C;
}

.cercai-v6-ind__icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: #F8FAFB;
	color: #2A8A8C;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	transition: background 200ms cubic-bezier(.2,.6,.2,1);
}

.cercai-v6-ind:hover .cercai-v6-ind__icon {
	background: #E7F2F2;
}

.cercai-v6-ind__title {
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: #0F172A;
	line-height: 1.3;
}

.cercai-v6-ind__sub {
	color: #475569;
	font-size: 13px;
	line-height: 1.5;
}

/* =========================================================
   CERCAI v6 — CTA Band (mid-page + final)
   ========================================================= */

.cercai-v6-cta {
	text-align: center;
	padding: 64px 24px;
	background: #0F172A;
	color: #fff;
}

.cercai-v6-cta__inner {
	max-width: 880px;
	margin: 0 auto;
}

.cercai-v6-cta__title {
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 800;
	font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
	letter-spacing: -0.025em;
	line-height: 1.15;
	color: #fff;
	margin: 0;
}

.cercai-v6-cta__sub {
	color: rgba(255,255,255,0.7);
	font-size: 17px;
	line-height: 1.6;
	margin: 12px 0 0;
	max-width: 560px;
	margin-inline: auto;
}

.cercai-v6-cta__actions {
	margin-top: 28px;
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.cercai-v6-cta__meta {
	margin-top: 16px;
	color: rgba(255,255,255,0.45);
	font-size: 13px;
	letter-spacing: 0.01em;
}

/* =========================================================
   CERCAI v6 — Section headings globales (blog, FAQ, etc.)
   Override de clases antiguas para consistencia visual.
   ========================================================= */

.cercai-section-heading.wp-block-heading,
h2.cercai-section-heading {
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-weight: 700 !important;
	font-size: clamp(1.375rem, 2vw + 0.75rem, 1.875rem) !important;
	line-height: 1.2 !important;
	letter-spacing: -0.02em !important;
	color: #0F172A !important;
	text-align: center;
}

.cercai-section-subheading.has-large-font-size,
p.cercai-section-subheading {
	font-size: 17px !important;
	color: #475569 !important;
	line-height: 1.6 !important;
	text-align: center;
}

/* Blog section bg consistency */
.wp-block-group.has-light-background-color {
	background-color: #F8FAFB !important;
}

/* ============================================================
   CERCAI v6 — Industrias Directorio numerado
   ============================================================ */

.cercai-v6-dir-section {
	background-color: #ffffff;
}

.cercai-v6-dir-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin-top: 48px;
	border-top: 1px solid #E2E8F0;
}

.cercai-v6-dir-col {
	display: flex;
	flex-direction: column;
}

.cercai-v6-dir-row {
	display: grid;
	grid-template-columns: 28px 1fr auto;
	grid-template-rows: auto auto;
	column-gap: 14px;
	row-gap: 2px;
	align-items: center;
	padding: 18px 12px 18px 0;
	border-bottom: 1px solid #E2E8F0;
	text-decoration: none;
	transition: background-color 0.15s ease, padding-left 0.15s ease;
}

.cercai-v6-dir-row--last {
	border-bottom: 1px solid #E2E8F0;
}

.cercai-v6-dir-row:hover {
	background-color: rgba(42,138,140,0.04);
	padding-left: 8px;
}

.cercai-v6-dir-num {
	grid-row: 1 / 3;
	font-family: 'Manrope', sans-serif;
	font-size: 0.6875rem;
	font-weight: 700;
	color: #2A8A8C;
	opacity: 0.5;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.03em;
	align-self: center;
}

.cercai-v6-dir-name {
	grid-column: 2;
	grid-row: 1;
	font-family: 'Manrope', sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	color: #0F172A;
	line-height: 1.3;
}

.cercai-v6-dir-desc {
	grid-column: 2;
	grid-row: 2;
	font-size: 0.8125rem;
	color: #64748B;
	line-height: 1.4;
}

.cercai-v6-dir-arrow {
	grid-column: 3;
	grid-row: 1 / 3;
	color: #CBD5E1;
	flex-shrink: 0;
	transition: transform 0.15s ease, color 0.15s ease;
	align-self: center;
}

.cercai-v6-dir-row:hover .cercai-v6-dir-arrow {
	color: #2A8A8C;
	transform: translateX(4px);
}

/* Desktop: 2 columnas */
@media (min-width: 768px) {
	.cercai-v6-dir-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0 40px;
	}

	.cercai-v6-dir-col:first-child .cercai-v6-dir-row--last {
		border-bottom: 1px solid #E2E8F0;
	}

	.cercai-v6-dir-col:last-child .cercai-v6-dir-row--last {
		border-bottom: none;
	}

	.cercai-v6-dir-row {
		grid-template-columns: 28px minmax(0,160px) 1fr auto;
		grid-template-rows: auto;
		column-gap: 16px;
		align-items: center;
		padding: 20px 8px 20px 0;
	}

	.cercai-v6-dir-num {
		grid-row: 1;
	}

	.cercai-v6-dir-name {
		grid-column: 2;
		grid-row: 1;
	}

	.cercai-v6-dir-desc {
		grid-column: 3;
		grid-row: 1;
		font-size: 0.8125rem;
	}

	.cercai-v6-dir-arrow {
		grid-column: 4;
		grid-row: 1;
	}
}

/* ============================================================
   CERCAI v6 — Feature List (servicios asimétrico)
   ============================================================ */

.cercai-v6-features-section {
	background-color: #F8FAFB;
}

.cercai-v6-features-list {
	margin-top: 56px;
	border-top: 1px solid #E2E8F0;
}

.cercai-v6-feature-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	padding: 32px 0;
	border-bottom: 1px solid #E2E8F0;
	transition: background-color 0.15s ease;
}

.cercai-v6-feature-row--last {
	border-bottom: none;
}

.cercai-v6-feature-row:hover {
	background-color: rgba(42,138,140,0.03);
	margin: 0 -24px;
	padding-left: 24px;
	padding-right: 24px;
}

/* Stat column */
.cercai-v6-feature-stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cercai-v6-feature-stat__number {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(1.75rem, 5vw, 2.75rem);
	font-weight: 800;
	line-height: 1;
	color: #C8902A;
	letter-spacing: -0.02em;
}

.cercai-v6-feature-stat__label {
	font-size: 0.8125rem;
	color: #94A3B8;
	font-weight: 500;
	line-height: 1.4;
	max-width: 180px;
}

/* Content column */
.cercai-v6-feature-content {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.cercai-v6-feature-content__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #E7F2F2;
	border-radius: 8px;
	color: #2A8A8C;
	margin-top: 2px;
}

.cercai-v6-feature-content__title {
	font-family: 'Manrope', sans-serif;
	font-size: 1.0625rem;
	font-weight: 700;
	color: #0F172A;
	margin: 0 0 6px;
	line-height: 1.3;
}

.cercai-v6-feature-content__body {
	font-size: 0.9375rem;
	color: #475569;
	line-height: 1.65;
	margin: 0 0 12px;
}

.cercai-v6-feature-content__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #2A8A8C;
	text-decoration: none;
	font-family: 'Manrope', sans-serif;
	transition: gap 0.15s ease, color 0.15s ease;
}

.cercai-v6-feature-content__link:hover {
	color: #1A6E70;
	gap: 8px;
}

/* Desktop: 2-col layout */
@media (min-width: 768px) {
	.cercai-v6-feature-row {
		grid-template-columns: 200px 1fr;
		gap: 40px;
		align-items: start;
		padding: 36px 0;
	}

	.cercai-v6-feature-row:hover {
		margin: 0 -32px;
		padding-left: 32px;
		padding-right: 32px;
	}

	.cercai-v6-feature-stat {
		padding-top: 4px;
	}

	.cercai-v6-feature-stat__label {
		max-width: 160px;
	}
}

@media (min-width: 1024px) {
	.cercai-v6-feature-row {
		grid-template-columns: 240px 1fr;
		gap: 56px;
	}

	.cercai-v6-feature-stat__number {
		font-size: 2.75rem;
	}
}

/* ============================================================
   CERCAI v6 — Soluciones page (overview /soluciones/)
   Hero panel, Ley 21.719 banner, stats strip sin cajas,
   directorio editorial 1-col con iconografía arquetípica.
   ============================================================ */

/* --- Hero: panel "industrias activas" (momento de marca) --- */
.cercai-v6-solpanel {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	padding: 20px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.cercai-v6-solpanel__header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 14px;
	margin-bottom: 10px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cercai-v6-solpanel__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #34D399;
	box-shadow: 0 0 0 3px rgba(52,211,153,0.18);
	animation: cercai-v6-solpanel-pulse 2s ease-in-out infinite;
	flex: none;
}

@keyframes cercai-v6-solpanel-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.55; }
}

.cercai-v6-solpanel__label {
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255,255,255,0.7);
	flex: 1;
}

.cercai-v6-solpanel__badge {
	font-family: "Manrope", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #C8902A;
	background: rgba(200,144,42,0.14);
	padding: 3px 8px;
	border-radius: 4px;
}

.cercai-v6-solpanel__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.cercai-v6-solpanel__list li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 8px 4px;
	border-bottom: 1px dashed rgba(255,255,255,0.06);
	font-size: 13px;
}

.cercai-v6-solpanel__list li:last-child {
	border-bottom: none;
}

.cercai-v6-solpanel__list li span {
	color: rgba(255,255,255,0.85);
	font-weight: 500;
}

.cercai-v6-solpanel__list li b {
	color: rgba(42,138,140,0.85);
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.02em;
}

/* --- Ley 21.719 banner (asimétrico 70/30) --- */
.cercai-v6-ley-banner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
	padding: 32px 24px;
	background: #fff;
	border: 1px solid rgba(200,144,42,0.25);
	border-left: 4px solid #C8902A;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(200,144,42,0.06);
}

.cercai-v6-ley-banner__title {
	font-family: "Manrope", sans-serif;
	font-weight: 700;
	font-size: clamp(1.25rem, 2vw + 0.5rem, 1.625rem);
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #5D3E0E;
	margin: 0 0 10px;
}

.cercai-v6-ley-banner__sub {
	color: #6B5423;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	max-width: 620px;
}

.cercai-v6-ley-banner__cta {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
}

@media (min-width: 768px) {
	.cercai-v6-ley-banner {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 40px;
		padding: 36px 40px;
	}
	.cercai-v6-ley-banner__cta {
		align-items: flex-end;
		text-align: right;
	}
}

/* --- Stats strip (sin cajas, tipografía sola) --- */
.cercai-v6-stats-strip {
	background: #0F172A;
	padding: 48px 24px;
	color: #fff;
}

.cercai-v6-stats-strip__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

.cercai-v6-stat-big {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 12px 0;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.cercai-v6-stat-big:first-child {
	border-top: none;
	padding-top: 0;
}

.cercai-v6-stat-big__num {
	font-family: "Manrope", sans-serif;
	font-weight: 800;
	font-size: clamp(2.75rem, 8vw, 4.5rem);
	line-height: 1;
	letter-spacing: -0.04em;
	color: #fff;
}

.cercai-v6-stat-big__num em {
	font-style: normal;
	color: #C8902A;
	font-size: 0.55em;
	font-weight: 700;
	vertical-align: baseline;
	margin-left: 2px;
}

.cercai-v6-stat-big__label {
	font-family: "Inter", sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255,255,255,0.65);
	max-width: 280px;
}

@media (min-width: 768px) {
	.cercai-v6-stats-strip {
		padding: 72px 32px;
	}
	.cercai-v6-stats-strip__inner {
		grid-template-columns: repeat(3, 1fr);
		gap: 56px;
	}
	.cercai-v6-stat-big {
		padding: 0;
		border-top: none;
		border-left: 1px solid rgba(255,255,255,0.1);
		padding-left: 28px;
	}
	.cercai-v6-stat-big:first-child {
		border-left: none;
		padding-left: 0;
	}
}

/* --- Directorio editorial de soluciones (1-col siempre, filas ricas) --- */
.cercai-v6-dir-list {
	margin-top: 40px;
	border-top: 1px solid #E2E8F0;
}

.cercai-v6-dir-row--xl {
	display: grid;
	grid-template-columns: 44px 1fr auto;
	grid-template-areas:
		"icon name arrow"
		"icon desc arrow"
		"icon chips arrow";
	column-gap: 14px;
	row-gap: 4px;
	align-items: center;
	padding: 22px 8px 22px 12px;
	border-bottom: 1px solid #E2E8F0;
	text-decoration: none;
	transition: background-color 0.15s ease, padding-left 0.15s ease;
	position: relative;
}

.cercai-v6-dir-row--xl.cercai-v6-dir-row--last {
	border-bottom: 1px solid #E2E8F0;
}

.cercai-v6-dir-row--xl:hover {
	background-color: rgba(42,138,140,0.04);
	padding-left: 20px;
}

.cercai-v6-dir-row--xl .cercai-v6-dir-icon {
	grid-area: icon;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: #E7F2F2;
	color: #2A8A8C;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	align-self: center;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.cercai-v6-dir-row--xl:hover .cercai-v6-dir-icon {
	background: #D4EAEA;
	transform: scale(1.03);
}

.cercai-v6-dir-row--xl .cercai-v6-dir-num {
	display: none;
}

.cercai-v6-dir-row--xl .cercai-v6-dir-name {
	grid-area: name;
	font-family: "Manrope", sans-serif;
	font-size: 1.0625rem;
	font-weight: 700;
	color: #0F172A;
	line-height: 1.3;
}

.cercai-v6-dir-row--xl .cercai-v6-dir-desc {
	grid-area: desc;
	font-size: 0.875rem;
	color: #64748B;
	line-height: 1.5;
	margin-top: 2px;
}

.cercai-v6-dir-chip-list {
	grid-area: chips;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 8px;
}

.cercai-v6-dir-chip {
	font-family: "Inter", sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #475569;
	background: #F1F5F9;
	border: 1px solid #E2E8F0;
	padding: 3px 9px;
	border-radius: 999px;
	white-space: nowrap;
}

.cercai-v6-dir-chip--urgent {
	color: #A87220;
	background: rgba(200,144,42,0.12);
	border-color: rgba(200,144,42,0.28);
}

.cercai-v6-dir-row--xl .cercai-v6-dir-arrow {
	grid-area: arrow;
	color: #CBD5E1;
	flex: none;
	transition: transform 0.15s ease, color 0.15s ease;
	align-self: center;
}

.cercai-v6-dir-row--xl:hover .cercai-v6-dir-arrow {
	color: #2A8A8C;
	transform: translateX(6px);
}

/* Desktop: layout horizontal completo (num visible, todo en fila) */
@media (min-width: 900px) {
	.cercai-v6-dir-row--xl {
		grid-template-columns: 48px 28px minmax(200px, 260px) 1fr auto 24px;
		grid-template-areas: "icon num name desc chips arrow";
		column-gap: 20px;
		row-gap: 0;
		padding: 24px 12px;
	}
	.cercai-v6-dir-row--xl .cercai-v6-dir-num {
		display: block;
		grid-area: num;
		font-family: "Manrope", sans-serif;
		font-size: 0.75rem;
		font-weight: 700;
		color: #2A8A8C;
		opacity: 0.5;
		letter-spacing: 0.05em;
		font-variant-numeric: tabular-nums;
	}
	.cercai-v6-dir-row--xl .cercai-v6-dir-desc {
		font-size: 0.8125rem;
		margin-top: 0;
	}
	.cercai-v6-dir-chip-list {
		margin-top: 0;
		justify-content: flex-end;
	}
}

.cercai-v6-dir-footnote {
	margin-top: 32px;
	font-size: 14px;
	color: #64748B;
	text-align: center;
	line-height: 1.5;
}

.cercai-v6-dir-footnote a {
	color: #2A8A8C;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(42,138,140,0.3);
	transition: border-color 0.15s ease;
}

.cercai-v6-dir-footnote a:hover {
	border-bottom-color: #2A8A8C;
}

/* ===================================================================
   CERCAI v6 — Componentes shared Fase B (landings de industria)
   Hero industry, split, painpoints, casos, chips-row, timeline, faq.
   Mobile-first, sin !important, reutilizando tokens v6 existentes.
   =================================================================== */

/* --- Hero Industry (asimétrico 62/38) --- */
.cercai-v6-hero--industry {
	padding: 56px 24px 64px;
	background: #0F172A;
	background-image: radial-gradient(1200px 600px at 85% -10%, rgba(42,138,140,0.18), transparent 60%),
	                  radial-gradient(800px 400px at 0% 20%, rgba(200,144,42,0.06), transparent 55%);
}

.cercai-v6-hero--industry .cercai-v6-hero__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: start;
}

.cercai-v6-hero__main { min-width: 0; }

.cercai-v6-hero__h1 {
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 800;
	font-size: clamp(2rem, 4.5vw + 0.5rem, 3.5rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: #fff;
	margin: 14px 0 18px;
	max-width: 640px;
}

.cercai-v6-hero--industry .cercai-v6-hero__lede {
	color: rgba(255,255,255,0.72);
	font-size: 17px;
	line-height: 1.6;
	max-width: 580px;
	margin: 0 0 32px;
}

.cercai-v6-hero__stats {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	max-width: 640px;
}

.cercai-v6-hero__stat {
	display: grid;
	grid-template-columns: minmax(96px, 140px) 1fr;
	gap: 18px;
	align-items: baseline;
	padding: 16px 0;
	border-top: 1px solid rgba(255,255,255,0.08);
}
.cercai-v6-hero__stat:first-child { border-top: none; padding-top: 0; }
.cercai-v6-hero__stat:last-child  { border-bottom: 1px solid rgba(255,255,255,0.08); }

.cercai-v6-hero__stat-num {
	font-family: "Manrope", sans-serif;
	font-weight: 800;
	font-size: clamp(1.75rem, 3.2vw + 0.5rem, 2.5rem);
	line-height: 1;
	letter-spacing: -0.03em;
	color: #C8902A;
}

.cercai-v6-hero__stat-label {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255,255,255,0.72);
}

.cercai-v6-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.cercai-v6-hero__aside {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: stretch;
	min-width: 0;
}

.cercai-v6-hero__icon-arch {
	color: rgba(42,138,140,0.85);
	opacity: 0.92;
}
.cercai-v6-hero__icon-arch svg {
	width: clamp(72px, 12vw, 120px);
	height: clamp(72px, 12vw, 120px);
	display: block;
}

.cercai-v6-eyebrow--light { color: rgba(200,144,42,0.95); }

@media (min-width: 900px) {
	.cercai-v6-hero--industry { padding: 80px 32px 96px; }
	.cercai-v6-hero--industry .cercai-v6-hero__inner {
		grid-template-columns: minmax(0, 62fr) minmax(0, 38fr);
		gap: 64px;
		align-items: center;
	}
	.cercai-v6-hero__aside { align-items: flex-end; }
	.cercai-v6-hero__icon-arch { align-self: flex-end; }
}

/* --- Split asimétrico (Problema → Solución) --- */
.cercai-v6-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-top: 32px;
}
.cercai-v6-split__side { min-width: 0; }
.cercai-v6-split__main { min-width: 0; }

.cercai-v6-split__lede {
	font-family: "Manrope", sans-serif;
	font-weight: 700;
	font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.625rem);
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: #0F172A;
	margin: 0 0 16px;
}

.cercai-v6-split__body {
	font-family: "Inter", sans-serif;
	color: #334155;
	font-size: 16px;
	line-height: 1.65;
	margin: 0 0 14px;
}

.cercai-v6-split__body strong {
	color: #0F172A;
	font-weight: 600;
}

.cercai-v6-split__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid #E2E8F0;
}
.cercai-v6-split__meta-item {
	font-family: "Inter", sans-serif;
	font-size: 13px;
	color: #64748B;
	position: relative;
	padding-left: 16px;
}
.cercai-v6-split__meta-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #2A8A8C;
	transform: translateY(-50%);
}

@media (min-width: 900px) {
	.cercai-v6-split--40-60 {
		grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
		gap: 72px;
	}
}

/* Pain points list (numerada, sin cajas) */
.cercai-v6-painpoints {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.cercai-v6-painpoints__item {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 14px;
	align-items: start;
	padding: 18px 0;
	border-top: 1px solid #E2E8F0;
	font-family: "Inter", sans-serif;
	font-size: 15px;
	line-height: 1.55;
	color: #334155;
}
.cercai-v6-painpoints__item:first-child { border-top: none; padding-top: 4px; }
.cercai-v6-painpoints__item:last-child  { padding-bottom: 4px; }
.cercai-v6-painpoints__num {
	font-family: "Manrope", sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: #C8902A;
	letter-spacing: 0.02em;
	padding-top: 2px;
}

/* --- Section variant alt (fondo claro tono frío) --- */
.cercai-v6-section--alt {
	background: #F8FAFB;
}

/* --- Casos grid (3 items sin cajas, sólo iconografía + copy) --- */
.cercai-v6-casos-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-top: 40px;
}
.cercai-v6-caso-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 28px 0;
	border-top: 1px solid #E2E8F0;
}
.cercai-v6-caso-item:first-child { padding-top: 4px; border-top: none; }

.cercai-v6-caso-item__icon {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(42,138,140,0.08);
	color: #2A8A8C;
	margin-bottom: 6px;
}

.cercai-v6-caso-item__title {
	font-family: "Manrope", sans-serif;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: #0F172A;
	margin: 0;
}

.cercai-v6-caso-item__body {
	font-family: "Inter", sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #334155;
	margin: 0;
	max-width: 540px;
}

.cercai-v6-caso-item__meta {
	font-family: "Inter", sans-serif;
	font-size: 13px;
	color: #64748B;
	margin-top: 2px;
}

@media (min-width: 900px) {
	.cercai-v6-casos-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 48px;
	}
	.cercai-v6-caso-item { padding: 4px 0; border-top: none; }
}

/* --- Chips row (horizontal, scroll opcional en móvil) --- */
.cercai-v6-chips-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
	margin-top: 32px;
}

/* --- Timeline editorial vertical --- */
.cercai-v6-timeline {
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	counter-reset: none;
}
.cercai-v6-timeline__step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
	padding: 28px 0;
	border-top: 1px solid #E2E8F0;
	align-items: start;
}
.cercai-v6-timeline__step:first-child { border-top: none; padding-top: 4px; }
.cercai-v6-timeline__step:last-child  { padding-bottom: 4px; }

.cercai-v6-timeline__num {
	font-family: "Manrope", sans-serif;
	font-weight: 800;
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	line-height: 1;
	letter-spacing: -0.04em;
	color: rgba(15,23,42,0.14);
	min-width: 64px;
}

.cercai-v6-timeline__title {
	font-family: "Manrope", sans-serif;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: #0F172A;
	margin: 0 0 8px;
}

.cercai-v6-timeline__body p {
	font-family: "Inter", sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #334155;
	margin: 0;
	max-width: 640px;
}

@media (min-width: 720px) {
	.cercai-v6-timeline__step { gap: 32px; }
	.cercai-v6-timeline__num  { min-width: 96px; }
}

/* --- FAQ v6 (accordion nativo <details>) --- */
.cercai-v6-section__inner--narrow { max-width: 860px; }

.cercai-v6-faq {
	display: flex;
	flex-direction: column;
	margin-top: 32px;
	border-top: 1px solid #E2E8F0;
}

.cercai-v6-faq-item {
	border-bottom: 1px solid #E2E8F0;
}

.cercai-v6-faq-item__q {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 4px;
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	font-size: 1.0625rem;
	line-height: 1.35;
	color: #0F172A;
	transition: color 150ms ease;
}
.cercai-v6-faq-item__q::-webkit-details-marker { display: none; }
.cercai-v6-faq-item__q:hover { color: #2A8A8C; }

.cercai-v6-faq-item__chev {
	flex: none;
	color: #64748B;
	transition: transform 200ms ease, color 150ms ease;
}
.cercai-v6-faq-item[open] .cercai-v6-faq-item__chev {
	transform: rotate(180deg);
	color: #2A8A8C;
}

.cercai-v6-faq-item__a {
	padding: 0 4px 22px;
	font-family: "Inter", sans-serif;
	font-size: 15px;
	line-height: 1.65;
	color: #334155;
	max-width: 760px;
}

/* ===================================================================
   CERCAI v6 — Fase C fixes + Servicios overview
   =================================================================== */

/* --- btn--lg modifier --- */
.cercai-v6-btn--lg {
	padding: 15px 28px;
	font-size: 17px;
}

/* --- Overflow fix global: secciones v6 no sangran --- */
.cercai-v6-section,
.cercai-v6-hero,
.cercai-v6-hero--industry,
.cercai-v6-hero--servicios {
	overflow-x: hidden;
}

/* --- Ley 21.719 banner — fix overflow mobile --- */
.cercai-v6-ley-banner > * {
	min-width: 0;
}
.cercai-v6-ley-banner__cta {
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
}
.cercai-v6-ley-banner__cta > * {
	max-width: 100%;
	box-sizing: border-box;
}
/* El badge nunca puede desbordarse horizontalmente */
.cercai-v6-badge-ley {
	max-width: 100%;
	white-space: normal;
	overflow-wrap: break-word;
}
@media (min-width: 480px) {
	.cercai-v6-badge-ley { white-space: nowrap; }
}

/* --- Hero servicios (hereda hero--industry, override menor) --- */
.cercai-v6-hero--servicios {
	padding: 56px 24px 64px;
}
@media (min-width: 900px) {
	.cercai-v6-hero--servicios { padding: 80px 32px 96px; }
	.cercai-v6-hero--servicios .cercai-v6-hero__inner {
		grid-template-columns: minmax(0, 62fr) minmax(0, 38fr);
		gap: 64px;
		align-items: center;
	}
}

/* --- Dark CTA band (cruce a industrias) --- */
.cercai-v6-section--dark-cta {
	background: #0F172A;
	padding: 56px 24px;
}
.cercai-v6-section__inner--cta-band {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: center;
}
.cercai-v6-cta-band__title {
	font-family: "Manrope", sans-serif;
	font-weight: 700;
	font-size: clamp(1.5rem, 2.5vw + 0.75rem, 2.25rem);
	line-height: 1.15;
	letter-spacing: -0.025em;
	color: #fff;
	margin: 10px 0 8px;
	max-width: 600px;
}
.cercai-v6-cta-band__sub {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255,255,255,0.65);
	margin: 0;
	max-width: 560px;
}
.cercai-v6-cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
@media (min-width: 768px) {
	.cercai-v6-section--dark-cta { padding: 72px 24px; }
	.cercai-v6-section__inner--cta-band {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 48px;
	}
}

/* ===================================================================
   CERCAI v6 — Servicios page: hero editorial blanco + grid de tiles
   Diferenciado de /soluciones/ (sin dark hero, sin panel widget,
   sin feature-list vertical). Mood: catálogo de producto abierto.
   =================================================================== */

/* --- Hero editorial blanco (/servicios/) --- */
.cercai-v6-svc-hero {
	background: #fff;
	padding: 56px 24px 48px;
	border-bottom: 1px solid #E2E8F0;
}
.cercai-v6-svc-hero__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
}
.cercai-v6-svc-hero__h1 {
	font-family: "Manrope", sans-serif;
	font-weight: 800;
	font-size: clamp(2.25rem, 5vw + 0.5rem, 4rem);
	line-height: 1.05;
	letter-spacing: -0.035em;
	color: #0F172A;
	margin: 10px 0 0;
}
.cercai-v6-svc-hero__lede {
	font-family: "Inter", sans-serif;
	font-size: 17px;
	line-height: 1.65;
	color: #475569;
	margin: 0 0 24px;
	max-width: 600px;
}
.cercai-v6-svc-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
/* Ghost button para fondo claro */
.cercai-v6-btn--ghost-light {
	background: transparent;
	color: #0F172A;
	box-shadow: inset 0 0 0 1.5px #CBD5E1;
}
.cercai-v6-btn--ghost-light:hover,
.cercai-v6-btn--ghost-light:focus-visible {
	background: #F1F5F9;
	box-shadow: inset 0 0 0 1.5px #94A3B8;
	color: #0F172A;
}
@media (min-width: 900px) {
	.cercai-v6-svc-hero {
		padding: 80px 32px 64px;
	}
	.cercai-v6-svc-hero__inner {
		grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
		gap: 64px;
		align-items: end;
	}
}

/* --- Grid de servicios — tiles sin bordes, catálogo abierto --- */
.cercai-v6-svc-grid-section {
	background: #F8FAFB;
	padding: 56px 24px 64px;
}
.cercai-v6-svc-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin-top: 0;
}
.cercai-v6-svc-tile {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 36px 0;
	border-top: 1px solid #E2E8F0;
}
.cercai-v6-svc-tile:last-child { border-bottom: 1px solid #E2E8F0; }

.cercai-v6-svc-tile__metric {
	display: inline-flex;
	align-items: center;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #C8902A;
	background: rgba(200,144,42,0.1);
	padding: 4px 10px;
	border-radius: 999px;
	width: fit-content;
}
.cercai-v6-svc-tile__icon {
	color: #2A8A8C;
	width: 40px;
	height: 40px;
	margin-top: 4px;
}
.cercai-v6-svc-tile__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}
.cercai-v6-svc-tile__name {
	font-family: "Manrope", sans-serif;
	font-weight: 700;
	font-size: clamp(1.375rem, 1.5vw + 0.75rem, 1.625rem);
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #0F172A;
	margin: 0;
}
.cercai-v6-svc-tile__desc {
	font-family: "Inter", sans-serif;
	font-size: 15px;
	line-height: 1.65;
	color: #475569;
	margin: 0;
	max-width: 480px;
}
.cercai-v6-svc-tile__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: "Manrope", sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #2A8A8C;
	text-decoration: none;
	margin-top: 4px;
	transition: gap 150ms ease, color 150ms ease;
}
.cercai-v6-svc-tile__link:hover {
	gap: 9px;
	color: #1A6E70;
}

@media (min-width: 600px) {
	.cercai-v6-svc-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 40px;
	}
	.cercai-v6-svc-tile:nth-child(odd) { border-right: 1px solid #E2E8F0; padding-right: 40px; }
	.cercai-v6-svc-tile:last-child { border-bottom: none; }
	/* En 2 cols la última fila (tiles 5 y 6) tiene border-bottom */
	.cercai-v6-svc-tile:nth-last-child(-n+2) { border-bottom: 1px solid #E2E8F0; }
}

@media (min-width: 1024px) {
	.cercai-v6-svc-grid-section { padding: 72px 24px 80px; }
	.cercai-v6-svc-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		column-gap: 56px;
	}
	/* En 3 cols: sólo los de la col izquierda y media tienen divisor derecho */
	.cercai-v6-svc-tile:nth-child(odd) { border-right: none; padding-right: 0; }
	.cercai-v6-svc-tile:not(:nth-child(3n)) { border-right: 1px solid #E2E8F0; padding-right: 56px; }
	/* Última fila (tiles 4-6) sin border-bottom */
	.cercai-v6-svc-tile:nth-child(n+4) { border-bottom: none; }
	.cercai-v6-svc-tile:last-child { border-bottom: none; }
}

/* Section variant para Ley (fondo ligeramente warm) */
.cercai-v6-section--ley {
	background: #FFFBF3;
	padding: 32px 24px;
}
@media (min-width: 1024px) {
	.cercai-v6-section--ley { padding: 40px 24px; }
}
