:root {
	--magnolia-primary: #6366f1;
	--magnolia-primary-dark: #4f46e5;
	--magnolia-primary-light: #818cf8;
	--magnolia-dark: #1e293b;
	--magnolia-dark-soft: #334155;
	--magnolia-light: #f8fafc;
	--magnolia-light-soft: #f1f5f9;
	--magnolia-border: #e2e8f0;
	--magnolia-text: #0f172a;
	--magnolia-text-muted: #64748b;
	--magnolia-success: #10b981;
	--magnolia-shadow: rgba(15, 23, 42, 0.08);
	--magnolia-shadow-hover: rgba(15, 23, 42, 0.12);
	--bs-primary: var(--magnolia-primary);
	--bs-primary-rgb: 99, 102, 241;
}

* {
	box-sizing: border-box;
}

html,
body {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'Inter', 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	color: var(--magnolia-text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.2;
	color: var(--magnolia-text);
	letter-spacing: -0.02em;
}

.display-5 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.lead {
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--magnolia-text-muted);
	line-height: 1.7;
}

/* Navbar */
.navbar-magnolia {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid var(--magnolia-border);
	padding: 1rem 0;
	transition: box-shadow 0.3s ease,
		background 0.3s ease;
	z-index: 1030;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
}

.navbar-magnolia.scrolled {
	box-shadow: 0 1px 3px 0 var(--magnolia-shadow);
}

/* Adiciona padding-top no body para compensar o header fixo */
body {
	padding-top: 76px;
}

@media (max-width: 768px) {
	body {
		padding-top: 70px;
	}
}

.navbar-magnolia .navbar-brand {
	color: var(--magnolia-dark);
	font-weight: 700;
	font-size: 1.25rem;
	transition: transform 0.15s ease;
}

.navbar-magnolia .navbar-brand:hover {
	transform: scale(1.02);
}

.navbar-magnolia .navbar-brand img {
	transition: transform 0.2s ease;
}

.navbar-magnolia .navbar-brand:hover img {
	transform: rotate(2deg);
}

.navbar-magnolia .nav-link {
	color: var(--magnolia-text-muted);
	font-weight: 500;
	font-size: 0.9375rem;
	padding: 0.5rem 1rem !important;
	border-radius: 8px;
	transition: all 0.2s ease;
	position: relative;
}

.navbar-magnolia .nav-link::before {
	content: '';
	position: absolute;
	bottom: 0.25rem;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 0;
	height: 2px;
	background: var(--magnolia-primary);
	transition: all 0.2s ease;
}

.navbar-magnolia .nav-link:hover,
.navbar-magnolia .nav-link.active {
	color: var(--magnolia-primary);
	background: rgba(99, 102, 241, 0.05);
}

.navbar-magnolia .nav-link.active::before,
.navbar-magnolia .nav-link:hover::before {
	width: calc(100% - 2rem);
	transform: translateX(-50%) scaleX(1);
}

/* Dropdown Menu - Customizado e Moderno */
.navbar-magnolia .dropdown-toggle {
	position: relative;
}

.navbar-magnolia .container {
	position: relative;
}

.nav-item.dropdown {
	position: static;
}

.nav-item.dropdown .dropdown-menu-services {
	position: fixed !important;
	left: 50% !important;
	right: auto !important;
	transform: translateX(-50%) !important;
	margin-top: 0 !important;
	width: 700px;
	max-width: 800px;
}

.nav-item.dropdown .dropdown-menu-services.show {
	left: 50% !important;
	right: auto !important;
	transform: translateX(-50%) !important;
}

.navbar-magnolia .dropdown-toggle::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	margin-left: 0.5rem;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	vertical-align: middle;
	opacity: 0.6;
}

.navbar-magnolia .dropdown-toggle[aria-expanded="true"]::after {
	transform: rotate(180deg);
	opacity: 1;
}

.navbar-magnolia .dropdown-toggle:hover::after {
	opacity: 1;
}

/* Dropdown Overlay */
.dropdown-overlay {
	position: fixed;
	top: 76px;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 1019;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.dropdown-overlay.show {
	opacity: 1;
	visibility: visible;
}

/* Dropdown Serviços - Centralizado com Fundo Desfocado */
.dropdown-menu-services {
	border: none;
	border-radius: 20px;
	box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.2);
	padding: 0;
	margin-top: 0 !important;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	min-width: 700px;
	max-width: 800px;
	animation: dropdownFadeIn 0.2s ease-out;
	overflow: hidden;
	position: absolute;
	z-index: 1020;
	left: 50% !important;
	right: auto !important;
	transform: translateX(-50%) !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	top: calc(100% + 1.5rem) !important;
}

.dropdown-menu-services.show {
	left: 50% !important;
	right: auto !important;
	transform: translateX(-50%) !important;
	top: calc(100% + 1.5rem) !important;
}

.dropdown-services-container {
	display: flex;
	gap: 0;
}

.dropdown-services-section {
	flex: 1;
	padding: 2rem;
}

.dropdown-services-section:first-child {
	border-right: 1px solid rgba(229, 231, 235, 0.5);
}

.dropdown-section-title {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--magnolia-primary);
	margin-bottom: 1.5rem;
}

.dropdown-services-grid {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.dropdown-service-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: all 0.2s ease;
	border: 1px solid transparent;
	background: rgba(255, 255, 255, 0.5);
}

.dropdown-service-item:hover {
	background: rgba(99, 102, 241, 0.08);
	border-color: rgba(99, 102, 241, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
	color: inherit;
}

.dropdown-service-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
	color: var(--magnolia-primary);
	font-size: 1.5rem;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.dropdown-service-item:hover .dropdown-service-icon {
	background: linear-gradient(135deg, var(--magnolia-primary), #8b5cf6);
	color: white;
	transform: scale(1.05);
}

.dropdown-service-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.dropdown-service-content strong {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--magnolia-dark);
	line-height: 1.4;
}

.dropdown-service-content span {
	font-size: 0.8125rem;
	color: #6b7280;
	line-height: 1.5;
}

.dropdown-services-divider {
	width: 1px;
	background: rgba(229, 231, 235, 0.5);
	margin: 1rem 0;
}

.dropdown-services-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.dropdown-service-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1rem;
	border-radius: 10px;
	text-decoration: none;
	color: var(--magnolia-text);
	transition: all 0.2s ease;
	font-size: 0.9375rem;
	font-weight: 500;
	background: rgba(255, 255, 255, 0.5);
}

.dropdown-service-link:hover {
	background: rgba(99, 102, 241, 0.08);
	color: var(--magnolia-primary);
	transform: translateX(4px);
}

.dropdown-service-link i {
	font-size: 1.125rem;
	color: var(--magnolia-primary);
	width: 24px;
	text-align: center;
}

.dropdown-menu-modern {
	border: 1px solid var(--magnolia-border);
	border-radius: 16px;
	box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.2);
	padding: 0.75rem;
	margin-top: 0.75rem;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	min-width: 280px;
	animation: dropdownFadeIn 0.2s ease-out;
	overflow: hidden;
	position: absolute;
	z-index: 1020;
}

@keyframes dropdownFadeIn {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(-5px);
	}

	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

.dropdown-menu-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--magnolia-primary), #8b5cf6);
}

.dropdown-menu-modern .dropdown-item {
	padding: 0.875rem 1rem;
	border-radius: 10px;
	transition: all 0.2s ease;
	font-weight: 500;
	color: var(--magnolia-text);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.25rem;
	position: relative;
	overflow: hidden;
}

.dropdown-menu-modern .dropdown-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, var(--magnolia-primary), #8b5cf6);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.2s ease;
}

.dropdown-menu-modern .dropdown-item:hover {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.04));
	color: var(--magnolia-primary);
	transform: translateX(3px);
	padding-left: 1.25rem;
}

.dropdown-menu-modern .dropdown-item:hover::before {
	transform: scaleY(1);
}

.dropdown-menu-modern .dropdown-item i {
	font-size: 1.25rem;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: rgba(99, 102, 241, 0.1);
	color: var(--magnolia-primary);
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.dropdown-menu-modern .dropdown-item:hover i {
	background: linear-gradient(135deg, var(--magnolia-primary), #8b5cf6);
	color: white;
	transform: scale(1.02);
}

.dropdown-menu-modern .dropdown-divider {
	margin: 0.75rem 0;
	border-color: var(--magnolia-border);
	opacity: 0.3;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--magnolia-border), transparent);
}

.navbar-toggler {
	border: none;
	padding: 0.5rem;
	border-radius: 8px;
	transition: background 0.2s ease;
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
	position: relative;
	overflow: hidden;
	padding: 6rem 0 4rem;
}

/* Section Visual Enhancements */
.success-numbers-section,
.methodology-section,
.testimonials-section,
.faq-section {
	position: relative;
	overflow: hidden;
}

