:root {
	--rmf-bg: #0b1320;
	--rmf-surface: #111b2a;
	--rmf-ink: #e9f1fb;
	--rmf-muted: #9bb0c8;
	--rmf-brand: #205d8a;
	--rmf-brand-dark: #164070;
	--rmf-accent: #f28e34;
	--rmf-border: #2a3b50;
	--rmf-shadow: 0 14px 36px rgba(3, 8, 16, 0.58);
	--rmf-shadow-lg: 0 22px 62px rgba(3, 8, 16, 0.72);
	--rmf-shadow-sm: 0 2px 10px rgba(3, 8, 16, 0.42);
	--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-fast: all 0.2s ease-out;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes glow {
	0%, 100% {
		box-shadow: 0 0 20px rgba(242, 142, 52, 0.3);
	}
	50% {
		box-shadow: 0 0 30px rgba(242, 142, 52, 0.5);
	}
}

body {
	margin: 0;
	font-family: "Manrope", "Segoe UI", sans-serif;
	line-height: 1.6;
	color: var(--rmf-ink);
	background: radial-gradient(circle at 20% 0%, #14253a 0%, #0d1928 42%, #090f18 100%);
	background-attachment: fixed;
	animation: fadeIn 0.8s ease-out;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

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

a:hover {
	color: var(--rmf-accent);
	transform: translateY(-2px);
}

h1,
h2,
h3,
h4 {
	font-family: "Sora", "Segoe UI", sans-serif;
	line-height: 1.2;
	margin-top: 0;
	animation: fadeInUp 0.8s ease-out backwards;
}

h1 { animation-delay: 0.1s; }
h2 { animation-delay: 0.2s; }
h3 { animation-delay: 0.3s; }
h4 { animation-delay: 0.4s; }

.container {
	width: min(1120px, 92vw);
	margin: 0 auto;
}

.section {
	padding: 88px 0;
	scroll-margin-top: 96px;
}

.section-alt {
	background: linear-gradient(180deg, rgba(17, 27, 42, 0.86) 0%, rgba(11, 19, 32, 0.94) 100%);
	border-top: 1px solid var(--rmf-border);
	border-bottom: 1px solid var(--rmf-border);
}

.kicker {
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--rmf-brand);
	font-size: 0.82rem;
	margin-bottom: 10px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: linear-gradient(120deg, rgba(11, 19, 32, 0.97) 0%, rgba(22, 46, 73, 0.96) 100%);
	backdrop-filter: blur(12px);
	border-bottom: 2px solid rgba(242, 142, 52, 0.8);
	box-shadow: var(--rmf-shadow-sm);
	animation: slideInDown 0.6s ease-out;
	transition: var(--transition);
}

.site-header:hover {
	box-shadow: var(--rmf-shadow);
}

@keyframes slideInDown {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	transition: var(--transition);
}

.site-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--rmf-ink);
	background: linear-gradient(135deg, var(--rmf-brand) 0%, var(--rmf-accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.site-logo-link {
	display: flex;
	align-items: center;
	transition: var(--transition);
	animation: slideInLeft 0.6s ease-out;
}

.site-logo-link:hover {
	transform: scale(1.05) rotate(-1deg);
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.site-logo-img {
	height: 54px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
	display: block;
}

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

.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 16px;
	align-items: center;
	animation: slideInRight 0.6s ease-out;
}

.menu li {
	animation: fadeInUp 0.6s ease-out backwards;
}

.menu li:nth-child(1) { animation-delay: 0.1s; }
.menu li:nth-child(2) { animation-delay: 0.2s; }
.menu li:nth-child(3) { animation-delay: 0.3s; }
.menu li:nth-child(4) { animation-delay: 0.4s; }
.menu li:nth-child(5) { animation-delay: 0.5s; }

.menu a {
	color: #e8f1fb;
	font-weight: 600;
	padding: 10px 16px;
	border-radius: 8px;
	transition: var(--transition);
	position: relative;
	display: inline-block;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(156, 188, 220, 0.24);
	box-shadow: 0 6px 16px rgba(2, 10, 20, 0.34);
}

.menu a::after {
	content: '';
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 6px;
	height: 2px;
	background: rgba(255, 255, 255, 0.95);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.25s ease-out;
}

.menu a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--rmf-accent) 0%, #f6a357 100%);
	border-radius: 8px;
	z-index: -1;
	transition: var(--transition-fast);
}

.menu a:hover::before {
	left: 0;
}

.menu a:hover,
.menu .current-menu-item > a,
.menu a.is-active {
	color: #0c1d2f;
	border-color: transparent;
	background: linear-gradient(135deg, var(--rmf-accent) 0%, #f6a357 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(242, 142, 52, 0.34);
}

.menu .current-menu-item > a::after,
.menu a.is-active::after {
	transform: scaleX(1);
}

.menu-toggle {
	display: none;
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 8px;
	animation: slideInRight 0.6s ease-out;
	transition: var(--transition);
}

.menu-toggle:hover span {
	background: var(--rmf-accent);
}

.menu-toggle span {
	display: block;
	width: 25px;
	height: 2px;
	margin: 5px 0;
	background: var(--rmf-ink);
	transition: var(--transition-fast);
	border-radius: 2px;
}

.hero {
	background: linear-gradient(140deg, #205d8a 0%, #1a4d7a 45%, #0e2f4f 100%);
	background-attachment: fixed;
	padding-top: 112px;
	color: #f5f0f6;
	position: relative;
	overflow: hidden;
}

.hero [data-hero-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero.is-ready [data-hero-reveal="1"] {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.05s;
}

.hero.is-ready [data-hero-reveal="2"] {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.16s;
}

.hero.is-ready [data-hero-reveal="3"] {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.28s;
}

.hero.is-ready [data-hero-reveal="4"] {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.4s;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(242, 142, 52, 0.1) 0%, transparent 50%),
	            radial-gradient(circle at 80% 80%, rgba(32, 93, 138, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.hero .kicker {
	color: var(--rmf-accent);
	animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
	color: #ffffff;
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	animation: fadeInUp 0.8s ease-out 0.1s backwards;
	background: linear-gradient(120deg, #ffffff 0%, #e8f0f8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	color: #d6e4f0;
	animation: fadeInUp 0.8s ease-out 0.2s backwards;
	font-size: 1.1rem;
	line-height: 1.8;
}

.hero h1 {
	font-size: clamp(2rem, 5vw, 3.3rem);
	max-width: 780px;
	margin-bottom: 18px;
}

.hero p {
	max-width: 760px;
	font-size: 1.06rem;
}

.hero-actions {
	display: flex;
	gap: 12px;
	margin-top: 24px;
	flex-wrap: wrap;
}

.trust-strip {
	padding-top: 64px;
	padding-bottom: 64px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 240, 246, 0.96) 100%);
	border-top: 1px solid rgba(32, 93, 138, 0.1);
	border-bottom: 1px solid rgba(32, 93, 138, 0.1);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 16px;
}

.trust-item {
	background: #fff;
	border: 1px solid rgba(32, 93, 138, 0.12);
	border-radius: 14px;
	padding: 20px;
	box-shadow: var(--rmf-shadow-sm);
}

.trust-item strong {
	display: block;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: 1.8rem;
	line-height: 1.1;
	color: var(--rmf-brand-dark);
}

.trust-item span {
	display: block;
	margin-top: 8px;
	color: var(--rmf-muted);
	font-size: 0.95rem;
}

.logo-wall {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin-top: 20px;
}

.logo-wall span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 14px;
	border: 1px dashed rgba(32, 93, 138, 0.25);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--rmf-brand);
	text-transform: uppercase;
}

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

.testimonial-card {
	background: #fff;
	border: 1px solid rgba(32, 93, 138, 0.16);
	border-radius: 16px;
	padding: 22px;
	box-shadow: var(--rmf-shadow-sm);
	transition: var(--transition);
}

.testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--rmf-shadow);
	border-color: rgba(242, 142, 52, 0.45);
}

.testimonial-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.testimonial-head h3 {
	margin-bottom: 4px;
	font-size: 1rem;
}

.testimonial-role {
	margin: 0;
	font-size: 0.84rem;
	color: var(--rmf-muted);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.testimonial-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, var(--rmf-brand) 0%, var(--rmf-accent) 100%);
	box-shadow: 0 10px 18px rgba(32, 93, 138, 0.2);
}

