@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@600;700;900&display=swap');

:root {
	/* Palette */
	--primary: #ff5900;
	--primary-hover: #e04d00;
	--bg-dark: #0a0a0a;
	--bg-dark-sec: #161a22;
	--bg-body: #111111;
	--border-color: #222222;
	--border-thick: 2px;
	--radius: 0px;

	/* Font Stack */
	--font-head: 'Outfit', sans-serif;
	--font-body: 'Inter', sans-serif;

	/* Transitions */
	--ease-precise: cubic-bezier(0.16, 1, 0.3, 1);
	--transition-slow: 0.8s var(--ease-precise);
	--transition-fast: 0.3s var(--ease-precise);

	/* Layout Customizations */
	--hero-strip-width: 48vw;
}

/* Global Reset */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-body);
	background-color: var(--bg-body);
	background-image:
		repeating-linear-gradient(45deg, #1a1a1a 0, #1a1a1a 2px, transparent 2px, transparent 8px),
		radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, #111111 80%);
	background-attachment: fixed;
	color: #ffffff;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-head);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	color: #ffffff;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-fast);
}

/* --- HEADER SYSTEM --- */
.cfn-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background-color: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: var(--border-thick) solid var(--border-color);
	z-index: 999;
	transition: var(--transition-fast);
}

.cfn-section-divider {
	display: block;
	width: 100%;
	height: 2px;
	min-height: 2px;
	border: none;
	/* Tom branco discreto combinando com a cor da tipografia hero */
	background: linear-gradient(to right,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.15) 12%,
			rgba(255, 255, 255, 0.15) 88%,
			rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}

.cfn-header-container {
	max-width: 1400px;
	height: 100%;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cfn-logo-link {
	display: flex;
	align-items: center;
	height: 100%;
}

.cfn-logo-svg-wrapper svg {
	max-height: 42px;
	width: auto;
}

/* SVG Text elements fill override (ensure clean white display) */
.cfn-logo-svg-wrapper svg [fill="#ffffff"],
.cfn-logo-svg-wrapper svg path[fill="#ffffff"] {
	fill: #ffffff !important;
}

.cfn-logo-svg-wrapper svg [fill="#ff5900"],
.cfn-logo-svg-wrapper svg path[fill="#ff5900"] {
	fill: var(--primary) !important;
}

/* Navigation List */
.cfn-header-right {
	display: flex;
	align-items: center;
	gap: 40px;
}

.cfn-navigation {
	display: flex;
	align-items: center;
}

.cfn-header-cta {
	font-size: 13px !important;
	padding: 8px 20px !important;
	border-width: 1.5px !important;
	flex-shrink: 0;
	margin: 0;
}

.cfn-nav-list {
	display: flex;
	list-style: none;
	gap: 40px;
}

.cfn-nav-link {
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 8px 0;
	position: relative;
	color: #bbbbbb;
}

.cfn-nav-link:hover,
.cfn-nav-link.active {
	color: var(--primary);
}

/* Precise horizontal line indicator on hover */
.cfn-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: var(--border-thick);
	background-color: var(--primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s var(--ease-precise);
}

.cfn-nav-link:hover::after,
.cfn-nav-link.active::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* Hamburger Toggle */
.cfn-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1001;
}

.cfn-toggle-line {
	width: 100%;
	height: 2px;
	background-color: #ffffff;
	transition: var(--transition-fast);
}

/* Hamburger Active State */
.cfn-menu-toggle[aria-expanded="true"] .cfn-line-1 {
	transform: translateY(8px) rotate(45deg);
}

.cfn-menu-toggle[aria-expanded="true"] .cfn-line-2 {
	opacity: 0;
}

.cfn-menu-toggle[aria-expanded="true"] .cfn-line-3 {
	transform: translateY(-8px) rotate(-45deg);
}

/* --- MAIN WRAPPERS --- */
.cfn-main-content {
	margin-top: 80px;
	min-height: calc(100vh - 80px);
}

.cfn-page-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 80px 40px;
}

/* --- LANDING PAGE STYLING --- */
.cfn-landing-container {
	width: 100%;
}

.cfn-section {
	position: relative;
	padding: 100px 40px;
	border-bottom: var(--border-thick) solid var(--border-color);
}

