:root {
	--primary-blue: rgb(63, 114, 175);
	--blue-dark: rgb(50, 95, 147);
	--blue-light: rgba(63, 114, 175, 0.1);
	--blue-ultra-light: rgba(63, 114, 175, 0.05);
	--accent-cyan: #1E3A8A;
	--accent-purple: #8B5CF6;
	--white: #ffffff;
	--gray-50: #F8FAFC;
	--gray-100: #F1F5F9;
	--gray-200: #E2E8F0;
	--gray-300: #CBD5E1;
	--gray-400: #94A3B8;
	--gray-500: #64748B;
	--gray-600: #475569;
	--gray-700: #334155;
	--gray-800: #1E293B;
	--gray-900: #0F172A;
	--gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
	--gradient-dark: linear-gradient(135deg, var(--gray-800), var(--gray-900));
	--gradient-light: linear-gradient(135deg, var(--gray-50), var(--white));
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
	color: var(--gray-900);
	overflow-x: hidden;
	background: var(--white);
}
/* === HEADER === */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 1);
	backdrop-filter: blur(24px);
	border-bottom: 1px solid var(--gray-200);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled {
	background: rgba(255, 255, 255, 1);
	box-shadow: var(--shadow-lg);
	border-bottom-color: var(--gray-300);
}
.nav-container {
	max-width: 1550px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	transition: height 0.4s ease;
}
.header.scrolled .nav-container {
	height: 70px;
}
.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	transition: transform 0.3s ease;
}
.logo:hover {
	transform: scale(1.02);
}
.logo-icon {
	height: 58px;
	overflow: hidden;
	transition: all 0.3s ease;
}
.header.scrolled .logo-icon {
	height: 52px;
}
.logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.nav-links {
	display: flex;
	list-style: none;
	gap: 2.5rem;
	align-items: center;
}
.nav-links a {
	color: var(--gray-600);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	padding: 0.75rem 0;
	position: relative;
	transition: color 0.3s ease;
}
.nav-links a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover,.nav-links a.active {
	color: var(--primary-blue);
}
.nav-links a:hover::before,.nav-links a.active::before {
	width: 100%;
}
.nav-cta {
	background: var(--gradient-primary) !important;
	color: var(--white) !important;
	padding: 0.75rem 1.75rem !important;
	border-radius: 12px !important;
	font-weight: 600 !important;
	box-shadow: var(--shadow-md) !important;
	transition: all 0.3s ease !important;
}
.nav-cta::before {
	display: none !important;
}
.nav-cta:hover {
	transform: translateY(-2px) !important;
	box-shadow: var(--shadow-xl) !important;
}
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--gray-600);
	cursor: pointer;
	padding: 0.5rem;
}
/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--white);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, var(--blue-ultra-light) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(63, 114, 175, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue-ultra-light);
    border: 1px solid var(--blue-light);
    color: var(--primary-blue);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.hero-highlight {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.8);
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
    backdrop-filter: blur(20px);
}

.btn-outline:hover {
    background: var(--white);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === BANNER STACK === */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 550px;
}

.banner-item {
    width: 100%;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(59, 130, 246, 0.1);
}

.banner-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.banner-item:hover img {
    transform: scale(1.05);
}

/* === SECTIONS === */
.section {
	padding: 8rem 2rem;
	position: relative;
}
.section-container {
	max-width: 1400px;
	margin: 0 auto;
}
.section-header {
	text-align: center;
	margin-bottom: 4rem;
}
.section-badge {
	display: inline-block;
	background: var(--blue-ultra-light);
	color: var(--primary-blue);
	padding: 0.6rem 1.2rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
	border: 1px solid var(--blue-light);
}
.section-title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 800;
	color: var(--gray-900);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}



.section-subtitle {
	font-size: 1.2rem;
	color: var(--gray-600);
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.7;
}
.highlight {
	background: var(--gradient-primary);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}
/* === SERVIÇOS === */
.services {
	/* background: var(--gray-50);
	*/
	position: relative;
}
.services::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*background:radial-gradient(circle at 80% 20%, var(--blue-ultra-light) 0%, transparent 50%),radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
	*/
	z-index: 1;
}
.services .section-container {
	position: relative;
	z-index: 2;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}
.service-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 3rem 2rem;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid var(--gray-200);
	position: relative;
	overflow: hidden;
}
.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-primary);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}
.service-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: var(--shadow-xl);
	color: var(--white);
	cursor: pointer;
}
.service-card:hover::before {
	opacity: 1;
}
.service-icon {
	font-size: 3rem;
	color: var(--primary-blue);
	margin-bottom: 1.5rem;
	transition: color 0.3s ease;
}
.service-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--gray-800);
	transition: color 0.3s ease;
}
.service-card p {
	color: var(--gray-600);
	font-size: 1rem;
	line-height: 1.6;
	transition: color 0.3s ease;
}
/* === SOBRE === */
.about {
	background: var(--white);
	position: relative;
	padding: 10rem 2rem;
}
.about .section-container {
	max-width: 1200px;
	margin: 0 auto;
}
.about .section-badge {
	background: var(--blue-light);
	color: var(--primary-blue);
	border: 1px solid rgba(63, 114, 175, 0.2);
}
.about .section-title {
	color: var(--gray-900);
}
.about .section-subtitle {
	color: var(--gray-600);
	margin-bottom: 6rem;
	max-width: 600px;
}
.about-quote {
	text-align: center;
	margin: 8rem 0;
	padding: 4rem 2rem;
	background: var(--gray-50);
	border-radius: 24px;
	position: relative;
}
.about-quote::before {
	content: '"';
	font-size: 8rem;
	color: var(--blue-light);
	position: absolute;
	top: -2rem;
	left: 50%;
	transform: translateX(-50%);
	font-family: serif;
	line-height: 1;
}
.about-quote-text {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--gray-800);
	font-style: italic;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}
.about-quote-author {
	font-size: 1rem;
	color: var(--primary-blue);
	font-weight: 600;
}
/* === ESTATÍSTICAS & DIFERENCIAIS === */
.stats-section {
	background: linear-gradient(135deg, var(--gray-900) 0%, #0a0e1a 100%);
	position: relative;
	overflow: hidden;
	padding: 10rem 2rem;
}
.stats-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 1;
}
.stats-gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.15;
	animation: orbFloat 25s ease-in-out infinite;
}
.stats-orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--primary-blue), transparent);
	top: -200px;
	left: -200px;
	animation-delay: 0s;
}
.stats-orb-2 {
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, var(--accent-purple), transparent);
	bottom: -300px;
	right: -300px;
	animation-delay: 7s;
}
.stats-grid-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:linear-gradient(rgba(63, 114, 175, 0.03) 1px, transparent 1px),linear-gradient(90deg, rgba(63, 114, 175, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.5;
}
.stats-section .section-container {
	position: relative;
	z-index: 2;
}
.stats-header {
	text-align: center;
	margin-bottom: 5rem;
}
.stats-badge {
	background: rgba(63, 114, 175, 0.15);
	border-color: rgba(63, 114, 175, 0.3);
}
.stats-title {
	color: var(--white);
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2.5rem;
	margin-bottom: 8rem;
}
.stat-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 3rem 2rem;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}
.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-primary);
	opacity: 0;
	transition: opacity 0.4s ease;
}
.stat-card:hover {
	transform: translateY(-12px) scale(1.03);
	border-color: rgba(63, 114, 175, 0.5);
	box-shadow:0 25px 50px -12px rgba(63, 114, 175, 0.25),0 0 0 1px rgba(63, 114, 175, 0.1);
}
.stat-card:hover::before {
	opacity: 0.05;
}
.stat-icon {
	font-size: 2.5rem;
	color: var(--primary-blue);
	margin-bottom: 1.5rem;
	transition: all 0.4s ease;
}
.stat-card:hover .stat-icon {
	transform: scale(1.2) rotateY(360deg);
	color: var(--accent-cyan);
}
.stat-number {
	font-size: 4rem;
	font-weight: 800;
	color: var(--white);
	line-height: 1;
	margin-bottom: 0.5rem;
	background: var(--gradient-primary);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	animation: countUp 0.8s ease-out;
}
.stat-suffix {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 1rem;
}
.stat-label {
	font-size: 1.1rem;
	color: var(--gray-400);
	font-weight: 500;
}
.differentials-container {
	margin-top: 8rem;
}
.differentials-header {
	text-align: center;
	margin-bottom: 4rem;
}
.differentials-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: var(--white);
	margin-bottom: 1rem;
}
.differentials-subtitle {
	font-size: 1.2rem;
	color: var(--gray-400);
	max-width: 700px;
	margin: 0 auto;
}
.differentials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}
.differential-card {
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}
.differential-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(63, 114, 175, 0.1), rgba(139, 92, 246, 0.1));
	opacity: 0;
	transition: opacity 0.4s ease;
}
.differential-card:hover {
	transform: translateY(-8px);
	border-color: rgba(63, 114, 175, 0.4);
	box-shadow:0 20px 40px -12px rgba(63, 114, 175, 0.2),0 0 0 1px rgba(63, 114, 175, 0.1);
}
.differential-card:hover::before {
	opacity: 1;
}
.differential-icon-wrapper {
	position: relative;
	display: inline-block;
	margin-bottom: 1.5rem;
}
.differential-icon {
	width: 70px;
	height: 70px;
	background: rgba(63, 114, 175, 0.15);
	border: 2px solid rgba(63, 114, 175, 0.3);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}
.differential-icon::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: var(--gradient-primary);
	border-radius: 18px;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}