.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 999;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, #1aa04a 0%, #24d366 100%);
	color: #fff;
	font-weight: 700;
	box-shadow: 0 14px 30px rgba(22, 95, 47, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.22);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
	color: #fff;
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 18px 36px rgba(22, 95, 47, 0.44);
}

.whatsapp-float svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.whatsapp-float span {
	line-height: 1;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 10px;
	font-weight: 700;
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	animation: scaleIn 0.6s ease-out 0.3s backwards;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease-out, height 0.6s ease-out;
	z-index: 0;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn-primary {
	background: linear-gradient(135deg, var(--rmf-brand) 0%, var(--rmf-brand-dark) 100%);
	color: #fff;
	box-shadow: 0 10px 24px rgba(32, 93, 138, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 36px rgba(32, 93, 138, 0.5);
}

.btn-primary:active {
	transform: translateY(-1px);
}

.btn-outline {
	border-color: var(--rmf-accent);
	color: var(--rmf-accent);
	background: transparent;
	transition: var(--transition);
}

.btn-outline:hover {
	border-color: #ff9c47;
	color: #fff;
	background: var(--rmf-accent);
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(242, 142, 52, 0.3);
}

.hero .btn-outline {
	border-color: #ffffff;
	color: #ffffff;
	background: transparent;
}

.hero .btn-outline:hover {
	border-color: var(--rmf-accent);
	color: var(--rmf-accent);
}

.two-col {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 26px;
}

.cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 24px;
}

.card,
.highlight-box,
.post-card-list,
.post-single,
.sidebar-area,
.widget,
.no-results,
.not-found {
	background: var(--rmf-surface);
	padding: 24px;
	border: 1px solid var(--rmf-border);
	border-radius: 16px;
	box-shadow: var(--rmf-shadow-sm);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.8s ease-out backwards;
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--rmf-brand) 0%, var(--rmf-accent) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease-out;
}

