:root {
	--primary: #082f5f;
	--primary-900: #051f40;
	--secondary: #1b7fd0;
	--secondary-100: #eaf5ff;
	--accent: #20b486;
	--accent-2: #7467f0;
	--light: #f6f9fc;
	--white: #ffffff;
	--text: #243448;
	--muted: #607086;
	--border: #dce6f1;
	--shadow: 0 24px 70px rgba(8, 47, 95, 0.12);
	--shadow-soft: 0 12px 34px rgba(8, 47, 95, 0.08);
	--radius: 8px;
	--radius-lg: 18px;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

img,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.skip-link,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.skip-link:focus {
	z-index: 10000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--primary);
	color: var(--white);
	border-radius: var(--radius);
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(220, 230, 241, 0.84);
	transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 16px 36px rgba(8, 47, 95, 0.08);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 250px;
	flex: 0 0 auto;
}

.brand-logo-text {
	line-height: 0.86;
}

.brand-click {
	color: var(--primary);
	font-size: 2.25rem;
	font-weight: 900;
	letter-spacing: 0;
}

.brand-health {
	display: grid;
	color: #159f99;
	font-size: 1.35rem;
	font-weight: 500;
	line-height: 0.92;
	letter-spacing: 0;
}

.primary-nav {
	display: flex;
	align-items: center;
}

.site-menu {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-menu li:has(a[href="#indicadores"]) {
	display: none;
}

.site-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: var(--radius);
	color: #43536a;
	font-size: 0.94rem;
	font-weight: 650;
	transition: color 180ms ease, background 180ms ease;
}

.site-menu a:hover,
.site-menu a:focus {
	background: var(--secondary-100);
	color: var(--primary);
	outline: none;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--white);
	cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: var(--primary);
	border-radius: 999px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 20px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	background: linear-gradient(135deg, var(--secondary), #1268b2);
	color: var(--white);
	font-weight: 750;
	line-height: 1.2;
	box-shadow: 0 16px 34px rgba(27, 127, 208, 0.22);
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px rgba(27, 127, 208, 0.28);
	outline: none;
}

.btn-small {
	min-height: 42px;
	padding: 10px 16px;
	font-size: 0.92rem;
}

.btn-outline {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.42);
	box-shadow: none;
}

.btn-dark {
	background: var(--primary);
	box-shadow: 0 16px 34px rgba(8, 47, 95, 0.22);
}

.btn-light {
	background: var(--white);
	color: var(--primary);
	border-color: rgba(255, 255, 255, 0.6);
	box-shadow: none;
}

.hero-slider {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(8, 47, 95, 0.96), rgba(12, 74, 126, 0.92)),
		radial-gradient(circle at 80% 20%, rgba(32, 180, 134, 0.3), transparent 36%);
	color: var(--white);
	padding-bottom: 34px;
}

.slider-track {
	position: relative;
	min-height: 620px;
}

.hero-slide {
	position: absolute;
	inset: 0;
	display: grid;
	align-items: center;
	padding: 92px 0 56px;
	opacity: 0;
	pointer-events: none;
	transform: translateX(28px);
	transition: opacity 520ms ease, transform 520ms ease;
}

.hero-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
}

.hero-grid {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
	gap: 52px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: var(--accent);
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.eyebrow::before {
	content: "";
	width: 28px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
}

.hero-copy h1 {
	margin: 0;
	max-width: 680px;
	font-size: clamp(2.35rem, 4.2vw, 4.45rem);
	line-height: 1.06;
	letter-spacing: 0;
}

.hero-copy p {
	max-width: 600px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.14rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.hero-visual {
	position: relative;
	padding: 20px;
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.2);
}

.hero-visual img {
	width: 100%;
	filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.16));
}

.slider-controls-wrap {
	position: relative;
	z-index: 5;
}

.slider-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 12px;
	width: fit-content;
	max-width: 100%;
	min-height: 62px;
	margin-inline: auto;
	padding: 10px 12px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
}

