/* ===== Variáveis ===== */
:root {
	--flare-orange: #F2662B;
	--flare-orange-dark: #D9531E;
	--flare-orange-tint: #FFF1E8;
	--flare-dark: #12141C;
	--flare-dark-soft: #1B1E29;
	--flare-text: #1A1A1E;
	--flare-muted: #6B7280;
	--flare-border: #E7E5E4;
	--flare-bg-soft: #FFF7F2;
	--flare-radius: 16px;
	--flare-shadow: 0 10px 30px rgba(18, 20, 28, 0.06);
	--flare-container: 1440px;
}

/* ===== Reset básico ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--flare-text);
	background: #fff;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; color: var(--flare-muted); }
.text-accent { color: var(--flare-orange); }
.text-center { text-align: center; }
.bi { line-height: 1; }

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

.section { padding: 80px 0; }
.section__title { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.section__subtitle { max-width: 560px; margin: 0 auto 48px; }
.section__title.text-center,
.section__subtitle.text-center { margin-left: auto; margin-right: auto; }

/* ===== Botões ===== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 22px;
	border: none;
	border-radius: 10px;
	font-family: inherit;
	font-weight: 600;
	font-size: .95rem;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
	white-space: nowrap;
}
.btn--primary {
	background: var(--flare-orange);
	color: #fff;
	box-shadow: 0 8px 20px rgba(242, 102, 43, .28);
}
.btn--primary:hover { background: var(--flare-orange-dark); transform: translateY(-1px); }
.btn--ghost {
	background: #fff;
	color: var(--flare-text);
	border: 1px solid var(--flare-border);
}
.btn--ghost:hover { border-color: var(--flare-text); }
.btn--light { background: #fff; color: var(--flare-orange); }
.btn--light:hover { transform: translateY(-1px); }
.btn--outline-light {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	border: 1px solid rgba(255,255,255,.3);
	padding: 12px 20px;
	border-radius: 10px;
	font-weight: 600;
}
.btn--outline-light:hover { border-color: #fff; }
.btn .bi { font-size: 1rem; }

.pill {
	display: inline-flex;
	align-items: center;
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .03em;
	padding: 4px 10px;
	border-radius: 999px;
}
.pill--dark { background: var(--flare-dark); color: #fff; }
.pill--accent { background: var(--flare-orange); color: #fff; }
.pill--muted { background: #F3F4F6; color: var(--flare-muted); }

/* ===== Header ===== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255,255,255,.9);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--flare-border);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	height: 76px;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo__img { height: 50px; width: auto; }

.site-nav { margin-left: auto; }
.site-nav__list { display: flex; gap: 28px; }
.site-nav__list a { font-size: .92rem; font-weight: 500; color: var(--flare-text); }
.site-nav__list a:hover { color: var(--flare-orange); }

.site-header__cta { flex-shrink: 0; }

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	background: none;
	border: none;
	cursor: pointer;
	margin-left: auto;
}
.nav-toggle span { display: block; height: 2px; background: var(--flare-text); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 48px;
	align-items: center;
	padding: 80px 24px 64px;
}
.hero__title { font-size: clamp(2rem, 3.4vw, 2.75rem); }
.hero__desc { max-width: 480px; }
.hero__actions { display: flex; gap: 14px; margin: 28px 0 20px; flex-wrap: wrap; }
.hero__trust {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .85rem;
	color: var(--flare-muted);
	margin: 0;
}
.hero__trust .bi { font-size: 1rem; }

.hero__visual { position: relative; }
.mock-card {
	background: #fff;
	border: 2px solid var(--flare-border);
	border-radius: var(--flare-radius);
	box-shadow: var(--flare-shadow);
	padding: 20px;
}
.mock-card--loop { animation: flare-border-highlight 12s ease-in-out infinite; }
.mock-card__head {
	position: relative;
	min-height: 30px;
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .04em;
	color: var(--flare-muted);
	margin-bottom: 16px;
}
.mock-card__state {
	position: absolute;
	inset: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	row-gap: 6px;
}
.mock-card__state--before { animation: flare-label-a 12s ease-in-out infinite; }
.mock-card__state--after { animation: flare-label-b 12s ease-in-out infinite; }
.mock-card__preview {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	aspect-ratio: 16 / 9;
}
.mock-card__frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mock-card__frame--f1 { animation: flare-frame-1 12s ease-in-out infinite; }
.mock-card__frame--f2 { animation: flare-frame-2 12s ease-in-out infinite; }
.mock-card__frame--f3 { animation: flare-frame-3 12s ease-in-out infinite; }
.mock-card__frame--f4 { animation: flare-frame-4 12s ease-in-out infinite; }

.hero__langs { margin-top: 24px; text-align: center; }
.hero__langs-flags {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}
.hero__lang-flag {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #ffeadd;
	box-shadow: var(--flare-shadow);
	font-size: 1.15rem;
	line-height: 1;
	overflow: hidden;
}
.hero__langs-caption { font-size: .8rem; color: var(--flare-muted); margin: 0; }

/* Ciclo de 4 imagens (12s, 3s cada) com transição suave entre elas */
@keyframes flare-frame-1 {
	0%, 20% { opacity: 1; }
	25%, 95% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes flare-frame-2 {
	0%, 20% { opacity: 0; }
	25%, 45% { opacity: 1; }
	50%, 100% { opacity: 0; }
}
@keyframes flare-frame-3 {
	0%, 45% { opacity: 0; }
	50%, 70% { opacity: 1; }
	75%, 100% { opacity: 0; }
}
@keyframes flare-frame-4 {
	0%, 70% { opacity: 0; }
	75%, 95% { opacity: 1; }
	100% { opacity: 0; }
}
/* Labels acompanham os pares institucional (f1/f3) e personalizada (f2/f4) */
@keyframes flare-label-a {
	0%, 20% { opacity: 1; }
	25%, 45% { opacity: 0; }
	50%, 70% { opacity: 1; }
	75%, 95% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes flare-label-b {
	0%, 20% { opacity: 0; }
	25%, 45% { opacity: 1; }
	50%, 70% { opacity: 0; }
	75%, 95% { opacity: 1; }
	100% { opacity: 0; }
}
@keyframes flare-border-highlight {
	0%, 20% { border-color: var(--flare-border); }
	25%, 45% { border-color: var(--flare-orange); }
	50%, 70% { border-color: var(--flare-border); }
	75%, 95% { border-color: var(--flare-orange); }
	100% { border-color: var(--flare-border); }
}
@media (prefers-reduced-motion: reduce) {
	.mock-card__state--before, .mock-card__state--after,
	.mock-card__frame--f1, .mock-card__frame--f2, .mock-card__frame--f3, .mock-card__frame--f4,
	.mock-card--loop { animation: none; }
	.mock-card--loop { border-color: var(--flare-border); }
	.mock-card__state--after, .mock-card__frame--f2, .mock-card__frame--f3, .mock-card__frame--f4 { opacity: 0; }
	.mock-card__state--before, .mock-card__frame--f1 { opacity: 1; }
	.step-card__frame--f1, .step-card__frame--f2, .step-card__frame--f3 { animation: none; }
	.step-card__frame--f2, .step-card__frame--f3 { opacity: 0; }
	.step-card__frame--f1 { opacity: 1; }
}

/* ===== Intro strip ===== */
.intro-strip { background: var(--flare-bg-soft); padding: 40px 0; }
.intro-strip__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	text-align: center;
}
.intro-strip__inner p { margin: 0; font-size: 1.25rem; font-weight: 600; color: var(--flare-text); }
.icon-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #fff;
	box-shadow: var(--flare-shadow);
	flex-shrink: 0;
}
.icon-badge .bi { font-size: 2.2rem; color: var(--flare-orange); }