.cfn-section-inner {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* --- 1. HERO SECTION --- */
@font-face {
	font-family: 'Ethnocentric';
	src: url('../fonts/ethnocentric.woff') format('woff'),
		url('../fonts/ethnocentric.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

.cfn-hero-section {
	position: relative;
	width: 100%;
	height: 100vh;
	background-color: #0c0c0c;
	background-image:
		radial-gradient(ellipse at center, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.85) 100%),
		url('../img/hero-cement-bg.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 0;
	border-bottom: var(--border-thick) solid var(--border-color);
}

/* ── BACKGROUND DIAGONAL GRID ── */
.bg-grid-overlay {
	display: none;
}

/* ── KINETIC SLANTED ACCENT LINE ── */
.kinetic-accent-bar {
	position: absolute;
	top: -10%;
	left: calc(38% + 40px);
	width: 2px;
	height: 120%;
	background: linear-gradient(to bottom, transparent, var(--primary) 20%, var(--primary) 80%, transparent 100%);
	transform: rotate(15deg);
	z-index: 4;
	pointer-events: none;
	opacity: 0.45;
}

/* ── BACKGROUND IMAGE WRAPPER (MASKED ON BOTH SIDES - DIAGONAL STRIP) ── */
.hero-bg-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	width: 75%;
	height: 100%;
	z-index: 2; /* Placed above the grid overlay (z-index 0) so the image covers the grid within the strip */
	overflow: hidden;
	-webkit-clip-path: polygon(
		calc(13vw + 40px + 13.4vh) 0%, 
		calc(13vw + 40px + var(--hero-strip-width, 42vw) + 13.4vh) 0%, 
		calc(13vw + 40px + var(--hero-strip-width, 42vw) - 13.4vh) 100%, 
		calc(13vw + 40px - 13.4vh) 100%
	);
	clip-path: polygon(
		calc(13vw + 40px + 13.4vh) 0%, 
		calc(13vw + 40px + var(--hero-strip-width, 42vw) + 13.4vh) 0%, 
		calc(13vw + 40px + var(--hero-strip-width, 42vw) - 13.4vh) 100%, 
		calc(13vw + 40px - 13.4vh) 100%
	);
}

/* Right accent line to match the left kinetic accent bar */
.cfn-hero-section::after {
	content: '';
	position: absolute;
	top: -10%;
	left: calc(38% + 40px + var(--hero-strip-width, 42vw));
	width: 2px;
	height: 120%;
	background: linear-gradient(to bottom, transparent, var(--primary) 20%, var(--primary) 80%, transparent 100%);
	transform: rotate(15deg);
	z-index: 4;
	pointer-events: none;
	opacity: 0.45;
}


/* Dual image layers for smooth cross-fading and ink-spread transition */
.hero-bg-layer {
	position: absolute;
	inset: 0;
	background-size: cover;
	filter: grayscale(0.15) contrast(1.1) brightness(0.65);
	opacity: 0;
	z-index: 2; /* Inactive layers drop to z-index 2 (below active layer z-index 3) */
	/* Delay opacity transition to keep the previous image fully visible underneath during the ink reveal animation */
	transition: opacity 0.4s var(--ease-precise) 1.6s;

	/* Webkit mask configurations (Default to 100% so the layer is fully visible when inactive/pre-transitioned) */
	-webkit-mask-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/204808/ink-transition-sprite.png'), linear-gradient(#000, #000);
	-webkit-mask-size: 4000% 100%, 100% 100%;
	-webkit-mask-repeat: no-repeat, no-repeat;
	-webkit-mask-position: 100% 0, 0% 0;
	-webkit-mask-composite: xor;

	/* Standard mask configurations (Default to 100% so the layer is fully visible when inactive/pre-transitioned) */
	mask-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/204808/ink-transition-sprite.png'), linear-gradient(#000, #000);
	mask-size: 4000% 100%, 100% 100%;
	mask-repeat: no-repeat, no-repeat;
	mask-position: 100% 0, 0% 0;
	mask-composite: exclude;
}

.hero-bg-layer.active {
	opacity: 1;
	z-index: 3; /* Active layer is z-index 3 (topmost) */
	transition: opacity 0s; /* Instant active state */
	/* Animates the mask from 0% (hidden) to 100% (fully visible) */
	animation: cfn-ink-reveal 1.6s steps(39) forwards;
}

@keyframes cfn-ink-reveal {
	0% {
		-webkit-mask-position: 0% 0, 0% 0;
		mask-position: 0% 0, 0% 0;
	}

	100% {
		-webkit-mask-position: 100% 0, 0% 0;
		mask-position: 100% 0, 0% 0;
	}
}

.cfn-hero-inner {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 80px;
	z-index: 10;
}

.cfn-hero-content {
	position: relative;
	z-index: 10;
	max-width: 650px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-top: 40px;
}

.cfn-hero-pretitle {
	font-family: var(--font-head);
	color: var(--white);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.cfn-brand-name {
	font-family: 'Ethnocentric', var(--font-head);
	color: var(--white) !important;
	font-size: 11px;
	letter-spacing: 0.05em;
}

.cfn-pretitle-clinic {
	color: var(--primary) !important;
}

.cfn-hero-title {
	font-family: var(--font-head);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 24px;
	letter-spacing: -1px;
	min-height: 170px;
	transition: opacity 0.4s var(--ease-precise);
}

.modality-highlight {
	color: var(--primary);
	letter-spacing: 1px;
	text-shadow:
		-1.5px -1.5px 0 #ffffff,
		 0px   -1.5px 0 #ffffff,
		 1.5px -1.5px 0 #ffffff,
		-1.5px  0px   0 #ffffff,
		 1.5px  0px   0 #ffffff,
		-1.5px  1.5px 0 #ffffff,
		 0px    1.5px 0 #ffffff,
		 1.5px  1.5px 0 #ffffff;
}

.cfn-hero-description {
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	color: var(--gray-light);
	margin-bottom: 36px;
	max-width: 520px;
	font-weight: 300;
	min-height: 80px;
	transition: opacity 0.4s var(--ease-precise);
}

.cfn-hero-ctas {
	display: flex;
	max-width: 480px;
	width: 100%;
	margin-bottom: 48px;
}

.cfn-hero-ctas .cfn-btn-primary {
	width: 100%;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
}

/* --- BUTTONS --- */
.cfn-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary);
	color: #ffffff;
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 16px 32px;
	border: none;
	cursor: pointer;
	transform: skewX(-15deg);
	box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.2);
	transition: all 0.3s var(--ease-precise);
	text-decoration: none;
}

