/* =========================================================
   REI DAS MULTAS — Stylesheet principal
   Réplica do design original (base44.app / reidasmultas.com.br)
   ========================================================= */

:root {
	--rm-yellow: #facc15;
	--rm-yellow-dark: #eab308;
	--rm-navy: #0f172a;
	--rm-navy-soft: #1e293b;
	--rm-black: #0a0a0a;
	--rm-green: #22c55e;
	--rm-green-dark: #16a34a;
	--rm-red: #ef4444;
	--rm-red-dark: #dc2626;
	--rm-blue: #2563eb;
	--rm-blue-dark: #1d4ed8;
	--rm-orange: #f97316;
	--rm-orange-dark: #ea580c;
	--rm-purple: #9333ea;
	--rm-gray-50: #f9fafb;
	--rm-gray-100: #f3f4f6;
	--rm-gray-200: #e5e7eb;
	--rm-gray-400: #9ca3af;
	--rm-gray-600: #4b5563;
	--rm-gray-700: #374151;
	--rm-gray-900: #111827;
	--rm-white: #ffffff;
	--rm-font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
	--rm-radius: 12px;
	--rm-radius-lg: 20px;
	--rm-radius-full: 999px;
	--rm-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
	--rm-shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.18);
	--rm-container: 1180px;
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--rm-font);
	color: var(--rm-gray-900);
	background: var(--rm-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 { margin: 0 0 16px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0 0 16px; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 16px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link:focus {
	position: fixed; top: 10px; left: 10px; z-index: 9999;
	background: var(--rm-navy); color: #fff; padding: 12px 20px; border-radius: 8px;
	width: auto; height: auto; clip: auto;
}

.container {
	max-width: var(--rm-container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: #fff;
	box-shadow: 0 1px 0 rgba(15,23,42,0.06);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 10px;
	padding-bottom: 10px;
	gap: 16px;
}
.logo img, .custom-logo, .brand-logo { display:block; width:auto; height:auto; max-height:78px; max-width:250px; object-fit:contain; }

.site-header__cta { display: flex; align-items: center; }

.mobile-menu-toggle {
	display: none;
	background: none;
	border: 2px solid var(--rm-gray-200);
	border-radius: 8px;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: var(--rm-navy);
}

.site-nav {
	border-top: 1px solid var(--rm-gray-100);
	background: #fff;
}
.nav-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	padding: 6px 0;
}
.nav-menu .menu-item a,
.nav-menu li a {
	display: inline-block;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--rm-gray-600);
	border-radius: 8px;
	transition: background 0.15s ease, color 0.15s ease;
}
.nav-menu .menu-item a:hover,
.nav-menu li a:hover,
.nav-menu .current-menu-item a {
	color: var(--rm-navy);
	background: var(--rm-gray-100);
}

/* ---------- Botões ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 30px;
	font-size: 16px;
	font-weight: 800;
	border-radius: var(--rm-radius-full);
	border: none;
	white-space: nowrap;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
	box-shadow: var(--rm-shadow);
	text-transform: none;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 18px 38px; font-size: 18px; }

.btn--green { background: var(--rm-green); color: #fff; }
.btn--green:hover { background: var(--rm-green-dark); }

.btn--yellow { background: var(--rm-yellow); color: var(--rm-navy); }
.btn--yellow:hover { background: var(--rm-yellow-dark); }

.btn--dark { background: var(--rm-navy); color: #fff; }
.btn--dark:hover { background: #000; }

.btn--blue { background: var(--rm-blue); color: #fff; }
.btn--blue:hover { background: var(--rm-blue-dark); }

.btn--orange { background: var(--rm-orange); color: #fff; }
.btn--orange:hover { background: var(--rm-orange-dark); }

.btn--outline { background: transparent; border: 2px solid currentColor; box-shadow: none; }
.btn--block { width: 100%; }

/* ---------- Badge / Pill ---------- */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	border-radius: var(--rm-radius-full);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: rgba(250, 204, 21, 0.15);
	color: var(--rm-yellow);
	border: 1px solid rgba(250, 204, 21, 0.4);
}
.badge--dark { background: rgba(15,23,42,0.06); color: var(--rm-navy); border-color: rgba(15,23,42,0.15); }
.badge--red { background: var(--rm-red); color: #fff; border: none; }
.badge--green { background: rgba(34,197,94,0.12); color: var(--rm-green-dark); border-color: rgba(34,197,94,0.35); }
.badge--urgent {
	background: var(--rm-red);
	color: #fff;
	border: none;
	font-size: 11px;
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	color: #fff;
	background-size: cover;
	background-position: center;
	padding: 90px 0 70px;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.92) 10%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,0.25) 100%);
	z-index: 0;
}
.hero--center::before { background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75)); }
.hero__inner { position: relative; z-index: 1; max-width: 760px; }
.hero--center .hero__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.hero__title { font-size: clamp(2.2rem, 5vw, 3.4rem); color: #fff; margin-bottom: 20px; }
.hero__title .accent { color: var(--rm-yellow); }
.hero__subtitle { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 640px; margin-bottom: 24px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.hero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-bottom: 8px; }
.hero__rating { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #fff; }
.hero__rating .stars { color: var(--rm-yellow); }
.hero--center .hero__actions { justify-content: center; }
.hero--center .hero__meta { justify-content: center; }

.hero__panel {
	position: relative;
	z-index: 1;
	background: rgba(15,23,42,0.7);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: var(--rm-radius-lg);
	padding: 32px;
	max-width: 360px;
}
.hero__panel-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.hero__panel-price { font-size: 42px; font-weight: 900; color: var(--rm-yellow); line-height: 1; margin-bottom: 4px; }
.hero__panel-note { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.hero__panel ul { margin-bottom: 24px; }
.hero__panel li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.hero__panel li i { color: var(--rm-green); margin-top: 3px; }

.hero-grid { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 40px; align-items: center; }

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--rm-navy); padding: 36px 0; }
.stats-bar--yellow { background: var(--rm-yellow); }
.stats-bar--green { background: var(--rm-green); }
.stats-bar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}
.stats-bar__value { display: block; font-size: 32px; font-weight: 900; color: #fff; }
.stats-bar--yellow .stats-bar__value,
.stats-bar--yellow .stats-bar__label { color: var(--rm-navy); }
.stats-bar__label { display: block; font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ---------- Seções genéricas ---------- */
.section { padding: 80px 0; }
.section--sm { padding: 56px 0; }
.section--gray { background: var(--rm-gray-50); }
.section--dark { background: var(--rm-navy); color: #fff; }
.section--yellow { background: var(--rm-yellow); }
.section-header { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-header .eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--rm-yellow-dark);
	margin-bottom: 12px;
}
.section--dark .section-header .eyebrow { color: var(--rm-yellow); }
.section-header h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-header p { color: var(--rm-gray-600); font-size: 17px; }
.section--dark .section-header p { color: rgba(255,255,255,0.75); }

/* ---------- Grids de cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
	background: #fff;
	border-radius: var(--rm-radius-lg);
	padding: 32px;
	box-shadow: var(--rm-shadow);
	border: 1px solid var(--rm-gray-100);
}
.card--dark { background: var(--rm-navy-soft); color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.card--urgent { border: 2px solid var(--rm-red); }
.card--flat { box-shadow: none; }

.icon-circle {
	width: 56px; height: 56px;
	border-radius: 14px;
	display: flex; align-items: center; justify-content: center;
	font-size: 22px;
	margin-bottom: 20px;
	background: rgba(250,204,21,0.15);
	color: var(--rm-yellow-dark);
}
.icon-circle--green { background: rgba(34,197,94,0.12); color: var(--rm-green); }
.icon-circle--red { background: rgba(239,68,68,0.12); color: var(--rm-red); }
.icon-circle--blue { background: rgba(37,99,235,0.12); color: var(--rm-blue); }
.icon-circle--purple { background: rgba(147,51,234,0.12); color: var(--rm-purple); }
.icon-circle--round { border-radius: 999px; }
.icon-circle--on-dark { background: var(--rm-yellow); color: var(--rm-navy); }

.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--rm-gray-600); font-size: 15px; margin-bottom: 16px; }
.card--dark p { color: rgba(255,255,255,0.75); }

.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; margin-bottom: 10px; color: var(--rm-gray-700); }
.checklist li i { color: var(--rm-green); margin-top: 3px; flex-shrink: 0; }
.card--dark .checklist li { color: rgba(255,255,255,0.85); }

.card__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--rm-navy); font-size: 14.5px; }
.card--dark .card__link,
.card--urgent .card__link { color: var(--rm-yellow); }

/* ---------- CTA banner ---------- */
.cta-banner { padding: 70px 0; text-align: center; }
.cta-banner--yellow { background: var(--rm-yellow); }
.cta-banner--dark { background: var(--rm-navy); color: #fff; }
.cta-banner--green { background: var(--rm-green); color: #fff; }
.cta-banner--red { background: linear-gradient(135deg, #7f1d1d, #1a0505); color: #fff; }
.cta-banner__title { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 12px; }
.cta-banner--yellow .cta-banner__title { color: var(--rm-navy); }
.cta-banner__subtitle { font-size: 16px; margin-bottom: 28px; opacity: 0.85; }
.cta-banner--yellow .cta-banner__subtitle { color: var(--rm-navy); opacity: 0.75; }

/* ---------- Trajetória / Timeline (Sobre) ---------- */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.timeline__item {
	background: rgba(15,23,42,0.55);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: var(--rm-radius-lg);
	padding: 30px;
	text-align: center;
}
.timeline__year {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px; height: 64px;
	border-radius: 999px;
	background: var(--rm-yellow);
	color: var(--rm-navy);
	font-weight: 900;
	margin-bottom: 16px;
	font-size: 15px;
}
.timeline__item h3 { color: #fff; font-size: 18px; }
.timeline__item p { color: rgba(255,255,255,0.75); font-size: 14px; }

/* ---------- Passos numerados ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.steps__item { text-align: center; }
.steps__number {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 999px;
	background: var(--rm-yellow); color: var(--rm-navy);
	font-weight: 900; font-size: 18px; margin-bottom: 16px;
}
.steps__item h3 { font-size: 17px; margin-bottom: 8px; }
.steps__item p { font-size: 14px; color: var(--rm-gray-600); }

/* ---------- Depoimentos ---------- */
.testimonial {
	background: #fff;
	border-radius: var(--rm-radius-lg);
	padding: 28px;
	box-shadow: var(--rm-shadow);
	border: 1px solid var(--rm-gray-100);
}
.testimonial .stars { color: var(--rm-yellow); margin-bottom: 12px; }
.testimonial p.quote { font-style: italic; color: var(--rm-gray-700); margin-bottom: 16px; }
.testimonial .author { font-weight: 800; font-size: 15px; }
.testimonial .role { font-size: 13px; color: var(--rm-gray-400); }

/* ---------- FAQ Accordion ---------- */
.faq-accordion { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--rm-gray-200); }
.faq-item__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: none;
	border: none;
	padding: 20px 4px;
	text-align: left;
	font-size: 16px;
	font-weight: 700;
	color: var(--rm-navy);
}
.faq-item__question i { transition: transform 0.2s ease; color: var(--rm-gray-400); }
.faq-item.is-open .faq-item__question i { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.is-open .faq-item__answer { max-height: 400px; }
.faq-item__answer p { padding: 0 4px 20px; color: var(--rm-gray-600); font-size: 15px; }

/* ---------- Formulários ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 14px; font-weight: 700; color: var(--rm-gray-700); }
.form-field input,
.form-field select,
.form-field textarea {
	padding: 14px 16px;
	border: 1.5px solid var(--rm-gray-200);
	border-radius: 10px;
	background: #fff;
	color: var(--rm-gray-900);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--rm-yellow);
	box-shadow: 0 0 0 3px rgba(250,204,21,0.25);
}
.form-card {
	background: #fff;
	border-radius: var(--rm-radius-lg);
	padding: 36px;
	box-shadow: var(--rm-shadow-lg);
}

/* ---------- Preço / Planos ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.pricing-card {
	border-radius: var(--rm-radius-lg);
	padding: 36px;
	background: #fff;
	border: 2px solid var(--rm-gray-200);
	position: relative;
}
.pricing-card--featured { border-color: var(--rm-yellow); box-shadow: var(--rm-shadow-lg); }
.pricing-card--dark { background: var(--rm-navy); color: #fff; border-color: var(--rm-navy); }
.pricing-card__badge {
	position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
	background: var(--rm-yellow); color: var(--rm-navy);
	font-size: 11px; font-weight: 900; text-transform: uppercase;
	padding: 6px 16px; border-radius: 999px; letter-spacing: 0.05em;
}
.pricing-card__price { font-size: 42px; font-weight: 900; margin: 10px 0 4px; }
.pricing-card__price small { font-size: 15px; font-weight: 600; opacity: 0.7; }
.pricing-card ul { margin: 24px 0; }
.pricing-card li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14.5px; align-items: flex-start; }
.pricing-card li i { color: var(--rm-green); margin-top: 3px; }
.pricing-card--dark li i { color: var(--rm-yellow); }

/* ---------- Novidades (home) ---------- */
.novidade-card {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 20px;
	background: #fff;
	border-radius: var(--rm-radius-lg);
	padding: 28px;
	box-shadow: var(--rm-shadow);
	border: 1px solid var(--rm-gray-100);
}
.novidade-card .icon-circle { margin-bottom: 0; }
.novidade-card h3 { font-size: 18px; margin-bottom: 8px; }

/* ---------- Parceiros ---------- */
.partners-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 32px; margin: 32px 0; }
.partner-add {
	display: inline-flex; align-items: center; gap: 8px;
	border: 2px dashed var(--rm-gray-200);
	border-radius: 999px;
	padding: 12px 24px;
	color: var(--rm-yellow-dark);
	font-weight: 700;
	font-size: 14px;
}

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--rm-gray-100); padding-top: 56px; }
.site-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding-bottom: 40px;
}
.site-footer__logo { margin-bottom: 16px; }
.site-footer__col p { color: var(--rm-gray-600); font-size: 14.5px; }
.site-footer__col h4 { font-size: 16px; margin-bottom: 18px; }
.site-footer__col ul li { margin-bottom: 12px; }
.site-footer__col ul li a { color: var(--rm-gray-600); font-size: 14.5px; }
.site-footer__col ul li a:hover { color: var(--rm-navy); }
.site-footer__contact li { display: flex; align-items: flex-start; gap: 10px; color: var(--rm-gray-600); font-size: 14px; }
.site-footer__contact li i { margin-top: 3px; color: var(--rm-yellow-dark); }
.site-footer__social { display: flex; gap: 10px; margin-top: 16px; }
.site-footer__social a {
	width: 38px; height: 38px; border-radius: 999px; background: var(--rm-gray-100);
	display: flex; align-items: center; justify-content: center; color: var(--rm-gray-700);
}
.site-footer__bottom { border-top: 1px solid var(--rm-gray-100); padding: 22px 0; }
.site-footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.site-footer__bottom p { margin: 0; color: var(--rm-gray-400); font-size: 13px; }
.site-footer__bottom a { color: var(--rm-gray-400); font-size: 13px; }

/* ---------- Botão flutuante do WhatsApp ---------- */
.whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 60px; height: 60px;
	background: var(--rm-green);
	color: #fff;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	box-shadow: 0 8px 24px rgba(34,197,94,0.45);
	z-index: 400;
	animation: rm-pulse 2.4s infinite;
}
@keyframes rm-pulse {
	0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
	70% { box-shadow: 0 0 0 16px rgba(34,197,94,0); }
	100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ---------- Barra de aviso (Meu Recurso) ---------- */
.announce-bar {
	background: var(--rm-orange);
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 16px;
}
.announce-bar a { text-decoration: underline; }

/* ---------- Utilitários ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-yellow { color: var(--rm-yellow); }
.text-white { color: #fff; }
.u-narrow { max-width: 680px; margin-left: auto; margin-right: auto; }

/* ---------- Responsivo ---------- */
@media (max-width: 960px) {
	.hero-grid { grid-template-columns: 1fr; }
	.grid--4 { grid-template-columns: repeat(2, 1fr); }
	.grid--3 { grid-template-columns: repeat(2, 1fr); }
	.timeline, .steps { grid-template-columns: repeat(2, 1fr); }
	.site-footer__inner { grid-template-columns: 1fr 1fr; }
	.pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.mobile-menu-toggle { display: flex; }
	.site-nav { display: none; }
	.site-nav.is-open { display: block; }
	.nav-menu { flex-direction: column; }
	.nav-menu .menu-item a, .nav-menu li a { display: block; padding: 12px 14px; }
	.stats-bar__grid, .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
	.timeline, .steps { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr; }
	.form-grid { grid-template-columns: 1fr; }
	.hero { padding: 50px 0 40px; }
	.hero__panel { max-width: 100%; }
	.site-header__cta .btn span { display: none; }
}


/* ===== Ajustes v2 - logo oficial e navegação ===== */
.site-header__logo .logo{display:flex;align-items:center;min-height:78px}
.site-footer__logo{width:190px!important;height:auto!important;max-height:none;object-fit:contain}
.nav-menu li:last-child a{background:var(--rm-yellow);color:var(--rm-navy);font-weight:900}
.nav-menu li:last-child a:hover{background:var(--rm-yellow-dark)}
@media (max-width: 960px){
  .logo img,.custom-logo,.brand-logo{max-width:190px;max-height:66px}
  .site-header__logo .logo{min-height:66px}
}
@media (max-width: 560px){
  .logo img,.custom-logo,.brand-logo{max-width:150px;max-height:54px}
  .site-header__logo .logo{min-height:54px}
}

/* =========================================================
   PÁGINA SERVIÇOS — refinamento visual v2.2
   ========================================================= */
.servicos-hero {
	min-height: 590px;
	display: flex;
	align-items: center;
	background-position: center;
	background-size: cover;
}
.servicos-hero::before {
	background:
		radial-gradient(circle at 78% 28%, rgba(250,204,21,.17), transparent 34%),
		linear-gradient(180deg, rgba(2,6,23,.72), rgba(2,6,23,.94));
}
.servicos-hero .hero__inner { max-width: 900px; }
.servicos-hero .hero__title { font-size: clamp(2.55rem, 5.5vw, 4.6rem); }
.servicos-hero__subtitle { max-width: 800px !important; font-size: clamp(1rem, 1.8vw, 1.2rem); }
.servicos-hero__trust {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px 24px;
	margin-top: 26px;
	color: rgba(255,255,255,.88);
	font-size: 14px;
	font-weight: 650;
}
.servicos-hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.servicos-hero__trust i { color: var(--rm-yellow); }

.servicos-intro { background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.section-header--center { max-width: 780px; margin-left: auto; margin-right: auto; text-align: center; }
.servicos-section-header { margin-bottom: 48px; }
.servicos-section-header h2 { font-size: clamp(2rem, 3.4vw, 3rem); color: var(--rm-navy); }
.servicos-section-header p { color: var(--rm-gray-600); font-size: 17px; }

.servicos-list { display: grid; gap: 34px; }
.servico-detalhe {
	position: relative;
	display: grid;
	grid-template-columns: 92px minmax(0,1fr);
	gap: 30px;
	padding: 38px;
	border-radius: 24px;
	background: #fff;
	border: 1px solid var(--rm-gray-200);
	box-shadow: 0 18px 55px rgba(15,23,42,.08);
	overflow: hidden;
}
.servico-detalhe::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: var(--rm-blue);
}
.servico-detalhe--red::after { background: var(--rm-red); }
.servico-detalhe--dark {
	background: linear-gradient(135deg, #0f172a 0%, #111827 58%, #172554 100%);
	border-color: rgba(255,255,255,.08);
	box-shadow: 0 24px 65px rgba(2,6,23,.28);
	color: #fff;
}
.servico-detalhe--dark::after { background: var(--rm-red); }
.servico-detalhe--urgent::before {
	content: '';
	position: absolute;
	right: -90px;
	top: -110px;
	width: 310px;
	height: 310px;
	border-radius: 50%;
	background: rgba(239,68,68,.08);
	pointer-events: none;
}
.servico-detalhe__icon { width: 72px; height: 72px; font-size: 27px; position: relative; z-index: 1; }
.servico-detalhe__heading { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 10px; }
.servico-detalhe__number {
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .08em;
	color: var(--rm-gray-400);
	padding-top: 5px;
}
.servico-detalhe__kicker {
	display: block;
	margin: 3px 0 7px;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .10em;
	text-transform: uppercase;
	color: var(--rm-blue);
}
.servico-detalhe--red .servico-detalhe__kicker { color: var(--rm-red); }
.servico-detalhe--dark .servico-detalhe__kicker { color: #93c5fd; }
.servico-detalhe__heading h3 { margin: 0; font-size: clamp(1.55rem, 2.4vw, 2.15rem); }
.servico-detalhe--dark h3,
.servico-detalhe--dark h4 { color: #fff; }
.servico-detalhe__lead { max-width: 920px; color: var(--rm-gray-600); font-size: 16px; }
.servico-detalhe--dark .servico-detalhe__lead { color: rgba(255,255,255,.76); }
.servico-detalhe__cols { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 24px; }
.servico-info-box {
	padding: 22px;
	border-radius: 16px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
}
.servico-info-box h4 { font-size: 15px; color: var(--rm-navy); display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.servico-info-box h4 i { color: var(--rm-blue); }
.servico-detalhe--red .servico-info-box h4 i { color: var(--rm-red); }
.servico-info-box .checklist li { margin-bottom: 10px; font-size: 14px; }
.servico-info-box .checklist li:last-child { margin-bottom: 0; }
.servico-info-box--dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.10); }
.servico-info-box--dark h4 { color: #fff; }
.servico-info-box--dark .checklist li { color: rgba(255,255,255,.82); }
.servico-info-box--dark .checklist i { color: #4ade80; }
.servico-detalhe__footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 26px; flex-wrap: wrap; }
.servico-detalhe__note { color: var(--rm-gray-600); font-size: 13px; font-weight: 650; display: inline-flex; align-items: center; gap: 7px; }
.servico-detalhe--dark .servico-detalhe__note { color: rgba(255,255,255,.68); }

.servicos-diferenciais { position: relative; overflow: hidden; }
.servicos-diferenciais::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 10%, rgba(250,204,21,.07), transparent 30%);
	pointer-events: none;
}
.servicos-section-header--light { position: relative; }
.servicos-section-header--light h2 { color: #fff; }
.servicos-section-header--light p { color: rgba(255,255,255,.70); }
.servicos-benefits-grid { position: relative; }
.servicos-benefit {
	padding: 28px;
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 18px;
	background: rgba(255,255,255,.045);
	transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.servicos-benefit:hover { transform: translateY(-4px); border-color: rgba(250,204,21,.35); background: rgba(255,255,255,.065); }
.servicos-benefit h3 { color: #fff; font-size: 18px; }
.servicos-benefit p { color: rgba(255,255,255,.68); font-size: 14px; margin: 0; }

.servicos-cta-final { background: var(--rm-yellow); padding: 64px 0; }
.servicos-cta-final__inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.servicos-cta-final__eyebrow { display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .08em; margin-bottom: 10px; }
.servicos-cta-final h2 { font-size: clamp(2rem,3.5vw,3.15rem); color: var(--rm-navy); margin-bottom: 10px; }
.servicos-cta-final p { max-width: 700px; color: #334155; font-size: 17px; margin-bottom: 0; }
.servicos-cta-final__action { text-align: center; }
.servicos-cta-final__action small { display: block; margin-top: 12px; color: #334155; font-weight: 650; }

@media (max-width: 900px) {
	.servico-detalhe { grid-template-columns: 1fr; padding: 30px; }
	.servico-detalhe__icon { width: 64px; height: 64px; }
	.servicos-cta-final__inner { grid-template-columns: 1fr; text-align: center; }
	.servicos-cta-final p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 680px) {
	.servicos-hero { min-height: auto; padding-top: 64px; padding-bottom: 58px; }
	.servicos-hero__trust { flex-direction: column; align-items: center; }
	.servico-detalhe { padding: 24px 20px; border-radius: 18px; gap: 18px; }
	.servico-detalhe__heading { gap: 10px; }
	.servico-detalhe__number { display: none; }
	.servico-detalhe__cols { grid-template-columns: 1fr; }
	.servico-info-box { padding: 18px; }
	.servico-detalhe__footer { align-items: stretch; }
	.servico-detalhe__footer .btn { width: 100%; }
	.servico-detalhe__note { justify-content: center; text-align: center; }
	.servicos-cta-final { padding: 50px 0; }
	.servicos-cta-final__action .btn { width: 100%; }
}

/* =========================================================
   V3 PREMIUM — identidade visual, fotografia e refinamentos
   ========================================================= */
:root {
	--rm-gold: #f4c20d;
	--rm-gold-soft: #ffe36a;
	--rm-ink: #070b12;
	--rm-ink-2: #0b1220;
	--rm-border-gold: rgba(244,194,13,.35);
	--rm-shadow-premium: 0 18px 60px rgba(2,6,23,.14);
}
body { background: #f7f8fa; }
.rm-topbar { background: #05080d; color: rgba(255,255,255,.82); font-size: 12px; border-bottom: 1px solid rgba(255,255,255,.07); }
.rm-topbar__inner { min-height: 34px; display:flex; align-items:center; justify-content:center; gap:42px; }
.rm-topbar i { color: var(--rm-yellow); margin-right:7px; }
.site-header { background: linear-gradient(180deg,#0b1018 0%,#080c13 100%); box-shadow:0 8px 30px rgba(2,6,23,.25); border-bottom:1px solid rgba(244,194,13,.18); }
.site-header__inner { min-height: 94px; padding-top:8px; padding-bottom:8px; }
.site-header__logo { flex:0 0 auto; }
.logo img, .custom-logo, .brand-logo { max-height:86px; max-width:250px; filter:none; }
.site-header__trust { display:flex; gap:34px; align-items:center; margin-left:auto; margin-right:18px; }
.site-header__trust>div { display:flex; flex-direction:column; line-height:1.15; padding-left:16px; border-left:1px solid rgba(255,255,255,.16); }
.site-header__trust strong { color:#fff; font-size:13px; }
.site-header__trust span { color:rgba(255,255,255,.6); font-size:11px; margin-top:4px; }
.site-nav { background:#070b12; border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(244,194,13,.12); }
.nav-menu { justify-content:center; gap:2px; padding:4px 0; }
.nav-menu .menu-item a,.nav-menu li a { color:rgba(255,255,255,.84); padding:11px 13px; border-radius:7px; position:relative; }
.nav-menu .menu-item a:hover,.nav-menu li a:hover,.nav-menu .current-menu-item a { color:var(--rm-yellow); background:rgba(255,255,255,.045); }
.nav-menu .current-menu-item a::after { content:""; position:absolute; left:13px; right:13px; bottom:2px; height:2px; background:var(--rm-yellow); border-radius:4px; }
.mobile-menu-toggle { color:#fff; border-color:rgba(255,255,255,.22); }

.hero { min-height:520px; display:flex; align-items:center; padding:90px 0; background-color:#0a0f18; background-attachment:scroll; }
.hero::before { background:linear-gradient(90deg,rgba(3,7,13,.96) 0%,rgba(3,7,13,.86) 38%,rgba(3,7,13,.50) 66%,rgba(3,7,13,.24) 100%); }
.hero::after { content:""; position:absolute; inset:auto 0 0 0; height:120px; background:linear-gradient(180deg,transparent,rgba(2,6,23,.34)); z-index:0; pointer-events:none; }
.hero--center::before { background:linear-gradient(90deg,rgba(3,7,13,.93),rgba(3,7,13,.66),rgba(3,7,13,.43)); }
.hero--center .hero__inner { margin-left:0; text-align:left; max-width:760px; }
.hero--center .hero__actions,.hero--center .hero__meta { justify-content:flex-start; }
.hero__inner { text-shadow:0 2px 16px rgba(0,0,0,.18); }
.hero__title { font-size:clamp(2.35rem,5vw,4rem); line-height:1.02; max-width:850px; }
.hero__subtitle { font-size:18px; line-height:1.65; }
.badge { backdrop-filter:blur(8px); background:rgba(0,0,0,.30); border-color:rgba(250,204,21,.65); }
.hero__panel { box-shadow:0 22px 70px rgba(0,0,0,.38); border-color:rgba(250,204,21,.26); background:rgba(6,12,22,.82); }

.stats-bar { position:relative; z-index:2; box-shadow:0 -8px 30px rgba(2,6,23,.12),0 10px 30px rgba(2,6,23,.12); }
.stats-bar__grid>div { padding:4px 18px; }
.stats-bar__grid>div+div { border-left:1px solid rgba(255,255,255,.15); }
.stats-bar--yellow .stats-bar__grid>div+div { border-left-color:rgba(15,23,42,.18); }
.section { position:relative; }
.section-header h2 { color:#0b1220; }
.section--dark .section-header h2 { color:#fff; }
.card,.service-card,.feature-card,.testimonial-card,.plan-card { border:1px solid rgba(15,23,42,.07); box-shadow:var(--rm-shadow-premium); transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease; }
.card:hover,.service-card:hover,.feature-card:hover,.testimonial-card:hover,.plan-card:hover { transform:translateY(-5px); box-shadow:0 24px 60px rgba(2,6,23,.16); border-color:rgba(244,194,13,.32); }
.section--dark { background-color:#08101c; background-blend-mode:multiply; }
.section--gray { background:linear-gradient(180deg,#f8fafc,#eef2f7); }
.section--yellow { background:linear-gradient(135deg,#f8ca16,#e9ac08); }
.cta-banner { box-shadow:0 20px 70px rgba(2,6,23,.18); }
.btn { box-shadow:0 8px 24px rgba(2,6,23,.15); }
.btn--yellow { background:linear-gradient(135deg,#ffd52a,#eab308); }
.btn--green { background:linear-gradient(135deg,#22c55e,#119d44); }
.whatsapp-float { box-shadow:0 12px 34px rgba(22,163,74,.42); border:3px solid rgba(255,255,255,.85); }
.site-footer { background:#060a11; color:rgba(255,255,255,.72); border-top:3px solid var(--rm-yellow); }
.site-footer h4 { color:#fff; }
.site-footer a:hover { color:var(--rm-yellow); }
.site-footer__bottom { border-top-color:rgba(255,255,255,.09); background:#04070b; }
.site-footer__logo { background:#000; border-radius:12px; padding:5px; max-height:94px; width:auto; }

/* Seções com atmosfera fotográfica específica */
body.home .section--dark { background-image:linear-gradient(rgba(7,12,21,.94),rgba(7,12,21,.94)),url('../images/hero-home.jpg'); background-size:cover; background-position:center; }
body.page-template-page-servicos .section--dark { background-image:linear-gradient(rgba(7,12,21,.94),rgba(7,12,21,.94)),url('../images/hero-servicos.jpg'); }
body.page-template-page-rmseguros .section--dark { background-image:linear-gradient(rgba(5,23,15,.91),rgba(7,12,21,.94)),url('../images/hero-seguro.jpg'); }
body.page-template-page-consorcio .section--dark { background-image:linear-gradient(rgba(7,12,21,.92),rgba(7,12,21,.96)),url('../images/hero-consorcio.jpg'); }
body.page-template-page-sobre .section--dark { background-image:linear-gradient(rgba(7,12,21,.90),rgba(7,12,21,.96)),url('../images/hero-sobre.jpg'); }
body.page-template-page-meu-recurso .section--dark,body.page-template-page-meurecurso .section--dark { background-image:linear-gradient(rgba(7,12,21,.91),rgba(7,12,21,.96)),url('../images/hero-meurecurso.jpg'); }
body.page-template-page-monitoramento .section--dark { background-image:linear-gradient(rgba(7,12,21,.91),rgba(7,12,21,.96)),url('../images/hero-monitoramento.jpg'); }
body.page-template-page-multa-nautica .section--dark,body.page-template-page-multanautica .section--dark { background-image:linear-gradient(rgba(3,25,44,.90),rgba(5,12,25,.95)),url('../images/hero-nautica.jpg'); }
body.page-template-page-parcerias .section--dark { background-image:linear-gradient(rgba(7,12,21,.91),rgba(7,12,21,.96)),url('../images/hero-parcerias.jpg'); }

@media (max-width:980px){
	.rm-topbar__inner{gap:18px;justify-content:flex-start;overflow:hidden;white-space:nowrap}
	.site-header__trust{display:none}
	.site-header__inner{min-height:78px}
	.logo img,.custom-logo,.brand-logo{max-height:68px;max-width:205px}
	.hero{min-height:480px;background-position:center;}
	.hero::before,.hero--center::before{background:linear-gradient(90deg,rgba(3,7,13,.94),rgba(3,7,13,.76));}
}
@media (max-width:700px){
	.rm-topbar{display:none}
	.site-header__cta{display:none}
	.hero{min-height:440px;padding:70px 0;background-position:62% center;}
	.hero__title{font-size:clamp(2rem,11vw,3rem)}
	.hero__subtitle{font-size:16px}
	.hero--center .hero__inner{text-align:left}
	.stats-bar__grid>div+div{border-left:none}
	.logo img,.custom-logo,.brand-logo{max-height:64px;max-width:190px}
}

/* ============================================================
   LANDING PAGE BARRETOS 2026 — v3.2
   ============================================================ */
.site-footer__inner{grid-template-columns:1.25fr .75fr .75fr .65fr 1fr!important}
.barretos-page{--bt-brown:#3a2a1e;--bt-brown2:#2e2117;--bt-gold:#d4a017;--bt-gold2:#e5b94b;--bt-red:#c0392b;--bt-red2:#d9481f;--bt-cream:#f5ede0;--bt-navy:#101b33;--bt-text:#2e2117;font-family:Inter,Arial,sans-serif;color:var(--bt-text);overflow:hidden}
.barretos-page *{box-sizing:border-box}
.barretos-hero{position:relative;min-height:790px;display:flex;align-items:center;background-image:var(--barretos-hero);background-size:cover;background-position:center;padding:120px 0 70px;color:#fff}
.barretos-hero__overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(28,17,10,.94) 0%,rgba(42,27,16,.78) 48%,rgba(42,27,16,.25) 100%),linear-gradient(180deg,rgba(29,20,14,.7),transparent 55%,rgba(29,20,14,.55))}
.barretos-hero__content{position:relative;z-index:2;max-width:820px;margin-left:max(0px,calc((100% - 1180px)/2))}
.barretos-edition{display:inline-flex;gap:9px;align-items:center;color:var(--bt-gold2);font-weight:800;letter-spacing:.08em;margin-bottom:14px}
.barretos-event-pill{display:inline-block;border:1px solid rgba(229,185,75,.8);background:rgba(30,21,15,.68);border-radius:999px;padding:9px 16px;color:#f7d779;font-weight:800;font-size:13px;letter-spacing:.05em;margin-bottom:22px}
.barretos-hero h1{font-size:clamp(42px,5.3vw,76px);line-height:.98;letter-spacing:-.045em;color:#fff;max-width:810px;margin:0 0 20px}
.barretos-hero p{font-size:clamp(18px,2vw,23px);line-height:1.55;max-width:720px;color:rgba(255,255,255,.9);margin-bottom:30px}
.barretos-actions{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:34px}
.barretos-btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:52px;padding:0 24px;border-radius:10px;font-weight:800;text-decoration:none;border:1px solid transparent;transition:.22s ease;cursor:pointer;font-family:inherit}
.barretos-btn:hover{transform:translateY(-2px);box-shadow:0 14px 28px rgba(0,0,0,.18)}
.barretos-btn--red{background:linear-gradient(135deg,var(--bt-red2),var(--bt-red));color:#fff}
.barretos-btn--green{background:linear-gradient(135deg,#22c55e,#15803d);color:#fff;box-shadow:0 12px 28px rgba(22,163,74,.28)}
.barretos-btn--outline{border-color:var(--bt-gold2);color:#fff;background:rgba(0,0,0,.2)}
.barretos-btn--full{width:100%;border:0}
.barretos-countdown{display:flex;gap:12px;flex-wrap:wrap}.barretos-countdown>div{width:92px;background:rgba(20,13,8,.76);border:1px solid rgba(229,185,75,.36);border-radius:12px;padding:13px 8px;text-align:center;backdrop-filter:blur(8px)}.barretos-countdown strong{display:block;color:var(--bt-gold2);font-size:29px;line-height:1}.barretos-countdown span{display:block;margin-top:6px;font-size:11px;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.72)}
.barretos-scroll{display:inline-flex;color:var(--bt-gold2);margin-top:28px;font-size:22px;animation:barretosBounce 1.7s infinite}@keyframes barretosBounce{50%{transform:translateY(8px)}}
.barretos-section{padding:92px 0;position:relative}.barretos-section--cream{background:var(--bt-cream)}.barretos-section--navy{background:var(--bt-navy);color:#fff}.barretos-section--brown{background:linear-gradient(140deg,var(--bt-brown),var(--bt-brown2));color:#fff}
.barretos-heading{text-align:center;max-width:780px;margin:0 auto 46px}.barretos-heading>span{display:block;color:var(--bt-gold);font-size:12px;font-weight:900;letter-spacing:.12em;margin-bottom:10px}.barretos-heading h2{font-size:clamp(32px,4vw,50px);letter-spacing:-.04em;margin:0 0 10px;color:var(--bt-brown2)}.barretos-heading p{color:#6d625a;font-size:17px;margin:0}.barretos-heading--light h2{color:#fff}.barretos-heading--light p{color:rgba(255,255,255,.7)}.barretos-heading__icon{display:inline-flex;width:58px;height:58px;align-items:center;justify-content:center;border:2px solid var(--bt-gold2);border-radius:50%;font-size:25px;color:var(--bt-gold2);margin-bottom:16px}
.barretos-grid{display:grid;gap:22px}.barretos-grid--2{grid-template-columns:repeat(2,1fr)}.barretos-grid--3{grid-template-columns:repeat(3,1fr)}
.barretos-scenario-card{display:flex;gap:20px;align-items:flex-start;background:#fff;border-radius:18px;padding:30px;box-shadow:0 15px 45px rgba(55,38,22,.09);border:1px solid rgba(58,42,30,.07)}.barretos-scenario-card h3{font-size:22px;color:var(--bt-brown2);margin:0 0 8px}.barretos-scenario-card p{margin:0;color:#70655c;line-height:1.65}.barretos-icon{width:58px;height:58px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex:0 0 58px;font-size:23px}.barretos-icon--danger{background:#fde5e2;color:#b9342a}
.barretos-deadlines{overflow:hidden}.barretos-watermark{position:absolute;inset:50% auto auto 50%;transform:translate(-50%,-50%);font-size:min(29vw,420px);font-weight:900;color:rgba(255,255,255,.025);line-height:1;pointer-events:none}.barretos-timeline{max-width:820px;margin:0 auto;position:relative;padding-left:42px}.barretos-timeline:before{content:"";position:absolute;left:10px;top:4px;bottom:12px;width:2px;background:linear-gradient(var(--bt-gold2),rgba(229,185,75,.2))}.barretos-timeline__item{position:relative;margin-bottom:36px}.barretos-timeline__item>span{position:absolute;left:-40px;top:5px;width:18px;height:18px;border:4px solid var(--bt-navy);background:var(--bt-gold2);border-radius:50%;box-shadow:0 0 0 1px var(--bt-gold2)}.barretos-timeline strong{display:block;color:var(--bt-gold2);font-size:24px}.barretos-timeline small{display:block;color:#aeb6c8;font-weight:800;letter-spacing:.08em;margin:4px 0 9px}.barretos-timeline p{margin:0;color:#f2f4f8;font-size:16px;line-height:1.65}
.barretos-steps{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}.barretos-step{text-align:center;padding:12px}.barretos-step__icon{width:66px;height:66px;display:flex;align-items:center;justify-content:center;border:2px solid var(--bt-gold2);color:var(--bt-gold2);border-radius:50%;margin:0 auto 16px;font-size:25px}.barretos-step small{display:block;color:var(--bt-gold2);font-weight:900;margin-bottom:6px}.barretos-step h3{color:#fff;font-size:17px;line-height:1.3;margin:0 0 7px}.barretos-step p{color:rgba(255,255,255,.63);font-size:14px;line-height:1.5;margin:0}
.barretos-lawyer-card{max-width:980px;margin:0 auto;text-align:center}.barretos-lawyer-visual{height:440px;border-radius:24px;overflow:hidden;position:relative;background-image:linear-gradient(90deg,rgba(31,19,11,.83),rgba(31,19,11,.25)),var(--lawyer-bg);background-size:cover;background-position:center;box-shadow:0 0 0 2px var(--bt-gold2),0 22px 60px rgba(69,43,20,.2);display:flex;align-items:center;justify-content:space-between;padding:45px}.barretos-lawyer-brand img{width:250px;max-height:210px;object-fit:contain;background:#000;border-radius:20px;padding:10px}.barretos-lawyer-figure{width:340px;min-height:280px;border-radius:22px;border:1px solid rgba(229,185,75,.5);background:rgba(20,13,8,.68);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;color:#fff;padding:25px}.barretos-lawyer-figure i{font-size:90px;color:var(--bt-gold2)}.barretos-lawyer-figure span{font-weight:700;line-height:1.4}.barretos-oab{display:inline-flex;gap:8px;align-items:center;margin:-22px auto 15px;background:var(--bt-brown2);color:#fff;border:1px solid var(--bt-gold2);border-radius:999px;padding:10px 18px;position:relative}.barretos-lawyer-card>h3{font-size:28px;margin:0 0 13px}.barretos-lawyer-card blockquote{font-size:17px;line-height:1.75;color:#665b53;max-width:850px;margin:0 auto 30px}.barretos-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.barretos-stats>div{background:#fff8ee;border-radius:16px;padding:25px;border:1px solid #eadcc8}.barretos-stats strong{display:block;color:var(--bt-red2);font-size:32px}.barretos-stats span{display:block;color:#6a6058;font-size:13px;margin-top:5px}
.barretos-testimonials{background-image:linear-gradient(rgba(46,33,23,.94),rgba(46,33,23,.94)),var(--testi-bg);background-size:cover;background-position:center;color:#fff}.barretos-testimonial{background:#fff;color:var(--bt-text);border-radius:18px;padding:28px;box-shadow:0 18px 50px rgba(0,0,0,.16)}.barretos-stars{color:var(--bt-gold);letter-spacing:.1em;margin-bottom:15px}.barretos-testimonial blockquote{font-size:15px;line-height:1.7;color:#5f554e;margin:0 0 22px;font-style:italic}.barretos-person{display:flex;align-items:center;gap:12px}.barretos-person>span{width:46px;height:46px;border-radius:50%;background:var(--bt-brown2);color:var(--bt-gold2);display:flex;align-items:center;justify-content:center;font-weight:900}.barretos-person strong,.barretos-person small{display:block}.barretos-person small{color:#8b8078;margin-top:3px}
.barretos-empathy{background-image:linear-gradient(rgba(28,17,10,.84),rgba(28,17,10,.84)),var(--empathy-bg);background-size:cover;background-position:center;text-align:center;color:#fff;padding:120px 0}.barretos-empathy .container{max-width:850px}.barretos-heart{width:66px;height:66px;border:2px solid var(--bt-gold2);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--bt-gold2);font-size:27px;margin:0 auto 22px}.barretos-empathy h2{color:#fff;font-size:clamp(38px,5vw,58px);letter-spacing:-.04em;margin:0 0 18px}.barretos-empathy p{font-size:19px;line-height:1.65;color:rgba(255,255,255,.85);margin:0 auto 28px;max-width:780px}
.barretos-faq{max-width:900px;margin:0 auto;display:grid;gap:12px}.barretos-faq__item{background:#fff;border:1px solid #eadfce;border-radius:14px;overflow:hidden;box-shadow:0 8px 26px rgba(61,42,25,.06)}.barretos-faq__item button{width:100%;border:0;background:#fff;padding:20px 22px;display:flex;align-items:center;justify-content:space-between;gap:18px;text-align:left;font:inherit;font-weight:800;color:var(--bt-brown2);cursor:pointer}.barretos-faq__item button i{transition:.2s}.barretos-faq__answer{max-height:0;overflow:hidden;transition:max-height .3s ease}.barretos-faq__answer p{padding:0 22px 22px;margin:0;color:#6b615a;line-height:1.65}.barretos-faq__item.is-open .barretos-faq__answer{max-height:260px}.barretos-faq__item.is-open button i{transform:rotate(180deg)}
.barretos-form{max-width:650px;margin:0 auto;background:#fff;color:var(--bt-text);border-radius:20px;padding:32px;box-shadow:0 25px 70px rgba(0,0,0,.24)}.barretos-form h3{text-align:center;font-size:25px;margin:0 0 24px}.barretos-form label,.barretos-form legend{display:block;font-weight:700;font-size:13px;color:#53483f;margin-bottom:13px}.barretos-form input,.barretos-form select{width:100%;margin-top:8px;border:1px solid #d9cbbb;background:#fff;border-radius:10px;padding:14px;font:inherit;color:#33271f}.barretos-form fieldset{border:0;padding:0;margin:0 0 17px}.barretos-toggle{display:grid;grid-template-columns:1fr 1fr;gap:10px}.barretos-toggle label{margin:0}.barretos-toggle input{position:absolute;opacity:0;pointer-events:none}.barretos-toggle span{display:flex;align-items:center;justify-content:center;border:1px solid #d9cbbb;border-radius:10px;padding:12px;cursor:pointer}.barretos-toggle input:checked+span{background:#fff1e8;border-color:var(--bt-red2);color:var(--bt-red2)}.barretos-form>small{display:block;text-align:center;color:#80756c;margin-top:12px}
.reveal-on-scroll{opacity:0;transform:translateY(18px);transition:opacity .65s ease,transform .65s ease}.reveal-on-scroll.is-revealed{opacity:1;transform:none}
@media(max-width:1100px){.site-footer__inner{grid-template-columns:repeat(3,1fr)!important}.barretos-steps{grid-template-columns:repeat(3,1fr)}.barretos-hero__content{margin-left:0}.barretos-lawyer-visual{height:auto;min-height:400px}}
@media(max-width:800px){.site-footer__inner{grid-template-columns:1fr 1fr!important}.barretos-hero{min-height:auto;padding:95px 0 65px;background-position:63% center}.barretos-hero__overlay{background:rgba(35,23,15,.82)}.barretos-grid--2,.barretos-grid--3,.barretos-stats{grid-template-columns:1fr}.barretos-steps{grid-template-columns:1fr 1fr}.barretos-lawyer-visual{flex-direction:column;gap:20px;padding:28px}.barretos-lawyer-brand img{width:200px}.barretos-lawyer-figure{width:100%;min-height:220px}.barretos-section{padding:70px 0}}
@media(max-width:560px){.site-footer__inner{grid-template-columns:1fr!important}.barretos-hero h1{font-size:42px}.barretos-actions{flex-direction:column}.barretos-btn{width:100%}.barretos-countdown{display:grid;grid-template-columns:repeat(4,1fr);gap:7px}.barretos-countdown>div{width:auto}.barretos-countdown strong{font-size:24px}.barretos-steps{grid-template-columns:1fr}.barretos-section{padding:58px 0}.barretos-lawyer-visual{min-height:350px}.barretos-form{padding:24px 18px}.barretos-event-pill{font-size:11px}}

/* Barretos 2026 — ajustes visuais exclusivos v3.3 */
.barretos-how-bg{background-image:linear-gradient(rgba(31,19,11,.84),rgba(31,19,11,.84)),var(--how-bg)!important;background-size:cover!important;background-position:center!important;background-attachment:scroll}
.barretos-how-bg:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.12),rgba(0,0,0,.02),rgba(0,0,0,.15));pointer-events:none}
.barretos-how-bg>.container{position:relative;z-index:1}
.barretos-lawyer-photo-wrap{max-width:1180px;margin:0 auto 0;border-radius:24px;overflow:hidden;box-shadow:0 0 0 2px var(--bt-gold2),0 24px 70px rgba(69,43,20,.23);background:#17100b}
.barretos-lawyer-photo{display:block;width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;object-position:center}
.barretos-empathy{background-position:center center!important}
.barretos-whatsapp-card{max-width:860px;margin:0 auto;display:grid;grid-template-columns:84px 1fr auto;gap:22px;align-items:center;background:#fff;color:var(--bt-text);border-radius:22px;padding:26px 28px;box-shadow:0 24px 70px rgba(0,0,0,.28);border:1px solid rgba(255,255,255,.3)}
.barretos-whatsapp-card__icon{width:72px;height:72px;border-radius:20px;background:#eaf8ee;color:#16a34a;display:flex;align-items:center;justify-content:center;font-size:38px}
.barretos-whatsapp-card__copy h3{margin:0 0 6px;font-size:26px;color:#2e2117}.barretos-whatsapp-card__copy p{margin:0;color:#6d625a;line-height:1.55}
.barretos-whatsapp-cta{min-width:285px;display:flex;align-items:center;justify-content:center;gap:12px;background:linear-gradient(135deg,#21b83f,#0f8f2c);color:#fff!important;text-decoration:none;border-radius:14px;padding:16px 22px;box-shadow:0 14px 30px rgba(22,163,74,.28);transition:.22s ease}.barretos-whatsapp-cta:hover{transform:translateY(-2px);box-shadow:0 18px 36px rgba(22,163,74,.34)}.barretos-whatsapp-cta>i{font-size:30px}.barretos-whatsapp-cta span{display:flex;flex-direction:column}.barretos-whatsapp-cta strong{font-size:16px;line-height:1.15}.barretos-whatsapp-cta small{font-size:11px;color:rgba(255,255,255,.82);margin-top:4px}
@media(max-width:800px){.barretos-whatsapp-card{grid-template-columns:1fr;text-align:center}.barretos-whatsapp-card__icon{margin:0 auto}.barretos-whatsapp-cta{min-width:0;width:100%}.barretos-lawyer-photo{aspect-ratio:auto}.barretos-hero{background-position:43% center}}

/* Barretos v3.5 — ajustes exclusivos da landing page */
.barretos-page .barretos-how-bg{
  background-image:linear-gradient(rgba(31,19,11,.66),rgba(31,19,11,.72)),var(--how-bg)!important;
  background-size:cover!important;
  background-position:left center!important;
  min-height:560px;
}
.barretos-page .barretos-how-bg .barretos-heading h2,
.barretos-page .barretos-how-bg .barretos-heading span,
.barretos-page .barretos-how-bg .barretos-heading p{ text-shadow:0 2px 18px rgba(0,0,0,.8); }
.barretos-page .barretos-heading--final>span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  margin-bottom:14px;
  border:1px solid rgba(250,204,21,.5);
  border-radius:999px;
  background:rgba(250,204,21,.12);
  color:#facc15;
  font-size:clamp(20px,2.1vw,32px);
  line-height:1.15;
  font-weight:900;
  letter-spacing:.025em;
  text-transform:uppercase;
  box-shadow:0 10px 35px rgba(0,0,0,.16);
}
.barretos-page .barretos-heading--final h2{margin-top:2px}
.barretos-page .barretos-whatsapp-card--final{
  max-width:820px;
  grid-template-columns:1fr;
  gap:18px;
  text-align:center;
  padding:32px;
}
.barretos-page .barretos-whatsapp-cta--hero{
  width:100%;
  min-width:0;
  min-height:92px;
  justify-content:center;
  padding:18px 28px;
  border-radius:20px;
  background:linear-gradient(135deg,#16a34a,#0f8f3f);
  box-shadow:0 16px 40px rgba(22,163,74,.34),inset 0 1px 0 rgba(255,255,255,.2);
  transform:translateZ(0);
}
.barretos-page .barretos-whatsapp-cta--hero:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 48px rgba(22,163,74,.42),inset 0 1px 0 rgba(255,255,255,.22);
}
.barretos-page .barretos-whatsapp-cta--hero>i{font-size:38px}
.barretos-page .barretos-whatsapp-cta--hero strong{font-size:clamp(22px,2.2vw,31px);line-height:1.05}
.barretos-page .barretos-whatsapp-cta--hero small{font-size:15px;margin-top:5px}
.barretos-page .barretos-whatsapp-card__copy--below{padding-top:2px}
.barretos-page .barretos-whatsapp-card__copy--below h3{font-size:24px;margin-bottom:7px}
.barretos-page .barretos-whatsapp-card__copy--below p{font-size:17px}
@media(max-width:800px){
  .barretos-page .barretos-how-bg{min-height:0;background-position:35% center!important}
  .barretos-page .barretos-whatsapp-card--final{padding:22px 18px}
  .barretos-page .barretos-whatsapp-cta--hero{min-height:84px;padding:16px 18px}
}


/* =========================================================
   RM Seguros — parceria comercial Pontual MS
   ========================================================= */
.rmseguros-partner{background:linear-gradient(135deg,#f8fafc 0%,#fff 58%,#f0fdf4 100%);padding:52px 0;border-top:1px solid #e5e7eb;border-bottom:1px solid #e5e7eb}
.rmseguros-partner__inner{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);gap:46px;align-items:center}
.rmseguros-partner__eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:900;letter-spacing:.12em;color:#15803d;background:#dcfce7;border:1px solid #bbf7d0;padding:8px 12px;border-radius:999px;margin-bottom:16px}
.rmseguros-partner h2{font-size:clamp(30px,4vw,46px);line-height:1.05;margin:0 0 14px;color:#0f172a}
.rmseguros-partner p{font-size:17px;line-height:1.7;color:#475569;max-width:760px;margin-bottom:24px}
.rmseguros-partner__logo-card{background:#fff;border:1px solid #dbe4ea;border-radius:24px;padding:26px 30px;box-shadow:0 20px 55px rgba(15,23,42,.10);text-align:center}
.rmseguros-partner__logo-card span{display:block;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.12em;color:#64748b;margin-bottom:14px}
.rmseguros-partner__logo-card img{display:block;width:100%;max-width:470px;height:auto;margin:0 auto}
@media(max-width:800px){.rmseguros-partner{padding:38px 0}.rmseguros-partner__inner{grid-template-columns:1fr;gap:26px}.rmseguros-partner__logo-card{padding:22px}}


/* v3.17 fallback — RM Seguros logo compacta. */
.rmseguros-brand-logo.rmseguros-brand-logo--compact{display:block!important;width:170px!important;max-width:170px!important;margin:0 auto 24px!important;padding:0!important;background:transparent!important;box-shadow:none!important;text-align:center!important}
.rmseguros-brand-logo.rmseguros-brand-logo--compact img{display:block!important;width:160px!important;max-width:160px!important;height:auto!important;max-height:none!important;margin:0 auto!important;object-fit:contain!important}
@media(max-width:767px){.rmseguros-brand-logo.rmseguros-brand-logo--compact{width:140px!important;max-width:140px!important}.rmseguros-brand-logo.rmseguros-brand-logo--compact img{width:130px!important;max-width:130px!important}}

/* =========================================================
   V3.22 — SUPER PREMIUM SITE-WIDE REFINEMENT
   Aplicado a todas as páginas do site, preservando as landings
   independentes com identidade própria.
   ========================================================= */
:root{
  --rm-container:1240px;
  --rm-radius:16px;
  --rm-radius-lg:26px;
  --rm-shadow:0 12px 34px rgba(2,6,23,.10);
  --rm-shadow-lg:0 28px 80px rgba(2,6,23,.18);
  --rm-gold:#f5c518;
  --rm-gold-deep:#d9a600;
  --rm-ink:#05080e;
  --rm-ink-soft:#0b1220;
  --rm-surface:#ffffff;
  --rm-surface-soft:#f7f9fc;
}

body:not(.link-bio-page){
  background:
    radial-gradient(circle at 12% -8%,rgba(245,197,24,.055),transparent 30%),
    linear-gradient(180deg,#fff 0%,#f7f9fc 100%);
  color:#0c1424;
}
body:not(.link-bio-page) .site-main{overflow:hidden}
body:not(.link-bio-page) h1,
body:not(.link-bio-page) h2,
body:not(.link-bio-page) h3{letter-spacing:-.035em}

/* Topbar mais refinada */
body:not(.link-bio-page) .rm-topbar{
  background:linear-gradient(90deg,#02050a,#0a0f18 48%,#02050a);
  border-bottom:1px solid rgba(245,197,24,.16);
}
body:not(.link-bio-page) .rm-topbar__inner{min-height:38px;gap:56px;font-weight:650;letter-spacing:.01em}
body:not(.link-bio-page) .rm-topbar span{display:inline-flex;align-items:center;gap:3px}
body:not(.link-bio-page) .rm-topbar i{filter:drop-shadow(0 0 8px rgba(245,197,24,.28))}

/* Header / navegação */
body:not(.link-bio-page) .site-header{
  background:rgba(4,8,14,.94);
  -webkit-backdrop-filter:blur(18px) saturate(150%);
  backdrop-filter:blur(18px) saturate(150%);
  border-bottom:1px solid rgba(245,197,24,.17);
  box-shadow:0 18px 46px rgba(2,6,23,.24);
}
body:not(.link-bio-page) .site-header__inner{min-height:104px;position:relative}
body:not(.link-bio-page) .site-header__logo .logo{position:relative}
body:not(.link-bio-page) .site-header__logo .logo:before{
  content:"";position:absolute;inset:9% -11%;z-index:-1;border-radius:50%;
  background:radial-gradient(circle,rgba(245,197,24,.13),transparent 68%);filter:blur(12px)
}
body:not(.link-bio-page) .logo img,
body:not(.link-bio-page) .custom-logo,
body:not(.link-bio-page) .brand-logo{max-height:92px;max-width:270px}
body:not(.link-bio-page) .site-header__trust>div{border-left-color:rgba(245,197,24,.22);padding-left:18px}
body:not(.link-bio-page) .site-header__trust strong{font-size:13px;letter-spacing:-.01em}
body:not(.link-bio-page) .site-header__trust span{color:rgba(255,255,255,.62)}
body:not(.link-bio-page) .site-header__cta .btn{
  min-height:46px;padding-inline:22px;border:1px solid rgba(255,255,255,.14);
  box-shadow:0 12px 32px rgba(22,163,74,.24),inset 0 1px rgba(255,255,255,.14)
}
body:not(.link-bio-page) .site-nav{
  background:linear-gradient(180deg,#070b12,#04070c);
  border-top:1px solid rgba(255,255,255,.055);
  border-bottom:1px solid rgba(245,197,24,.13)
}
body:not(.link-bio-page) .nav-menu{gap:5px;padding:7px 0}
body:not(.link-bio-page) .nav-menu .menu-item a,
body:not(.link-bio-page) .nav-menu li a{
  padding:10px 15px;border:1px solid transparent;border-radius:999px;
  color:rgba(255,255,255,.86);font-size:13.5px;transition:.22s ease
}
body:not(.link-bio-page) .nav-menu .menu-item a:hover,
body:not(.link-bio-page) .nav-menu li a:hover,
body:not(.link-bio-page) .nav-menu .current-menu-item a{
  color:#ffe36a;background:rgba(245,197,24,.075);border-color:rgba(245,197,24,.20);
  box-shadow:inset 0 0 18px rgba(245,197,24,.035)
}
body:not(.link-bio-page) .nav-menu .current-menu-item a:after{display:none}
body:not(.link-bio-page) .nav-menu li:last-child a{
  color:#090d14;background:linear-gradient(135deg,#ffe056,#f5c518 60%,#dba800);
  border-color:rgba(255,236,137,.7);box-shadow:0 8px 24px rgba(245,197,24,.18)
}

/* Heros cinematográficos */
body:not(.link-bio-page) .hero{min-height:600px;padding:110px 0 100px;background-position:center;isolation:isolate}
body:not(.link-bio-page) .hero:before{
  background:
    radial-gradient(circle at 15% 48%,rgba(245,197,24,.10),transparent 31%),
    linear-gradient(90deg,rgba(2,5,10,.98) 0%,rgba(3,7,13,.91) 38%,rgba(3,7,13,.60) 67%,rgba(3,7,13,.27) 100%)
}
body:not(.link-bio-page) .hero:after{
  height:180px;background:linear-gradient(180deg,transparent,rgba(2,6,23,.56));
  box-shadow:inset 0 -1px rgba(245,197,24,.12)
}
body:not(.link-bio-page) .hero__inner{max-width:820px}
body:not(.link-bio-page) .hero__title{
  font-size:clamp(2.75rem,5.5vw,4.7rem);line-height:.99;margin-bottom:24px;
  text-wrap:balance;text-shadow:0 7px 34px rgba(0,0,0,.32)
}
body:not(.link-bio-page) .hero__title .accent{
  background:linear-gradient(180deg,#ffe65f,#f5c518 62%,#d69e00);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  filter:drop-shadow(0 8px 20px rgba(245,197,24,.10))
}
body:not(.link-bio-page) .hero__subtitle{font-size:19px;line-height:1.72;color:rgba(255,255,255,.87)}
body:not(.link-bio-page) .hero__meta{gap:12px;margin-bottom:30px}
body:not(.link-bio-page) .hero__meta span{
  padding:9px 13px;border-radius:999px;border:1px solid rgba(255,255,255,.13);
  background:rgba(5,10,18,.36);backdrop-filter:blur(8px)
}
body:not(.link-bio-page) .hero__meta i{color:var(--rm-yellow)}
body:not(.link-bio-page) .hero__rating{
  padding:10px 14px;border-radius:999px;background:rgba(0,0,0,.28);border:1px solid rgba(255,255,255,.1)
}
body:not(.link-bio-page) .badge{padding:9px 17px;border-radius:999px;box-shadow:inset 0 1px rgba(255,255,255,.08)}
body:not(.link-bio-page) .hero__panel{
  border-radius:28px;background:linear-gradient(155deg,rgba(8,14,24,.9),rgba(10,18,30,.77));
  box-shadow:0 38px 90px rgba(0,0,0,.42),inset 0 1px rgba(255,255,255,.08)
}

/* Botões premium */
body:not(.link-bio-page) .btn{
  position:relative;overflow:hidden;min-height:52px;border-radius:999px;
  box-shadow:0 12px 30px rgba(2,6,23,.18),inset 0 1px rgba(255,255,255,.16);
  transition:transform .22s ease,box-shadow .22s ease,filter .22s ease
}
body:not(.link-bio-page) .btn:before{
  content:"";position:absolute;top:-90%;left:-30%;width:35%;height:280%;transform:rotate(24deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.35),transparent);transition:left .55s ease
}
body:not(.link-bio-page) .btn:hover:before{left:115%}
body:not(.link-bio-page) .btn:hover{transform:translateY(-3px);box-shadow:0 18px 38px rgba(2,6,23,.23);filter:saturate(1.05)}
body:not(.link-bio-page) .btn--green{background:linear-gradient(135deg,#29d766,#15ae4d 58%,#0b8f3d)}
body:not(.link-bio-page) .btn--yellow{background:linear-gradient(135deg,#ffe25c,#f5c518 60%,#dba600)}
body:not(.link-bio-page) .btn--dark{background:linear-gradient(135deg,#111b2e,#07101e)}

/* Barra de números */
body:not(.link-bio-page) .stats-bar{
  padding:38px 0;background:linear-gradient(110deg,#07101e,#0d1729 52%,#070d18);
  border-top:1px solid rgba(245,197,24,.16);border-bottom:1px solid rgba(245,197,24,.12)
}
body:not(.link-bio-page) .stats-bar--yellow{background:linear-gradient(135deg,#ffe25a,#f5c518 55%,#dda600)}
body:not(.link-bio-page) .stats-bar__value{font-size:34px;letter-spacing:-.045em}
body:not(.link-bio-page) .stats-bar__label{font-weight:600;letter-spacing:.015em}

/* Seções, títulos e cards */
body:not(.link-bio-page) .section{padding:96px 0}
body:not(.link-bio-page) .section--sm{padding:68px 0}
body:not(.link-bio-page) .section:not(.section--dark):not(.section--yellow):not(.section--gray){background:#fff}
body:not(.link-bio-page) .section--gray{background:linear-gradient(180deg,#f8fafc 0%,#edf2f8 100%)}
body:not(.link-bio-page) .section--yellow{background:
  radial-gradient(circle at 12% 0,rgba(255,255,255,.30),transparent 28%),
  linear-gradient(135deg,#ffd93d 0%,#f5c518 50%,#dfa600 100%)}
body:not(.link-bio-page) .section--dark{background-color:#07101c}
body:not(.link-bio-page) .section-header{margin-bottom:56px}
body:not(.link-bio-page) .section-header .eyebrow,
body:not(.link-bio-page) .section>.container>span.eyebrow,
body:not(.link-bio-page) .section .container>span.eyebrow{
  position:relative;display:inline-flex;align-items:center;gap:8px;font-size:12px;letter-spacing:.13em
}
body:not(.link-bio-page) .section-header .eyebrow:before,
body:not(.link-bio-page) .section>.container>span.eyebrow:before,
body:not(.link-bio-page) .section .container>span.eyebrow:before{
  content:"";width:24px;height:2px;border-radius:5px;background:currentColor;opacity:.85
}
body:not(.link-bio-page) .section-header h2{font-size:clamp(2rem,3.7vw,3.05rem);text-wrap:balance}
body:not(.link-bio-page) .section-header p{max-width:720px;margin-left:auto;margin-right:auto;line-height:1.7}
body:not(.link-bio-page) .card,
body:not(.link-bio-page) .testimonial,
body:not(.link-bio-page) .novidade-card,
body:not(.link-bio-page) .pricing-card,
body:not(.link-bio-page) .form-card{
  border-radius:26px;border:1px solid rgba(15,23,42,.075);
  box-shadow:0 18px 55px rgba(2,6,23,.10),inset 0 1px rgba(255,255,255,.75);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease
}
body:not(.link-bio-page) .card:hover,
body:not(.link-bio-page) .testimonial:hover,
body:not(.link-bio-page) .novidade-card:hover,
body:not(.link-bio-page) .pricing-card:hover{
  transform:translateY(-7px);border-color:rgba(245,197,24,.34);
  box-shadow:0 30px 78px rgba(2,6,23,.16),0 0 0 1px rgba(245,197,24,.06)
}
body:not(.link-bio-page) .card--dark{
  background:linear-gradient(145deg,#111b2d,#07101d);border-color:rgba(255,255,255,.09);
  box-shadow:0 20px 55px rgba(2,6,23,.24),inset 0 1px rgba(255,255,255,.06)
}
body:not(.link-bio-page) .icon-circle{
  width:62px;height:62px;border-radius:19px;font-size:24px;
  background:linear-gradient(145deg,rgba(245,197,24,.18),rgba(245,197,24,.07));
  border:1px solid rgba(245,197,24,.18);box-shadow:inset 0 1px rgba(255,255,255,.15)
}
body:not(.link-bio-page) .checklist li{margin-bottom:13px;line-height:1.55}
body:not(.link-bio-page) .checklist i{filter:drop-shadow(0 4px 8px rgba(22,163,74,.18))}
body:not(.link-bio-page) .card__link{font-weight:800;color:#0b4fc8;display:inline-flex;align-items:center;gap:8px;margin-top:7px}
body:not(.link-bio-page) .card--dark .card__link{color:#ffe36a}

/* FAQs */
body:not(.link-bio-page) .faq-accordion{max-width:900px}
body:not(.link-bio-page) .faq-item{
  margin-bottom:12px;border:1px solid rgba(15,23,42,.08);border-radius:18px;background:#fff;
  box-shadow:0 10px 34px rgba(2,6,23,.065);overflow:hidden
}
body:not(.link-bio-page) .faq-item__question{padding:22px 24px}
body:not(.link-bio-page) .faq-item__answer p{padding:0 24px 24px}
body:not(.link-bio-page) .faq-item.is-open{border-color:rgba(245,197,24,.34);box-shadow:0 16px 44px rgba(2,6,23,.09)}

/* CTAs com mais impacto */
body:not(.link-bio-page) .cta-banner{position:relative;overflow:hidden;padding:82px 0}
body:not(.link-bio-page) .cta-banner:before{
  content:"";position:absolute;width:420px;height:420px;border-radius:50%;right:-180px;top:-220px;
  background:radial-gradient(circle,rgba(245,197,24,.17),transparent 65%);pointer-events:none
}
body:not(.link-bio-page) .cta-banner--dark{background:linear-gradient(135deg,#050b14,#0c1728 58%,#050a12)}
body:not(.link-bio-page) .cta-banner--red{background:linear-gradient(135deg,#611416,#210608 65%,#070506)}
body:not(.link-bio-page) .cta-banner__title{font-size:clamp(2rem,3.8vw,3rem);letter-spacing:-.04em}

/* Footer premium */
body:not(.link-bio-page) .site-footer{
  position:relative;padding-top:72px;background:
    radial-gradient(circle at 16% 0,rgba(245,197,24,.08),transparent 27%),
    linear-gradient(145deg,#05090f,#080f1b 58%,#04070c);
  border-top:1px solid rgba(245,197,24,.38);box-shadow:0 -20px 60px rgba(2,6,23,.16)
}
body:not(.link-bio-page) .site-footer:before{
  content:"";position:absolute;top:-1px;left:14%;right:14%;height:1px;
  background:linear-gradient(90deg,transparent,#f5c518,transparent);box-shadow:0 0 20px rgba(245,197,24,.4)
}
body:not(.link-bio-page) .site-footer__inner{gap:34px;padding-bottom:54px}
body:not(.link-bio-page) .site-footer__col h4{
  color:#fff;font-size:14px;text-transform:uppercase;letter-spacing:.08em;position:relative;padding-bottom:12px
}
body:not(.link-bio-page) .site-footer__col h4:after{content:"";position:absolute;left:0;bottom:0;width:28px;height:2px;background:#f5c518;border-radius:4px}
body:not(.link-bio-page) .site-footer__col p,
body:not(.link-bio-page) .site-footer__col ul li a,
body:not(.link-bio-page) .site-footer__contact li{color:rgba(255,255,255,.62)}
body:not(.link-bio-page) .site-footer__col ul li a{transition:.18s ease}
body:not(.link-bio-page) .site-footer__col ul li a:hover{color:#ffe36a;padding-left:3px}
body:not(.link-bio-page) .site-footer__logo{
  width:190px!important;max-height:none;background:#020305;border:1px solid rgba(245,197,24,.16);
  border-radius:18px;padding:8px;box-shadow:0 18px 44px rgba(0,0,0,.25)
}
body:not(.link-bio-page) .site-footer__social a{
  width:42px;height:42px;background:rgba(255,255,255,.055);color:#fff;border:1px solid rgba(255,255,255,.10);
  transition:.2s ease
}
body:not(.link-bio-page) .site-footer__social a:hover{transform:translateY(-3px);color:#f5c518;border-color:rgba(245,197,24,.35);background:rgba(245,197,24,.07)}
body:not(.link-bio-page) .site-footer__bottom{background:#02050a;border-top:1px solid rgba(255,255,255,.07)}

/* WhatsApp flutuante */
body:not(.link-bio-page) .whatsapp-float{
  width:64px;height:64px;font-size:30px;background:linear-gradient(145deg,#27d866,#0fa74a);
  border:3px solid #fff;box-shadow:0 18px 42px rgba(22,163,74,.38),0 0 0 1px rgba(22,163,74,.22)
}

/* Ajustes específicos de páginas para consistência premium */
body.page-template-page-rmseguros .section:not(.section--dark),
body.page-template-page-consorcio .section:not(.section--dark),
body.page-template-page-monitoramento .section:not(.section--dark),
body.page-template-page-sobre .section:not(.section--dark),
body.page-template-page-parcerias .section:not(.section--dark){background-color:#fff}
body.page-template-page-servicos .servico-detalhe,
body.page-template-page-servicos .servicos-benefit{border-radius:24px}
body.page-template-page-rmseguros .rmseguros-brand-logo.rmseguros-brand-logo--compact{
  filter:drop-shadow(0 14px 26px rgba(0,0,0,.18))
}

@media(max-width:980px){
  body:not(.link-bio-page) .site-header__inner{min-height:84px}
  body:not(.link-bio-page) .logo img,body:not(.link-bio-page) .custom-logo,body:not(.link-bio-page) .brand-logo{max-height:72px;max-width:215px}
  body:not(.link-bio-page) .hero{min-height:540px;padding:92px 0 82px}
  body:not(.link-bio-page) .section{padding:82px 0}
  body:not(.link-bio-page) .site-footer__inner{grid-template-columns:1fr 1fr!important}
}
@media(max-width:720px){
  body:not(.link-bio-page) .container{padding-left:18px;padding-right:18px}
  body:not(.link-bio-page) .site-header{position:sticky;top:0}
  body:not(.link-bio-page) .site-header__inner{min-height:76px}
  body:not(.link-bio-page) .site-nav{padding:8px 0 14px}
  body:not(.link-bio-page) .nav-menu{gap:5px}
  body:not(.link-bio-page) .nav-menu .menu-item a,body:not(.link-bio-page) .nav-menu li a{padding:12px 14px;border-radius:12px}
  body:not(.link-bio-page) .hero{min-height:500px;padding:80px 0 72px;background-position:62% center}
  body:not(.link-bio-page) .hero:before{background:linear-gradient(90deg,rgba(2,5,10,.96),rgba(3,7,13,.79))}
  body:not(.link-bio-page) .hero__title{font-size:clamp(2.25rem,11vw,3.35rem)}
  body:not(.link-bio-page) .hero__subtitle{font-size:16px;line-height:1.65}
  body:not(.link-bio-page) .hero__actions{align-items:stretch}
  body:not(.link-bio-page) .hero__actions .btn{width:100%}
  body:not(.link-bio-page) .hero__rating{width:100%;justify-content:center;text-align:center}
  body:not(.link-bio-page) .section{padding:70px 0}
  body:not(.link-bio-page) .section-header{margin-bottom:40px}
  body:not(.link-bio-page) .card,body:not(.link-bio-page) .testimonial,body:not(.link-bio-page) .novidade-card,body:not(.link-bio-page) .pricing-card{border-radius:22px}
  body:not(.link-bio-page) .stats-bar__grid>div{padding:13px 10px;border-bottom:1px solid rgba(255,255,255,.09)}
  body:not(.link-bio-page) .stats-bar--yellow .stats-bar__grid>div{border-bottom-color:rgba(15,23,42,.11)}
  body:not(.link-bio-page) .site-footer{padding-top:58px}
  body:not(.link-bio-page) .site-footer__inner{grid-template-columns:1fr!important;gap:28px}
  body:not(.link-bio-page) .site-footer__col h4{margin-bottom:14px}
  body:not(.link-bio-page) .whatsapp-float{width:58px;height:58px;right:17px;bottom:17px}
}

@media(prefers-reduced-motion:reduce){
  body:not(.link-bio-page) *,body:not(.link-bio-page) *:before,body:not(.link-bio-page) *:after{scroll-behavior:auto!important;transition:none!important;animation-duration:.01ms!important;animation-iteration-count:1!important}
}