/* ===== Como funciona ===== */
.steps__grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	gap: 12px;
}
.step-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--flare-border);
	border-radius: var(--flare-radius);
	padding: 32px 24px;
	text-align: center;
}
.step-card__number {
	position: absolute;
	top: -14px;
	left: 24px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--flare-orange);
	color: #fff;
	font-weight: 700;
	font-size: .85rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.step-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: var(--flare-orange-tint);
	margin: 0 auto 16px;
}
.step-card__icon .bi { font-size: 1.6rem; color: var(--flare-orange); }
.step-card__thumb {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 10px;
	overflow: hidden;
	margin: 0 0 16px;
	box-shadow: var(--flare-shadow);
}
.step-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.step-card__frame { position: absolute; inset: 0; }
.step-card__frame--f1 { animation: flare-step-frame-1 9s ease-in-out infinite; }
.step-card__frame--f2 { animation: flare-step-frame-2 9s ease-in-out infinite; }
.step-card__frame--f3 { animation: flare-step-frame-3 9s ease-in-out infinite; }

/* Ciclo de 3 imagens (9s, 3s cada) com transição suave entre elas */
@keyframes flare-step-frame-1 {
	0%, 28% { opacity: 1; }
	33%, 95% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes flare-step-frame-2 {
	0%, 28% { opacity: 0; }
	33%, 61% { opacity: 1; }
	66%, 100% { opacity: 0; }
}
@keyframes flare-step-frame-3 {
	0%, 61% { opacity: 0; }
	66%, 95% { opacity: 1; }
	100% { opacity: 0; }
}
.step-card h3 { font-size: 1rem; margin-bottom: 6px; }
.step-card p { font-size: .85rem; margin: 0; }
.step-arrow { display: flex; justify-content: center; align-self: center; }
.step-arrow .bi { font-size: 1.3rem; color: var(--flare-dark-soft); }

/* ===== Vantagens (tabela comparativa) ===== */
.before-after { background: var(--flare-bg-soft); }
.before-after .comparison__table-wrap { max-width: 1040px; margin: 0 auto; }
.before-after .comparison__table td { font-size: .95rem; }
.before-after .comparison__table th:first-child,
.before-after .comparison__table td:first-child {
	text-align: left;
	font-weight: 600;
	color: var(--flare-text);
}
.before-after .comparison__table tbody tr:last-child td {
	padding-top: 24px;
	padding-bottom: 24px;
	font-size: 1.1rem;
}
.before-after .comparison__table tbody tr:last-child td strong { font-size: 1.6rem; }
.before-after .comparison__table tbody tr:last-child td.is-accent strong { color: var(--flare-orange); }
.before-after .comparison__table td .bi { margin-right: 6px; vertical-align: -2px; }
.before-after .comparison__table td .bi-check-circle-fill { color: #16A34A; }
.before-after .comparison__table td .bi-x-circle-fill { color: #DC2626; }
.before-after .comparison__table-wrap + .text-center { margin-top: 40px; }

/* ===== Galeria antes/depois (carrossel) ===== */
.gallery-carousel { display: flex; align-items: center; gap: 12px; }
.gallery-carousel__viewport { flex: 1; min-width: 0; overflow: hidden; }
.gallery-carousel__arrow {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--flare-border);
	color: var(--flare-text);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: var(--flare-shadow);
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.gallery-carousel__arrow:hover { background: var(--flare-orange); border-color: var(--flare-orange); color: #fff; }
.gallery-carousel__arrow .bi { font-size: 1.1rem; }
.gallery-carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.gallery-carousel__dots button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--flare-border);
	border: none;
	cursor: pointer;
	padding: 0;
}
.gallery-carousel__dots button.is-active { background: var(--flare-orange); width: 22px; border-radius: 4px; }

.gallery-compare__rail {
	display: flex;
	gap: 24px;
	width: max-content;
	transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}
.gallery-compare__card {
	position: relative;
	flex: 0 0 var(--gallery-card-width, 400px);
	overflow: hidden;
	border: 2px solid var(--flare-border);
	border-radius: var(--flare-radius);
	box-shadow: var(--flare-shadow);
	background: #fff;
	animation: flare-gallery-border 6s ease-in-out infinite;
	animation-delay: var(--gallery-delay, 0s);
}
.gallery-compare__media {
	position: relative;
	aspect-ratio: 16 / 9;
}
.gallery-compare__frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery-compare__badge {
	position: absolute;
	top: 14px;
	left: 14px;
}
.gallery-compare__body { padding: 16px; }
.gallery-compare__body h3 { font-size: 1.25rem; margin: 0; }
.gallery-compare__frame--before, .gallery-compare__badge--before {
	animation: flare-gallery-a 6s ease-in-out infinite;
	animation-delay: var(--gallery-delay, 0s);
}
.gallery-compare__frame--after, .gallery-compare__badge--after {
	animation: flare-gallery-b 6s ease-in-out infinite;
	animation-delay: var(--gallery-delay, 0s);
}

@keyframes flare-gallery-a {
	0%, 40% { opacity: 1; }
	50%, 90% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes flare-gallery-b {
	0%, 40% { opacity: 0; }
	50%, 90% { opacity: 1; }
	100% { opacity: 0; }
}
@keyframes flare-gallery-border {
	0%, 40% { border-color: var(--flare-border); }
	50%, 90% { border-color: var(--flare-orange); }
	100% { border-color: var(--flare-border); }
}
@media (prefers-reduced-motion: reduce) {
	.gallery-compare__frame, .gallery-compare__badge, .gallery-compare__card { animation: none; }
	.gallery-compare__frame--after, .gallery-compare__badge--after { opacity: 0; }
	.gallery-compare__frame--before, .gallery-compare__badge--before { opacity: 1; }
	.gallery-compare__card { border-color: var(--flare-border); }
}

/* ===== Diferenciais ===== */
.features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}
.feature-card { text-align: center; padding: 0 8px; }
.feature-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--flare-orange-tint);
	margin: 0 auto 16px;
}
.feature-card__icon .bi { font-size: 1.5rem; color: var(--flare-orange); }
.feature-card__thumb {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
	margin: 0 0 16px;
	box-shadow: var(--flare-shadow);
}
.feature-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: .88rem; margin: 0; }