.success-numbers-section::before,
.methodology-section::before,
.testimonials-section::before,
.faq-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.services-section,
.portfolio-section,
.why-choose-section,
.benefits-section,
.process-simple-section {
	position: relative;
}

.services-section::before,
.portfolio-section::before,
.why-choose-section::before,
.benefits-section::before,
.process-simple-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.hero h1 {
	color: var(--magnolia-dark);
	margin-bottom: 1.5rem;
}

.hero .lead {
	color: var(--magnolia-text-muted);
	font-size: 1.25rem;
	margin-bottom: 2rem;
	max-width: 90%;
}

.title-accent {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
	color: var(--magnolia-primary);
	border-radius: 50px;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(99, 102, 241, 0.15);
}

/* Buttons */
.btn {
	font-weight: 600;
	padding: 0.75rem 1.75rem;
	border-radius: 10px;
	transition: all 0.2s ease;
	border: none;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: linear-gradient(135deg, var(--magnolia-primary) 0%, var(--magnolia-primary-dark) 100%);
	color: white;
	box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.25);
}

.btn-primary::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.3s ease;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--magnolia-primary-dark) 0%, var(--magnolia-primary) 100%);
	transform: translateY(-1px);
	box-shadow: 0 8px 20px 0 rgba(99, 102, 241, 0.35);
}

.btn-primary:active {
	transform: translateY(0);
}

.btn-outline-secondary {
	border: 2px solid var(--magnolia-border);
	color: var(--magnolia-text);
	background: white;
}

.btn-outline-secondary:hover {
	background: var(--magnolia-light);
	border-color: var(--magnolia-primary);
	color: var(--magnolia-primary);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px 0 var(--magnolia-shadow);
}

.btn-lg {
	padding: 1rem 2rem;
	font-size: 1.0625rem;
}

/* Cards */
.service-card,
.project-card,
.feature-card {
	background: white;
	border: 1px solid var(--magnolia-border);
	border-radius: 16px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	position: relative;
}

.service-card::before,
.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--magnolia-primary), var(--magnolia-primary-light));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.service-card:hover::before,
.feature-card:hover::before {
	transform: scaleX(1);
}

.service-card:hover,
.project-card:hover,
.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px -12px var(--magnolia-shadow-hover);
	border-color: rgba(99, 102, 241, 0.2);
}

.project-card {
	overflow: hidden;
}

.project-card img {
	transition: transform 0.5s ease;
}

.project-card:hover img {
	transform: scale(1.02);
}

/* Badges */
.badge {
	font-weight: 600;
	padding: 0.375rem 0.75rem;
	border-radius: 6px;
	font-size: 0.8125rem;
}

.badge-soft {
	background: rgba(99, 102, 241, 0.1);
	color: var(--magnolia-primary);
	border: 1px solid rgba(99, 102, 241, 0.15);
}

.bg-light {
	background-color: var(--magnolia-light-soft) !important;
}

/* Sections */
section {
	position: relative;
}

/* Section Spacing Improvements - Sem espaços brancos */
section.my-5 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-top: 6rem !important;
	padding-bottom: 6rem !important;
}

@media (max-width: 768px) {
	section.my-5 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}
}

.bg-light {
	background: var(--magnolia-light) !important;
}

.section-title {
	margin-bottom: 3rem;
}

.section-title h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.section-title p {
	font-size: 1.125rem;
	color: var(--magnolia-text-muted);
}

/* Check List */
.check-list {
	list-style: none;
	padding-left: 0;
}

.check-list li {
	padding-left: 1.75rem;
	position: relative;
	margin-bottom: 0.75rem;
	color: var(--magnolia-text-muted);
}

.check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--magnolia-success);
	font-weight: 700;
	font-size: 1.125rem;
}

/* Footer */
.footer-magnolia {
	background: #1a1a2e;
	background: linear-gradient(180deg, #0f0f1e 0%, #1a1a2e 100%);
	color: rgba(255, 255, 255, 0.9);
	position: relative;
	overflow: hidden;
}

.footer-magnolia::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.footer-magnolia .footer-text-light {
	color: rgba(255, 255, 255, 0.7) !important;
}

.footer-magnolia .footer-heading {
	color: white !important;
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	margin-bottom: 1.75rem;
	text-transform: uppercase;
}

.footer-magnolia .footer-main {
	background: rgba(0, 0, 0, 0.2);
	padding: 4rem 0 !important;
}

.footer-magnolia .footer-links {
	margin: 0;
	padding: 0;
}

.footer-magnolia .footer-links li {
	margin-bottom: 1rem;
}

.footer-magnolia .footer-links a {
	color: rgba(255, 255, 255, 0.8) !important;
	text-decoration: none;
	transition: all 0.2s ease;
	display: inline-block;
	font-size: 0.9375rem;
}

.footer-magnolia .footer-links a:hover {
	color: var(--magnolia-primary) !important;
	transform: translateX(3px);
}

.footer-magnolia .footer-contact {
	margin: 0;
	padding: 0;
}

.footer-magnolia .footer-contact li {
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9375rem;
	display: flex;
	align-items: flex-start;
}

.footer-magnolia .footer-contact i {
	color: var(--magnolia-primary);
	font-size: 1rem;
	margin-top: 0.125rem;
}

.footer-magnolia .footer-contact a {
	color: rgba(255, 255, 255, 0.8) !important;
	text-decoration: none;
	transition: all 0.2s ease;
}

.footer-magnolia .footer-contact a:hover {
	color: var(--magnolia-primary) !important;
}

.footer-magnolia .footer-social {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 1rem;
}

.footer-magnolia .footer-social a {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	transition: all 0.2s ease;
	text-decoration: none;
}

.footer-magnolia .footer-social a:hover {
	background: var(--magnolia-primary);
	border-color: var(--magnolia-primary);
	color: white !important;
	transform: translateY(-4px);
	box-shadow: 0 8px 16px -4px rgba(99, 102, 241, 0.4);
}

.footer-magnolia .footer-divider {
	border-color: rgba(255, 255, 255, 0.1) !important;
	margin: 2rem 0;
}

.cta-section {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 3rem 0;
}

/* To Top Button */
.to-top {
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	border-radius: 50% !important;
	width: 56px !important;
	height: 56px !important;
	min-width: 56px !important;
	padding: 0 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: linear-gradient(135deg, var(--magnolia-primary) 0%, var(--magnolia-primary-dark) 100%) !important;
	color: white !important;
	box-shadow: 0 8px 24px -4px rgba(99, 102, 241, 0.4);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px) scale(0.8);
	transition: all 0.2s ease;
	z-index: 1000;
	border: none !important;
	cursor: pointer;
}

.to-top i {
	font-size: 1.25rem;
	line-height: 1;
	margin: 0 !important;
	padding: 0 !important;
}