.differential-card:hover .differential-icon {
	transform: scale(1.1) rotate(5deg);
	background: rgba(63, 114, 175, 0.25);
	border-color: var(--primary-blue);
	animation: glowPulse 2s ease-in-out infinite;
}
.differential-card:hover .differential-icon::before {
	opacity: 0.2;
}
.differential-icon i {
	font-size: 1.75rem;
	color: var(--primary-blue);
	transition: all 0.4s ease;
}
.differential-card:hover .differential-icon i {
	color: var(--white);
	transform: scale(1.1);
}
.differential-card h4 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1rem;
	transition: color 0.3s ease;
}
.differential-card p {
	font-size: 1rem;
	color: var(--gray-400);
	line-height: 1.7;
	transition: color 0.3s ease;
}
.differential-card:hover p {
	color: var(--gray-300);
}
/* === PHC BANNER === */
.phc-banner {
	position: relative;
	background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
	border-radius: 30px;
	padding: 4rem 3rem;
	margin-top: 6rem;
	overflow: hidden;
	text-align: center;
}
.phc-banner-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.phc-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	background:radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent),radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
	background-repeat: repeat;
	background-size: 200px 100px;
	animation: sparkle 15s linear infinite;
}
.phc-gradient-orb {
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
	border-radius: 50%;
	animation: orbFloat 20s ease-in-out infinite;
}
.phc-banner-content {
	position: relative;
	z-index: 3;
	color: white;
}
.phc-banner-text h2 {
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.phc-banner-text p {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	margin-bottom: 3rem;
	opacity: 0.95;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.phc-banner-actions {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}
.phc-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.2rem 2.5rem;
	border-radius: 16px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	min-width: 160px;
	justify-content: center;
}
.phc-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.6s;
}
.phc-btn:hover::before {
	left: 100%;
}
.phc-btn-primary {
	background: rgba(255, 255, 255, 0.95);
	color: var(--primary-blue);
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(20px);
}
.phc-btn-primary:hover {
	background: white;
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.phc-btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(20px);
}
.phc-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.6);
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.phc-btn i {
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}
.phc-btn:hover i {
	transform: scale(1.2);
}
/* === FLOATING ELEMENTS === */
.floating-element {
	position: absolute;
	border-radius: 50%;
	background: var(--gradient-primary);
	opacity: 0.1;
	animation: modernFloat 12s ease-in-out infinite;
	z-index: 1;
}
.floating-element:nth-child(1) {
	width: 100px;
	height: 100px;
	top: 10%;
	left: 5%;
	animation-delay: 0s;
}
.floating-element:nth-child(2) {
	width: 150px;
	height: 150px;
	top: 60%;
	right: 5%;
	animation-delay: 4s;
}
.floating-element:nth-child(3) {
	width: 80px;
	height: 80px;
	top: 30%;
	left: 80%;
	animation-delay: 8s;
}
/* === ANIMAÇÕES === */
@keyframes modernFloat {
	0%, 100% {
		transform: translateY(0px) rotate(0deg) scale(1);
	}
	33% {
		transform: translateY(-30px) rotate(120deg) scale(1.1);
	}
	66% {
		transform: translateY(20px) rotate(240deg) scale(0.9);
	}
}
@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes pulseGlow {
	0% {
		box-shadow: 0 0 0 0 rgba(63, 114, 175, 0.4);
	}
	70% {
		box-shadow: 0 0 0 20px rgba(63, 114, 175, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(63, 114, 175, 0);
	}
}
@keyframes sparkle {
	0% {
		transform: translateY(0px);
	}
	100% {
		transform: translateY(-100px);
	}
}
@keyframes orbFloat {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
		opacity: 0.3;
	}
	33% {
		transform: translate(-100px, -50px) rotate(120deg);
		opacity: 0.5;
	}
	66% {
		transform: translate(50px, -30px) rotate(240deg);
		opacity: 0.2;
	}
}
@keyframes countUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes glowPulse {
	0%, 100% {
		box-shadow: 0 0 20px rgba(63, 114, 175, 0.3);
	}
	50% {
		box-shadow: 0 0 40px rgba(63, 114, 175, 0.6);
	}
}
/* === RESPONSIVIDADE === */
@media (max-width: 1200px) {
	.hero-container {
		max-width: 1200px;
		gap: 4rem;
	}
	.carousel-container {
		max-width: 700px;
		height: 520px;
	}
	.carousel-item {
		width: 520px;
		height: 360px;
	}
}
@media (max-width: 1500px) {
/* Menu móvel - estado base */
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        border-bottom: 1px solid var(--gray-200);
    }

    /* Menu aberto */
    nav.active {
        max-height: 600px;
        box-shadow: var(--shadow-lg);
    }

    /* Links - SEMPRE visível quando nav.active */
    .nav-links {
        display: flex !important;
        flex-direction: column;
        list-style: none;
        padding: 1rem 0;
        gap: 0;
    }

    .nav-links li {
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-links li a {
        display: block;
        padding: 1rem 2rem;
    }

    .nav-links a::before {
        display: none;
    }

    /* Botão móvel animado */
    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active i {
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }

    /* Dropdown no mobile */
    .dropdown-menu {
        display: none;
        flex-direction: column;
        background: var(--gray-50);
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
@media (max-width: 991px) {

    /* Hero responsive */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
        padding: 2rem 1rem;
    }

    .hero-visual {
        order: -1;
    }

    /* Carousel */
    .carousel-container {
        height: 450px;
        max-width: 600px;
    }

    .carousel-item {
        width: 450px;
        height: 320px;
    }

    /* Sections */
    .section {
        padding: 6rem 1rem;
    }

    .stats-section {
        padding: 6rem 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 6rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .differentials-container {
        margin-top: 6rem;
    }

    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* PHC Banner */
    .phc-banner {
        padding: 3rem 2rem;
        border-radius: 20px;
        margin-top: 4rem;
    }

    .phc-banner-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .phc-btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
    }
}

@media (max-width: 768px) {
	.hero-cta {
		flex-direction: column;
		width: 100%;
	}
	.btn {
		width: 100%;
		justify-content: center;
	}
	.carousel-container {
		height: 400px;
		max-width: 500px;
	}
	.carousel-item {
		width: 380px;
		height: 280px;
	}
	.carousel-btn {
		width: 56px;
		height: 56px;
	}
}
@media (max-width: 480px) {
	.hero-container {
		padding: 2rem 1rem;
	}
	.carousel-container {
		height: 350px;
		max-width: 400px;
	}
	.carousel-item {
		width: 320px;
		height: 240px;
	}
	.carousel-controls {
		bottom: -80px;
		gap: 1.5rem;
	}
	.carousel-btn {
		width: 48px;
		height: 48px;
		font-size: 1rem;
	}
	.services-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.service-card {
		padding: 2rem 1.5rem;
	}
	.about-quote {
		margin: 4rem 0;
		padding: 3rem 1.5rem;
	}
	.about-quote::before {
		font-size: 6rem;
		top: -1rem;
	}
	.about-quote-text {
		font-size: 1.25rem;
	}
	.stats-section {
		padding: 5rem 1rem;
	}
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-bottom: 5rem;
	}
	.stat-card {
		padding: 2rem 1.5rem;
	}
	.stat-number {
		font-size: 2.5rem;
	}
	.stat-suffix {
		font-size: 1.2rem;
	}
	.differentials-container {
		margin-top: 5rem;
	}
	.differentials-header {
		margin-bottom: 3rem;
	}
	.differential-card {
		padding: 2rem 1.5rem;
	}
	.differential-icon {
		width: 60px;
		height: 60px;
	}
	.differential-icon i {
		font-size: 1.5rem;
	}
	.phc-banner {
		padding: 2rem 1.5rem;
		margin-top: 3rem;
	}
	.phc-banner-text h2 {
		margin-bottom: 1rem;
	}
	.phc-banner-text p {
		margin-bottom: 2rem;
	}
	.phc-btn {
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
	}
	.phc-btn i {
		font-size: 1.1rem;
	}
}
/* === FOOTER ULTRA MODERNO === */
.footer {
	background: linear-gradient(135deg, #0a0e1a 0%, var(--gray-900) 100%);
	position: relative;
	overflow: hidden;
	color: var(--white);
}
.footer-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.footer-grid-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:linear-gradient(rgba(63, 114, 175, 0.05) 1px, transparent 1px),linear-gradient(90deg, rgba(63, 114, 175, 0.05) 1px, transparent 1px);
	background-size: 40px 40px;
	opacity: 0.4;
}
.footer-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.1;
}
.footer-orb-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--primary-blue), transparent);
	top: -250px;
	right: -150px;
}
.footer-orb-2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, var(--accent-purple), transparent);
	bottom: -200px;
	left: -100px;
}
.footer-container {
	max-width: 1500px;
	margin: 0 auto;
	padding: 6rem 2rem 2rem;
	position: relative;
	z-index: 2;
}
.footer-top {
	display: grid;
	grid-template-columns: 3fr 2fr 2fr 3fr;
	gap: 4rem;
	padding-bottom: 4rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 3rem;
}
.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.footer-logo {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.footer-logo-img {
	height: 77px;
	/* Mesmo tamanho da navbar */
	width: auto;
    object-fit: contain;
	transition: transform 0.3s ease;
}
.footer-logo-img:hover {
	transform: scale(1.05);
}
/* Responsive - Ajustes do logo */
@media (max-width: 1024px) {
	.footer-logo-img {
		height: 70px;
	}
}
@media (max-width: 768px) {
	.footer-logo-img {
		height: 60px;
	}
}
@media (max-width: 480px) {
	.footer-logo-img {
		height: 50px;
	}
}
.footer-logo-text {
	font-size: 1.75rem;
	font-weight: 800;
	background: var(--gradient-primary);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}
.footer-description {
	font-size: 1rem;
	color: var(--gray-400);
	line-height: 1.7;
	max-width: 350px;
}
.footer-social {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}
.social-link {
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-400);
	text-decoration: none;
	font-size: 1.25rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-link:hover {
	background: var(--primary-blue);
	color: var(--white);
	border-color: var(--primary-blue);
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 10px 30px rgba(63, 114, 175, 0.3);
}
.footer-column {
	display: flex;
	flex-direction: column;
}
.footer-column h4 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.75rem;
}
.footer-column h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: var(--gradient-primary);
	border-radius: 2px;
}
.footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.footer-link {
	color: var(--gray-400);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	position: relative;
	padding-left: 0;
}
.footer-link::before {
	content: '';
	position: absolute;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-blue);
	transition: width 0.3s ease;
}
.footer-link:hover {
	color: var(--white);
	padding-left: 1rem;
}
.footer-link:hover::before {
	width: 12px;
}
.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.25rem;
	color: var(--gray-400);
	font-size: 0.95rem;
}
.footer-contact-icon {
	width: 40px;
	height: 40px;
	background: rgba(63, 114, 175, 0.1);
	border: 1px solid rgba(63, 114, 175, 0.2);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-blue);
	font-size: 1.1rem;
	flex-shrink: 0;
	transition: all 0.3s ease;
}
.footer-contact-item:hover .footer-contact-icon {
	background: var(--primary-blue);
	color: var(--white);
	transform: scale(1.1);
}
.footer-contact-text {
	flex: 1;
}
.footer-contact-label {
	font-size: 0.85rem;
	color: var(--gray-500);
	margin-bottom: 0.25rem;
}
.footer-contact-value {
	color: var(--gray-300);
	font-weight: 500;
}
.footer-contact-value a {
	color: var(--gray-300);
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer-contact-value a:hover {
	color: var(--primary-blue);
}
/* Newsletter */
.footer-newsletter {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 2rem;
	margin-top: 1rem;
	backdrop-filter: blur(20px);
}
.newsletter-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 0.5rem;
}
.newsletter-text {
	font-size: 0.9rem;
	color: var(--gray-400);
	margin-bottom: 1.25rem;
	line-height: 1.6;
}
.newsletter-form {
	display: flex;
	gap: 0.75rem;
}
.newsletter-input {
	flex: 1;
	padding: 0.875rem 1.25rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	color: var(--white);
	font-size: 0.95rem;
	transition: all 0.3s ease;
	outline: none;
}
.newsletter-input::placeholder {
	color: var(--gray-500);
}
.newsletter-input:focus {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--primary-blue);
}
.newsletter-btn {
	padding: 0.875rem 1.75rem;
	background: var(--gradient-primary);
	border: none;
	border-radius: 10px;
	color: var(--white);
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}
.newsletter-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(63, 114, 175, 0.4);
}
/* Footer Bottom */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2rem;
	flex-wrap: wrap;
	gap: 1.5rem;
}
.footer-copyright {
	color: var(--gray-400);
	font-size: 0.9rem;
}
.footer-copyright strong {
	color: var(--primary-blue);
	font-weight: 600;
}
.footer-legal {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}
.footer-legal-link {
	color: var(--gray-400);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}