.card:hover::before {
	transform: scaleX(1);
}

.card:hover {
	transform: translateY(-8px);
	box-shadow: var(--rmf-shadow-lg);
	border-color: var(--rmf-accent);
}

.card .card-icon {
	font-size: 2.8rem;
	margin-bottom: 16px;
	display: block;
	animation: scaleIn 0.6s ease-out 0.2s backwards;
	transition: var(--transition);
}

.card:hover .card-icon {
	transform: scale(1.15) rotate(5deg);
	filter: drop-shadow(0 4px 12px rgba(242, 142, 52, 0.4));
}

.post-card h3,
.post-card-list h2,
.post-single h1 {
	margin-bottom: 8px;
}

.post-meta {
	font-size: 0.88rem;
	color: var(--rmf-muted);
	margin: 0 0 8px;
}

.post-thumb img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 10px 0;
}

.content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 20px;
}

.text-link {
	font-weight: 700;
}

.sidebar-area .widget + .widget {
	margin-top: 16px;
}

.widget-title {
	margin-bottom: 8px;
}

.site-footer {
	margin-top: 64px;
	padding-top: 48px;
	background: #0e2a42;
	color: #d3d3d3;
}

.site-footer a {
	color: var(--rmf-accent);
}

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

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu li {
	margin-bottom: 6px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 24px;
	padding: 16px 0;
	font-size: 0.9rem;
}

.skip-link {
	position: absolute;
	left: -9999px;
}

.skip-link:focus {
	left: 12px;
	top: 12px;
	padding: 10px;
	background: #fff;
	z-index: 1000;
}