.slider-prev,
.slider-next,
.slider-dots button {
	border: 0;
	cursor: pointer;
}

.slider-prev,
.slider-next {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	color: var(--white);
	font-size: 0;
	line-height: 0;
	transition: background 180ms ease;
}

.slider-prev::before,
.slider-next::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
}

.slider-prev::before {
	transform: translateX(2px) rotate(-45deg);
}

.slider-next::before {
	transform: translateX(-2px) rotate(135deg);
}

.slider-prev:hover,
.slider-next:hover,
.slider-prev:focus,
.slider-next:focus {
	background: rgba(255, 255, 255, 0.22);
	outline: none;
}

.slider-dots {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	height: 40px;
}

.slider-dots button {
	display: block;
	flex: 0 0 auto;
	width: 30px;
	height: 6px;
	padding: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
}

.slider-dots button.is-active {
	background: var(--accent);
}

.section {
	padding: 96px 0;
}

.section-heading {
	max-width: 780px;
	margin: 0 auto 46px;
	text-align: center;
}

.section-heading.align-left {
	margin-inline: 0;
	text-align: left;
}

.section-heading h2,
.feature-copy h2,
.contact-panel h2 {
	margin: 0;
	color: var(--primary);
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.12;
	letter-spacing: 0;
}

.section-heading p,
.feature-copy p,
.contact-panel p {
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 1.05rem;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.service-card,
.entry-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--white);
	box-shadow: var(--shadow-soft);
}

.service-card {
	min-height: 260px;
	padding: 30px;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
	transform: translateY(-6px);
	border-color: rgba(27, 127, 208, 0.35);
	box-shadow: var(--shadow);
}

.service-icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 22px;
	border-radius: 16px;
	background:
		linear-gradient(135deg, rgba(27, 127, 208, 0.14), rgba(32, 180, 134, 0.14)),
		var(--secondary-100);
	color: var(--secondary);
}

.service-icon svg {
	width: 31px;
	height: 31px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.icon-cloud,
.icon-training {
	color: var(--accent);
}

.icon-data,
.icon-chart {
	color: var(--accent-2);
}

.service-card:hover .service-icon {
	background: linear-gradient(135deg, var(--secondary), var(--accent));
	color: var(--white);
}

.service-card h3 {
	margin: 0;
	color: var(--primary);
	font-size: 1.18rem;
	line-height: 1.25;
}

.service-card p {
	margin: 12px 0 0;
	color: var(--muted);
}

.feature-band {
	background: linear-gradient(180deg, var(--light), #edf5fb);
}

.split-grid,
.reasons-grid {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 60px;
}

.feature-media {
	padding: 22px;
	border: 1px solid var(--border);
	border-radius: 28px;
	background: var(--white);
	box-shadow: var(--shadow);
}

.feature-copy .btn {
	margin-top: 28px;
}

.reason-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.reason-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-height: 90px;
	padding: 20px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--white);
	box-shadow: var(--shadow-soft);
}

.reason-item span {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	margin-top: 2px;
	border-radius: 50%;
	background: var(--accent);
}

.reason-item span::after {
	content: "";
	display: block;
	width: 10px;
	height: 6px;
	margin: 7px auto;
	border-left: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
	transform: rotate(-45deg);
}

.reason-item p {
	margin: 0;
	font-weight: 700;
	color: var(--primary);
	line-height: 1.35;
}

.contact-section {
	background: var(--light);
}

.contact-panel {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 40px;
	padding: 46px;
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(8, 47, 95, 0.96), rgba(27, 127, 208, 0.9)),
		var(--primary);
	color: var(--white);
	box-shadow: var(--shadow);
}

.contact-panel > div:first-child {
	align-self: center;
	padding-bottom: 4px;
}

.contact-panel h2,
.contact-panel p {
	color: var(--white);
}

.contact-panel h2 {
	max-width: 700px;
	margin-top: 0;
	text-wrap: balance;
}

.no-break {
	white-space: nowrap;
}

.contact-panel p {
	color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
	display: grid;
	gap: 12px;
}