.footer-legal-link:hover {
	color: var(--primary-blue);
}
.footer-certificates {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.certificate-badge {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 0.75rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.3s ease;
}
.certificate-badge:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--primary-blue);
	transform: translateY(-2px);
}
.certificate-icon {
	font-size: 1.5rem;
	color: var(--primary-blue);
}
.certificate-text {
	font-size: 0.85rem;
	color: var(--gray-300);
	font-weight: 600;
}
/* Scroll to Top Button */
.scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 56px;
	height: 56px;
	background: var(--gradient-primary);
	border: none;
	border-radius: 50%;
	color: var(--white);
	font-size: 1.25rem;
	cursor: pointer;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 30px rgba(63, 114, 175, 0.3);
}
.scroll-top.visible {
	opacity: 1;
	visibility: visible;
}
.scroll-top:hover {
	transform: translateY(-4px) scale(1.1);
	box-shadow: 0 15px 40px rgba(63, 114, 175, 0.5);
}
/* Responsividade Footer */
@media (max-width: 1200px) {
	.footer-top {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 3rem;
	}
	.footer-brand {
		grid-column: 1 / -1;
	}
}
@media (max-width: 768px) {
	.footer-container {
		padding: 4rem 1.5rem 2rem;
	}
	.footer-top {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		padding-bottom: 3rem;
	}
	.footer-brand {
		grid-column: 1;
	}
	.newsletter-form {
		flex-direction: column;
	}
	.newsletter-btn {
		width: 100%;
	}
	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	.footer-legal {
		justify-content: center;
		gap: 1.5rem;
	}
	.footer-certificates {
		flex-wrap: wrap;
		justify-content: center;
	}
	.scroll-top {
		bottom: 1.5rem;
		right: 1.5rem;
		width: 48px;
		height: 48px;
		font-size: 1.1rem;
	}
}
@media (max-width: 480px) {
	.footer-social {
		flex-wrap: wrap;
	}
	.social-link {
		width: 44px;
		height: 44px;
		font-size: 1.1rem;
	}
	.footer-newsletter {
		padding: 1.5rem;
	}
	.certificate-badge {
		padding: 0.6rem 1.2rem;
		font-size: 0.8rem;
	}
}

.footer-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-badge-img {
    height: 48px;  /* mesmo tamanho dos social-link */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
	opacity: 1;
}


/* Responsivo */
@media (max-width: 480px) {
    .footer-badge-img {
        height: 44px;
    }
}



.footer-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badge-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}


/* ================================HELP SECTION - ULTRA MODERN DESIGN================================ */
.help-section {
	background: linear-gradient(135deg, #0a0e1a 0%, var(--gray-900) 50%, #0a0e1a 100%);
	position: relative;
	overflow: hidden;
	padding: 10rem 2rem;
}
/* Background Effects */
.help-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	overflow: hidden;
}
.help-gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.15;
	animation: orbFloat 30s ease-in-out infinite;
}
.help-orb-1 {
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, var(--primary-blue), transparent);
	top: -300px;
	left: -200px;
	animation-delay: 0s;
}
.help-orb-2 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--accent-purple), transparent);
	bottom: -250px;
	right: -150px;
	animation-delay: 10s;
}
.help-orb-3 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.8), transparent);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 20s;
}
.help-grid-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:linear-gradient(rgba(63, 114, 175, 0.03) 1px, transparent 1px),linear-gradient(90deg, rgba(63, 114, 175, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	opacity: 0.6;
}
/* Animated Lines */
.help-animated-lines {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}
.animated-line {
	position: absolute;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
	opacity: 0.3;
	animation: lineMove 8s linear infinite;
}
.line-1 {
	width: 100%;
	top: 20%;
	animation-delay: 0s;
}
.line-2 {
	width: 100%;
	top: 50%;
	animation-delay: 3s;
}
.line-3 {
	width: 100%;
	top: 80%;
	animation-delay: 6s;
}
@keyframes lineMove {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}
	50% {
		opacity: 0.3;
	}
	100% {
		transform: translateX(100%);
		opacity: 0;
	}
}
/* Container */
.help-section .section-container {
	position: relative;
	z-index: 2;
	max-width: 1480px;
	margin: 0 auto;
}
/* Header */
.help-header {
	text-align: center;
	margin-bottom: 6rem;
	animation: fadeInUp 0.8s ease-out;
}
.help-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(63, 114, 175, 0.15);
	border: 1px solid rgba(63, 114, 175, 0.3);
	color: var(--primary-blue);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
}
.help-badge i {
	font-size: 1.1rem;
}
.help-title {
	color: var(--white);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.help-title-evo {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}


.highlight-gradient {
	background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan), var(--accent-purple));
	background-size: 200% 200%;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	animation: gradientShift 5s ease infinite;
}
@keyframes gradientShift {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}
.help-subtitle {
	font-size: 1.25rem;
	color: var(--gray-400);
	max-width: 900px;
	margin: 0 auto;
	line-height: 1.8;
}

/* Layout Base das Grids */
.help-cards-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem; /* Espaço entre as duas grids */
}