.features__grid--single {
	grid-template-columns: 1fr;
	max-width: 860px;
	margin: 48px auto 0;
}
.features__grid--single .feature-card__thumb {
	aspect-ratio: 3 / 2;
}

/* ===== Exemplo real (carrossel) ===== */
.section-dark { background: var(--flare-dark); color: #fff; padding: 88px 0; }
.carousel-section__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.carousel-section__copy h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 16px 0; color: #fff; }
.carousel-section__copy p { color: rgba(255,255,255,.65); }

.carousel-section__cards { display: flex; flex-direction: column; min-width: 0; }
.carousel { position: relative; display: flex; align-items: center; gap: 12px; }
.carousel__track {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	border-radius: 14px;
}
.carousel__rail {
	position: relative;
	display: flex;
	width: max-content;
	transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}
.carousel__slide {
	position: relative;
	flex: 0 0 var(--carousel-slide-width, 400px);
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: var(--flare-border);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .28);
}
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel__arrow {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.15);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.carousel__arrow:hover { background: var(--flare-orange); border-color: var(--flare-orange); }
.carousel__arrow .bi { font-size: 1.1rem; }
.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel__dots button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,.25);
	border: none;
	cursor: pointer;
	padding: 0;
}
.carousel__dots button.is-active { background: var(--flare-orange); width: 22px; border-radius: 4px; }