.cfn-btn-primary:hover {
	background-color: #ffffff;
	color: var(--primary);
	box-shadow: 6px 6px 0 rgba(255, 89, 0, 0.4);
	transform: skewX(-15deg) translate(-2px, -2px);
}

.cfn-btn-primary-text {
	transform: skewX(15deg);
	display: flex;
	align-items: center;
	gap: 10px;
}

.cfn-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	color: #ffffff;
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 14px 30px;
	border: 2px solid #ffffff;
	cursor: pointer;
	transform: skewX(-15deg);
	box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.3s var(--ease-precise);
	text-decoration: none;
}

.cfn-btn-secondary:hover {
	background-color: #ffffff;
	color: #000000;
	box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.3);
	transform: skewX(-15deg) translate(-2px, -2px);
}

.cfn-btn-secondary-text {
	transform: skewX(15deg);
	display: flex;
	align-items: center;
	gap: 10px;
}

/* ── HERO MODALITY SELECTOR (SIDE-BY-SIDE BUTTONS) ── */
.cfn-hero-modalities {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 24px;
	max-width: 480px;
	width: 100%;
}

.cfn-modality-btn {
	width: 100%;
	background-color: transparent;
	color: #ffffff;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 14px 5px;
	border: 2px solid #ffffff;
	cursor: pointer;
	transform: skewX(-15deg);
	box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.3s var(--ease-precise);
	text-align: center;
	white-space: nowrap;
	box-sizing: border-box;
}

.cfn-modality-btn-text {
	transform: skewX(15deg);
	display: block;
}

.cfn-modality-btn:hover {
	background-color: #ffffff;
	color: #000000;
	box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.3);
	transform: skewX(-15deg) translate(-2px, -2px);
}

.cfn-modality-btn.active {
	background-color: var(--primary);
	border-color: var(--primary);
	color: #ffffff;
	box-shadow: 4px 4px 0 rgba(255, 89, 0, 0.25);
	transform: skewX(-15deg);
}

.cfn-modality-btn.active:hover {
	background-color: var(--primary);
	color: #ffffff;
	box-shadow: 6px 6px 0 rgba(255, 89, 0, 0.4);
	transform: skewX(-15deg) translate(-2px, -2px);
}

/* ── RESPONSIVE DESIGN (PREMIUM MOBILE ADJUSTMENTS) ── */
@media (max-width: 900px) {
	.cfn-hero-section {
		height: auto;
		min-height: 100vh;
		padding: 120px 24px 80px 24px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		background-image: none;
		background-color: #0c0c0c;
	}

	.cfn-hero-section::after {
		display: none;
	}

	.cfn-hero-inner {
		padding: 0;
		justify-content: center;
		height: auto;
	}

	.hero-bg-wrapper {
		width: 100%;
		opacity: 0.65;
		-webkit-clip-path: none;
		clip-path: none;
		-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
		mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
	}

	.cfn-hero-content {
		align-items: center;
		text-align: center;
		padding-top: 0;
		width: 100%;
	}

	.cfn-hero-title {
		min-height: auto;
		font-size: clamp(2rem, 8vw, 3rem);
		margin-bottom: 16px;
	}

	.cfn-hero-description {
		max-width: 100%;
		font-size: 15px;
		margin-bottom: 28px;
		min-height: auto;
	}

	.cfn-hero-ctas {
		justify-content: center;
		width: 100%;
		max-width: 100%;
		margin-bottom: 40px;
	}

	.cfn-hero-modalities {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		width: 100%;
		max-width: 100%;
		gap: 8px;
		margin-bottom: 24px;
	}

	.cfn-modality-btn {
		font-size: 10px;
		padding: 12px 6px;
		width: 100%;
		max-width: none;
		text-align: center;
	}

	.kinetic-accent-bar {
		display: none;
	}
}

/* --- 2. CONCEPT PILLARS SECTION --- */
.cfn-pillars-section {
	background-color: rgba(10, 10, 10, 0.4);
}

.cfn-section-header {
	margin-bottom: 60px;
}

.cfn-section-title-wrap {
	border-left: 3px solid var(--primary);
	padding-left: 20px;
}

.cfn-section-pre {
	font-family: var(--font-head);
	color: var(--primary);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.2em;
	margin-bottom: 8px;
}

.cfn-section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
	color: #ffffff;
}

.cfn-section-intro {
	font-size: 16px;
	color: #bbbbbb;
	font-weight: 300;
}