/* Grid superior (2 itens) - Centralizada em telas grandes */
.grid-2-columns {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: 850px; /* Evita que os 2 cards fiquem demasiado largos */
    margin-left: auto;
    margin-right: auto;
}

        /* Cards Grid */
        .help-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .help-card {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .help-card:hover {
            transform: translateY(-10px);
            border-color: rgba(63, 114, 175, 0.4);
            box-shadow: 0 30px 60px -12px rgba(63, 114, 175, 0.3), 0 0 0 1px rgba(63, 114, 175, 0.1);
        }

        .help-card-glow {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .help-card:hover .help-card-glow {
            opacity: 1;
        }

        .help-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .help-card-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            transition: all 0.4s ease;
			color: var(--accent-cyan);
        }

        .help-card:hover .help-card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .help-card-badge {
            display: flex;
        }

        .badge {
            padding: 0.5rem 1rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .help-card-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            position: relative;
            z-index: 2;
        }

        .help-card-description {
            color: var(--gray-400);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .help-card-features {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: var(--gray-300);
        }

        .feature-icon {
            font-size: 1rem;
            margin-top: 0.125rem;
            flex-shrink: 0;
        }

        .divider {
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            z-index: 2;
        }

        .divider-title {
            color: var(--gray-300);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .extra-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .extra-features li {
            color: var(--gray-400);
            font-size: 0.85rem;
            padding: 0.25rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .extra-features li span {
            position: absolute;
            left: 0;
        }

        .footer-note {
            color: var(--gray-500);
            font-size: 0.85rem;
            font-style: italic;
            margin-top: 0.75rem;
            margin-bottom: 0;
        }

		@media (max-width: 768px) {
			/* esconder todas as colunas de planos */
			.feature-cell,
			.plan-header {
				display: none;
				cursor: pointer;
				opacity: 0.6;
			}

			/* mostrar só o plano ativo */
			.active-plan {
				display: flex !important;
				opacity: 1;
				border: 2px solid #8b5cf6;
			}

			/* labels sempre visíveis */
			.feature-row-label,
			.feature-row-label-empty {
				display: flex;
			}

			/* grid passa a 2 colunas */
			.comparison-grid {
				grid-template-columns: 1fr 1fr;
				min-width: auto;
			}
		}

		


        
/* Container de Scroll para Mobile */
.comparison-wrapper {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2rem;
}

/* Grelha Principal (1 coluna para etiquetas + 5 colunas para planos) */
.comparison-grid {
    display: grid;
    grid-template-columns: 240px repeat(5, 200px);
    width: max-content;
    gap: 10px;
    padding: 1rem;
	color: white;
}

/* Headers dos Planos */
.plan-header {
    text-align: center;
    padding: 1.5rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
	
}

.plan-name {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

/* Estilo das Células de Conteúdo */
.feature-row-label {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: var(--gray-300);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.feature-row-label-empty {
    display: flex;
    align-items: center;
    padding: 1rem;
    font-size: 1.1rem;

    border-radius: 8px;
}


.feature-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.01);
    color: var(--gray-400);
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-cell-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: var(--gray-400);
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}

/* Efeito de destaque na linha ao passar o rato */
.feature-cell:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

/* Ícones de Check e Minus */
.feature-cell .fa-check { color: #8b5cf6; }
.feature-cell .fa-minus { opacity: 0.3; }

/* Manter os estilos de cores que já tinhas */
.corporate .help-card-icon { background: linear-gradient(135deg, #22c55e, #10b981); width: 45px; height: 45px; font-size: 1.2rem; }
.advanced .help-card-icon { background: linear-gradient(135deg, #22c55e, #10b981); width: 45px; height: 45px; font-size: 1.2rem; }
.enterprise .help-card-icon { background: linear-gradient(135deg, #8b5cf6, #6366f1); width: 45px; height: 45px; font-size: 1.2rem; }


/* Responsividade: No mobile, o utilizador faz scroll lateral na tabela */
@media (max-width: 768px) {
    .comparison-grid {
        min-width: 800px;
    }
}






.badge-premium,.badge-cloud, .badge-evolution {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	backdrop-filter: blur(10px);
}
.badge-premium {
	background: rgba(255, 215, 0, 0.15);
	border: 1px solid rgba(255, 215, 0, 0.3);
	color: #FFD700;
}
.badge-cloud {
	background: rgba(30, 58, 138, 0.15);
	border: 1px solid rgba(30, 58, 138, 0.3);
	color: #507eff;
}
.badge-evolution {
	background: rgba(124, 58, 237, 0.15);
	border: 1px solid rgba(124, 58, 237, 0.3);
	color: #a78bfa;
}

.help-card-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 1.25rem;
}
.help-card-description {
	font-size: 1.05rem;
	color: var(--gray-400);
	line-height: 1.8;
	margin-bottom: 2rem;
}
/* Features */
.help-card-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-bottom: 2rem;
	flex: 1;
}
.feature-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
}
.feature-item:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(63, 114, 175, 0.3);
	transform: translateX(5px);
}
.feature-icon {
	color: var(--primary-blue);
	font-size: 1.1rem;
	flex-shrink: 0;
}
.go-feature {
	color: var(--accent-cyan);
}
.feature-item span {
	font-size: 0.9rem;
	color: var(--gray-300);
	font-weight: 500;
}
/* Card Footer */
.help-card-footer {
	margin-top: auto;
	padding-top: 2rem;
}
.help-card-btn {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 1.125rem 2rem;
	background: var(--gradient-primary);
	color: var(--white);
	text-decoration: none;
	border-radius: 14px;
	font-weight: 600;
	font-size: 1.05rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}
.help-card-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.6s;
}
.help-card-btn:hover::before {
	left: 100%;
}
.help-card-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(63, 114, 175, 0.4);
}
.btn-go {
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
}
.help-card-btn i {
	transition: transform 0.3s ease;
}
.help-card-btn:hover i {
	transform: translateX(5px);
}
/* Visual Mockup */
.help-card-visual {
	position: relative;
	padding: 2rem 3rem 3rem;
	background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.05));
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.visual-mockup {
	position: relative;
	width: 100%;
	height: 250px;
	transform-style: preserve-3d;
	transition: transform 0.6s ease;
}
.help-card-large:hover .visual-mockup {
	transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}
.mockup-screen {
	position: relative;
	width: 100%;
	height: 65%;
	background: linear-gradient(135deg, rgba(10, 14, 26, 0.9), rgba(30, 41, 59, 0.9));
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(63, 114, 175, 0.2);
}
.mockup-screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
	transition: opacity 0.4s ease, transform 0.6s ease;
}
.help-card-large:hover .mockup-screen img {
	opacity: 1;
	transform: scale(1.05);
}
.mockup-decoration {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 150px;
	height: 150px;
	background: radial-gradient(circle, rgba(63, 114, 175, 0.3), transparent);
	border-radius: 50%;
	filter: blur(40px);
	pointer-events: none;
}
.go-decoration {
	background: radial-gradient(circle, rgba(30, 58, 138, 0.3), transparent);
}
/* Medium Cards */
.help-card-medium {
	grid-column: span 3;
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.help-card-medium::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(63, 114, 175, 0.1), rgba(139, 92, 246, 0.1));
	opacity: 0;
	transition: opacity 0.4s ease;
}
.help-card-medium:hover {
	transform: translateY(-8px);
	border-color: rgba(63, 114, 175, 0.4);
	box-shadow: 0 20px 40px rgba(63, 114, 175, 0.2);
}
.help-card-medium:hover::before {
	opacity: 1;
}
.help-card-number {
	position: absolute;
	top: -10px;
	right: 20px;
	font-size: 6rem;
	font-weight: 900;
	color: rgba(63, 114, 175, 0.08);
	line-height: 1;
	pointer-events: none;
	transition: all 0.4s ease;
}
.help-card-medium:hover .help-card-number {
	color: rgba(63, 114, 175, 0.15);
	transform: scale(1.1);
}
.help-card-icon-box {
	width: 60px;
	height: 60px;
	background: rgba(63, 114, 175, 0.15);
	border: 2px solid rgba(63, 114, 175, 0.3);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--primary-blue);
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
	transition: all 0.4s ease;
}
.help-card-medium:hover .help-card-icon-box {
	transform: scale(1.1) rotate(5deg);
	background: rgba(63, 114, 175, 0.25);
	border-color: var(--primary-blue);
	box-shadow: 0 10px 30px rgba(63, 114, 175, 0.3);
}
.help-card-medium h4 {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}
.help-card-medium p {
	font-size: 0.95rem;
	color: var(--gray-400);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
}
.help-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--primary-blue);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}
.help-card-link i {
	transition: transform 0.3s ease;
}
.help-card-link:hover {
	gap: 1rem;
	color: var(--accent-cyan);
}
.help-card-link:hover i {
	transform: translateX(5px);
}
/* Stats Bar */
.help-stats-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 2.5rem 3rem;
	margin-bottom: 5rem;
	position: relative;
	overflow: hidden;
}
.help-stats-bar::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(63, 114, 175, 0.1), transparent);
	animation: shimmer 3s infinite;
}
@keyframes shimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}
.help-stat-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	position: relative;
	z-index: 2;
}
.stat-icon-wrapper {
	width: 60px;
	height: 60px;
	background: rgba(63, 114, 175, 0.15);
	border: 2px solid rgba(63, 114, 175, 0.3);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--primary-blue);
	flex-shrink: 0;
}
.stat-content {
	display: flex;
	flex-direction: column;
}
.help-stats-bar .stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--white);
	line-height: 1;
	margin-bottom: 0.25rem;
	background: var(--gradient-primary);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}
.stat-text {
	font-size: 0.9rem;
	color: var(--gray-400);
	font-weight: 500;
}
.help-stat-divider {
	width: 1px;
	height: 60px;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
/* CTA Section */
.help-cta-section {
	background: linear-gradient(135deg, rgba(63, 114, 175, 0.1), rgba(139, 92, 246, 0.1));
	backdrop-filter: blur(20px);
	border: 1px solid rgba(63, 114, 175, 0.3);
	border-radius: 24px;
	padding: 4rem 3rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.help-cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 50%, rgba(63, 114, 175, 0.15), transparent);
	pointer-events: none;
}
.help-cta-content {
	position: relative;
	z-index: 2;
	margin-bottom: 2.5rem;
}
.help-cta-content h3 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: var(--white);
	margin-bottom: 1rem;
}
.help-cta-content p {
	font-size: 1.125rem;
	color: var(--gray-400);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}
.help-cta-actions {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}
.btn-large {
	padding: 1.25rem 2.5rem;
	font-size: 1.05rem;
}
/* Responsive Design */
@media (max-width: 1200px) {
	.help-cards-grid {
		grid-template-columns: repeat(6, 1fr);
	}
	.help-card-large {
		grid-column: span 6;
	}
	.help-card-medium {
		grid-column: span 3;
	}
	.help-card-features {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 968px) {
	.help-section {
		padding: 6rem 1rem;
	}
	.help-header {
		margin-bottom: 4rem;
	}
	.help-cards-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.help-card-large,.help-card-medium {
		grid-column: span 1;
	}
	.help-card-large {
		min-height: auto;
	}
	.help-card-content {
		padding: 2rem;
	}
	.help-card-visual {
		padding: 1.5rem 2rem 2rem;
	}
	.visual-mockup {
		height: 200px;
	}
	.help-stats-bar {
		flex-direction: column;
		gap: 2rem;
		padding: 2rem;
	}
	.help-stat-divider {
		width: 100%;
		height: 1px;
	}
	.help-cta-section {
		padding: 3rem 2rem;
	}
	.help-cta-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.btn-large {
		width: 100%;
		justify-content: center;
	}
}
@media (max-width: 480px) {
	.help-section {
		padding: 5rem 1rem;
	}
	.help-card-content {
		padding: 1.5rem;
	}
	.help-card-medium {
		padding: 2rem 1.5rem;
	}
	.help-card-number {
		font-size: 4rem;
		right: 10px;
	}
	.help-stats-bar {
		padding: 1.5rem;
	}
	.help-stat-item {
		gap: 1rem;
	}
	.stat-icon-wrapper {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
	}
	.help-stats-bar .stat-number {
		font-size: 2rem;
	}
	.help-cta-section {
		padding: 2rem 1.5rem;
	}
}
/* ================================CONTACT SECTION - ULTRA MODERN================================ */
.contact-section {
	background: var(--white);
	position: relative;
	overflow: hidden;
	padding: 8rem 2rem;
}
/* Background Effects */
.contact-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	pointer-events: none;
}

.contact-grid-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:linear-gradient(rgba(63, 114, 175, 0.02) 1px, transparent 1px),linear-gradient(90deg, rgba(63, 114, 175, 0.02) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}
.contact-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.15;
}
.contact-orb-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(63, 114, 175, 0.3), transparent);
	top: -200px;
	right: -150px;
}
.contact-orb-2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent);
	bottom: -150px;
	left: -100px;
}
/* Container */
.contact-section .section-container {
	position: relative;
	z-index: 2;
}
.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
	align-items: start;
}
/* Left Side - Info */
.contact-info {
	position: sticky;
	top: 120px;
}
.contact-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(63, 114, 175, 0.1);
	border: 1px solid rgba(63, 114, 175, 0.2);
	color: var(--primary-blue);
	padding: 0.65rem 1.25rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}