.to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.to-top:hover {
	transform: translateY(-4px) scale(1.05) !important;
	box-shadow: 0 12px 32px -4px rgba(99, 102, 241, 0.5);
	background: linear-gradient(135deg, #8b5cf6 0%, var(--magnolia-primary) 100%) !important;
}

.to-top:active {
	transform: translateY(-2px) scale(1.02) !important;
}

/* Utilities */
.text-gradient {
	background: linear-gradient(135deg, var(--magnolia-primary) 0%, var(--magnolia-primary-light) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

/* Form Elements */
.form-control {
	border: 2px solid var(--magnolia-border);
	border-radius: 10px;
	padding: 0.75rem 1rem;
	transition: all 0.2s ease;
	font-size: 0.9375rem;
}

.form-control:focus {
	border-color: var(--magnolia-primary);
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
	outline: none;
}

.form-label {
	font-weight: 600;
	color: var(--magnolia-text);
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
}

/* Alerts */
.alert {
	border-radius: 12px;
	border: none;
	padding: 1rem 1.25rem;
}

.alert-success {
	background: rgba(16, 185, 129, 0.1);
	color: var(--magnolia-success);
	border-left: 4px solid var(--magnolia-success);
}

.alert-danger {
	background: rgba(239, 68, 68, 0.1);
	color: #ef4444;
	border-left: 4px solid #ef4444;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

/* Card improvements */
.card {
	border: 1px solid var(--magnolia-border);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.2s ease;
}

.card-body {
	padding: 1.5rem;
}

/* Image improvements */
img {
	max-width: 100%;
	height: auto;
}

.rounded-3 {
	border-radius: 16px !important;
}

/* Border improvements */
.border {
	border-color: var(--magnolia-border) !important;
}

hr {
	border-color: var(--magnolia-border);
	opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
	.hero {
		padding: 4rem 0 3rem;
	}

	.hero .lead {
		font-size: 1.0625rem;
		max-width: 100%;
	}

	.btn-lg {
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
	}

	.to-top {
		right: 1rem;
		bottom: 1rem;
		width: 48px !important;
		height: 48px !important;
		min-width: 48px !important;
		display: none !important;
		/* Esconde no mobile */
	}

	.to-top i {
		font-size: 1.125rem;
	}

	.section-title {
		margin-bottom: 2rem;
	}

	.service-card,
	.feature-card {
		padding: 1.5rem !important;
	}

	.display-5 {
		font-size: 2rem;
	}
}

@media (max-width: 576px) {
	.hero {
		padding: 3rem 0 2rem;
	}

	.title-accent {
		font-size: 0.75rem;
		padding: 0.375rem 0.875rem;
	}

	.btn {
		width: 100%;
		justify-content: center;
	}

	.d-flex.gap-3 {
		flex-direction: column;
	}
}

/* Smooth scroll behavior */
html {
	scroll-padding-top: 80px;
}

/* ============================================
   ESTILOS MODERNOS E ÚNICOS
   ============================================ */

/* Hero Moderno */
.hero-modern {
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 30%, #f1f5f9 100%);
	position: relative;
	overflow: hidden;
	padding: 8rem 0 6rem;
	min-height: 90vh;
	display: flex;
	align-items: center;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.min-vh-75 {
	min-height: 75vh;
}

.hero-title {
	font-size: clamp(2.5rem, 6vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.04em;
	color: var(--magnolia-dark);
	margin-bottom: 1.5rem;
}

/* Títulos brancos apenas quando tem hero-image-wrapper direto */
.hero-modern>.hero-image-wrapper~.container .hero-title.text-white {
	color: #ffffff !important;
}

.hero-subtitle {
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	color: var(--magnolia-text-muted);
	line-height: 1.7;
	max-width: 90%;
}

/* Subtítulos brancos apenas quando tem hero-image-wrapper direto */
.hero-modern>.hero-image-wrapper~.container .hero-subtitle.text-white-50 {
	color: rgba(255, 255, 255, 0.95) !important;
}

.badge-modern {
	display: inline-flex;
	align-items: center;
	padding: 0.625rem 1.25rem;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
	color: var(--magnolia-primary);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Badge sobre fundos escuros - apenas quando tem hero-image-wrapper direto */
.hero-modern>.hero-image-wrapper~.container .badge-modern,
.cta-section-modern .badge-modern {
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.3);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.text-gradient-modern {
	background: linear-gradient(135deg, var(--magnolia-primary) 0%, #8b5cf6 50%, var(--magnolia-primary-light) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.btn-primary-modern {
	background: linear-gradient(135deg, var(--magnolia-primary) 0%, #8b5cf6 100%);
	color: white;
	padding: 1rem 2.25rem;
	font-weight: 600;
	border-radius: 12px;
	box-shadow: 0 8px 24px -4px rgba(99, 102, 241, 0.4);
	transition: all 0.2s ease;
	border: none;
	position: relative;
	overflow: hidden;
}

.btn-primary-modern::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 ease;
}

.btn-primary-modern:hover::before {
	left: 100%;
}

.btn-primary-modern:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -4px rgba(99, 102, 241, 0.5);
	background: linear-gradient(135deg, #8b5cf6 0%, var(--magnolia-primary) 100%);
}

.btn-outline-modern {
	border: 2px solid var(--magnolia-border);
	color: var(--magnolia-text);
	background: white;
	padding: 1rem 2.25rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.2s ease;
}

.btn-outline-modern:hover {
	background: var(--magnolia-light);
	border-color: var(--magnolia-primary);
	color: var(--magnolia-primary);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.2);
}

/* Hero Stats */
.hero-stats {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--magnolia-border);
}

.stat-item {
	text-align: left;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--magnolia-primary);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.875rem;
	color: var(--magnolia-text-muted);
	font-weight: 500;
}

/* Hero Visual */
.hero-visual {
	position: relative;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-image-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 24px;
	overflow: hidden;
	z-index: 0;
}

/* Hero image dentro de hero-visual (index.php) - mantém estilo original */
.hero-visual .hero-main-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.15;
	transition: opacity 0.3s ease;
}

.hero-visual .hero-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
	z-index: 1;
}

/* Hero image diretamente em hero-modern (outras páginas) - estilo escuro */
.hero-modern>.hero-image-wrapper .hero-main-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
	transition: opacity 0.3s ease;
	filter: brightness(0.6);
}

.hero-modern>.hero-image-wrapper .hero-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.7), rgba(139, 92, 246, 0.7));
	z-index: 1;
}

.floating-card {
	position: absolute;
	background: white;
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--magnolia-border);
	display: flex;
	align-items: center;
	gap: 1rem;
	z-index: 2;
	animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
	top: 10%;
	left: 0;
	animation-delay: 0s;
}

.floating-card.card-2 {
	top: 50%;
	right: 0;
	animation-delay: 2s;
}

.floating-card.card-3 {
	bottom: 10%;
	left: 20%;
	animation-delay: 4s;
}

.card-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--magnolia-primary), #8b5cf6);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.card-content h6 {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
}

.hero-main-visual {
	position: relative;
	width: 400px;
	height: 400px;
	margin: 0 auto;
}

.gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.6;
	animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, var(--magnolia-primary), transparent);
	top: 0;
	left: 0;
	animation-delay: 0s;
}

.orb-2 {
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, #8b5cf6, transparent);
	bottom: 0;
	right: 0;
	animation-delay: 1.5s;
}

.orb-3 {
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, var(--magnolia-primary-light), transparent);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 3s;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.6;
	}

	50% {
		transform: scale(1.02);
		opacity: 0.8;
	}
}

.hero-scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.scroll-down {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: var(--magnolia-text-muted);
	text-decoration: none;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	animation: bounce 2s infinite;
}

.scroll-down i {
	font-size: 1.5rem;
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(10px);
	}
}

/* Tech Grid */
.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.tech-item {
	text-align: center;
	padding: 2rem 1rem;
	background: white;
	border-radius: 16px;
	border: 1px solid var(--magnolia-border);
	transition: all 0.2s ease;
	cursor: pointer;
}

.tech-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px -8px rgba(99, 102, 241, 0.2);
	border-color: var(--magnolia-primary);
}

.tech-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: block;
}

.tech-name {
	font-weight: 600;
	color: var(--magnolia-text);
	font-size: 0.9375rem;
}

.bg-light-modern {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

/* Section Header */
.section-header {
	margin-bottom: 4rem;
}

.section-title-modern {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: var(--magnolia-dark);
}

.lead-max-width {
	max-width: 700px;
	margin: 0 auto;
}

.letter-spacing-1 {
	letter-spacing: 0.1em;
}

/* Service Cards Modernos */
.service-card-modern {
	background: white;
	border: 1px solid var(--magnolia-border);
	border-radius: 20px;
	padding: 2.5rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* Quando tem imagem, remove padding do card e adiciona no content */
.service-card-modern:has(.service-image-wrapper) {
	padding: 0;
}

/* Garante que o footer do card fique sempre no final */
.service-card-footer {
	margin-top: auto;
}

/* Garante que o footer (div com border-top) fique sempre no final */
.service-card-modern>div.border-top,
.service-card-modern>div.d-flex.border-top {
	margin-top: auto;
}

.service-image-wrapper {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
	border-radius: 20px 20px 0 0;
}

.service-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.service-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
	z-index: 1;
}

.service-card-modern:hover .service-image {
	transform: scale(1.05);
}

.service-card-modern .service-content {
	padding: 2.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Garante que o footer do card fique no final */
.service-card-modern .service-content>*:last-child {
	margin-top: auto;
}

/* Para cards sem service-content, garante que o último elemento fique no final */
.service-card-modern:not(:has(.service-content))>*:last-child {
	margin-top: auto;
}

.service-card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--magnolia-primary), #8b5cf6);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.service-card-modern:hover::before {
	transform: scaleX(1);
}

.service-card-modern:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px -8px rgba(99, 102, 241, 0.15);
	border-color: rgba(99, 102, 241, 0.2);
}

.service-icon {
	width: 72px;
	height: 72px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	position: relative;
	z-index: 2;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	flex-shrink: 0;
}

/* Quando tem imagem, posiciona o ícone sobre a imagem */
.service-card-modern:has(.service-image-wrapper) .service-icon {
	margin: -36px auto 1.5rem;
}

/* Quando não tem imagem, margem normal */
.service-card-modern:not(:has(.service-image-wrapper)) .service-icon {
	margin-bottom: 1.5rem;
}