/* --- NEW MODALITY SECTIONS --- */
.cfn-modality-section {
	padding: 100px 20px;
	position: relative;
	background-color: transparent;
	overflow: visible;
}

.cfn-modality-fisioterapia {
	background-color: rgba(10, 10, 10, 0.3);
}

.cfn-modality-funcional {
	background-color: rgba(15, 17, 20, 0.4);
}

.cfn-modality-yoga {
	background-color: rgba(10, 10, 10, 0.3);
}

.cfn-modality-spa {
	background-color: rgba(15, 17, 20, 0.4);
}

.cfn-modality-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.cfn-modality-grid-reverse {
	direction: rtl;
}

.cfn-modality-grid-reverse > * {
	direction: ltr;
}

/* Modality Visual Draft Frame Style */
.cfn-modality-visual {
	position: relative;
	padding: 12px;
	background: rgba(22, 26, 34, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 4px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	transition: border-color 0.5s var(--ease-precise), transform 0.5s var(--ease-precise);
}

/* Extending Horizontal Border Lines (like section dividers) */
.cfn-modality-visual::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -20px;
	right: -20px;
	height: 1px;
	background: linear-gradient(to right, 
		rgba(255, 255, 255, 0) 0%, 
		rgba(255, 255, 255, 0.15) 20%, 
		rgba(255, 255, 255, 0.15) 80%, 
		rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
	transition: background 0.5s var(--ease-precise);
}

.cfn-modality-visual::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: -20px;
	right: -20px;
	height: 1px;
	background: linear-gradient(to right, 
		rgba(255, 255, 255, 0) 0%, 
		rgba(255, 255, 255, 0.15) 20%, 
		rgba(255, 255, 255, 0.15) 80%, 
		rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
	transition: background 0.5s var(--ease-precise);
}

/* Extending Vertical Border Lines */
.cfn-modality-visual-left-line,
.cfn-modality-visual-right-line {
	position: absolute;
	width: 1px;
	top: -20px;
	bottom: -20px;
	pointer-events: none;
	background: linear-gradient(to bottom, 
		rgba(255, 255, 255, 0) 0%, 
		rgba(255, 255, 255, 0.15) 20%, 
		rgba(255, 255, 255, 0.15) 80%, 
		rgba(255, 255, 255, 0) 100%);
	transition: background 0.5s var(--ease-precise);
}

.cfn-modality-visual-left-line {
	left: -1px;
}

.cfn-modality-visual-right-line {
	right: -1px;
}

/* Hover effects for visual container */
.cfn-modality-visual:hover {
	border-color: rgba(255, 89, 0, 0.2);
	transform: translateY(-5px);
}

.cfn-modality-visual:hover::before,
.cfn-modality-visual:hover::after {
	background: linear-gradient(to right, 
		rgba(255, 89, 0, 0) 0%, 
		rgba(255, 89, 0, 0.3) 20%, 
		rgba(255, 89, 0, 0.3) 80%, 
		rgba(255, 89, 0, 0) 100%);
}

.cfn-modality-visual:hover .cfn-modality-visual-left-line,
.cfn-modality-visual:hover .cfn-modality-visual-right-line {
	background: linear-gradient(to bottom, 
		rgba(255, 89, 0, 0) 0%, 
		rgba(255, 89, 0, 0.3) 20%, 
		rgba(255, 89, 0, 0.3) 80%, 
		rgba(255, 89, 0, 0) 100%);
}

.cfn-modality-img-wrapper {
	overflow: hidden;
	border-radius: 2px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
}

.cfn-modality-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	max-height: 520px;
	transition: transform 0.8s var(--ease-precise);
}

.cfn-modality-visual:hover .cfn-modality-img {
	transform: scale(1.03);
}

.cfn-modality-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cfn-modality-desc {
	font-size: 17px;
	color: #bbbbbb;
	line-height: 1.6;
	margin-top: 20px;
	margin-bottom: 25px;
	font-weight: 300;
}

/* Fisioterapia Section Layout */
.cfn-fisioterapia-areas {
	margin-bottom: 30px;
}

.cfn-fisioterapia-list li {
	margin-bottom: 12px;
	font-size: 15px;
	line-height: 1.5;
	color: #dddddd;
}

.cfn-fisioterapia-list li strong {
	color: #ffffff;
	font-weight: 600;
}

.cfn-fisioterapia-destaques {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 25px;
}

.cfn-fisioterapia-subtitle {
	font-size: 14px;
	font-family: var(--font-head);
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 15px;
	font-weight: 700;
}