/* ===== Tabela comparativa ===== */
.comparison__table-wrap { overflow-x: auto; }
.comparison__table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 560px; }
.comparison__table th, .comparison__table td {
	padding: 16px 20px;
	border-bottom: 1px solid var(--flare-border);
	font-size: .9rem;
}
.comparison__table thead th { font-size: 1.05rem; color: var(--flare-muted); font-weight: 600; border-top: 1px solid var(--flare-border); }
.comparison__table th.is-accent, .comparison__table td.is-accent {
	background: var(--flare-orange-tint);
	color: var(--flare-text);
	border-left: 2px solid var(--flare-orange);
	border-right: 2px solid var(--flare-orange);
}
.comparison__table thead th.is-accent {
	border-top: 2px solid var(--flare-orange);
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}
.comparison__table tbody tr:last-child td.is-accent {
	border-bottom: 2px solid var(--flare-orange);
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}

.comparison__table th:first-child, .comparison__table td:first-child {
	color: var(--flare-muted);
	border-left: 1px solid var(--flare-border);
	border-right: 1px solid var(--flare-border);
}
.comparison__table thead th:first-child {
	border-top: 1px solid var(--flare-border);
	border-top-left-radius: 12px;
}
.comparison__table tbody tr:last-child td:first-child {
	border-bottom-left-radius: 12px;
}