@media (max-width: 960px) {
	.cards,
	.cards-4 {
		grid-template-columns: 1fr 1fr;
	}

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

	.logo-wall {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.two-col,
	.content-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.menu-toggle {
		display: inline-block;
	}

	.main-navigation {
		display: none;
		position: absolute;
		top: 82px;
		left: 0;
		right: 0;
		padding: 12px 4vw 18px;
		background: linear-gradient(180deg, rgba(11, 19, 32, 0.99) 0%, rgba(16, 33, 52, 0.98) 100%);
		border-bottom: 1px solid rgba(242, 142, 52, 0.35);
	}

	.main-navigation.is-open {
		display: block;
	}

	.menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
}

@media (max-width: 700px) {
	.section {
		padding: 72px 0;
	}

	.cards,
	.cards-4 {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 86px;
	}

	.trust-grid,
	.logo-wall {
		grid-template-columns: 1fr;
	}

	.whatsapp-float {
		right: 14px;
		bottom: 14px;
		padding: 11px 13px;
	}

	.whatsapp-float span {
		display: none;
	}
}

/* Scroll Animations */
.site-header.scrolled {
	box-shadow: var(--rmf-shadow);
	background: linear-gradient(120deg, rgba(9, 16, 28, 0.99) 0%, rgba(14, 29, 47, 0.98) 100%);
}

/* Viewport Animations */
.card:not(.in-viewport),
.post-card:not(.in-viewport),
.section h2:not(.in-viewport),
.section h3:not(.in-viewport),
.btn:not(.in-viewport),
.highlight-box:not(.in-viewport) {
	opacity: 0;
	transform: translateY(30px);
}

.card.in-viewport,
.post-card.in-viewport,
.section h2.in-viewport,
.section h3.in-viewport,
.btn.in-viewport,
.highlight-box.in-viewport {
	animation: fadeInUp 0.8s ease-out forwards;
}

.testimonial-card:not(.in-viewport),
.trust-item:not(.in-viewport),
.logo-wall span:not(.in-viewport) {
	opacity: 0;
	transform: translateY(20px);
}

.testimonial-card.in-viewport,
.trust-item.in-viewport,
.logo-wall span.in-viewport {
	animation: fadeInUp 0.7s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
	.hero [data-hero-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Stagger effect */
.card.in-viewport {
	animation: fadeInUp 0.8s ease-out forwards;
}

.cards > .card:nth-child(1).in-viewport {
	animation-delay: 0s;
}

.cards > .card:nth-child(2).in-viewport {
	animation-delay: 0.1s;
}

.cards > .card:nth-child(3).in-viewport {
	animation-delay: 0.2s;
}

.cards > .card:nth-child(4).in-viewport {
	animation-delay: 0.3s;
}

.cards > .card:nth-child(n+5).in-viewport {
	animation-delay: 0.4s;
}

/* Enhanced hover states for better interactivity */
button,
.btn,
a.btn {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

button::after,
.btn::after,
a.btn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.5s ease-out, height 0.5s ease-out;
}

button:hover::after,
.btn:hover::after,
a.btn:hover::after {
	width: 300px;
	height: 300px;
}
/* ============================================================
   SECAO POR QUE (#porque)
   ============================================================ */
.why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 2.5rem;
}

.why-item {
        background: #fff;
        border-radius: 14px;
        padding: 2rem 1.75rem;
        box-shadow: 0 2px 16px rgba(32, 93, 138, 0.08);
        border: 1px solid rgba(32, 93, 138, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        opacity: 0;
        transform: translateY(28px);
}

.why-item.in-viewport {
        animation: fadeInUp 0.6s ease-out forwards;
}

.why-item:nth-child(1) { animation-delay: 0s; }
.why-item:nth-child(2) { animation-delay: 0.08s; }
.why-item:nth-child(3) { animation-delay: 0.16s; }
.why-item:nth-child(4) { animation-delay: 0.24s; }
.why-item:nth-child(5) { animation-delay: 0.32s; }
.why-item:nth-child(6) { animation-delay: 0.4s; }

.why-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 28px rgba(32, 93, 138, 0.14);
}

.why-icon {
        display: block;
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
        line-height: 1;
}

.why-item h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--rmf-brand);
        margin-bottom: 0.5rem;
}

.why-item p {
        font-size: 0.92rem;
        color: #555;
        line-height: 1.6;
        margin: 0;
}

@media (max-width: 960px) {
        .why-grid {
                grid-template-columns: repeat(2, 1fr);
        }
}

@media (max-width: 640px) {
        .why-grid {
                grid-template-columns: 1fr;
        }
}

/* ============================================================
   CONTATO PREMIUM
   ============================================================ */
.contact-layout {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 3.5rem;
        align-items: start;
}

.contact-info h2 {
        margin-bottom: 1rem;
}

.contact-list {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0 0;
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
}

.contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.65rem;
        font-size: 0.95rem;
        color: #444;
}

.contact-list a {
        color: var(--rmf-brand);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
}

.contact-list a:hover {
        color: var(--rmf-accent);
        text-decoration: underline;
}

.contact-icon {
        font-size: 1.15rem;
        flex-shrink: 0;
        margin-top: 0.05rem;
}

/* Formulário */
.contact-form-wrap {
        background: #fff;
        border-radius: 16px;
        padding: 2.5rem 2rem;
        box-shadow: 0 4px 28px rgba(32, 93, 138, 0.10);
        border: 1px solid rgba(32, 93, 138, 0.08);
}

.rmf-contact-form .form-row {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 1.1rem;
}

.rmf-contact-form .form-row-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1.1rem;
}

.form-field {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
}

.form-field label {
        font-size: 0.82rem;
        font-weight: 600;
        color: #444;
        letter-spacing: 0.02em;
        text-transform: uppercase;
}