.service-primary {
	background: linear-gradient(135deg, var(--magnolia-primary), #8b5cf6);
}

.service-success {
	background: linear-gradient(135deg, #10b981, #059669);
}

.service-warning {
	background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-info {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.service-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--magnolia-dark);
}

.service-description {
	color: var(--magnolia-text-muted);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.service-features {
	list-style: none;
	padding: 0;
	margin-bottom: 1.5rem;
}

.service-features li {
	padding: 0.5rem 0;
	color: var(--magnolia-text-muted);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9375rem;
}

.service-features li i {
	color: var(--magnolia-success);
	font-size: 1rem;
}

.service-link {
	color: var(--magnolia-primary);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s ease;
}

.service-link:hover {
	gap: 1rem;
	color: #8b5cf6;
}

/* Methodology Section */
.methodology-highlights {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 2rem;
}

.methodology-image-wrapper {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
}

.methodology-image {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.methodology-image-wrapper:hover .methodology-image {
	transform: scale(1.02);
}

.highlight-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1rem;
	color: var(--magnolia-text);
}

.highlight-item i {
	font-size: 1.25rem;
}

.process-timeline {
	position: relative;
	padding-left: 2rem;
}

.process-timeline::before {
	content: '';
	position: absolute;
	left: 0.75rem;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, var(--magnolia-primary), #8b5cf6);
}

.process-item {
	position: relative;
	padding-bottom: 2.5rem;
	padding-left: 2rem;
}

.process-item:last-child {
	padding-bottom: 0;
}

.process-number {
	position: absolute;
	left: -2rem;
	top: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--magnolia-primary), #8b5cf6);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.125rem;
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.process-content h4 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--magnolia-dark);
}

/* Portfolio Swiper */
.portfolio-swiper {
	padding-bottom: 3rem;
}

.portfolio-card-modern {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--magnolia-border);
	transition: all 0.2s ease;
	height: 100%;
}

.portfolio-card-modern:hover {
	box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.portfolio-image {
	position: relative;
	overflow: hidden;
	height: 280px;
}

.portfolio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.portfolio-card-modern:hover .portfolio-image img {
	transform: scale(1.01);
}

.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(99, 102, 241, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.portfolio-card-modern:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-content {
	padding: 2rem;
}

.portfolio-content h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--magnolia-dark);
}

.portfolio-tech {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.tech-badge {
	padding: 0.375rem 0.75rem;
	background: var(--magnolia-light);
	border: 1px solid var(--magnolia-border);
	border-radius: 6px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--magnolia-text);
}

/* Testimonials Swiper */
.testimonials-swiper {
	padding-bottom: 3rem;
}

.testimonial-card-modern {
	background: white;
	border-radius: 20px;
	padding: 2.5rem;
	border: 1px solid var(--magnolia-border);
	height: 100%;
	transition: all 0.2s ease;
}

.testimonial-card-modern:hover {
	box-shadow: 0 8px 24px -8px rgba(99, 102, 241, 0.15);
	transform: translateY(-2px);
}

.testimonial-rating {
	color: #fbbf24;
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
}

.testimonial-text {
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--magnolia-text);
	margin-bottom: 2rem;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--magnolia-primary), #8b5cf6);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
	overflow: hidden;
	flex-shrink: 0;
}

.avatar-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.author-info {
	display: flex;
	flex-direction: column;
}

.author-info strong {
	color: var(--magnolia-dark);
	font-size: 1rem;
}

/* Why Choose Section */
.differential-card {
	padding: 0;
	background: white;
	border: 1px solid var(--magnolia-border);
	border-radius: 16px;
	transition: all 0.2s ease;
	height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.differential-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px -8px rgba(99, 102, 241, 0.15);
	border-color: var(--magnolia-primary);
}

.differential-card .differential-content {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.differential-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
	color: var(--magnolia-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
	flex-shrink: 0;
}

.differential-card h5 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--magnolia-dark);
	flex-shrink: 0;
}

.stats-grid-modern {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.stat-card-modern {
	background: white;
	border: 1px solid var(--magnolia-border);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	transition: all 0.2s ease;
}

.stat-card-modern:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px -8px rgba(99, 102, 241, 0.2);
	border-color: var(--magnolia-primary);
}

.stat-icon {
	font-size: 2.5rem;
	color: var(--magnolia-primary);
	margin-bottom: 1rem;
}

.stat-value {
	font-size: 3rem;
	font-weight: 800;
	color: var(--magnolia-primary);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.9375rem;
	color: var(--magnolia-text-muted);
	font-weight: 500;
}

/* CTA Section Modern */
.cta-section-modern {
	background: linear-gradient(135deg, var(--magnolia-primary) 0%, #8b5cf6 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.cta-background-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.cta-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.5;
	filter: brightness(0.5);
}

.cta-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.85) 0%, rgba(139, 92, 246, 0.85) 100%);
	z-index: 1;
}

.cta-section-modern::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 2;
}

.cta-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: #ffffff !important;
	margin-bottom: 1rem;
}

.cta-subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.95) !important;
	margin-bottom: 2rem;
}

.cta-section-modern .btn-primary-modern {
	background: white;
	color: var(--magnolia-primary);
	box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.2);
}

.cta-section-modern .btn-primary-modern:hover {
	background: rgba(255, 255, 255, 0.95);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.3);
}

.cta-section-modern .btn-outline-modern {
	border-color: rgba(255, 255, 255, 0.5);
	color: white;
	background: transparent;
}

.cta-section-modern .btn-outline-modern:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: white;
	color: white;
}

.success-image-wrapper {
	margin-bottom: 2rem;
}

.success-main-image {
	width: 100%;
	height: auto;
	max-height: 300px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.success-image-wrapper:hover .success-main-image {
	transform: scale(1.02);
}

/* About Page Images */
.about-image-wrapper {
	margin-bottom: 2rem;
}

.about-main-image {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.about-image-wrapper:hover .about-main-image {
	transform: scale(1.02);
}

/* Contact Page Images */
.contact-image-wrapper {
	margin-bottom: 2rem;
}

.contact-main-image {
	width: 100%;
	height: auto;
	max-height: 300px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.contact-image-wrapper:hover .contact-main-image {
	transform: scale(1.02);
}

/* Service Feature Images */
.service-feature-image {
	width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.service-image-wrapper:hover .service-feature-image {
	transform: scale(1.02);
}

/* Differential Cards with Images */
.differential-image-wrapper {
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
	border-radius: 16px 16px 0 0;
	flex-shrink: 0;
}

.differential-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.differential-card:hover .differential-image {
	transform: scale(1.1);
}


.differential-card p {
	flex: 1;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
	color: var(--magnolia-primary) !important;
	background: white;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.2s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	transform: scale(1.02);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 1.25rem;
	font-weight: 700;
}

.swiper-pagination-bullet {
	background: var(--magnolia-primary) !important;
	opacity: 0.3;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	transform: scale(1.2);
}

/* Responsive Modern Styles */
@media (max-width: 992px) {
	.hero-visual {
		height: 400px;
		margin-top: 3rem;
	}

	.floating-card {
		position: relative;
		margin-bottom: 1rem;
	}

	.hero-main-visual {
		width: 300px;
		height: 300px;
	}

	.stats-grid-modern {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hero-modern {
		padding: 4rem 0 3rem;
		min-height: auto;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.tech-grid {
		grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
		gap: 1rem;
	}

	.service-card-modern {
		padding: 2rem;
	}

	.process-timeline {
		padding-left: 1.5rem;
	}

	.process-item {
		padding-left: 1.5rem;
	}

	.process-number {
		left: -1.5rem;
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.stats-grid-modern {
		grid-template-columns: 1fr;
	}
}

/* Process Card Modern */
.process-card-modern {
	background: white;
	border: 1px solid var(--magnolia-border);
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	transition: all 0.2s ease;
	position: relative;
	height: 100%;
}

.process-card-modern:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px -8px rgba(99, 102, 241, 0.15);
	border-color: var(--magnolia-primary);
}

.process-number-modern {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--magnolia-primary), #8b5cf6);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: 0 auto 1.5rem;
	box-shadow: 0 8px 24px -4px rgba(99, 102, 241, 0.4);
}

.process-step {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--magnolia-text-muted);
	letter-spacing: 0.1em;
}

.process-title-modern {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--magnolia-dark);
}

/* Team Card Modern */
.team-card-modern {
	padding: 2rem;
	background: white;
	border: 1px solid var(--magnolia-border);
	border-radius: 20px;
	transition: all 0.2s ease;
	height: 100%;
}

.team-card-modern:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px -8px rgba(99, 102, 241, 0.2);
	border-color: var(--magnolia-primary);
}

.team-avatar {
	border: 4px solid var(--magnolia-light);
	transition: all 0.2s ease;
}

.team-card-modern:hover .team-avatar {
	border-color: var(--magnolia-primary);
	transform: scale(1.02);
}

.team-badge {
	width: 36px;
	height: 36px;
	font-size: 1rem;
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.btn-lg {
		padding: 0.875rem 1.5rem;
		font-size: 0.9375rem;
	}

	.tech-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.tech-icon {
		font-size: 2rem;
	}

	.service-card-modern {
		padding: 1.5rem;
	}

	.portfolio-content {
		padding: 1.5rem;
	}

	.testimonial-card-modern {
		padding: 2rem;
	}

	.process-card-modern {
		padding: 2rem;
	}

	.process-number-modern {
		width: 64px;
		height: 64px;
		font-size: 1.5rem;
	}
}

/* Dropdown Menu Modern - Toggle Arrow */
.navbar-magnolia .dropdown-toggle::after {
	margin-left: 0.5rem;
	transition: transform 0.2s ease;
}

.navbar-magnolia .dropdown-toggle[aria-expanded="true"]::after {
	transform: rotate(180deg);
}

/* Metric Card Modern */
.metric-card-modern {
	background: white;
	border: 1px solid var(--magnolia-border);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	transition: all 0.2s ease;
	height: 100%;
}

.metric-card-modern:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px -8px rgba(99, 102, 241, 0.15);
	border-color: var(--magnolia-primary);
}

.metric-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
	color: var(--magnolia-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: 0 auto 1.5rem;
}

.metric-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--magnolia-primary);
	line-height: 1;
	margin-bottom: 0.75rem;
}