/* ===== CTA final ===== */
.cta-banner {
	background: linear-gradient(120deg, var(--flare-orange), #FF8A50);
	padding: 64px 0;
	margin: 24px;
	border-radius: 24px;
	color: #fff;
}
.cta-banner__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}
.cta-banner h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 0; color: #fff; }
.cta-banner h2 span { display: block; }
.cta-banner__action { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.cta-banner__action p { color: rgba(255,255,255,.85); font-size: .85rem; margin: 0; max-width: 260px; }

/* ===== Footer ===== */
.site-footer { background: var(--flare-dark); color: rgba(255,255,255,.7); padding: 72px 0 0; }
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
}
.site-footer__tagline { max-width: 260px; font-size: .85rem; margin-top: 16px; }
.site-footer__col h3 { color: #fff; font-size: .9rem; margin-bottom: 16px; }
.site-footer__col ul li { margin-bottom: 10px; }
.site-footer__col ul a { font-size: .85rem; }
.site-footer__col ul a:hover { color: var(--flare-orange); }
.site-footer__social { display: flex; gap: 12px; margin-top: 16px; }
.site-footer__social a {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: rgba(255,255,255,.06);
	display: flex;
	align-items: center;
	justify-content: center;
}
.site-footer__social a:hover { background: var(--flare-orange); }
.site-footer__social a .bi { font-size: 1.05rem; }
.site-footer__bottom {
	margin-top: 56px;
	padding: 24px;
	border-top: 1px solid rgba(255,255,255,.08);
	text-align: center;
	font-size: .8rem;
}

/* ===== Responsivo ===== */
@media (max-width: 960px) {
	.hero { grid-template-columns: 1fr; padding-top: 48px; }
	.steps__grid { grid-template-columns: 1fr; }
	.step-arrow { transform: rotate(90deg); margin: 0 auto; }
	.features__grid { grid-template-columns: repeat(2, 1fr); }
	.carousel-section__inner { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.cta-banner__inner { justify-content: flex-start; }
}

@media (max-width: 720px) {
	.site-nav {
		position: fixed;
		inset: 76px 0 0 0;
		background: #fff;
		transform: translateY(-8px);
		opacity: 0;
		pointer-events: none;
		transition: opacity .18s ease, transform .18s ease;
		padding: 24px;
		border-top: 1px solid var(--flare-border);
	}
	.site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
	.site-nav__list { flex-direction: column; gap: 18px; }
	.nav-toggle { display: flex; }
	.site-header__cta { display: none; }
	.features__grid { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr; }
	.cta-banner { margin: 0 16px; border-radius: 18px; }
	.section { padding: 64px 0; }

	/* Tabela de Vantagens: empilha cada linha como um card, sem scroll lateral */
	.before-after .comparison__table-wrap { overflow-x: visible; }
	.before-after .comparison__table { min-width: 0; }
	.before-after .comparison__table thead { display: none; }
	.before-after .comparison__table, .before-after .comparison__table tbody { display: block; width: 100%; }
	.before-after .comparison__table tr {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 14px;
		border: 1px solid var(--flare-border);
		border-radius: 12px;
		overflow: hidden;
		background: #fff;
	}
	.before-after .comparison__table tr:last-child { margin-bottom: 0; }
	.before-after .comparison__table td {
		flex: 1 1 50%;
		border: none !important;
		border-radius: 0 !important;
		padding: 12px 14px;
	}
	.before-after .comparison__table td:first-child {
		flex: 1 1 100%;
		text-align: left;
		background: var(--flare-bg-soft);
		font-weight: 700;
		border-bottom: 1px solid var(--flare-border) !important;
	}
	.before-after .comparison__table td:nth-child(2) {
		border-right: 1px solid var(--flare-border) !important;
	}
	.before-after .comparison__table tbody td:nth-child(2)::before,
	.before-after .comparison__table tbody td.is-accent::before {
		display: block;
		font-size: .65rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: .04em;
		margin-bottom: 4px;
	}
	.before-after .comparison__table tbody td:nth-child(2)::before {
		content: "Processo manual";
		color: var(--flare-muted);
	}
	.before-after .comparison__table tbody td.is-accent::before {
		content: "Com o Flare Slides";
		color: var(--flare-orange);
	}
}

/* ===== Modal: Solicitar demonstração ===== */
html.has-demo-modal-open,
html.has-demo-modal-open body { overflow: hidden; }

.demo-modal { position: fixed; inset: 0; z-index: 1000; }
.demo-modal[hidden] { display: none; }
.demo-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(18, 20, 28, .6);
}
.demo-modal__dialog {
	position: relative;
	z-index: 1;
	width: calc(100% - 32px);
	max-width: 560px;
	max-height: calc(100vh - 48px);
	margin: 24px auto;
	overflow-y: auto;
	background: #fff;
	border-radius: var(--flare-radius);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}
.demo-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--flare-border);
	background: #fff;
	color: var(--flare-text);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.demo-modal__close:hover { border-color: var(--flare-text); }
.demo-modal__body { padding: 40px; }
.demo-modal__body h2 { font-size: clamp(1.3rem, 2vw, 1.6rem); padding-right: 32px; }
.demo-modal__subtitle { margin-bottom: 24px; }