.contact-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: var(--gray-900);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}
.contact-description {
	font-size: 1.125rem;
	color: var(--gray-600);
	line-height: 1.7;
	margin-bottom: 3rem;
}
/* Contact Details */
.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.contact-detail-item {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	padding: 1.5rem;
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: 16px;
	transition: all 0.3s ease;
}
.contact-detail-item:hover {
	background: var(--white);
	border-color: var(--primary-blue);
	transform: translateX(5px);
	box-shadow: 0 10px 30px rgba(63, 114, 175, 0.1);
}
.contact-detail-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.25rem;
	flex-shrink: 0;
}
.contact-detail-content h4 {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 0.25rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.contact-detail-content p {
	font-size: 1rem;
	color: var(--gray-600);
	margin: 0;
}
.contact-detail-content a {
	color: var(--gray-600);
	text-decoration: none;
	transition: color 0.3s ease;
}
.contact-detail-content a:hover {
	color: var(--primary-blue);
}
/* Right Side - Form */
.contact-form-wrapper {
	background: var(--white);
	border: 2px solid var(--gray-200);
	border-radius: 24px;
	padding: 3rem;
	box-shadow: 0 20px 60px -15px rgba(63, 114, 175, 0.1);
}
/* ================================
   CONTACT FORM STYLES - CORRIGIDO
   ================================ */

.contact-form {
    width: 100%; /* Garante que o form ocupa a largura do pai */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%; /* Garante largura total */
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%; /* OBRIGATÓRIO: Garante que o input estica */
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-label i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%; /* Garante largura total */
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    transition: all 0.3s ease;
    box-sizing: border-box; /* Previne que o padding aumente a largura */
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(63, 114, 175, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* Checkbox */
.form-checkbox-group {
    margin-top: 0.5rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
}

.form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    background: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 2px;
}

.form-checkbox input[type="checkbox"]:checked ~ .checkbox-custom {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.form-checkbox input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.checkbox-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.checkbox-link:hover {
    color: var(--accent-cyan);
    text-decoration: underline;
}

/* Submit Button - CORRIGIDO */
.btn-submit {
    width: 100%; /* CORREÇÃO: Força largura total */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(63, 114, 175, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-icon {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

/* Form Message */
.form-message {
    display: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    margin-top: 0.5rem;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Tablet */
@media (max-width: 1024px) {
    .contact-section {
        padding: 6rem 1.5rem;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-info {
        position: static;
    }
    .contact-form-wrapper {
        padding: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1rem;
    }
    .contact-wrapper {
        gap: 2.5rem;
    }
    .contact-form-wrapper {
        padding: 2rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .contact-details {
        gap: 1rem;
    }
    .contact-detail-item {
        padding: 1.25rem;
    }
    .contact-detail-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .btn-submit {
        padding: 1.125rem 2rem;
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 1rem;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }
    .contact-form {
        gap: 1.25rem;
    }
    .form-input, .form-select, .form-textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    .btn-submit {
        padding: 1rem 1.5rem;
    }
}

/* Hero Section */
.services-hero {
	background: linear-gradient(135deg, #0a0e1a 0%, var(--gray-900) 50%, #0a0e1a 100%);
	position: relative;
	overflow: hidden;
	padding: 12rem 2rem 8rem;
	margin-top: 40px;
	margin-bottom: 20px;
}
.services-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.services-hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:linear-gradient(rgba(63, 114, 175, 0.05) 1px, transparent 1px),linear-gradient(90deg, rgba(63, 114, 175, 0.05) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: patternMove 20s linear infinite;
}
@keyframes patternMove {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(50px, 50px);
	}
}
.services-hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.2;
}
.hero-orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--primary-blue), transparent);
	top: -300px;
	right: -200px;
	animation: orbFloat 15s ease-in-out infinite;
}
.hero-orb-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--accent-purple), transparent);
	bottom: -250px;
	left: -150px;
	animation: orbFloat 20s ease-in-out infinite;
	animation-delay: 5s;
}
.services-hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}
.services-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	font-size: 0.9rem;
	color: var(--gray-400);
	margin-bottom: 2rem;
}
.breadcrumb-link {
	color: var(--gray-400);
	text-decoration: none;
	transition: color 0.3s ease;
}
.breadcrumb-link:hover {
	color: var(--primary-blue);
}
.breadcrumb-separator {
	color: var(--gray-600);
}
.services-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(63, 114, 175, 0.15);
	border: 1px solid rgba(63, 114, 175, 0.3);
	color: var(--primary-blue);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
}
.services-hero-title {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 900;
	color: var(--white);
	margin-bottom: 1.5rem;
	line-height: 1.1;
}
.services-hero-title .gradient-text {
	background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan), var(--accent-purple));
	background-size: 200% 200%;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	animation: gradientShift 5s ease infinite;
}
.services-hero-description {
	font-size: 1.25rem;
	color: var(--gray-300);
	line-height: 1.8;
	margin-bottom: 2.5rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.services-hero-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
	margin-top: 3rem;
}
.hero-stat {
	text-align: center;
}
.hero-stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	background: var(--gradient-primary);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	line-height: 1;
	margin-bottom: 0.5rem;
}
.hero-stat-label {
	font-size: 0.95rem;
	color: var(--gray-400);
	font-weight: 500;
}
/* Services Grid Section */
.services-grid-section {
	background: var(--white);
	padding: 8rem 2rem;
	position: relative;
}
.services-grid-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: linear-gradient(180deg, var(--gray-50), transparent);
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 3rem;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
/* Service Card */
.service-card {
	background: var(--white);
	border: 2px solid var(--gray-200);
	border-radius: 24px;
	padding: 3rem;
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
}
.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(63, 114, 175, 0.05), rgba(139, 92, 246, 0.05));
	opacity: 0;
	transition: opacity 0.5s ease;
}
.service-card:hover {
	transform: translateY(-10px);
	border-color: var(--primary-blue);
	box-shadow:0 30px 60px -15px rgba(63, 114, 175, 0.3),0 0 0 1px rgba(63, 114, 175, 0.1);
}
.service-card:hover::before {
	opacity: 1;
}
.service-card-number {
	position: absolute;
	top: -20px;
	right: 30px;
	font-size: 8rem;
	font-weight: 900;
	color: rgba(63, 114, 175, 0.05);
	line-height: 1;
	pointer-events: none;
	transition: all 0.5s ease;
}
.service-card:hover .service-card-number {
	color: rgba(63, 114, 175, 0.1);
	transform: scale(1.1);
}
.service-card-header {
	position: relative;
	z-index: 2;
	margin-bottom: 2rem;
}
.service-card-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--white);
	margin-bottom: 1.5rem;
	transition: all 0.4s ease;
	box-shadow: 0 10px 30px rgba(63, 114, 175, 0.3);
}
.service-card:hover .service-card-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 20px 40px rgba(63, 114, 175, 0.4);
}
.service-card-title {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--gray-900);
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}
.service-card-description {
	font-size: 1.05rem;
	color: var(--gray-600);
	line-height: 1.7;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
	flex: 1;
}
.service-card-features {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}
.service-feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.95rem;
	color: var(--gray-700);
}
.service-feature i {
	color: var(--primary-blue);
	font-size: 1rem;
	flex-shrink: 0;
}
.service-card-footer {
	position: relative;
	z-index: 2;
	margin-top: auto;
}
.service-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: var(--gradient-primary);
	color: var(--white);
	text-decoration: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}
.service-card-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.6s;
}
.service-card-link:hover::before {
	left: 100%;
}
.service-card-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(63, 114, 175, 0.4);
}
.service-card-link i {
	transition: transform 0.3s ease;
}
.service-card-link:hover i {
	transform: translateX(5px);
}
/* Service Card Variants */
.service-card.infraestruturas .service-card-icon {
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
}
.service-card.consultadoria .service-card-icon {
	background: linear-gradient(135deg, var(--accent-purple), var(--primary-blue));
}
/* Why Choose Section */
.why-choose-section {
	background: var(--gray-50);
	padding: 6rem 2rem;
}
.why-choose-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}
.why-choose-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: var(--gray-900);
	margin-bottom: 1rem;
}
.why-choose-subtitle {
	font-size: 1.125rem;
	color: var(--gray-600);
	line-height: 1.7;
}
.why-choose-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	max-width: 1400px;
	margin: 0 auto;
}
.why-choose-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
}
.why-choose-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-blue);
	box-shadow: 0 15px 40px rgba(63, 114, 175, 0.15);
}
.why-choose-icon {
	width: 70px;
	height: 70px;
	background: rgba(63, 114, 175, 0.1);
	border: 2px solid rgba(63, 114, 175, 0.2);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	color: var(--primary-blue);
	margin: 0 auto 1.5rem;
	transition: all 0.3s ease;
}
.why-choose-card:hover .why-choose-icon {
	background: var(--primary-blue);
	border-color: var(--primary-blue);
	color: var(--white);
	transform: scale(1.1);
}
.why-choose-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 0.75rem;
}
.why-choose-card p {
	font-size: 0.95rem;
	color: var(--gray-600);
	line-height: 1.6;
}
/* ================================RESPONSIVE DESIGN================================ */
@media (max-width: 1024px) {
	.services-hero {
		padding: 10rem 1.5rem 6rem;
	}
	.services-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.services-grid-section {
		padding: 6rem 1.5rem;
	}
}
@media (max-width: 768px) {
	.services-hero {
		padding: 8rem 1rem 5rem;
	}
	.services-hero-stats {
		gap: 2rem;
	}
	.hero-stat-number {
		font-size: 2rem;
	}
	.services-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.service-card {
		padding: 2.5rem 2rem;
	}
	.service-card-number {
		font-size: 6rem;
		right: 20px;
	}
	.service-card-icon {
		width: 70px;
		height: 70px;
		font-size: 1.75rem;
	}
	.services-grid-section {
		padding: 4rem 1rem;
	}
	.why-choose-section {
		padding: 4rem 1rem;
	}
	.why-choose-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}