.metric-label {
	font-size: 1rem;
	font-weight: 600;
	color: var(--magnolia-dark);
	margin-bottom: 0.5rem;
}

.metric-desc {
	font-size: 0.875rem;
}

/* Benefit Card Modern */
.benefit-card-modern {
	background: white;
	border: 1px solid var(--magnolia-border);
	border-radius: 16px;
	padding: 0;
	transition: all 0.2s ease;
	height: 100%;
	text-align: center;
	overflow: hidden;
}

.benefit-image-wrapper {
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
}

.benefit-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.benefit-card-modern:hover .benefit-image {
	transform: scale(1.1);
}

.benefit-card-modern .benefit-content {
	padding: 2rem;
}

.benefit-card-modern:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px -8px rgba(99, 102, 241, 0.15);
	border-color: var(--magnolia-primary);
}

.benefit-icon {
	width: 72px;
	height: 72px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--magnolia-primary), #8b5cf6);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: -36px auto 1.5rem;
	position: relative;
	z-index: 2;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.benefit-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--magnolia-dark);
}

.benefit-desc {
	line-height: 1.7;
	font-size: 0.9375rem;
}

/* FAQ Accordion Modern */
.accordion-modern {
	border: none;
}

.accordion-modern .accordion-item {
	background: white;
	border: 1px solid var(--magnolia-border);
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.2s ease;
}

.accordion-modern .accordion-item:hover {
	border-color: var(--magnolia-primary);
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.accordion-modern .accordion-button {
	background: white;
	border: none;
	padding: 1.5rem;
	font-weight: 600;
	color: var(--magnolia-dark);
	font-size: 1.0625rem;
	box-shadow: none;
}

.accordion-modern .accordion-button:not(.collapsed) {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.02));
	color: var(--magnolia-primary);
}

.accordion-modern .accordion-button:focus {
	box-shadow: none;
	border-color: transparent;
}

.accordion-modern .accordion-body {
	padding: 0 1.5rem 1.5rem;
	color: var(--magnolia-text-muted);
	line-height: 1.7;
}

/* Process Simple Card */
.process-simple-card {
	background: white;
	border: 1px solid var(--magnolia-border);
	border-radius: 20px;
	padding: 3rem 2rem;
	transition: all 0.2s ease;
	height: 100%;
	position: relative;
}

.process-simple-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px -8px rgba(99, 102, 241, 0.2);
	border-color: var(--magnolia-primary);
}

.process-simple-number {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--magnolia-primary), #8b5cf6);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.25rem;
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.process-simple-icon {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
	color: var(--magnolia-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	margin: 1.5rem auto 1.5rem;
}

.process-simple-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--magnolia-dark);
}

.process-simple-desc {
	line-height: 1.7;
	font-size: 0.9375rem;
}

/* Responsive for new sections */
@media (max-width: 768px) {
	.metric-card-modern {
		padding: 2rem 1.5rem;
	}

	.metric-number {
		font-size: 2rem;
	}

	.benefit-card-modern {
		padding: 1.5rem;
	}

	.process-simple-card {
		padding: 2.5rem 1.5rem;
	}

	.process-simple-icon {
		width: 64px;
		height: 64px;
		font-size: 2rem;
	}
}

/* Contact Form Modern */
.contact-form-modern .form-label {
	display: flex;
	align-items: center;
	font-weight: 600;
	color: var(--magnolia-text);
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
}

.contact-form-modern .form-label i {
	color: var(--magnolia-primary);
	font-size: 1rem;
}

.form-control-modern {
	border: 2px solid var(--magnolia-border);
	border-radius: 12px;
	padding: 0.875rem 1.25rem;
	transition: all 0.2s ease;
	font-size: 0.9375rem;
	background: white;
}

.form-control-modern:focus {
	border-color: var(--magnolia-primary);
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
	outline: none;
	background: white;
}

.form-control-modern::placeholder {
	color: var(--magnolia-text-muted);
	opacity: 0.6;
}

/* Contact Info Modern */
.contact-info-modern {
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
	border: 1px solid var(--magnolia-border);
	border-radius: 20px;
	padding: 2.5rem;
	height: 100%;
	position: sticky;
	top: 100px;
}

.contact-info-header h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--magnolia-dark);
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	padding: 1.5rem;
	background: white;
	border: 1px solid var(--magnolia-border);
	border-radius: 16px;
	margin-bottom: 1rem;
	transition: all 0.2s ease;
}

.contact-info-item:hover {
	transform: translateX(8px);
	box-shadow: 0 8px 24px -8px rgba(99, 102, 241, 0.2);
	border-color: var(--magnolia-primary);
}

.contact-icon-wrapper {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--magnolia-primary), #8b5cf6);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.contact-info-content strong {
	font-size: 1rem;
}

.contact-info-content a {
	transition: color 0.2s ease;
}

.contact-info-content a:hover {
	color: var(--magnolia-primary) !important;
}

.contact-map-wrapper {
	margin-top: 1.5rem;
}

.contact-map-wrapper iframe {
	border-radius: 12px;
}

.contact-social {
	padding-top: 1.5rem;
	border-top: 1px solid var(--magnolia-border);
}

.contact-social-link {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: white;
	border: 1px solid var(--magnolia-border);
	color: var(--magnolia-text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	transition: all 0.2s ease;
	text-decoration: none;
}

.contact-social-link:hover {
	background: linear-gradient(135deg, var(--magnolia-primary), #8b5cf6);
	border-color: var(--magnolia-primary);
	color: white;
	transform: translateY(-4px);
	box-shadow: 0 8px 16px -4px rgba(99, 102, 241, 0.3);
}

/* Portfolio Page Improvements */
.portfolio-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--magnolia-dark);
}

.portfolio-desc {
	line-height: 1.7;
	margin-bottom: 1rem;
	font-size: 0.9375rem;
}

.portfolio-category {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--magnolia-primary);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.portfolio-results {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.result-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.375rem 0.75rem;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
	border: 1px solid rgba(16, 185, 129, 0.2);
	border-radius: 6px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #059669;
}

.result-badge i {
	font-size: 0.875rem;
}

/* Responsive Contact */
@media (max-width: 992px) {
	.contact-info-modern {
		position: relative;
		top: 0;
		margin-top: 2rem;
	}
}

@media (max-width: 768px) {
	.contact-info-modern {
		padding: 2rem;
	}

	.contact-info-item {
		padding: 1.25rem;
	}

	.contact-icon-wrapper {
		width: 48px;
		height: 48px;
		font-size: 1.25rem;
	}
}


/* Section Featured - Seção Central Especial */
.section-featured,
.featured-section-modern {
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #4f46e5 100%);
	position: relative;
	overflow: hidden;
	padding: 8rem 0;
}

.section-featured::before,
.featured-section-modern::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: floatOrb 20s ease-in-out infinite;
}

.section-featured::after,
.featured-section-modern::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: floatOrb 25s ease-in-out infinite reverse;
}

.featured-section-modern .featured-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.featured-section-modern .container {
	position: relative;
	z-index: 1;
}

.featured-title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 800;
	line-height: 1.2;
	color: white;
	margin-bottom: 1.5rem;
}

.featured-subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	margin-bottom: 2rem;
}

.featured-highlights {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.featured-highlight-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.2s ease;
}

.featured-highlight-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateX(8px);
}

.highlight-icon-wrapper {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.featured-highlight-item strong {
	color: white;
	display: block;
	margin-bottom: 0.25rem;
	font-size: 1.0625rem;
}

.featured-highlight-item p {
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.btn-featured-modern {
	background: white;
	color: var(--magnolia-primary);
	padding: 1rem 2.25rem;
	font-weight: 600;
	border-radius: 12px;
	box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.3);
	transition: all 0.2s ease;
	border: none;
}

.btn-featured-modern:hover {
	background: rgba(255, 255, 255, 0.95);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.4);
	color: var(--magnolia-primary-dark);
}