.cfn-fisioterapia-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.cfn-fisioterapia-card {
	background: rgba(22, 26, 34, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 20px;
	border-radius: 4px;
	position: relative;
	transition: border-color 0.3s, background-color 0.3s, transform 0.3s;
}

.cfn-fisioterapia-card:hover {
	border-color: rgba(255, 89, 0, 0.3);
	background: rgba(22, 26, 34, 0.8);
	transform: translateY(-3px);
}

.cfn-fisioterapia-card-title {
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 8px;
	line-height: 1.3;
}

.cfn-fisioterapia-card-desc {
	font-size: 13px;
	color: #bbbbbb;
	line-height: 1.5;
	font-weight: 300;
}

/* Lists and Bullets for Funcional & Yoga */
.cfn-modality-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cfn-modality-list li {
	position: relative;
	padding-left: 25px;
	font-size: 16px;
	color: #ffffff;
	margin-bottom: 15px;
	line-height: 1.4;
}

.cfn-list-bullet {
	position: absolute;
	left: 0;
	top: 6px;
	width: 8px;
	height: 8px;
	background-color: var(--primary);
	display: inline-block;
	transform: rotate(45deg);
	box-shadow: 0 0 8px var(--primary);
}

.cfn-spa-cta-btn {
	margin-top: 10px;
	align-self: flex-start;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
	.cfn-modality-grid {
		gap: 40px;
	}
}

@media (max-width: 900px) {
	.cfn-modality-section {
		padding: 70px 20px;
	}
	
	.cfn-modality-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.cfn-modality-grid-reverse {
		direction: ltr;
	}
	
	.cfn-modality-visual {
		order: -1;
	}
	
	.cfn-modality-img {
		max-height: 380px;
	}
}

@media (max-width: 600px) {
	.cfn-fisioterapia-cards {
		grid-template-columns: 1fr;
	}
}

/* --- 3. CALL TO ACTION SECTION (CTA) --- */
.cfn-cta-section {
	background-color: #0d0f12;
	padding: 100px 40px;
	text-align: center;
	border-bottom: none;
}

.cfn-cta-inner {
	max-width: 800px;
	margin: 0 auto;
	border: 2px solid #222222;
	background: #111111;
	padding: 60px 40px;
	position: relative;
}

.cfn-cta-inner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--primary);
}

.cfn-cta-title {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
	margin-bottom: 20px;
	color: #ffffff;
}

.cfn-cta-desc {
	font-size: 16px;
	color: #bbbbbb;
	margin-bottom: 35px;
	font-weight: 300;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* --- FOOTER SYSTEM --- */
.cfn-footer {
	background-color: #0a0a0a;
	border-top: var(--border-thick) solid #222222;
	padding: 50px 40px;
	text-align: center;
}

.cfn-footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.cfn-footer-simple {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.cfn-varzam-logo-wrapper {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	margin: 0 auto 10px auto;
	cursor: default;
	pointer-events: none;
	/* Disables all hover, click, and interaction states */
	width: 140px;
	/* Base width matching the logo size for perfect centering */
}

.cfn-varzam-logo {
	display: block;
	width: 100% !important;
	height: auto;
	/* Precise Neumorphic shadows defined directly on the SVG contours */
	filter:
		drop-shadow(-2px -2px 2px rgba(255, 255, 255, 0.07)) drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.9));
	transition: all 0.4s var(--ease-precise);
}

.cfn-varzam-logo path {
	fill: #141414 !important;
	/* Slightly lighter than the #0a0a0a background for a distinct 3D body */
	stroke: #1a1a1a !important;
	/* Defined outer border for industrial premium look */
	stroke-width: 8px !important;
	/* Renders as a crisp outline in physical pixels */
	stroke-linejoin: round !important;
	transition: all 0.4s var(--ease-precise);
}

.cfn-made-by {
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.3em;
	margin-right: -0.3em;
	/* Offsets the trailing letter-spacing for perfect centering */
	color: #333333;
	/* Sleek muted gray, slightly defined for readability */
	margin-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	text-transform: uppercase;
}

/* --- PORTFOLIO ARTICLE WRAPPER (FALLBACKS) --- */
.cfn-page-detail-container {
	max-width: 900px;
	margin: 0 auto;
}

.cfn-page-article {
	background-color: #161a22;
	border: var(--border-thick) solid var(--border-color);
	padding: 60px;
}

.cfn-page-header {
	margin-bottom: 40px;
}

.cfn-page-title {
	font-size: 48px;
	line-height: 1.1;
	margin-bottom: 16px;
}

.cfn-title-underline-line {
	width: 80px;
	height: 3px;
	background-color: var(--primary);
}

.cfn-page-content {
	font-size: 16px;
	color: #bbbbbb;
}

.cfn-page-content p {
	margin-bottom: 24px;
}

/* --- RESTRICTED AREA & DASHBOARD STYLING --- */
.cfn-restricted-area {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 0;
}

.cfn-restricted-card {
	background-color: #12151c;
	border: var(--border-thick) solid var(--border-color);
	padding: 40px;
	border-radius: 4px;
	max-width: 480px;
	width: 100%;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cfn-restricted-badge {
	display: inline-block;
	background-color: rgba(255, 89, 0, 0.15);
	color: var(--primary);
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 20px;
	border: 1px solid rgba(255, 89, 0, 0.3);
}

.cfn-restricted-title {
	font-size: 28px;
	font-family: 'Outfit', sans-serif;
	margin-bottom: 12px;
	color: #ffffff;
}

.cfn-restricted-desc {
	font-size: 14px;
	color: #999999;
	margin-bottom: 30px;
	line-height: 1.5;
}

.cfn-restricted-login-form {
	text-align: left;
}

.cfn-form-group {
	margin-bottom: 20px;
}

.cfn-form-group label {
	display: block;
	font-size: 12px;
	font-family: 'Outfit', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #cccccc;
	margin-bottom: 8px;
}

.cfn-form-control {
	width: 100%;
	background-color: #0c0d12;
	border: 1px solid #2d3340;
	border-radius: 4px;
	padding: 12px 16px;
	color: #ffffff;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.cfn-form-control:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 2px rgba(255, 89, 0, 0.2);
}

.cfn-form-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: #999999;
	margin-bottom: 30px;
}

