/* =========================================================
   Emitto — Landing Page (HTML/CSS/JS puro)
   Tema claro, azul como destaque.
   ========================================================= */

:root {
	--background: 0 0% 100%;
	--foreground: 222 47% 11%;
	--card: 210 20% 98%;
	--primary: 214 90% 52%;
	--primary-foreground: 0 0% 100%;
	--secondary: 210 20% 96%;
	--muted-foreground: 215 16% 47%;
	--destructive: 0 72% 51%;
	--border: 214 20% 90%;
	--radius: 0.75rem;

	--bg: hsl(var(--background));
	--fg: hsl(var(--foreground));
	--card-bg: hsl(var(--card));
	--primary-c: hsl(var(--primary));
	--muted: hsl(var(--muted-foreground));
	--border-c: hsl(var(--border));

	--shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 3px rgba(15, 23, 42, .06);
	--shadow-md: 0 4px 12px rgba(15, 23, 42, .06), 0 2px 4px rgba(15, 23, 42, .04);
	--shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, .12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: "Inter", sans-serif;
	background-color: var(--bg);
	color: var(--fg);
	overflow-x: clip;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

.font-display, h1, h2, h3 { font-family: "Sora", sans-serif; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
canvas { max-width: 100%; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 48rem; }

.section { padding: 6rem 0; }
.section--alt { background: hsl(var(--card)); }
.bordered-y { border-top: 1px solid var(--border-c); border-bottom: 1px solid var(--border-c); }
.bordered-t { border-top: 1px solid var(--border-c); }

.text-gradient {
	background: linear-gradient(to right, hsl(var(--primary)), #38bdf8);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.grid-glow {
	background-image: radial-gradient(circle at 1px 1px, hsla(214,90%,55%,0.10) 1px, transparent 0);
	background-size: 32px 32px;
}

/* ---------- Buttons / tags ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	border-radius: .75rem; padding: .875rem 1.5rem;
	font-size: .875rem; font-weight: 600; cursor: pointer;
	transition: all .2s ease; border: 1px solid transparent;
}
.btn:active { transform: scale(.98); }
.btn--sm { padding: .625rem 1.25rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--primary {
	background: var(--primary-c); color: hsl(var(--primary-foreground));
	box-shadow: 0 10px 22px -6px hsl(var(--primary) / 0.5);
}
.btn--primary:hover { box-shadow: 0 14px 28px -6px hsl(var(--primary) / 0.65); transform: translateY(-1px); }
.btn--ghost { background: #fff; border-color: var(--border-c); color: var(--fg); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { background: hsl(var(--secondary)); }
.btn i { width: 1rem; height: 1rem; }
.btn--lg i { width: 1.25rem; height: 1.25rem; }

.tag {
	display: inline-flex; align-items: center; gap: .5rem;
	border: 1px solid hsl(var(--primary) / 0.25);
	background: hsl(var(--primary) / 0.08);
	color: var(--primary-c);
	border-radius: 9999px; padding: .375rem 1rem;
	font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
}
.tag__icon { width: .875rem; height: .875rem; }

.pill {
	display: inline-flex; align-items: center; gap: .5rem;
	border: 1px solid hsl(var(--primary) / 0.25);
	background: hsl(var(--primary) / 0.08);
	color: var(--primary-c);
	border-radius: 9999px; padding: .5rem 1.25rem;
	font-size: .875rem; font-weight: 600;
}
.pill i { width: 1rem; height: 1rem; }
.pill--light { background: rgba(255,255,255,.2); color: #fff; border: none; text-transform: uppercase; letter-spacing: .05em; font-size: .75rem; padding: .375rem 1rem; }

/* ---------- Header ---------- */
.header {
	position: fixed; inset: 0 0 auto 0; z-index: 50;
	border-bottom: 1px solid var(--border-c);
	background: hsl(var(--background) / 0.85);
	backdrop-filter: blur(12px);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; max-width: 80rem; margin: 0 auto; }
.logo img { height: 2rem; width: auto; }
.logo--lg img { height: 2.5rem; }
.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a { font-size: .875rem; color: var(--muted); transition: color .2s; }
.nav-desktop a:hover { color: var(--fg); }
.nav-desktop-cta { display: none; }
.nav-toggle { background: none; border: none; color: var(--fg); cursor: pointer; display: flex; }
.nav-toggle i { width: 1.5rem; height: 1.5rem; }
.nav-mobile { border-top: 1px solid var(--border-c); background: var(--bg); padding: 1rem 1.25rem; }
.nav-mobile a { display: block; padding: .625rem 0; font-size: .875rem; color: var(--muted); }

@media (min-width: 768px) {
	.nav-desktop, .nav-desktop-cta { display: flex; }
	.nav-toggle { display: none; }
	.nav-mobile { display: none !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 8rem 0 5rem; }
@media (min-width: 640px) { .hero { padding-top: 10rem; } }
.hero__glow-grid { position: absolute; inset: 0; opacity: .7; pointer-events: none; }
.hero__glow-blob {
	position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
	height: 460px; width: 900px; max-width: 100%;
	border-radius: 9999px; background: hsl(var(--primary) / 0.12); filter: blur(140px);
	pointer-events: none;
}
.hero__inner { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1fr 1fr; } }
.hero__title { margin-top: 1.5rem; font-size: 2.25rem; font-weight: 800; line-height: 1.08; }
.hero__sub { margin-top: 1.5rem; max-width: 36rem; color: var(--muted); font-size: 1rem; }
.hero__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }
@media (min-width: 640px) { .hero__title { font-size: 3rem; } .hero__sub { font-size: 1.125rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3.75rem; } }

/* ---------- Hero Dashboard (light) ---------- */
.hero-dash {
	width: 100%; border-radius: 1rem; border: 1px solid var(--border-c);
	background: #fff; padding: 1rem;
	box-shadow: var(--shadow-lg);
}
.hero-dash__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; padding: 0 .25rem; }
.hero-dash__title { font-family: "Sora"; font-size: 1rem; font-weight: 600; color: var(--fg); }
.hero-dash__subtitle { font-size: .625rem; color: var(--muted); }
.hero-dash__badge { border-radius: .375rem; background: hsl(var(--primary) / 0.1); padding: .25rem .5rem; font-size: .625rem; font-weight: 600; color: var(--primary-c); }
.hero-dash__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
@media (min-width: 640px) { .hero-dash__cards { grid-template-columns: repeat(4, 1fr); } }
.metric-card { position: relative; overflow: hidden; border-radius: .5rem; padding: .625rem; color: #fff; box-shadow: var(--shadow-sm); }
.metric-card__head { display: flex; align-items: flex-start; justify-content: space-between; }
.metric-card__label { font-size: .5rem; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; color: rgba(255,255,255,.85); }
.metric-card__icon { width: .75rem; height: .75rem; color: rgba(255,255,255,.8); flex-shrink: 0; }
.metric-card__value { margin-top: .375rem; font-family: "Sora"; font-size: .95rem; font-weight: 700; transition: all .3s; }
.metric-card__sub { font-size: .5rem; color: rgba(255,255,255,.8); }
@media (min-width: 640px) { .metric-card__value { font-size: 1.125rem; } .metric-card__label, .metric-card__sub { font-size: .5625rem; } }
/* gradientes dos cards */
.g-blue { background: linear-gradient(135deg,#3b82f6,#2563eb); }
.g-orange { background: linear-gradient(135deg,#fb923c,#f97316); }
.g-pink { background: linear-gradient(135deg,#ec4899,#f43f5e); }
.g-violet { background: linear-gradient(135deg,#8b5cf6,#7c3aed); }
.g-amber { background: linear-gradient(135deg,#f59e0b,#d97706); }
.g-emerald { background: linear-gradient(135deg,#10b981,#16a34a); }
.g-cyan { background: linear-gradient(135deg,#06b6d4,#0891b2); }
.g-red { background: linear-gradient(135deg,#ef4444,#dc2626); }

.hero-dash__charts { margin-top: .75rem; display: grid; gap: .5rem; }
@media (min-width: 1024px) { .hero-dash__charts { grid-template-columns: repeat(3, 1fr); } }
.hero-dash__panel { border-radius: .5rem; border: 1px solid var(--border-c); background: hsl(var(--card)); padding: .75rem; }
@media (min-width: 1024px) {
	.hero-dash__panel--wide { grid-column: span 2; }
	.hero-dash__panel--full { grid-column: span 3; }
}
.hero-dash__panel-title { margin-bottom: .5rem; font-size: .6875rem; font-weight: 600; color: var(--fg); }
.hero-dash__chart { height: 7rem; }
.hero-dash__chart--sm { height: 6rem; }

/* ---------- Section titles ---------- */
.section-title { max-width: 48rem; margin: 0 auto; text-align: center; }
.section-title--left { margin: 0; text-align: left; }
.section-title h2 { margin-top: 1.25rem; font-size: 1.875rem; font-weight: 700; line-height: 1.2; }
.section-title p { margin-top: 1rem; color: var(--muted); }
@media (min-width: 640px) { .section-title h2 { font-size: 2.25rem; } }

/* ---------- Stats ---------- */
.stats { margin-top: 3rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat { border-radius: .75rem; border: 1px solid var(--border-c); background: #fff; padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.stat__num { font-family: "Sora"; font-size: 1.875rem; font-weight: 700; color: var(--primary-c); }
.stat__label { margin-top: .25rem; font-size: .875rem; color: var(--muted); }

/* ---------- Grids / cards ---------- */
.grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card { border-radius: 1rem; border: 1px solid var(--border-c); background: #fff; padding: 1.75rem; box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s, border-color .2s; }
.card--solid:hover, .card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card--solid:hover { border-color: hsl(var(--primary) / 0.5); }
.card__icon { display: grid; place-items: center; height: 3rem; width: 3rem; border-radius: .75rem; }
.card__icon i { width: 1.5rem; height: 1.5rem; }
.card__icon--primary { background: hsl(var(--primary) / 0.12); color: var(--primary-c); }
.card__icon--danger { background: hsl(var(--destructive) / 0.12); color: hsl(var(--destructive)); }
.card h3 { margin-top: 1.25rem; font-size: 1.25rem; font-weight: 600; }
.card p { margin-top: .5rem; font-size: .875rem; color: var(--muted); }
.card__list { margin-top: 1rem; list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.card__list li { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: hsl(var(--foreground) / 0.85); }
.card__list li i { width: 1rem; height: 1rem; color: var(--primary-c); flex-shrink: 0; }
.card--step { position: relative; }
.card__num { position: absolute; right: 1.5rem; top: 1.5rem; font-family: "Sora"; font-size: 3rem; font-weight: 700; color: hsl(var(--primary) / 0.12); }

/* ---------- Split ---------- */
.split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; } }
.split--center { align-items: center; }
.order-1 { order: 1; }
.order-2 { order: 2; }
@media (min-width: 1024px) { .split--center .order-1 { order: 2; } .split--center .order-2 { order: 1; } }

/* ---------- Feature cards com demos animadas ---------- */
.feature-card { display: flex; flex-direction: column; gap: 1.25rem; border-radius: 1rem; border: 1px solid var(--border-c); background: #fff; padding: 1.75rem; box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s, border-color .2s; }
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: hsl(var(--primary) / 0.5); }
.feature-card__head { display: flex; gap: 1rem; align-items: flex-start; }
.feature-card__head h3 { font-size: 1.25rem; font-weight: 600; }
.feature-card__head p { margin-top: .375rem; font-size: .875rem; color: var(--muted); }
.feature-card__head .card__icon { flex-shrink: 0; }

/* Janela de app simulada */
.demo-window { border-radius: .75rem; border: 1px solid var(--border-c); background: hsl(var(--card)); padding: .875rem; overflow: hidden; }
.demo-window--lg { padding: 1.125rem; background: #fff; box-shadow: var(--shadow-lg); }
.demo-window__bar { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-bottom: .75rem; flex-wrap: wrap; }
.demo-window__title { font-family: "Sora"; font-size: .8125rem; font-weight: 600; }
.demo-window__sub { font-size: .6875rem; color: var(--muted); }
.demo-live { display: inline-flex; align-items: center; gap: .375rem; border-radius: 9999px; background: rgba(16,185,129,.12); padding: .2rem .6rem; font-size: .6875rem; font-weight: 600; color: #059669; }
.demo-live::before { content: ""; width: .35rem; height: .35rem; border-radius: 9999px; background: #10b981; animation: demo-pulse 1.8s ease-in-out infinite; }
@keyframes demo-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.demo-btn-mini { display: inline-flex; align-items: center; border-radius: .5rem; background: var(--primary-c); color: #fff; padding: .3rem .7rem; font-size: .6875rem; font-weight: 600; }
.demo-connected { display: inline-flex; align-items: center; gap: .25rem; border-radius: 9999px; background: rgba(16,185,129,.12); padding: .2rem .6rem; font-size: .6875rem; font-weight: 600; color: #059669; }
.demo-connected i { width: .75rem; height: .75rem; }

/* Demo: financeiro */
.demo-fin__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.demo-kpi { border-radius: .5rem; padding: .625rem; color: #fff; box-shadow: var(--shadow-sm); }
.demo-kpi span { display: block; font-size: .5625rem; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; color: rgba(255,255,255,.85); }
.demo-kpi b { display: block; margin-top: .25rem; font-family: "Sora"; font-size: .9375rem; font-weight: 700; transition: opacity .3s; }
.demo-fin__chart { display: flex; align-items: flex-end; gap: .375rem; height: 5.5rem; margin-top: .75rem; padding: .625rem; border-radius: .5rem; border: 1px solid var(--border-c); background: #fff; }
.demo-bar { flex: 1; height: 40%; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, #3b82f6, #2563eb); transition: height 1.1s cubic-bezier(.4,0,.2,1); }

/* Demo: emissões */
.demo-emi__table { border-radius: .5rem; border: 1px solid var(--border-c); background: #fff; overflow: hidden; }
.demo-emi__head, .demo-emi__row { display: grid; grid-template-columns: 1.1fr 1.1fr 1.2fr 1fr; gap: .375rem; align-items: center; padding: .5rem .625rem; font-size: .6875rem; }
.demo-emi__head { background: hsl(var(--card)); font-weight: 600; text-transform: uppercase; font-size: .5625rem; letter-spacing: .04em; color: var(--muted); }
.demo-emi__row { border-top: 1px solid var(--border-c); }
.demo-emi__row b { font-weight: 600; color: var(--primary-c); }
.demo-emi__row.is-new { animation: demo-slide-in .5s ease; }
@keyframes demo-slide-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.demo-loc { display: inline-flex; align-items: center; gap: .25rem; }
.demo-loc small { border-radius: .25rem; background: hsl(var(--primary) / 0.1); color: var(--primary-c); padding: .05rem .3rem; font-size: .5rem; font-weight: 700; }
.demo-status { display: inline-flex; justify-self: start; border-radius: 9999px; padding: .15rem .55rem; font-size: .5625rem; font-weight: 700; transition: all .3s; }
.demo-status--online { background: rgba(16,185,129,.12); color: #059669; }
.demo-status--done { background: hsl(var(--secondary)); color: var(--muted); }

/* Demo: cotações */
.demo-cot__form { display: flex; flex-direction: column; gap: .5rem; }
.demo-field { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.demo-field label { font-size: .5625rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.demo-field__row { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.demo-input { min-height: 1.9rem; display: flex; align-items: center; gap: .375rem; border-radius: .4rem; border: 1px solid var(--border-c); background: #fff; padding: .3rem .55rem; font-size: .75rem; font-weight: 500; white-space: nowrap; overflow: hidden; }
.demo-input--filled { background: #fff; }
.demo-input.is-typing::after { content: ""; width: 1px; height: .9rem; background: var(--primary-c); animation: demo-caret .8s step-end infinite; }
@keyframes demo-caret { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.demo-cot__pdf { display: flex; align-items: center; gap: .625rem; margin-top: .75rem; border-radius: .5rem; border: 1px solid rgba(16,185,129,.35); background: rgba(16,185,129,.07); padding: .625rem; opacity: 0; transform: translateY(6px); transition: opacity .45s ease, transform .45s ease; }
.demo-cot__pdf.show { opacity: 1; transform: none; }
.demo-cot__pdf > i { width: 1.375rem; height: 1.375rem; color: #059669; flex-shrink: 0; }
.demo-cot__pdf-name { font-size: .75rem; font-weight: 600; word-break: break-all; }
.demo-cot__pdf-sub { font-size: .625rem; color: var(--muted); }
.demo-cot__pdf-check { margin-left: auto; display: grid; place-items: center; width: 1.25rem; height: 1.25rem; border-radius: 9999px; background: #10b981; color: #fff; flex-shrink: 0; }
.demo-cot__pdf-check i { width: .75rem; height: .75rem; }

/* Demo: notificações */
.demo-not__toggles { display: flex; flex-direction: column; gap: .375rem; margin-bottom: .75rem; }
.demo-toggle { display: flex; align-items: center; justify-content: space-between; gap: .5rem; border-radius: .5rem; border: 1px solid var(--border-c); background: #fff; padding: .45rem .625rem; font-size: .6875rem; font-weight: 500; }
.demo-switch { position: relative; width: 1.9rem; height: 1.05rem; border-radius: 9999px; background: hsl(var(--border)); transition: background .3s; flex-shrink: 0; }
.demo-switch::after { content: ""; position: absolute; top: .125rem; left: .125rem; width: .8rem; height: .8rem; border-radius: 9999px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .3s; }
.demo-switch.on { background: var(--primary-c); }
.demo-switch.on::after { transform: translateX(.85rem); }
.demo-not__feed { display: flex; flex-direction: column; gap: .375rem; min-height: 6.4rem; }
.demo-notif { display: flex; align-items: flex-start; gap: .5rem; border-radius: .5rem; border: 1px solid var(--border-c); background: #fff; padding: .5rem .625rem; }
.demo-notif.is-new { animation: demo-slide-in .5s ease; }
.demo-notif__icon { display: grid; place-items: center; width: 1.5rem; height: 1.5rem; border-radius: .4rem; background: hsl(var(--primary) / 0.1); color: var(--primary-c); flex-shrink: 0; }
.demo-notif__icon i { width: .8rem; height: .8rem; }
.demo-notif__title { font-size: .6875rem; font-weight: 600; }
.demo-notif__sub { font-size: .5938rem; color: var(--muted); }

/* Demo: personalização (Ver minha agência) */
.demo-brand { width: 100%; max-width: 32rem; margin: 0 auto; }
.demo-brand__preview { display: flex; align-items: center; gap: .75rem; border-radius: .625rem; border: 1px dashed var(--border-c); background: hsl(var(--card)); padding: .875rem; margin-bottom: .75rem; }
.demo-brand__logo { position: relative; display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: .625rem; background: #fff; border: 1px dashed var(--border-c); flex-shrink: 0; overflow: hidden; }
.demo-brand__logo-ph { display: grid; place-items: center; color: var(--muted); transition: opacity .3s; }
.demo-brand__logo-ph i { width: 1.2rem; height: 1.2rem; }
.demo-brand__logo img { position: absolute; inset: 0; margin: auto; width: 2.1rem; height: 2.1rem; object-fit: contain; opacity: 0; transform: scale(.4); transition: opacity .45s ease, transform .45s cubic-bezier(.34,1.56,.64,1); }
.demo-brand__logo.filled { border-style: solid; }
.demo-brand__logo.filled .demo-brand__logo-ph { opacity: 0; }
.demo-brand__logo.filled img { opacity: 1; transform: scale(1); }
.demo-brand__name { font-family: "Sora"; font-size: .875rem; font-weight: 700; min-height: 1.15em; }
.demo-brand__slogan { font-size: .6875rem; color: var(--demo-brand-c, #2563eb); transition: color .6s ease; }
.demo-brand__fields { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
@media (max-width: 480px) { .demo-brand__fields { grid-template-columns: 1fr; } }
.demo-brand__color-row { gap: .5rem; }
.demo-brand__swatch { width: 1rem; height: 1rem; border-radius: .25rem; background: var(--demo-brand-c, #2563eb); transition: background .6s ease; flex-shrink: 0; }
.demo-brand__actions { display: flex; align-items: center; justify-content: flex-end; gap: .75rem; margin-top: .875rem; }
.demo-brand__actions .demo-btn-mini { transition: transform .15s; cursor: default; }
.demo-brand__actions .demo-btn-mini.is-press { transform: scale(.93); }
.demo-brand__saved { display: inline-flex; align-items: center; gap: .25rem; font-size: .6875rem; font-weight: 600; color: #059669; opacity: 0; transition: opacity .4s; }
.demo-brand__saved.show { opacity: 1; }
.demo-brand__saved i { width: .8rem; height: .8rem; }

/* Demo: Buscador de Voos */
.demo-search { width: 100%; max-width: 46rem; margin: 3rem auto 0; }
.demo-search .demo-window--lg { padding: 1.5rem; }
.demo-search__tabs { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1rem; }
.demo-search__tab { text-align: center; border-radius: .5rem; border: 1px solid var(--border-c); background: #fff; padding: .55rem; font-size: .8125rem; font-weight: 600; color: var(--muted); }
.demo-search__tab.is-active { background: var(--primary-c); border-color: var(--primary-c); color: #fff; }
.demo-search__fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
@media (min-width: 640px) { .demo-search__fields { grid-template-columns: repeat(4, 1fr); } }
.demo-search .demo-input { min-height: 2.4rem; font-size: .8125rem; }
.demo-search__hint { margin: 1.25rem 0 .625rem; font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.demo-search__logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: .625rem; }
@media (min-width: 520px) { .demo-search__logos { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .demo-search__logos { grid-template-columns: repeat(5, 1fr); } }
.demo-plane { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem; border-radius: .625rem; border: 1px solid var(--border-c); background: #fff; padding: .875rem .5rem; transition: transform .3s, box-shadow .3s, border-color .3s; }
.demo-plane img { width: 2.1rem; height: 2.1rem; object-fit: contain; }
.demo-plane span { font-size: .625rem; font-weight: 600; color: var(--muted); text-align: center; line-height: 1.2; }
.demo-plane.is-active { border-color: var(--primary-c); box-shadow: 0 0 0 3px hsl(var(--primary) / 0.18); transform: translateY(-2px); }

/* ---------- Benefits (bloco azul de destaque) ---------- */
.benefits { position: relative; overflow: hidden; background: linear-gradient(135deg, hsl(214 90% 52%), hsl(214 85% 44%)); color: #fff; }
.benefits__grid { position: absolute; inset: 0; opacity: .25; pointer-events: none; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.25) 1px, transparent 0); background-size: 32px 32px; }
.benefits__inner { position: relative; }
.benefits__h2 { margin-top: 1.25rem; font-size: 1.875rem; font-weight: 700; }
.benefits__p, .benefits .section-title p { margin-top: 1rem; color: rgba(255,255,255,.92); }
@media (min-width: 640px) { .benefits__h2 { font-size: 2.25rem; } }
.benefit { border-radius: 1rem; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.12); padding: 1.5rem; backdrop-filter: blur(8px); }
.benefit__icon { display: grid; place-items: center; height: 2.75rem; width: 2.75rem; border-radius: .75rem; background: rgba(255,255,255,.22); }
.benefit__icon i { width: 1.25rem; height: 1.25rem; }
.benefit h3 { margin-top: 1rem; font-size: 1.125rem; font-weight: 600; }
.benefit p { margin-top: .5rem; font-size: .875rem; color: rgba(255,255,255,.85); }

/* ---------- Launch CTA ---------- */
.launch { position: relative; overflow: hidden; border-radius: 1.5rem; border: 1px solid var(--border-c); background: #fff; padding: 4rem 2.5rem; text-align: center; box-shadow: var(--shadow-lg); }
.launch__glow { position: absolute; left: 50%; top: -40px; transform: translateX(-50%); height: 16rem; width: 24rem; max-width: 100%; border-radius: 9999px; background: hsl(var(--primary) / 0.14); filter: blur(120px); pointer-events: none; }
.launch__content { position: relative; }
.launch__title { margin: 1.25rem auto 0; max-width: 36rem; font-size: 1.875rem; font-weight: 700; }
.launch__sub { margin: 1rem auto 0; max-width: 34rem; color: var(--muted); }
.launch__cta { margin-top: 2rem; display: flex; justify-content: center; }
.launch__note { margin-top: 1rem; font-size: .8125rem; color: var(--muted); }
@media (min-width: 640px) { .launch__title { font-size: 2.25rem; } }

/* ---------- FAQ ---------- */
.faq { margin-top: 3rem; border-radius: 1rem; border: 1px solid var(--border-c); background: #fff; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq__item { border-top: 1px solid var(--border-c); }
.faq__item:first-child { border-top: none; }
.faq__q { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; text-align: left; background: none; border: none; cursor: pointer; color: var(--fg); font-family: inherit; font-size: 1rem; font-weight: 500; }
.faq__q:hover { background: hsl(var(--secondary) / 0.5); }
.faq__q i { width: 1.25rem; height: 1.25rem; color: var(--primary-c); flex-shrink: 0; transition: transform .3s; }
.faq__item.open .faq__q i { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 1.5rem 1.25rem; font-size: .875rem; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: hsl(var(--card)); padding: 3.5rem 0; }
.footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(4, 1fr); } .footer__brand { grid-column: span 2; } }
.footer__desc { margin-top: 1rem; max-width: 24rem; font-size: .875rem; color: var(--muted); }
.footer__social { margin-top: 1.25rem; display: flex; gap: .75rem; }
.footer__social-link { display: inline-flex; align-items: center; gap: .5rem; border-radius: .5rem; border: 1px solid var(--border-c); background: #fff; padding: .5rem 1rem; font-size: .875rem; box-shadow: var(--shadow-sm); }
.footer__social-link:hover { background: hsl(var(--secondary)); }
.footer__social-link i { width: 1rem; height: 1rem; color: var(--primary-c); }
.footer__col-title { font-family: "Sora"; font-size: .875rem; font-weight: 600; }
.footer__links { margin-top: 1rem; list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer__links a { font-size: .875rem; color: var(--muted); transition: color .2s; }
.footer__links a:hover { color: var(--fg); }
.footer__bottom { margin-top: 3rem; border-top: 1px solid var(--border-c); padding-top: 1.5rem; text-align: center; font-size: .75rem; color: var(--muted); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }

@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}