.featured-visual {
	position: relative;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.featured-card {
	position: absolute;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 16px;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	color: white;
	font-weight: 600;
	animation: float 6s ease-in-out infinite;
	z-index: 2;
}

.featured-card i {
	font-size: 2rem;
}

.card-float-1 {
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.card-float-2 {
	top: 50%;
	right: 10%;
	animation-delay: 2s;
}

.card-float-3 {
	bottom: 10%;
	left: 20%;
	animation-delay: 4s;
}

.featured-orb-large,
.featured-orb-medium,
.featured-orb-small {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.4;
	animation: pulse 4s ease-in-out infinite;
}

.featured-orb-large {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
	top: 10%;
	right: 10%;
	animation-delay: 0s;
}

.featured-orb-medium {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
	bottom: 10%;
	left: 10%;
	animation-delay: 2s;
}

.featured-orb-small {
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 4s;
}

@keyframes floatOrb {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}

	50% {
		transform: translate(50px, 50px) scale(1.1);
	}
}

.badge-modern-light {
	display: inline-flex;
	align-items: center;
	padding: 0.625rem 1.25rem;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	color: white;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.text-gradient-light {
	background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.section-featured .section-title-modern {
	color: white;
}

.section-featured .differential-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
}

.section-featured .differential-card:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-4px);
}

.section-featured .differential-icon {
	background: rgba(255, 255, 255, 0.2);
	color: white;
}

.section-featured .differential-card h5 {
	color: white;
}

.section-featured .differential-card p {
	color: rgba(255, 255, 255, 0.9);
}

.section-featured .stat-card-modern {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-featured .stat-card-modern:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.4);
}

.section-featured .stat-icon {
	color: white;
}

.section-featured .stat-value {
	color: white;
}

.section-featured .stat-label,
.featured-section-modern .stat-label {
	color: rgba(255, 255, 255, 0.9);
}

.section-featured p.text-muted,
.featured-section-modern p.text-muted {
	color: rgba(255, 255, 255, 0.8) !important;
}

/* Background Variations */
.bg-white {
	background: #ffffff !important;
}