.cfn-rememberme-label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.cfn-rememberme-label input {
	accent-color: var(--primary);
}

.cfn-lost-password {
	color: #cccccc;
	text-decoration: none;
	transition: color 0.3s;
}

.cfn-lost-password:hover {
	color: var(--primary);
}

.cfn-login-submit {
	width: 100%;
	justify-content: center;
	padding: 14px;
	cursor: pointer;
}

/* Dashboard Layout */
.cfn-dashboard-content {
	padding: 20px 0;
}

.cfn-dashboard-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 24px;
	margin-bottom: 40px;
	gap: 20px;
}

.cfn-dashboard-welcome h2 {
	font-size: 32px;
	font-family: 'Outfit', sans-serif;
	color: #ffffff;
	margin-bottom: 6px;
}

.cfn-dashboard-welcome p {
	font-size: 15px;
	color: #999999;
	margin: 0;
}

.cfn-logout-btn {
	padding: 10px 20px;
	font-size: 13px;
	text-decoration: none;
}

.cfn-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

.cfn-dashboard-card {
	background-color: #12151c;
	border: var(--border-thick) solid var(--border-color);
	padding: 30px;
	border-radius: 4px;
	transition: border-color 0.3s, transform 0.3s;
}

.cfn-dashboard-card:hover {
	border-color: #2a303d;
	transform: translateY(-2px);
}

.cfn-dashboard-card.cfn-card-highlight {
	border-color: rgba(255, 89, 0, 0.3);
	background-image: linear-gradient(135deg, #12151c 0%, rgba(255, 89, 0, 0.03) 100%);
}

.cfn-card-icon {
	font-size: 24px;
	margin-bottom: 16px;
}

.cfn-dashboard-card h3 {
	font-size: 14px;
	font-family: 'Outfit', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999999;
	margin-bottom: 12px;
}

.cfn-card-value {
	font-size: 20px;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 6px;
}

.cfn-card-sub {
	font-size: 13px;
	color: #666666;
	margin: 0;
}

.cfn-dashboard-section h3 {
	font-size: 20px;
	font-family: 'Outfit', sans-serif;
	color: #ffffff;
	margin-bottom: 20px;
}

.cfn-dashboard-checklist {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.cfn-checklist-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	background-color: #12151c;
	border: 1px solid var(--border-color);
	padding: 20px;
	border-radius: 4px;
}

.cfn-check-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50px;
	background-color: #1a1e26;
	border: 1px solid var(--border-color);
	color: #666666;
	font-size: 12px;
	font-weight: bold;
	flex-shrink: 0;
}

.cfn-checklist-item.done .cfn-check-icon {
	background-color: rgba(255, 89, 0, 0.15);
	border-color: var(--primary);
	color: var(--primary);
}

.cfn-check-text strong {
	display: block;
	font-size: 15px;
	color: #ffffff;
	margin-bottom: 4px;
}

.cfn-check-text p {
	font-size: 13px;
	color: #999999;
	margin: 0;
}

/* Reports Specific Styles */
.cfn-reports-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cfn-report-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #12151c;
	border: var(--border-thick) solid var(--border-color);
	padding: 24px 30px;
	border-radius: 4px;
	gap: 20px;
}

.cfn-report-meta {
	display: flex;
	align-items: center;
	gap: 20px;
}

.cfn-report-icon {
	font-size: 32px;
}

.cfn-report-info h4 {
	font-size: 16px;
	color: #ffffff;
	margin-bottom: 4px;
	font-family: 'Outfit', sans-serif;
}

.cfn-report-info p {
	font-size: 13px;
	color: #666666;
	margin: 0;
}

.cfn-btn-small {
	padding: 10px 18px;
	font-size: 13px;
}

/* --- QUEM SOMOS (ABOUT PAGE) STYLING --- */
.cfn-fullwidth-page-wrapper {
	width: 100%;
	background-color: var(--bg-color);
}

.cfn-about-container {
	width: 100%;
}

.cfn-about-section {
	width: 100%;
	padding: 100px 0;
	background-color: var(--bg-color);
}

.cfn-about-section-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

/* Divisor de seção igual ao da Home, mas laranja */
.cfn-about-section-divider {
	display: block;
	width: 100%;
	height: 2px;
	min-height: 2px;
	border: none;
	background: linear-gradient(to right,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.15) 12%,
			rgba(255, 255, 255, 0.15) 88%,
			rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
	margin: 0;
}