.contact-link {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 58px;
	padding: 10px 18px;
	border: 1px solid rgba(255, 255, 255, 0.68);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--primary);
	font-weight: 850;
	line-height: 1.2;
	box-shadow: 0 14px 30px rgba(5, 31, 64, 0.08);
	transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.contact-link svg {
	width: 24px;
	height: 24px;
	justify-self: center;
	fill: currentColor;
	stroke: currentColor;
	stroke-width: 0;
}

.contact-email svg {
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.contact-link:hover,
.contact-link:focus {
	transform: translateY(-2px);
	outline: none;
}

.contact-whatsapp:hover,
.contact-whatsapp:focus {
	background: #25d366;
	border-color: #25d366;
	color: var(--white);
}

.contact-instagram:hover,
.contact-instagram:focus {
	background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 72%, #515bd4);
	border-color: transparent;
	color: var(--white);
}

.contact-email:hover,
.contact-email:focus {
	background: linear-gradient(135deg, var(--secondary), var(--accent));
	border-color: transparent;
	color: var(--white);
}

.site-footer {
	background: var(--primary-900);
	color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr;
	gap: 42px;
	padding: 62px 0 42px;
}

.footer-brand .brand-click {
	color: var(--white);
}

.footer-brand .brand-health {
	color: #34c8bf;
}

.site-footer h2 {
	margin: 0 0 15px;
	color: var(--white);
	font-size: 1rem;
}

.site-footer p {
	max-width: 440px;
	margin: 18px 0 0;
}

.site-footer ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer a:hover,
.site-footer a:focus {
	color: var(--white);
	outline: none;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
	margin: 0;
	padding: 20px 0;
	font-size: 0.94rem;
}

.floating-whatsapp {
	position: fixed;
	z-index: 120;
	right: 22px;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: 0;
	box-shadow: 0 18px 42px rgba(8, 47, 95, 0.22);
	cursor: pointer;
}

.floating-whatsapp {
	bottom: 22px;
	background: #25d366;
	color: var(--white);
}

.floating-whatsapp svg {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

.chat-window {
	position: fixed;
	z-index: 130;
	right: 22px;
	bottom: 94px;
	width: min(360px, calc(100vw - 34px));
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: var(--white);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.chat-window.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.chat-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: var(--primary);
}

.chat-close {
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: var(--radius);
	background: var(--light);
	color: var(--primary);
	font-size: 1.5rem;
	cursor: pointer;
}

.chat-window p {
	margin: 8px 0 14px;
	color: var(--muted);
}

.chat-actions {
	display: grid;
	gap: 9px;
}

.chat-actions a {
	padding: 11px 12px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--primary);
	font-weight: 700;
	transition: background 180ms ease, border-color 180ms ease;
}

.chat-actions a:hover,
.chat-actions a:focus {
	background: var(--secondary-100);
	border-color: rgba(27, 127, 208, 0.35);
	outline: none;
}

.chat-actions .chat-whatsapp {
	background: #25d366;
	color: var(--white);
	border-color: #25d366;
}

.content-area {
	max-width: 860px;
}

.page-hero {
	padding: 82px 0 96px;
	background: linear-gradient(180deg, var(--light), var(--white) 260px);
}

.page-content {
	width: min(100%, 980px);
	margin-inline: auto;
	padding: 42px;
	border: 1px solid var(--border);
	border-radius: 18px;
	background: var(--white);
	box-shadow: var(--shadow-soft);
}

.page-title {
	margin-bottom: 30px;
}

.page-title h1 {
	margin: 0;
	color: var(--primary);
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.1;
}

.page-featured-image {
	margin: 0 0 34px;
	overflow: hidden;
	border-radius: 18px;
}

.page-featured-image img,
.entry-content img {
	width: auto;
	height: auto;
	max-width: 100%;
	border-radius: 14px;
}

.entry-content {
	color: var(--text);
	font-size: 1.06rem;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
	margin: 0 0 1.25em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin: 1.5em 0 0.65em;
	color: var(--primary);
	line-height: 1.18;
}

.entry-content h2 {
	font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.entry-content h3 {
	font-size: 1.45rem;
}

.entry-content a {
	color: var(--secondary);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content figure {
	margin: 32px 0;
}

.entry-content figcaption {
	margin-top: 10px;
	color: var(--muted);
	font-size: 0.92rem;
	text-align: center;
}

.entry-content .aligncenter,
.entry-content .wp-block-image.aligncenter {
	margin-inline: auto;
	text-align: center;
}

.entry-content .alignleft {
	float: left;
	margin: 6px 26px 18px 0;
}

.entry-content .alignright {
	float: right;
	margin: 6px 0 18px 26px;
}

.entry-content .wp-block-columns {
	gap: 28px;
	margin: 34px 0;
}

.entry-content .wp-block-gallery {
	display: flex;
	gap: 16px;
}

.entry-content blockquote {
	margin: 30px 0;
	padding: 22px 26px;
	border-left: 4px solid var(--accent);
	border-radius: 0 14px 14px 0;
	background: var(--light);
	color: var(--primary);
	font-weight: 650;
}

.page-links {
	margin-top: 26px;
	color: var(--muted);
}

.entry-card {
	padding: 28px;
	margin-bottom: 22px;
}

.entry-card h1 {
	margin: 0 0 10px;
	color: var(--primary);
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 980px) {
	.header-inner {
		min-height: 70px;
		gap: 14px;
	}

	.menu-toggle {
		display: block;
	}

	.site-menu {
		position: fixed;
		top: 70px;
		right: 20px;
		left: 20px;
		display: none;
		padding: 12px;
		border: 1px solid var(--border);
		border-radius: 16px;
		background: var(--white);
		box-shadow: var(--shadow);
	}

	.site-menu.is-open {
		display: grid;
	}

	.site-menu a {
		padding: 13px 14px;
	}

	.header-cta {
		display: none;
	}

	.slider-track {
		min-height: 690px;
	}

	.hero-slide {
		padding: 72px 0 54px;
	}

	.hero-grid,
	.split-grid,
	.reasons-grid,
	.contact-panel {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		gap: 34px;
	}

	.hero-visual {
		max-width: 560px;
		padding: 16px;
	}

	.card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-panel {
		padding: 34px;
	}
}

@media (max-width: 680px) {
	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.brand {
		min-width: 0;
	}

	.brand-click {
		font-size: 1.65rem;
	}

	.brand-health {
		font-size: 1rem;
	}

	.slider-track {
		min-height: 720px;
	}

	.hero-slide {
		padding: 54px 0 42px;
	}

	.hero-copy h1 {
		font-size: clamp(2.25rem, 12vw, 3.15rem);
	}

	.hero-copy p {
		font-size: 1rem;
	}

	.hero-actions,
	.contact-actions {
		display: grid;
	}

	.btn {
		width: 100%;
		padding-inline: 14px;
		text-align: center;
	}

	.slider-dots {
		max-width: calc(100vw - 132px);
		min-height: 38px;
	}

	.slider-dots button {
		width: 24px;
	}

	.slider-prev,
	.slider-next {
		width: 38px;
		height: 38px;
	}

	.section {
		padding: 70px 0;
	}

	.page-hero {
		padding: 48px 0 70px;
	}

	.page-content {
		padding: 24px 20px;
		border-radius: 16px;
	}

	.entry-content .alignleft,
	.entry-content .alignright {
		float: none;
		display: block;
		margin: 24px auto;
	}

	.card-grid,
	.reason-list,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: auto;
		padding: 24px;
	}

	.split-grid,
	.reasons-grid {
		gap: 34px;
	}

	.contact-panel {
		padding: 28px 20px;
		border-radius: 22px;
	}

	.footer-grid {
		gap: 30px;
	}

	.floating-whatsapp {
		right: 16px;
		width: 54px;
		height: 54px;
	}

	.chat-window {
		right: 14px;
		bottom: 86px;
	}
}