@media (max-width: 480px) {
	.services-hero {
		padding: 7rem 1rem 4rem;
	}
	.services-breadcrumb {
		font-size: 0.85rem;
	}
	.services-hero-badge {
		padding: 0.65rem 1.25rem;
		font-size: 0.85rem;
	}
	.service-card {
		padding: 2rem 1.5rem;
	}
	.service-card-number {
		font-size: 5rem;
	}
	.service-card-title {
		font-size: 1.5rem;
	}
}
/* ================================SERVICES TIMELINE - ULTRA MODERN================================ */
.services-timeline-section {
	background: var(--white);
	position: relative;
	padding: 8rem 2rem;
	overflow: hidden;
}
.timeline-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.timeline-grid {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:linear-gradient(rgba(63, 114, 175, 0.02) 1px, transparent 1px),linear-gradient(90deg, rgba(63, 114, 175, 0.02) 1px, transparent 1px);
	background-size: 50px 50px;
}
.timeline-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.1;
}
.orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(63, 114, 175, 0.4), transparent);
	top: -200px;
	left: -100px;
}
.orb-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
	bottom: -150px;
	right: -50px;
}
.timeline-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.timeline-header {
	text-align: center;
	margin-bottom: 6rem;
}
/* Timeline Structure */
.services-timeline {
	position: relative;
	padding: 4rem 0;
}
.timeline-line {
	position: absolute;
	left: 80px;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg,var(--gray-200) 0%,var(--primary-blue) 50%,var(--gray-200) 100%);
	border-radius: 2px;
}
.timeline-progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background: var(--gradient-primary);
	border-radius: 2px;
	transition: height 0.3s ease;
}
/* Timeline Items */
.timeline-item {
	position: relative;
	margin-bottom: 6rem;
	opacity: 0;
	transform: translateY(50px);
	animation: fadeInUp 0.8s ease forwards;
}
.timeline-item:nth-child(1) {
	animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
	animation-delay: 0.3s;
}
.timeline-item:nth-child(3) {
	animation-delay: 0.5s;
}
/* Timeline Marker */
.timeline-marker {
	position: absolute;
	left: 51px;
	top: 40px;
	z-index: 10;
}
.marker-outer {
	width: 60px;
	height: 60px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(63, 114, 175, 0.2);
}
.marker-inner {
	width: 48px;
	height: 48px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-weight: 800;
	font-size: 1.1rem;
	position: relative;
	transition: all 0.4s ease;
}
.marker-infraestrutura {
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
}
.marker-consultadoria {
	background: linear-gradient(135deg, var(--accent-purple), var(--primary-blue));
}
.timeline-item:hover .marker-inner {
	transform: scale(1.15) rotate(360deg);
	box-shadow: 0 0 30px rgba(63, 114, 175, 0.5);
}
.marker-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid var(--primary-blue);
	opacity: 0;
	animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.6;
	}
	100% {
		transform: translate(-50%, -50%) scale(2);
		opacity: 0;
	}
}
/* Timeline Content */
.timeline-content {
	margin-left: 150px;
	background: var(--white);
	border: 2px solid var(--gray-200);
	border-radius: 24px;
	padding: 0;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}
.timeline-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(63, 114, 175, 0.03), rgba(139, 92, 246, 0.03));
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}
.timeline-content:hover {
	transform: translateX(10px);
	border-color: var(--primary-blue);
	box-shadow:0 20px 60px -15px rgba(63, 114, 175, 0.3),0 0 0 1px rgba(63, 114, 175, 0.1);
}
.timeline-content:hover::before {
	opacity: 1;
}
.timeline-content-wrapper {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 3rem;
	padding: 3rem;
	position: relative;
	z-index: 2;
}
/* Left Side */
.timeline-left {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.timeline-icon-box {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}
.icon-box-infraestrutura {
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
}
.icon-box-consultadoria {
	background: linear-gradient(135deg, var(--accent-purple), var(--primary-blue));
}
.timeline-content:hover .timeline-icon-box {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 20px 40px rgba(63, 114, 175, 0.4);
}
.timeline-icon-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
	animation: iconPulse 3s ease-in-out infinite;
}
@keyframes iconPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.2);
		opacity: 0;
	}
}
.timeline-icon {
	font-size: 2.5rem;
	color: var(--white);
	z-index: 2;
	transition: transform 0.3s ease;
}
.timeline-content:hover .timeline-icon {
	transform: scale(1.1);
}
.timeline-title-group {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.timeline-tag {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: rgba(63, 114, 175, 0.1);
	border: 1px solid rgba(63, 114, 175, 0.2);
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--primary-blue);
	width: fit-content;
}
.timeline-title {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--gray-900);
	line-height: 1.3;
}
/* Right Side */
.timeline-right {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.timeline-description {
	font-size: 1rem;
	color: var(--gray-600);
	line-height: 1.8;
}
.timeline-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
.timeline-feature-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1rem;
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	transition: all 0.3s ease;
}
.timeline-feature-item:hover {
	background: var(--white);
	border-color: var(--primary-blue);
	transform: translateX(5px);
}
.feature-icon-wrapper {
	width: 28px;
	height: 28px;
	background: var(--gradient-primary);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.feature-icon-wrapper i {
	font-size: 0.75rem;
	color: var(--white);
}
.timeline-feature-item span {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--gray-700);
}
.timeline-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: var(--gradient-primary);
	color: var(--white);
	text-decoration: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	width: fit-content;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}
.timeline-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.6s;
}
.timeline-btn:hover::before {
	left: 100%;
}
.timeline-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(63, 114, 175, 0.4);
}
.timeline-btn i {
	transition: transform 0.3s ease;
}
.timeline-btn:hover i {
	transform: translateX(5px);
}
/* ================================RESPONSIVE DESIGN================================ */
@media (max-width: 1024px) {
	.timeline-content-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 2.5rem;
	}
	.timeline-left {
		flex-direction: row;
		align-items: center;
	}
	.timeline-icon-box {
		width: 80px;
		height: 80px;
	}
	.timeline-icon {
		font-size: 2rem;
	}
}
@media (max-width: 768px) {
	.services-timeline-section {
		padding: 6rem 1rem;
	}
	.timeline-line {
		left: 30px;
	}
	.timeline-marker {
		left: 5px;
		top: 20px;
	}
	.marker-outer {
		width: 50px;
		height: 50px;
	}
	.marker-inner {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}
	.timeline-content {
		margin-left: 80px;
	}
	.timeline-content-wrapper {
		padding: 2rem 1.5rem;
	}
	.timeline-left {
		flex-direction: column;
		align-items: flex-start;
	}
	.timeline-icon-box {
		width: 70px;
		height: 70px;
	}
	.timeline-icon {
		font-size: 1.75rem;
	}
	.timeline-title {
		font-size: 1.5rem;
	}
	.timeline-features {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 480px) {
	.timeline-header {
		margin-bottom: 4rem;
	}
	.timeline-item {
		margin-bottom: 4rem;
	}
	.timeline-content {
		margin-left: 70px;
	}
	.timeline-content-wrapper {
		padding: 1.5rem 1rem;
	}
	.timeline-title {
		font-size: 1.25rem;
	}
	.timeline-description {
		font-size: 0.95rem;
	}
}
/* ================================CONTACT PAGE - SIMPLE VERSION================================ */
.contact-form-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 0.5rem;
}
.contact-form-subtitle {
	font-size: 1rem;
	color: var(--gray-600);
	margin-bottom: 2rem;
	line-height: 1.6;
}
.form-disclaimer {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--gray-500);
	margin-top: 1rem;
	padding: 1rem;
	background: var(--gray-50);
	border-radius: 8px;
}
.form-disclaimer i {
	color: var(--primary-blue);
	font-size: 1rem;
}
/* ================================CONTACT MAP - INTEGRATED (SEM BOTÃO)================================ */
.contact-map-section {
	margin-top: 4rem;
	background: var(--white);
	border: 2px solid var(--gray-200);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}
.contact-map-section:hover {
	border-color: var(--primary-blue);
	box-shadow: 0 20px 60px rgba(63, 114, 175, 0.15);
}
.contact-map-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 2rem 2.5rem;
	background: linear-gradient(135deg, var(--gray-50), var(--white));
	border-bottom: 1px solid var(--gray-200);
}
.contact-map-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--white);
	flex-shrink: 0;
	box-shadow: 0 10px 25px rgba(63, 114, 175, 0.25);
}
.contact-map-text {
	flex: 1;
}
.contact-map-text h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 0.25rem;
}
.contact-map-text p {
	font-size: 0.95rem;
	color: var(--gray-600);
	line-height: 1.5;
}
.contact-map-container {
    position: relative;
    width: 100%;
    height: 450px;
    pointer-events: auto !important;
}
.contact-map-container iframe {
    pointer-events: auto !important;
    touch-action: pan-x pan-y pinch-zoom !important;
}