.cfn-about-header-section {
	padding: 100px 0 80px 0;
	background: radial-gradient(circle at 10% 20%, rgba(26, 30, 38, 0.4) 0%, rgba(12, 12, 12, 0.4) 90%);
}

.cfn-about-main-title {
	font-family: 'Outfit', sans-serif;
	font-weight: 900;
	font-size: 64px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0;
}

.cfn-about-pretitle {
	display: inline-block;
	color: var(--primary);
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.cfn-about-title {
	font-family: 'Outfit', sans-serif;
	font-size: 36px;
	color: #ffffff;
	margin-bottom: 20px;
}

.cfn-about-section-title {
	font-family: 'Outfit', sans-serif;
	font-weight: 900;
	font-size: 48px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0;
}

/* Missão e Visão em uma mesma seção */
.cfn-about-mv-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 45px;
}

.cfn-about-mv-card {
	background: #161a22;
	border: 2px solid #222222;
	padding: 50px 40px;
	text-align: left;
	position: relative;
	overflow: hidden;
	border-radius: 0;
	transition: opacity 0.8s var(--ease-precise), transform 0.8s var(--ease-precise), border-color 0.3s, background-color 0.3s;
}

.cfn-about-mv-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--primary);
}

.cfn-about-mv-card:hover {
	border-color: rgba(255, 89, 0, 0.4);
	transform: translateY(-5px);
	background: #161a22;
}

.cfn-about-title-large {
	font-family: 'Outfit', sans-serif;
	font-weight: 900;
	font-size: 40px;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0 0 20px 0;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.cfn-about-mv-text {
	font-family: 'Outfit', sans-serif;
	font-size: 18px;
	line-height: 1.65;
	color: #bbbbbb;
	margin: 0;
	font-style: italic;
}

/* Valores Section Header - Linha vertical vermelha/laranja do lado */
.cfn-about-section-header {
	border-left: 3px solid var(--primary);
	padding-left: 20px;
	margin-bottom: 45px;
}

/* Valores Grid */
.cfn-mv-valores-full {
	grid-column: span 2;
}

.cfn-about-valores-inner-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 35px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 35px;
}

.cfn-value-card-num {
	font-family: 'Outfit', sans-serif;
	font-size: 24px;
	font-weight: 900;
	color: var(--primary);
	margin-bottom: 15px;
	line-height: 1;
}

.cfn-value-card-title {
	font-family: 'Outfit', sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.cfn-value-card-desc {
	font-size: 14px;
	line-height: 1.6;
	color: #999999;
	margin: 0;
}

/* Direção Técnica e Clínica */
.cfn-about-direcao {
	background: radial-gradient(circle at center, #0f141d 0%, #07090e 100%);
	padding: 100px 0;
}

.cfn-about-direcao-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
	background: #0d0f12;
	border: 2px solid #222222;
	padding: 60px 50px;
	position: relative;
}

.cfn-about-direcao-grid::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--primary);
}

/* Diablo Character Pop-out Visual Effect */
.cfn-direcao-static-wrapper {
	width: 100%;
	max-width: 320px;
	aspect-ratio: 4 / 5;
	margin: 0 auto 20px;
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	padding: 2px;
	background: rgba(255, 255, 255, 0.15);
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.cfn-direcao-static-wrapper::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(from 0deg, transparent 0%, var(--primary) 25%, transparent 50%, var(--primary) 75%, transparent 100%);
	animation: cfn-border-spin 4s linear infinite;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.cfn-direcao-inner-box {
	position: relative;
	width: 100%;
	height: 100%;
	background: #0d0f12;
	border-radius: 4px;
	overflow: hidden;
	z-index: 2;
}

.cfn-direcao-static-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	display: block;
}

.cfn-direcao-static-wrapper:hover {
	background: transparent;
	box-shadow: 0 15px 35px rgba(255, 89, 0, 0.25);
}

.cfn-direcao-static-wrapper:hover::before {
	opacity: 1;
}

.cfn-direcao-static-wrapper:hover .cfn-direcao-static-img {
	transform: scale(1.04);
}

@keyframes cfn-border-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.cfn-direcao-name {
	font-family: 'Ethnocentric', sans-serif;
	font-size: 24px;
	color: #ffffff;
	margin-top: 15px;
	margin-bottom: 8px;
	letter-spacing: 1px;
	text-align: center;
}

.cfn-direcao-role {
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--primary);
	display: block;
	font-weight: 700;
	text-align: center;
}

.cfn-direcao-divider {
	width: 40px;
	height: 3px;
	background-color: var(--primary);
	margin: 20px 0;
}

.cfn-direcao-desc {
	font-size: 15px;
	line-height: 1.6;
	color: #bbbbbb;
	margin-bottom: 20px;
}

.cfn-direcao-desc:last-child {
	margin-bottom: 0;
}

/* --- MOBILE RESPONSIVENESS SYSTEM --- */

@media (max-width: 1024px) {
	.cfn-header-container {
		padding: 0 24px;
	}

	.cfn-nav-list {
		gap: 24px;
	}

	.cfn-hero-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.cfn-hero-visual {
		height: 400px;
	}
}