.bg-light-modern {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

.success-numbers-section {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.methodology-section {
	background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}

.benefits-section {
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.faq-section {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.process-simple-section {
	background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
}

/* Responsive Full-Width Sections */
@media (max-width: 768px) {

	.portfolio-section-full,
	.testimonials-section-full {
		padding: 4rem 0;
	}

	.section-featured {
		padding: 5rem 0;
	}

	.portfolio-swiper-full .swiper-slide,
	.testimonials-swiper-full .swiper-slide {
		padding: 0 0.5rem;
	}

	/* Responsividade Mobile Completa - 768px */
	.container {
		padding-left: 1rem;
		padding-right: 1rem;
		max-width: 100%;
	}

	/* Hero Section */
	.hero-modern {
		padding: 2.5rem 0 1.5rem !important;
		min-height: auto !important;
	}

	.hero-title {
		font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
		line-height: 1.2 !important;
		margin-bottom: 1.25rem !important;
		word-break: break-word;
	}

	.hero-subtitle {
		font-size: clamp(0.9375rem, 3vw, 1rem) !important;
		line-height: 1.6 !important;
		margin-bottom: 1.75rem !important;
		max-width: 100% !important;
	}

	.hero-stats {
		flex-direction: column !important;
		gap: 1.5rem !important;
		align-items: flex-start !important;
	}

	.stat-item {
		width: 100%;
	}

	.hero-visual {
		margin-top: 2rem;
		display: none;
	}

	/* Badges e Títulos */
	.badge-modern {
		font-size: 0.75rem !important;
		padding: 0.5rem 0.875rem !important;
		margin-bottom: 1rem !important;
	}

	.section-title-modern {
		font-size: clamp(1.5rem, 6vw, 2rem) !important;
		margin-bottom: 1.25rem !important;
		line-height: 1.3 !important;
		word-break: break-word;
	}

	.lead-max-width {
		font-size: clamp(0.875rem, 2.5vw, 0.9375rem) !important;
		line-height: 1.6 !important;
		padding: 0 0.5rem;
	}

	section.my-5 {
		padding-top: 2.5rem !important;
		padding-bottom: 2.5rem !important;
	}

	.section-header {
		margin-bottom: 2rem !important;
		padding: 0 0.5rem;
	}

	/* Cards e Componentes */
	.service-card-modern,
	.portfolio-card-modern,
	.testimonial-card-modern,
	.benefit-card-modern,
	.metric-card-modern,
	.process-card-modern,
	.process-simple-card,
	.differential-card,
	.team-card-modern {
		padding: 1.25rem !important;
		margin-bottom: 1.25rem;
		border-radius: 16px !important;
	}

	.service-card-modern h3,
	.benefit-card-modern h4,
	.process-card-modern h4 {
		font-size: 1.125rem !important;
		margin-bottom: 0.75rem !important;
	}

	.service-card-modern p,
	.benefit-card-modern p,
	.process-card-modern p {
		font-size: 0.875rem !important;
		line-height: 1.6 !important;
	}

	.stats-grid-modern {
		grid-template-columns: 1fr !important;
		gap: 1rem !important;
	}

	.tech-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1rem !important;
	}

	/* Botões */
	.btn-lg {
		padding: 0.875rem 1.5rem !important;
		font-size: 0.9375rem !important;
		width: 100%;
		min-height: 48px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.btn-primary-modern,
	.btn-outline-modern,
	.btn-featured-modern {
		width: 100% !important;
		justify-content: center;
		padding: 0.875rem 1.5rem !important;
		font-size: 0.9375rem !important;
		min-height: 48px;
	}

	.d-flex.gap-3 {
		flex-direction: column !important;
		gap: 0.875rem !important;
	}

	/* CTA Sections */
	.cta-section-modern {
		padding: 2.5rem 1rem !important;
		text-align: center;
	}

	.cta-title {
		font-size: clamp(1.5rem, 6vw, 2rem) !important;
		margin-bottom: 1rem !important;
	}

	.cta-subtitle {
		font-size: 0.9375rem !important;
		margin-bottom: 1.5rem !important;
	}

	.swiper-button-next,
	.swiper-button-prev {
		display: none !important;
	}

	.swiper {
		padding-bottom: 3rem !important;
	}

	.swiper-pagination {
		bottom: 0.75rem !important;
	}

	.swiper-pagination-bullet {
		width: 10px !important;
		height: 10px !important;
		margin: 0 0.25rem !important;
	}

	/* Portfolio */
	.portfolio-image img {
		height: 180px !important;
		object-fit: cover;
		width: 100%;
	}

	/* Testimonials Mobile */
	.testimonial-card-modern {
		text-align: center;
	}

	.testimonial-text {
		font-size: 0.9375rem !important;
		line-height: 1.6 !important;
		margin-bottom: 1.25rem;
	}

	.testimonial-author {
		justify-content: center;
	}

	.author-avatar {
		width: 44px !important;
		height: 44px !important;
		font-size: 1.125rem !important;
	}

	/* Stats Mobile */
	.stat-item {
		text-align: center;
		padding: 1rem;
	}

	.stat-number {
		font-size: 2rem !important;
		margin-bottom: 0.5rem;
	}

	.stat-label {
		font-size: 0.875rem !important;
	}

	/* Process Mobile */
	.process-timeline {
		padding-left: 1.25rem !important;
	}

	.process-item {
		padding-left: 1.25rem !important;
		margin-bottom: 1.75rem;
	}

	.process-number {
		left: -1.25rem !important;
		width: 32px !important;
		height: 32px !important;
		font-size: 0.8125rem !important;
	}

	.process-number-modern {
		width: 60px !important;
		height: 60px !important;
		font-size: 1.375rem !important;
	}

	.process-simple-icon {
		width: 60px !important;
		height: 60px !important;
		font-size: 1.875rem !important;
	}

	.process-simple-title {
		font-size: 1.25rem !important;
	}

	.process-simple-desc {
		font-size: 0.875rem !important;
	}

	.portfolio-content {
		padding: 1rem !important;
	}

	.portfolio-content h4 {
		font-size: 1.125rem !important;
		margin-bottom: 0.5rem !important;
	}

	.portfolio-content p {
		font-size: 0.8125rem !important;
		margin-bottom: 0.75rem !important;
	}

	.portfolio-tech {
		flex-wrap: wrap;
		gap: 0.375rem !important;
	}

	.tech-badge {
		font-size: 0.6875rem !important;
		padding: 0.25rem 0.625rem !important;
	}

	/* Footer Mobile - Melhorias */
	.footer-main {
		padding: 2.5rem 0 1.5rem !important;
	}

	.footer-magnolia .row {
		text-align: center !important;
		gap: 1.5rem !important;
	}

	.footer-magnolia .col-md-6,
	.footer-magnolia .col-lg-4,
	.footer-magnolia .col-lg-3,
	.footer-magnolia .col-6 {
		margin-bottom: 1.5rem;
		width: 100% !important;
		flex: 0 0 100% !important;
		max-width: 100% !important;
		text-align: center !important;
	}

	.footer-magnolia .col-md-6:first-child {
		margin-bottom: 1.75rem;
	}

	.footer-magnolia .col-md-6:first-child p {
		font-size: 0.875rem !important;
		line-height: 1.6;
		margin: 0.75rem 0 0 0;
		opacity: 0.8;
	}

	.footer-magnolia .footer-heading {
		font-size: 0.8125rem !important;
		margin-bottom: 1rem !important;
		font-weight: 600;
		letter-spacing: 0.05em;
	}

	.footer-magnolia .footer-links {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
	}

	.footer-magnolia .footer-links li {
		margin-bottom: 0;
	}

	.footer-magnolia .footer-links a {
		font-size: 0.875rem !important;
		padding: 0.375rem 0;
		display: block;
		opacity: 0.85;
	}

	.footer-magnolia .footer-contact {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
	}

	.footer-magnolia .footer-contact li {
		margin-bottom: 0;
		font-size: 0.875rem !important;
		line-height: 1.6;
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0.85;
	}

	.footer-magnolia .footer-contact i {
		font-size: 0.875rem !important;
		margin-right: 0.5rem !important;
		flex-shrink: 0;
	}

	.footer-magnolia .footer-contact a {
		font-size: 0.875rem !important;
		word-break: break-word;
	}

	.footer-magnolia .footer-social {
		display: flex !important;
		flex-direction: row !important;
		justify-content: center !important;
		align-items: center !important;
		margin-top: 0.5rem !important;
		gap: 0.75rem !important;
	}

	.footer-magnolia .footer-social a {
		width: 42px !important;
		height: 42px !important;
		font-size: 1.25rem !important;
	}

	.footer-magnolia .footer-divider {
		margin: 2rem auto 1.25rem !important;
		max-width: 200px;
	}

	.footer-magnolia .footer-text-light {
		font-size: 0.8125rem !important;
		line-height: 1.6;
		display: block;
		padding: 0;
		opacity: 0.7;
	}

	.footer-magnolia .d-flex.align-items-center.gap-2 {
		justify-content: center;
		margin-bottom: 1rem !important;
	}

	.footer-magnolia .d-flex.align-items-center.gap-2 img {
		width: 28px !important;
		height: 28px !important;
	}

	.footer-magnolia .d-flex.align-items-center.gap-2 strong {
		font-size: 1.125rem !important;
	}

	.navbar-magnolia {
		padding: 0.75rem 0 !important;
	}

	.navbar-brand {
		font-size: 1.125rem !important;
	}

	.navbar-brand img {
		width: 24px !important;
		height: 24px !important;
	}

	/* Dropdown Mobile */
	.dropdown-overlay {
		top: 70px !important;
	}

	/* Dropdown Serviços Mobile */
	.dropdown-menu-services {
		position: fixed !important;
		left: 1rem !important;
		right: 1rem !important;
		width: calc(100% - 2rem) !important;
		min-width: auto !important;
		max-width: none !important;
		transform: none !important;
		margin-top: 0 !important;
		top: auto !important;
		border-radius: 16px !important;
		box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.25) !important;
		max-height: calc(100vh - 120px) !important;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.nav-item.dropdown .dropdown-menu-services {
		position: fixed !important;
		left: 1rem !important;
		right: 1rem !important;
		width: calc(100% - 2rem) !important;
		transform: none !important;
	}

	.dropdown-services-container {
		flex-direction: column !important;
	}

	.dropdown-services-section {
		padding: 1.25rem !important;
	}

	.dropdown-services-section:first-child {
		border-right: none !important;
		border-bottom: 1px solid rgba(229, 231, 235, 0.5);
		padding-bottom: 1.25rem !important;
	}

	.dropdown-services-section:last-child {
		padding-top: 1.25rem !important;
	}

	.dropdown-section-title {
		font-size: 0.6875rem !important;
		margin-bottom: 0.875rem !important;
		font-weight: 700;
	}

	.dropdown-services-grid {
		gap: 0.625rem !important;
	}

	.dropdown-service-item {
		padding: 0.875rem !important;
		flex-direction: row !important;
		gap: 0.875rem !important;
		margin-bottom: 0 !important;
	}

	.dropdown-service-icon {
		width: 40px !important;
		height: 40px !important;
		min-width: 40px !important;
		font-size: 1.125rem !important;
		flex-shrink: 0;
	}

	.dropdown-service-content {
		flex: 1;
		min-width: 0;
	}

	.dropdown-service-content strong {
		font-size: 0.875rem !important;
		line-height: 1.4;
		display: block;
		margin-bottom: 0.125rem;
	}

	.dropdown-service-content span {
		font-size: 0.75rem !important;
		line-height: 1.5;
		display: block;
	}

	.dropdown-services-list {
		gap: 0.5rem !important;
	}

	.dropdown-service-link {
		padding: 0.75rem 0.875rem !important;
		font-size: 0.875rem !important;
		gap: 0.625rem !important;
	}

	.dropdown-service-link i {
		font-size: 1rem !important;
		width: 20px !important;
		flex-shrink: 0;
	}

	.dropdown-menu-modern {
		position: fixed !important;
		left: 1rem !important;
		right: 1rem !important;
		width: auto !important;
		min-width: auto !important;
		max-width: none !important;
		transform: none !important;
		padding: 0.75rem !important;
		margin-top: 0.5rem !important;
		border-radius: 16px !important;
		box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.25) !important;
	}

	.dropdown-menu-modern .dropdown-item {
		padding: 0.875rem 1rem !important;
		font-size: 0.9375rem !important;
		margin-bottom: 0.375rem;
		border-radius: 10px !important;
		justify-content: flex-start !important;
	}

	.dropdown-menu-modern .dropdown-item:last-child {
		margin-bottom: 0;
	}

	.dropdown-menu-modern .dropdown-item i {
		width: 32px !important;
		height: 32px !important;
		font-size: 1.125rem !important;
		margin-right: 0.75rem !important;
	}

	.dropdown-menu-modern .dropdown-divider {
		margin: 0.75rem 0 !important;
	}

	/* Formulários */
	.form-control-modern {
		font-size: 1rem !important;
		padding: 0.875rem 1rem !important;
		min-height: 48px;
		border-radius: 12px !important;
	}

	.form-label {
		font-size: 0.9375rem !important;
		margin-bottom: 0.5rem !important;
	}

	textarea.form-control-modern {
		min-height: 120px;
		resize: vertical;
	}

	.contact-info-modern {
		position: relative !important;
		top: 0 !important;
		margin-top: 2rem;
		padding: 1.5rem !important;
	}

	.contact-info-item {
		padding: 1rem !important;
		margin-bottom: 1rem;
	}

	.contact-icon-wrapper {
		width: 44px !important;
		height: 44px !important;
		font-size: 1.125rem !important;
	}

	/* Accordion FAQ */
	.accordion-button-modern {
		font-size: 0.9375rem !important;
		padding: 1rem !important;
		min-height: 56px;
	}

	.accordion-body {
		font-size: 0.875rem !important;
		padding: 1rem !important;
		line-height: 1.6;
	}

	/* Featured Section */
	.section-featured {
		padding: 3rem 1rem !important;
	}

	.featured-title {
		font-size: clamp(1.5rem, 6vw, 2rem) !important;
		margin-bottom: 1rem !important;
	}

	.featured-subtitle {
		font-size: 0.9375rem !important;
		line-height: 1.6 !important;
	}

	.featured-highlights {
		gap: 1rem !important;
		margin-top: 1.5rem !important;
	}

	.highlight-icon-wrapper {
		width: 48px !important;
		height: 48px !important;
		font-size: 1.25rem !important;
	}

	.floating-card {
		display: none;
	}
}

/* Mobile Extra Small - 576px */
@media (max-width: 576px) {
	.container {
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}

	.hero-modern {
		padding: 2.5rem 0 1.5rem !important;
	}

	.hero-title {
		font-size: clamp(1.5rem, 7vw, 2rem) !important;
		margin-bottom: 1rem !important;
	}

	.hero-subtitle {
		font-size: 0.9375rem !important;
		margin-bottom: 1.5rem !important;
	}

	section.my-5 {
		padding-top: 2.5rem !important;
		padding-bottom: 2.5rem !important;
	}

	.service-card-modern,
	.portfolio-card-modern,
	.testimonial-card-modern,
	.benefit-card-modern,
	.metric-card-modern,
	.process-card-modern,
	.process-simple-card {
		padding: 1.25rem !important;
	}

	.section-title-modern {
		font-size: clamp(1.5rem, 7vw, 1.875rem) !important;
	}

	.tech-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 0.75rem !important;
	}

	.btn {
		width: 100% !important;
	}

	.stats-grid-modern {
		grid-template-columns: 1fr !important;
	}

	/* Footer Mobile Extra Small - Melhorias */
	.footer-main {
		padding: 2rem 0 1.25rem !important;
	}

	.footer-magnolia .row {
		gap: 1.25rem !important;
	}

	.footer-magnolia .col-md-6,
	.footer-magnolia .col-lg-4,
	.footer-magnolia .col-lg-3,
	.footer-magnolia .col-6 {
		margin-bottom: 1.25rem;
	}

	.footer-magnolia .col-md-6:first-child {
		margin-bottom: 1.5rem;
	}

	.footer-magnolia .footer-heading {
		font-size: 0.75rem !important;
		margin-bottom: 0.875rem !important;
	}

	.footer-magnolia .footer-links a {
		font-size: 0.8125rem !important;
		padding: 0.25rem 0;
	}

	.footer-magnolia .footer-contact li {
		font-size: 0.8125rem !important;
		gap: 0.5rem;
	}

	.footer-magnolia .footer-contact i {
		font-size: 0.8125rem !important;
		margin-right: 0.375rem !important;
	}

	.footer-magnolia .footer-social {
		display: flex !important;
		flex-direction: row !important;
		justify-content: center !important;
		align-items: center !important;
		margin-top: 0.5rem !important;
		gap: 0.625rem !important;
	}

	.footer-magnolia .footer-social a {
		width: 40px !important;
		height: 40px !important;
		font-size: 1.125rem !important;
	}

	.footer-magnolia .footer-divider {
		margin: 1.75rem auto 1rem !important;
		max-width: 150px;
	}

	.footer-magnolia .footer-text-light {
		font-size: 0.75rem !important;
		line-height: 1.6;
		padding: 0 0.75rem;
	}

	.footer-magnolia .d-flex.align-items-center.gap-2 {
		margin-bottom: 0.875rem !important;
	}

	.footer-magnolia .d-flex.align-items-center.gap-2 img {
		width: 26px !important;
		height: 26px !important;
	}

	.footer-magnolia .d-flex.align-items-center.gap-2 strong {
		font-size: 1.0625rem !important;
	}

	.footer-magnolia .col-md-6:first-child p {
		font-size: 0.8125rem !important;
		margin-top: 0.5rem;
	}

	.contact-info-modern {
		padding: 1.5rem !important;
	}

	/* Dropdown Mobile Extra Small */
	.dropdown-menu-services {
		left: 0.75rem !important;
		right: 0.75rem !important;
		width: calc(100% - 1.5rem) !important;
		top: calc(100% + 0.5rem) !important;
		max-height: calc(100vh - 100px) !important;
	}

	.dropdown-services-section {
		padding: 1rem !important;
	}

	.dropdown-services-section:first-child {
		padding-bottom: 1rem !important;
	}

	.dropdown-services-section:last-child {
		padding-top: 1rem !important;
	}

	.dropdown-section-title {
		font-size: 0.625rem !important;
		margin-bottom: 0.75rem !important;
	}

	.dropdown-services-grid {
		gap: 0.5rem !important;
	}

	.dropdown-service-item {
		padding: 0.75rem !important;
		gap: 0.75rem !important;
	}

	.dropdown-service-icon {
		width: 36px !important;
		height: 36px !important;
		min-width: 36px !important;
		font-size: 1rem !important;
	}

	.dropdown-service-content strong {
		font-size: 0.8125rem !important;
	}

	.dropdown-service-content span {
		font-size: 0.6875rem !important;
	}

	.dropdown-service-link {
		padding: 0.625rem 0.75rem !important;
		font-size: 0.8125rem !important;
	}

	.dropdown-menu-modern {
		left: 0.75rem !important;
		right: 0.75rem !important;
		padding: 0.625rem !important;
	}

	.dropdown-menu-modern .dropdown-item {
		padding: 0.75rem 0.875rem !important;
		font-size: 0.875rem !important;
	}

	.dropdown-menu-modern .dropdown-item i {
		width: 28px !important;
		height: 28px !important;
		font-size: 1rem !important;
		margin-right: 0.625rem !important;
	}

	/* Melhorias Adicionais Mobile Extra Small */
	.stat-number,
	.stat-value {
		font-size: 1.75rem !important;
	}

	.stat-label {
		font-size: 0.8125rem !important;
	}

	.metric-number {
		font-size: 2rem !important;
	}

	.metric-label {
		font-size: 0.9375rem !important;
	}

	.metric-desc {
		font-size: 0.8125rem !important;
	}

	.team-avatar {
		width: 80px !important;
		height: 80px !important;
	}

	.team-badge {
		width: 32px !important;
		height: 32px !important;
		font-size: 0.875rem !important;
	}

	/* Swiper Mobile */
	.swiper {
		padding-bottom: 2.5rem !important;
	}

	.swiper-pagination {
		bottom: 0.5rem !important;
	}

	.swiper-pagination-bullet {
		width: 8px !important;
		height: 8px !important;
	}

	/* Imagens Responsivas */
	img {
		max-width: 100%;
		height: auto;
	}

	.ratio {
		overflow: hidden;
	}

	/* Text Utilities */
	.text-muted {
		font-size: 0.875rem !important;
	}

	small {
		font-size: 0.75rem !important;
	}

	/* Spacing Utilities Mobile */
	.mb-5 {
		margin-bottom: 2rem !important;
	}

	.mt-5 {
		margin-top: 2rem !important;
	}

	.py-5 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}

	/* Navbar Mobile */
	.navbar-nav {
		padding: 1rem 0;
	}

	.nav-link {
		padding: 0.75rem 0 !important;
		font-size: 0.9375rem !important;
	}

	/* Scroll Padding */
	html {
		scroll-padding-top: 70px !important;
	}

	/* Melhorias Gerais Mobile */
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		word-break: break-word;
		hyphens: auto;
	}

	p,
	li,
	span {
		word-wrap: break-word;
		overflow-wrap: break-word;
	}

	/* Tables Responsivas */
	.table-responsive {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	/* Cards com melhor espaçamento */
	.card {
		margin-bottom: 1.25rem;
	}

	.card-body {
		padding: 1.25rem !important;
	}

	/* Listas */
	ul,
	ol {
		padding-left: 1.25rem;
	}

	/* Links */
	a {
		word-break: break-word;
	}

	/* Inputs e selects */
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="number"],
	select,
	textarea {
		font-size: 1rem !important;
		-webkit-appearance: none;
		appearance: none;
	}

	/* Evita zoom no iOS */
	input[type="text"]:focus,
	input[type="email"]:focus,
	input[type="tel"]:focus,
	textarea:focus {
		font-size: 1rem !important;
	}
}