.rmf-contact-form input[type="text"],
.rmf-contact-form input[type="email"],
.rmf-contact-form input[type="tel"],
.rmf-contact-form select,
.rmf-contact-form textarea {
        width: 100%;
        padding: 0.7rem 0.9rem;
        border: 1.5px solid #dde4ea;
        border-radius: 8px;
        font-family: inherit;
        font-size: 0.92rem;
        color: #222;
        background: #f8fafc;
        transition: border-color 0.2s, box-shadow 0.2s;
        outline: none;
        box-sizing: border-box;
}

.rmf-contact-form input:focus,
.rmf-contact-form select:focus,
.rmf-contact-form textarea:focus {
        border-color: var(--rmf-brand);
        box-shadow: 0 0 0 3px rgba(32, 93, 138, 0.12);
        background: #fff;
}

.rmf-contact-form textarea {
        resize: vertical;
        min-height: 100px;
}

.form-privacy-note {
        font-size: 0.78rem;
        color: #888;
        margin: 0.75rem 0 1rem;
        line-height: 1.5;
}

.rmf-contact-form .btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.9rem;
}

@media (max-width: 860px) {
        .contact-layout {
                grid-template-columns: 1fr;
                gap: 2.5rem;
        }
        .rmf-contact-form .form-row-2 {
                grid-template-columns: 1fr;
        }
}

/* ============================================================
   FAQ (#faq)
   ============================================================ */
.faq-list {
        margin: 2.5rem 0 0;
        padding: 0;
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
}

.faq-item {
        border-bottom: 1px solid rgba(32, 93, 138, 0.12);
        padding: 0;
        opacity: 0;
        transform: translateY(20px);
}

.faq-item.in-viewport {
        animation: fadeInUp 0.5s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0s; }
.faq-item:nth-child(2) { animation-delay: 0.07s; }
.faq-item:nth-child(3) { animation-delay: 0.14s; }
.faq-item:nth-child(4) { animation-delay: 0.21s; }
.faq-item:nth-child(5) { animation-delay: 0.28s; }
.faq-item:nth-child(6) { animation-delay: 0.35s; }

.faq-question {
        font-size: 1rem;
        font-weight: 700;
        color: var(--rmf-brand);
        cursor: pointer;
        padding: 1.2rem 2.5rem 1.2rem 0;
        margin: 0;
        position: relative;
        user-select: none;
        transition: color 0.2s;
        list-style: none;
}

.faq-question::after {
        content: '+';
        position: absolute;
        right: 0.25rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.4rem;
        font-weight: 300;
        color: var(--rmf-accent);
        line-height: 1;
        transition: transform 0.25s;
}

.faq-item.open .faq-question::after {
        transform: translateY(-50%) rotate(45deg);
}

.faq-item.open .faq-question {
        color: var(--rmf-brand-dark);
}

.faq-answer {
        font-size: 0.93rem;
        line-height: 1.7;
        color: #555;
        padding: 0 0 1.2rem;
        margin: 0;
        display: none;
}

.faq-item.open .faq-answer {
        display: block;
}

/* Dark theme refinements */
.trust-strip {
	background: linear-gradient(180deg, rgba(14, 26, 42, 0.94) 0%, rgba(9, 16, 28, 0.95) 100%);
	border-top: 1px solid rgba(82, 120, 158, 0.28);
	border-bottom: 1px solid rgba(82, 120, 158, 0.28);
}

.trust-item,
.testimonial-card,
.logo-wall span,
.why-item,
.contact-form-wrap {
	background: #121f30;
	border-color: #2e455e;
	box-shadow: 0 12px 26px rgba(3, 10, 20, 0.45);
}

.trust-item strong,
.why-item h3,
.faq-question {
	color: #d8e8fb;
}

.trust-item span,
.testimonial-role,
.why-item p,
.faq-answer,
.contact-list li,
.form-field label,
.form-privacy-note {
	color: #9bb0c8;
}

.logo-wall span {
	border-style: solid;
	color: #c9ddf3;
}

.rmf-contact-form input[type="text"],
.rmf-contact-form input[type="email"],
.rmf-contact-form input[type="tel"],
.rmf-contact-form select,
.rmf-contact-form textarea {
	background: #0e1a2a;
	border-color: #2a4059;
	color: #eaf2fb;
}

.rmf-contact-form input:focus,
.rmf-contact-form select:focus,
.rmf-contact-form textarea:focus {
	background: #122338;
	border-color: #4d83b3;
	box-shadow: 0 0 0 3px rgba(77, 131, 179, 0.26);
}

.site-footer {
	background: #081220;
	border-top: 1px solid #203448;
}