@media (max-width: 768px) {
	.cfn-menu-toggle {
		display: flex;
	}

	.cfn-navigation {
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		height: calc(100vh - 80px);
		background-color: var(--bg-dark);
		border-top: 1px solid var(--border-color);
		padding: 40px;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: transform 0.5s var(--ease-precise), opacity 0.5s var(--ease-precise), visibility 0.5s var(--ease-precise);
		z-index: 1000;
	}

	.cfn-header.menu-open .cfn-navigation {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.cfn-nav-list {
		flex-direction: column;
		gap: 30px;
		width: 100%;
	}

	.cfn-nav-link {
		font-size: 24px;
		color: #ffffff;
		display: inline-block;
	}

	.cfn-logo-svg-wrapper svg [fill="#ffffff"] {
		fill: #ffffff !important;
	}

	.cfn-header.menu-open {
		background-color: var(--bg-dark);
		border-bottom-color: var(--border-color);
	}

	.cfn-header.menu-open .cfn-logo-svg-wrapper svg [fill="#ffffff"] {
		fill: #ffffff !important;
	}

	.cfn-header.menu-open .cfn-toggle-line {
		background-color: #ffffff;
	}

	.cfn-hero-title {
		font-size: 42px;
	}

	.cfn-hero-visual {
		height: 320px;
	}

	.cfn-pillars-container {
		grid-template-columns: 1fr;
	}

	.cfn-pillar-card {
		padding: 30px 20px;
	}

	.cfn-cta-title {
		font-size: 32px;
	}

	/* Dashboard Mobile Overrides */
	.cfn-restricted-card {
		padding: 30px 20px;
	}

	.cfn-dashboard-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.cfn-dashboard-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.cfn-report-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		width: 100%;
	}
	
	.cfn-report-item .cfn-btn-small {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	/* Quem Somos Mobile Overrides */
	.cfn-about-mv-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.cfn-mv-valores-full {
		grid-column: span 1;
	}

	.cfn-about-valores-inner-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.cfn-about-direcao-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 45px 25px;
	}

	.cfn-about-direcao-visual {
		max-width: 400px;
		margin: 0 auto;
		width: 100%;
	}

	.cfn-about-direcao-info {
		text-align: center;
	}

	.cfn-direcao-divider {
		margin: 20px auto;
	}
}

@media (max-width: 640px) {
	.cfn-about-valores-inner-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   SPA & MASSOTERAPIA PAGE STYLES
   ========================================================================== */

.cfn-spa-grid-section {
	padding: 60px 0 100px;
}

.cfn-spa-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 35px;
}

/* SPA Card matching exactly the theme styling */
.cfn-spa-card {
	background: rgba(22, 26, 34, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 40px;
	border-radius: 0px; /* Theme angular style */
	position: relative;
	transition: all 0.3s var(--ease-precise);
	display: flex;
	gap: 40px;
	align-items: center;
}

.cfn-spa-card:hover {
	border-color: rgba(255, 89, 0, 0.3);
	background: rgba(22, 26, 34, 0.8);
	transform: translateY(-3px);
}

/* Vector holder */
.cfn-spa-vector-wrapper {
	flex-shrink: 0;
	width: 140px;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px dashed rgba(255, 255, 255, 0.1);
	padding: 15px;
	transition: all 0.3s var(--ease-precise);
}

.cfn-spa-card:hover .cfn-spa-vector-wrapper {
	border-color: rgba(255, 89, 0, 0.4);
	background: rgba(255, 89, 0, 0.03);
}

.cfn-spa-vector-wrapper svg {
	width: 100%;
	height: 100%;
}

/* Card Body */
.cfn-spa-card-info {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.cfn-spa-card-meta {
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 700;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
}

.cfn-spa-card-title {
	font-family: var(--font-head);
	font-size: 18px;
	font-weight: 900;
	color: #ffffff;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.cfn-spa-card-desc {
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.6;
	color: #bbbbbb;
	margin: 0 0 20px;
	font-weight: 300;
}

.cfn-spa-card-action {
	margin-top: auto;
	align-self: flex-start;
}

/* Page Intro/CTA sections */
.cfn-spa-intro-text {
	font-size: 18px;
	line-height: 1.7;
	color: #bbbbbb;
	margin-bottom: 50px;
	font-weight: 300;
	max-width: 800px;
}

.cfn-spa-footer-cta {
	text-align: center;
	padding: 80px 40px;
	background: rgba(15, 17, 20, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.05);
	margin-top: 60px;
}

.cfn-spa-footer-cta h2 {
	font-family: var(--font-head);
	font-size: 28px;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.cfn-spa-footer-cta p {
	font-size: 16px;
	color: #bbbbbb;
	margin-bottom: 30px;
	font-weight: 300;
}

/* Responsive grid layout */
@media (max-width: 991px) {
	.cfn-spa-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.cfn-spa-card {
		flex-direction: column;
		text-align: center;
		padding: 24px;
	}
	
	.cfn-spa-card-action {
		align-self: center;
	}
}

@media (max-width: 1024px) {
	.cfn-header-right {
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.cfn-header-cta {
		display: none !important;
	}
}