.demo-form { display: flex; flex-direction: column; gap: 18px; }
.demo-form__grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.demo-form__row { display: flex; flex-direction: column; gap: 6px; }
.demo-form__row label { font-size: .85rem; font-weight: 600; }
.demo-form__row input,
.demo-form__row textarea {
	font: inherit;
	color: var(--flare-text);
	padding: 12px 14px;
	border: 1px solid var(--flare-border);
	border-radius: 10px;
	background: #fff;
}
.demo-form__row input:focus,
.demo-form__row textarea:focus {
	outline: none;
	border-color: var(--flare-orange);
	box-shadow: 0 0 0 3px var(--flare-orange-tint);
}
.demo-form__row textarea { resize: vertical; }

.demo-form__hp {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.demo-form__consent { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; color: var(--flare-muted); cursor: pointer; }
.demo-form__consent input { margin-top: 3px; flex-shrink: 0; }
.demo-form__consent a { color: var(--flare-orange); text-decoration: underline; }

.demo-form__feedback { font-size: .85rem; font-weight: 600; min-height: 1.2em; }
.demo-form__feedback.is-success { color: #1E8E5A; }
.demo-form__feedback.is-error { color: #D9531E; }

.demo-form__submit { justify-content: center; width: 100%; }
.demo-form__submit[disabled] { opacity: .7; cursor: default; }

@media (max-width: 720px) {
	.demo-modal__body { padding: 28px 20px; }
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

/* ===== Modal: Ver exemplo (slides) ===== */
html.has-slides-modal-open,
html.has-slides-modal-open body { overflow: hidden; }

.slides-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 64px 24px;
}
.slides-modal[hidden] { display: none; }
.slides-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(18, 20, 28, .8);
}
.slides-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1280px;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.slides-modal__close {
	position: absolute;
	top: -48px;
	right: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .3);
	background: rgba(255, 255, 255, .1);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.slides-modal__close:hover { border-color: #fff; }

.slides-viewer {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
}
.slides-viewer__stage {
	position: relative;
	flex: 1;
	aspect-ratio: 16 / 9;
	background: #10131c;
	border-radius: var(--flare-radius);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slides-viewer__stage canvas {
	max-width: 100%;
	max-height: 100%;
}
.slides-viewer__status {
	position: absolute;
	color: rgba(255, 255, 255, .7);
	font-size: .9rem;
	margin: 0;
}
.slides-viewer__arrow {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .3);
	background: rgba(255, 255, 255, .1);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.slides-viewer__arrow:hover { border-color: #fff; }
.slides-viewer__arrow[disabled] { opacity: .35; cursor: default; }
.slides-viewer__counter { color: rgba(255, 255, 255, .7); font-size: .85rem; margin: 0; }

@media (max-width: 720px) {
	.slides-modal { padding: 56px 16px; }
	.slides-viewer { gap: 6px; }
	.slides-viewer__arrow { width: 36px; height: 36px; }
	.slides-modal__close { top: -44px; }
}

/* ===== Páginas legais (Privacidade / Termos de uso) ===== */
.legal-page { padding: 56px 0 96px; }
.legal-content 
.legal-content__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .9rem;
	font-weight: 600;
	color: var(--flare-muted);
	margin-bottom: 24px;
}
.legal-content__back:hover { color: var(--flare-orange); }
.legal-content__updated {
	display: inline-flex;
	align-items: center;
	font-size: .8rem;
	font-weight: 600;
	color: var(--flare-muted);
	background: var(--flare-bg-soft);
	border: 1px solid var(--flare-border);
	border-radius: 10px;
	padding: 6px 14px;
	margin: 0 0 40px;
}
.legal-content h1 { margin-bottom: 12px; }
.legal-content h2 {
	font-size: 1.15rem;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--flare-border);
}
.legal-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 { font-size: 1rem; margin-top: 24px; margin-bottom: .5em; color: var(--flare-text); }
.legal-content p,
.legal-content li { color: var(--flare-text); }
.legal-content ul,
.legal-content ol { margin: 0 0 1em; padding-left: 1.3em; }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { margin-bottom: .5em; }
.legal-content strong { color: var(--flare-text); }
.legal-content a:not(.legal-content__back) { color: var(--flare-orange); text-decoration: underline; }
.legal-content__placeholder { color: var(--flare-orange-dark); font-weight: 600; }

@media (max-width: 720px) {
	.legal-page { padding: 40px 0 64px; }
}