/* Responsive */
@media (max-width: 968px) {
	.contact-map-header {
		padding: 2rem;
		gap: 1.25rem;
	}
	.contact-map-container {
		height: 400px;
	}
}
@media (max-width: 768px) {
	.contact-map-section {
		margin-top: 3rem;
		border-radius: 20px;
	}
	.contact-map-header {
		padding: 1.5rem;
	}
	.contact-map-icon {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
	}
	.contact-map-text h3 {
		font-size: 1.25rem;
	}
	.contact-map-text p {
		font-size: 0.9rem;
	}
	.contact-map-container {
		height: 350px;
	}
}
@media (max-width: 480px) {
	.contact-map-header {
		flex-direction: column;
		align-items: flex-start;
		padding: 1.25rem;
	}
	.contact-map-icon {
		align-self: center;
	}
	.contact-map-text {
		text-align: center;
	}
	.contact-map-container {
		height: 300px;
	}
}
/* ================================ABOUT PAGE - ULTRA MODERN================================ */
/* About Hero */
.about-hero {
	background: linear-gradient(135deg, #0a0e1a 0%, var(--gray-900) 50%, #0a0e1a 100%);
	position: relative;
	overflow: hidden;
	padding: 12rem 2rem 8rem;
	margin-top: 80px;
}
.about-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.about-hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:linear-gradient(rgba(63, 114, 175, 0.05) 1px, transparent 1px),linear-gradient(90deg, rgba(63, 114, 175, 0.05) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: patternMove 20s linear infinite;
}
.about-hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.2;
	animation: orbFloat 20s ease-in-out infinite;
}
.about-hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}
.about-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(63, 114, 175, 0.15);
	border: 1px solid rgba(63, 114, 175, 0.3);
	color: var(--primary-blue);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
}
.about-hero-title {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 900;
	color: var(--white);
	margin-bottom: 1.5rem;
	line-height: 1.1;
}
.about-hero-description {
	font-size: 1.25rem;
	color: var(--gray-300);
	line-height: 1.8;
	margin-bottom: 3rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
/* About Stats Bar */
.about-stats-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	padding: 2.5rem 3rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	flex-wrap: wrap;
}
.about-stat {
	text-align: center;
}
.about-stat-number {
	font-size: 3rem;
	font-weight: 800;
	background: var(--gradient-primary);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	line-height: 1;
	margin-bottom: 0.5rem;
}
.about-stat-label {
	font-size: 0.95rem;
	color: var(--gray-400);
	font-weight: 500;
}
.about-stat-divider {
	width: 1px;
	height: 60px;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
/* About Story Section */
.about-story-section {
	background: var(--white);
	padding: 8rem 2rem;
}
.about-story-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
}
.about-story-visual {
	position: relative;
}
.about-story-image {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.about-story-image img {
	width: 100%;
	height: auto;
	display: block;
}
.about-story-badge {
	position: absolute;
	bottom: 2rem;
	left: 2rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.5rem;
	background: var(--gradient-primary);
	border-radius: 12px;
	color: var(--white);
	font-weight: 600;
	box-shadow: 0 10px 30px rgba(63, 114, 175, 0.4);
}
.about-story-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.about-story-text {
	font-size: 1.05rem;
	color: var(--gray-600);
	line-height: 1.8;
}
.about-story-highlights {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 1rem;
}
.story-highlight {
	display: flex;
	gap: 1.25rem;
	padding: 1.5rem;
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: 16px;
	transition: all 0.3s ease;
}
.story-highlight:hover {
	background: var(--white);
	border-color: var(--primary-blue);
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(63, 114, 175, 0.1);
}
.story-highlight-icon {
	width: 50px;
	height: 50px;
	background: var(--gradient-primary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.25rem;
	flex-shrink: 0;
}
.story-highlight-content h4 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 0.25rem;
}
.story-highlight-content p {
	font-size: 0.95rem;
	color: var(--gray-600);
	line-height: 1.5;
}
/* Expertise Section */
.expertise-section {
	background: var(--gray-50);
	padding: 8rem 2rem;
	position: relative;
}
.expertise-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.expertise-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:linear-gradient(rgba(63, 114, 175, 0.02) 1px, transparent 1px),linear-gradient(90deg, rgba(63, 114, 175, 0.02) 1px, transparent 1px);
	background-size: 40px 40px;
}
.expertise-section .section-container {
	position: relative;
	z-index: 2;
}
.expertise-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}
.expertise-card {
	background: var(--white);
	border: 2px solid var(--gray-200);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	text-align: center;
	transition: all 0.4s ease;
}
.expertise-card:hover {
	border-color: var(--primary-blue);
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(63, 114, 175, 0.15);
}
.expertise-card-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--white);
	margin: 0 auto 1.5rem;
	transition: transform 0.3s ease;
}
.expertise-card:hover .expertise-card-icon {
	transform: scale(1.1) rotate(5deg);
}
.expertise-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 1rem;
}
.expertise-card p {
	font-size: 0.95rem;
	color: var(--gray-600);
	line-height: 1.6;
}
/* About CTA Section */
.about-cta-section {
	padding: 6rem 2rem;
	background: var(--white);
}
.about-cta-card {
	background: var(--gradient-primary);
	border-radius: 30px;
	padding: 4rem 3rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
	position: relative;
	overflow: hidden;
}
.about-cta-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1), transparent),radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05), transparent);
	pointer-events: none;
}
.about-cta-content {
	flex: 1;
	position: relative;
	z-index: 2;
}
.about-cta-content h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: var(--white);
	margin-bottom: 1rem;
}
.about-cta-content p {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}
.about-cta-actions {
	display: flex;
	gap: 1.5rem;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}
/* Responsive */
@media (max-width: 1024px) {
	.about-hero {
		padding: 10rem 1.5rem 6rem;
	}
	.about-story-grid {
		grid-template-columns: 1fr;
		gap: 4rem;
	}
	.about-cta-card {
		flex-direction: column;
		text-align: center;
	}
	.about-cta-actions {
		flex-direction: column;
		width: 100%;
	}
	.about-cta-actions .btn {
		width: 100%;
		justify-content: center;
	}
}
@media (max-width: 768px) {
	.about-hero {
		padding: 8rem 1rem 5rem;
	}
	.about-stats-bar {
		gap: 2rem;
		padding: 2rem 1.5rem;
	}
	.about-stat-divider {
		display: none;
	}
	.about-story-section {
		padding: 6rem 1rem;
	}
	.expertise-section {
		padding: 6rem 1rem;
	}
	.expertise-grid {
		grid-template-columns: 1fr;
	}
	.about-cta-section {
		padding: 4rem 1rem;
	}
	.about-cta-card {
		padding: 3rem 2rem;
	}
}
@media (max-width: 480px) {
	.about-stats-bar {
		flex-direction: column;
		gap: 2rem;
	}
	.about-story-badge {
		left: 1rem;
		bottom: 1rem;
		padding: 0.75rem 1.25rem;
		font-size: 0.9rem;
	}
	.story-highlight {
		padding: 1.25rem;
	}
}
/* Ripple effect */
.ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	pointer-events: none;
}
/* Custom cursor */
.custom-cursor {
	position: fixed;
	width: 20px;
	height: 20px;
	border: 2px solid var(--primary-color, #007bff);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transition: width 0.3s, height 0.3s;
}
.custom-cursor.cursor-hover {
	width: 40px;
	height: 40px;
}
/* Performance optimization */
.service-card,.help-card,.footer-column {
	will-change: transform, opacity;
}
/* Hardware acceleration */
.btn,.service-icon,.nav-links a {
	transform: translateZ(0);
	backface-visibility: hidden;
}




/* === DROPDOWN MENU === */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    min-width: 280px;
    padding: 0.5rem 0;
    margin-top: 1rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem !important;
    color: var(--gray-700) !important;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-menu a::before {
    display: none !important;
}

.dropdown-menu a i {
    font-size: 1.1rem;
    color: var(--primary-blue);
    min-width: 20px;
}

.dropdown-menu a span {
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: var(--blue-ultra-light);
    color: var(--primary-blue) !important;
}

/* Seta indicadora do dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid var(--gray-200);
    border-top: 1px solid var(--gray-200);
    rotate: 45deg;
}

/* Ajuste para quando o header está scrolled */
.header.scrolled .dropdown-menu {
    margin-top: 0.75rem;
}

.header.scrolled .dropdown:hover .dropdown-menu {
    margin-top: 0.25rem;
}


/* Alertas do formulário */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    animation: slideDown 0.3s ease-out;
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Alertas do formulário */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    animation: slideDown 0.3s ease-out;
}

.alert i {
    font-size: 20px;
    flex-shrink: 0;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-success i {
    color: #28a745;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-error i {
    color: #dc3545;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Loading state do botão */
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit:disabled .btn-icon i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


        /* Terms Page Specific Styles */
        .terms-hero {
            position: relative;
            padding: 8rem 0 4rem;
            background: linear-gradient(135deg, rgb(63, 114, 175) 0%, rgb(50, 95, 147) 100%);
            overflow: hidden;
        }
        
        .terms-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }
        
        .terms-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .terms-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .terms-hero p {
            font-size: 1.25rem;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .terms-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 3rem 0 2rem;
            flex-wrap: wrap;
            padding: 0 1rem;
        }
        
        .terms-tab {
            padding: 0.875rem 2rem;
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-weight: 600;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        
        .terms-tab:hover {
            border-color: #667eea;
            color: #667eea;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
        }
        
        .terms-tab.active {
            background: linear-gradient(135deg, rgb(63, 114, 175) 0%, rgb(50, 95, 147) 100%);
            border-color: transparent;
            color: white;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
        }
        
        .terms-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
        }
        
        .terms-section {
            display: none;
            animation: fadeIn 0.4s ease;
        }
        
        .terms-section.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .terms-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }
        
        .terms-card h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid #667eea;
            display: inline-block;
        }
        
        .terms-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d3748;
            margin: 2rem 0 1rem;
        }
        
        .terms-card h4 {
            font-size: 1.125rem;
            font-weight: 600;
            color: #4a5568;
            margin: 1.5rem 0 0.75rem;
        }
        
        .terms-card p {
            font-size: 1rem;
            line-height: 1.8;
            color: #4a5568;
            margin-bottom: 1rem;
        }
        
        .terms-card ul {
            list-style: none;
            padding-left: 0;
            margin: 1rem 0;
        }
        
        .terms-card ul li {
            padding-left: 2rem;
            position: relative;
            margin-bottom: 0.75rem;
            line-height: 1.7;
            color: #4a5568;
        }
        
        .terms-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .info-box {
            background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
            border-left: 4px solid #667eea;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
        }
        
        .info-box p {
            margin: 0;
            color: #2d3748;
        }
        
        .info-box strong {
            color: #667eea;
        }
        
        .contact-box {
            background: #f7fafc;
            border: 2px solid #e5e7eb;
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
        }
        
        .contact-box h4 {
            margin-top: 0;
            color: #1a202c;
        }
        
        .contact-box p {
            margin: 0.5rem 0;
        }
        
        .contact-box a {
            color: #667eea;
            font-weight: 600;
            text-decoration: none;
        }
        
        .contact-box a:hover {
            text-decoration: underline;
        }
        
        .last-updated {
            text-align: center;
            color: #9ca3af;
            font-size: 0.875rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #e5e7eb;
        }
        
        @media (max-width: 768px) {
            .terms-hero h1 {
                font-size: 2rem;
            }
            
            .terms-hero p {
                font-size: 1rem;
            }
            
            .terms-card {
                padding: 2rem 1.5rem;
            }
            
            .terms-tab {
                padding: 0.75rem 1.5rem;
                font-size: 0.875rem;
            }
        }

	


		.sector-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    white-space: nowrap;
}

.sector-pill:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .sector-pill {
        font-size: 0.875rem;
        padding: 0.65rem 1.25rem;
    }
}

/* Logo Carousel Styles */
.logo-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.logo-carousel {
    display: flex;
    width: 100%;
    overflow: hidden;
    user-select: none;
}