/* =========================
   404 PAGE STYLES
   ========================= */
.hero-modern.min-vh-100 {
	min-height: 100vh;
}

.error-404-content {
	padding: 3rem 0;
	position: relative;
	z-index: 2;
}

.error-number {
	position: relative;
	display: inline-block;
	margin-bottom: 2rem;
}

.error-404-text {
	font-size: clamp(8rem, 20vw, 12rem);
	font-weight: 900;
	line-height: 1;
	color: rgba(255, 255, 255, 0.15);
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.05em;
	display: block;
	user-select: none;
}

/* Quick Link Cards */
.quick-link-card {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	background: white;
	border: 1px solid var(--magnolia-border);
	border-radius: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
	color: inherit;
}

.quick-link-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px -8px rgba(99, 102, 241, 0.2);
	border-color: var(--magnolia-primary);
	color: inherit;
}

.quick-link-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
	color: var(--magnolia-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	flex-shrink: 0;
}

.quick-link-content {
	flex: 1;
}

.quick-link-content h5 {
	margin: 0 0 0.25rem 0;
	color: var(--magnolia-dark);
	font-size: 1.125rem;
}

.quick-link-arrow {
	color: var(--magnolia-primary);
	font-size: 1.25rem;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.quick-link-card:hover .quick-link-arrow {
	transform: translateX(4px);
}

/* Service Link Cards */
.service-link-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem;
	background: white;
	border: 1px solid var(--magnolia-border);
	border-radius: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
	color: inherit;
	height: 100%;
}

.service-link-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px -8px rgba(99, 102, 241, 0.2);
	border-color: var(--magnolia-primary);
	color: inherit;
}

.service-link-icon {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: white;
	margin-bottom: 1.5rem;
}

.service-link-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--magnolia-dark);
}

.service-link-text {
	color: var(--magnolia-primary);
	font-weight: 600;
	font-size: 0.9375rem;
	transition: gap 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.service-link-card:hover .service-link-text {
	gap: 0.75rem;
}