.logo-carousel-track {
    display: flex;
    gap: 4rem;
    animation: scroll-logos 40s linear infinite;
    will-change: transform;
    align-items: center; /* Alinha verticalmente ao centro */
}

.logo-carousel:hover .logo-carousel-track {
    animation-play-state: paused;
}

.partner-logo {
    height: 100px;
    width: 150px;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
    display: block;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-carousel-track {
        gap: 3rem;
        animation-duration: 30s;
    }
    
    .partner-logo {
        height: 45px;
        width: 130px;
    }
}

@media (max-width: 480px) {
    .logo-carousel-track {
        gap: 2.5rem;
        animation-duration: 25s;
    }
    
    .partner-logo {
        height: 40px;
        width: 110px;
    }
}



/* PHC CS Page - Responsive Grid */
@media (max-width: 992px) {
    .services-grid[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    .services-grid > div[style*="order: 1"],
    .services-grid > div[style*="order: 2"] {
        order: unset !important;
    }
}


@media (max-width: 768px) {
    section div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .phc-banner-actions[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}






/* Container do Cartão */
.help-card-evo {
    /* Gradiente sutil do branco para um cinza azulado muito claro */
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    
    /* Borda sólida leve para definir o limite no fundo branco */
    border: 1px solid #e5e7eb; 
    
    /* Sombra suave para dar profundidade (essencial em fundo branco) */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 
                0 2px 4px -1px rgba(0, 0, 0, 0.03);
    
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    
    /* Transição suave apenas para o hover */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Hover Effect: Levanta ligeiramente e aumenta a sombra */
.help-card-evo:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 
                0 10px 10px -5px rgba(0, 0, 0, 0.03);
    border-color: #0046fe; /* Azul PHC na borda ao passar o rato */
}

/* --------------------------------------------------------- */
/* AJUSTES DE TEXTO E ÍCONES (Obrigatório para fundo claro)  */
/* --------------------------------------------------------- */

/* Títulos escuros */
.help-card-evo .help-card-title {
    color: #111827; /* Preto suave / Cinza muito escuro */
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

/* Descrição em cinza médio */
.help-card-evo .help-card-description {
    color: #4b5563; /* Cinza médio */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Ícones das funcionalidades (Checkmarks) */
.help-card-evo .feature-item {
    color: #374151; /* Texto da lista mais escuro que a descrição */
}

.help-card-evo .feature-icon {
    color: #0046fe; /* Azul vibrante para o check */
}

/* Fundo do ícone principal (Círculo) */
.help-card-evo .help-card-icon {
    background: rgba(0, 70, 254, 0.08); /* Fundo azul muito claro */
    color: #0046fe; /* Ícone azul */
    border-radius: 16px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

/* Badge (Etiqueta) */
.help-card-evo .badge {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #1f2937;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}


/* Correção para os Feature Items em fundo branco */
.help-card-evo .feature-item {
    /* Mudamos de cinza claro para um cinza muito escuro (quase preto) */
    color: #4b5563 !important;
    font-weight: 500; /* Um pouco mais "gordo" para facilitar a leitura */
}

/* Garante que o span (o texto em si) também fica escuro */
.help-card-evo .feature-item span {
    color: #4b5563 !important;
}

/* Garante que o ícone de check fica com o azul vibrante */
.help-card-evo .feature-icon {
    color: #0046fe !important; /* Azul PHC */
    background: transparent; /* Removemos fundos se existirem */
}








/* === SECÇÃO MODERN CS === */
.modern-cs-section {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
    background: var(--gray-50); /* Fallback */
}

/* Background com Orbs (Efeito Atmosférico) */
.modern-cs-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.modern-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

.orb-1 {
    width: 500px; height: 500px;
    background: var(--blue-ultra-light);
    top: -100px; left: -100px;
}

.orb-2 {
    width: 400px; height: 400px;
    background: rgba(139, 92, 246, 0.1); /* Roxo subtil */
    bottom: -50px; right: -50px;
}

.modern-cs-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Tipografia do Título */
.modern-cs-header {
    text-align: center;
    margin-bottom: 5rem;
}

.modern-cs-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -1px;
    line-height: 1.1;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-off {
    color: var(--gray-400);
    position: relative;
    display: inline-block;
}

.text-off::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 55%;
    height: 3px;
    background: var(--gray-300);
    transform: rotate(-10deg);
}

/* Layout Principal */
.modern-cs-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Cartão da Esquerda (Info) */
.modern-cs-info-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.modern-cs-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--blue-ultra-light);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.modern-cs-lead {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.highlight-text {
    color: var(--gray-900);
    font-weight: 700;
    border-bottom: 2px solid var(--primary-blue);
}

/* Caixa de Alerta Moderno */
.modern-cs-alert {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.modern-cs-alert:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.alert-icon {
    flex-shrink: 0;
    width: 50px; height: 50px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 10px 20px -5px rgba(63, 114, 175, 0.4);
}

.alert-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

.alert-content strong {
    color: var(--primary-blue);
}

/* Lado Direito: Implementação */
.modern-cs-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.modern-cs-grid {
    display: grid;
    gap: 1.5rem;
}

/* Cartões de Implementação */
.modern-impl-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.modern-impl-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.impl-icon-wrap {
    width: 60px; height: 60px;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.modern-impl-card:hover .impl-icon-wrap {
    background: var(--primary-blue);
    color: white;
    transform: rotateY(180deg);
}

.impl-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.impl-text span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Responsividade */
@media (max-width: 968px) {
    .modern-cs-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .modern-cs-title {
        font-size: 2.5rem;
    }

    .modern-cs-info-card {
        padding: 2rem;
    }
}







/* === NOTÍCIAS ROTATIVAS === */
.news-ticker-pill {
    --ticker-height: 38px;

    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 22px 8px 8px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(63, 114, 175, 0.2);
    border-radius: 100px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px -2px rgba(63, 114, 175, 0.12),
                0 1px 3px rgba(0, 0, 0, 0.06);
    max-width: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Halo de gradiente subtil */
.news-ticker-pill::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 100px;
    background: linear-gradient(
        135deg,
        rgba(63, 114, 175, 0.3),
        rgba(63, 114, 175, 0.05),
        rgba(63, 114, 175, 0.2)
    );
    z-index: -1;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.news-ticker-pill:hover {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(63, 114, 175, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(63, 114, 175, 0.18),
                0 2px 6px rgba(0, 0, 0, 0.06);
}

.news-ticker-pill:hover::after {
    opacity: 1;
}

/* Badge */
.ticker-badge {
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0 14px;
    height: 28px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(63, 114, 175, 0.3);
}

.ticker-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    animation: subtleDot 2.5s ease-in-out infinite;
}

@keyframes subtleDot {
    0%, 100% { opacity: 0.9; }
    50%       { opacity: 0.25; }
}

/* Janela de scroll */
.ticker-window {
    height: var(--ticker-height);
    overflow: hidden;
    position: relative;
}

.ticker-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.ticker-item {
    height: var(--ticker-height);
    display: flex;
    align-items: center;
}

.ticker-item a {
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.92rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.ticker-item a:hover { color: var(--primary-blue); }

.ticker-item i {
    font-size: 0.85rem;
    color: var(--primary-blue);
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.news-ticker-pill:hover .ticker-item i {
    transform: translateX(4px);
    opacity: 1;
}

/* === MOBILE === */
@media (max-width: 768px) {
    .news-ticker-pill {
        padding: 7px 16px 7px 7px;
        gap: 10px;
    }

    .ticker-badge {
        font-size: 0.65rem;
        padding: 0 10px;
        height: 24px;
        letter-spacing: 0.5px;
    }

    .ticker-window {
        max-width: calc(100vw - 140px);
    }

    .ticker-item a {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .ticker-window {
        max-width: calc(100vw - 110px);
    }

    .ticker-item a {
        font-size: 0.78rem;
    }
}



/* === CORREÇÃO FINAL PARA IPHONE / MOBILE (< 575px) === */
@media (max-width: 575px) {
    
    /* 1. Reset da altura e espaçamento do Hero */
    .hero {
        min-height: auto; /* Remove a altura forçada do ecrã inteiro */
        padding-top: 120px; /* Mais espaço no topo por causa do menu */
        padding-bottom: 3rem;
        height: auto;
    }

    /* 2. Forçar layout em coluna (pilha) */
    .hero-container {
        display: flex; /* Flex é melhor que Grid para empilhar em mobile */
        flex-direction: column;
        padding: 0 1.5rem; /* Margem lateral segura (24px) */
        gap: 2.5rem; /* Espaço entre texto e imagens */
        text-align: center; /* Tudo centrado */
    }

    /* 3. Ajuste do Ticker (Barra de novidades) */
    .news-ticker-pill {
        width: 100%;
        flex-direction: column; /* Empilha o badge "NOVIDADES" e o texto */
        padding: 0.5rem;
        gap: 0.5rem;
        height: auto; /* Permite crescer se o texto for longo */
    }
    
    .ticker-window {
        width: 100%;
        text-align: center;
    }
    
    .ticker-list {
        width: 100%;
    }

	.ticker-item {
		height: var(--ticker-height) !important;
		align-items: center !important;
	}
    
    .ticker-item a {
        font-size: 0.85rem; /* Texto ligeiramente menor */
        justify-content: center;
    }

    /* 4. Títulos e Texto */
    .hero h1 {
        font-size: 2.2rem; /* Tamanho legível no iPhone 13/14/15 */
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem; /* Pequeno respiro lateral */
    }

    /* 5. Botões (CTA) */
    .hero-cta {
        flex-direction: column; /* Botões um em cima do outro */
        width: 100%;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 100%; /* Botão ocupa largura total */
        justify-content: center;
        padding: 0.9rem;
    }

    /* 6. CRUCIAL: Controlar as Imagens para não estourarem o ecrã */
    .hero-visual {
        width: 100%;
        margin-top: 1rem;
        order: 2; /* Garante que fica no fundo, se quiseres mudar a ordem */
    }

    .banner-stack {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .banner-item {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Isto impede que a imagem force o scroll horizontal */
    .banner-item img {
        max-width: 80%; /* Imagem ocupa 80% da largura do telemóvel */
        height: auto;
        object-fit: contain;
    }
}