/* EmitaAI — identidade: Azul Confiança, Laranja EmitaAI, Creme Base; Manrope + Inter */
:root {
  --navy: #10243E;
  --navy-900: #081528;
  --navy-800: #0B1B31;
  --navy-700: #142C4B;
  --navy-600: #1C3A61;
  --orange: #F25C05;
  --orange-600: #D94F00;
  --cream: #FFF4E8;
  --green: #0E9F6E;
  --yellow: #F7B32B;
  --text: #FFF4E8;
  --muted: #A9B8CC;
  --line: rgba(255, 244, 232, .12);
  --card: rgba(255, 244, 232, .045);
  --radius: 20px;
  --head: "Manrope", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--navy-800); color: var(--text);
  font: 400 17px/1.65 var(--body); -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--head); font-weight: 800; line-height: 1.08; letter-spacing: -.025em; margin: 0; text-wrap: balance; }
h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h3 { font-size: 1.2rem; letter-spacing: -.01em; line-height: 1.25; }
p { margin: 0; text-wrap: pretty; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 8px; }

.container { width: min(1180px, 100% - 40px); margin-inline: auto; }
.narrow { width: min(820px, 100% - 40px); }
.ic { width: 1.15em; height: 1.15em; flex: none; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--cream); color: var(--navy); padding: 10px 16px; border-radius: 10px; z-index: 100; }
.skip:focus { left: 8px; }

/* Botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .8em 1.35em; border-radius: 999px; border: 1.5px solid transparent;
  font: 700 .95rem/1 var(--head); text-decoration: none; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s, border-color .25s, box-shadow .25s, color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ic { transition: transform .25s var(--ease); }
.btn:hover .ic { transform: translateX(3px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 10px 30px -10px rgba(242, 92, 5, .7); }
.btn--primary:hover { background: #ff6a14; box-shadow: 0 16px 36px -10px rgba(242, 92, 5, .85); }
.btn--ghost { border-color: rgba(255, 244, 232, .28); color: var(--cream); background: rgba(255, 244, 232, .04); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(255, 244, 232, .1); }
.btn--ghost:hover .ic { transform: none; }
.btn--light { background: var(--cream); color: var(--navy); }
.btn--light:hover { background: #fff; }
.btn--dark { background: var(--navy); color: var(--cream); }
.btn--dark:hover { background: var(--navy-900); }
.btn--outline-dark { border-color: rgba(16, 36, 62, .45); color: var(--navy); }
.btn--outline-dark:hover { border-color: var(--navy); background: rgba(16, 36, 62, .08); }
.btn--lg { padding: 1.05em 1.7em; font-size: 1.02rem; }
.btn--sm { padding: .7em 1.1em; font-size: .88rem; }
.btn--block { width: 100%; }

/* Cabeçalho */
.header { position: fixed; inset: 0 0 auto; z-index: 50; transition: background .3s, box-shadow .3s, backdrop-filter .3s; }
.header.is-scrolled { background: rgba(11, 27, 49, .82); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); box-shadow: 0 1px 0 var(--line); }
.header__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand img { height: 36px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav > a { font: 600 .93rem var(--head); text-decoration: none; color: rgba(255, 244, 232, .78); position: relative; padding: 6px 0; transition: color .2s; }
.nav > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--orange); border-radius: 2px; transition: right .3s var(--ease); }
.nav > a:hover, .nav > a.is-current { color: var(--cream); }
.nav > a:hover::after, .nav > a.is-current::after { right: 0; }
.nav__cta { display: none; }
.header__actions { display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid rgba(255, 244, 232, .28); background: transparent; padding: 0; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease); }
.burger span:nth-child(1) { top: 14px; } .burger span:nth-child(2) { top: 20px; } .burger span:nth-child(3) { top: 26px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: min(100svh, 920px); display: flex; flex-direction: column; justify-content: center; padding: 130px 0 120px; isolation: isolate; overflow: hidden; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 72% center; z-index: -2; }
.hero__shade { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(90deg, rgba(8, 21, 40, .96) 0%, rgba(8, 21, 40, .86) 34%, rgba(8, 21, 40, .35) 66%, rgba(8, 21, 40, .15) 100%),
  linear-gradient(0deg, var(--navy-800) 0%, rgba(11, 27, 49, 0) 30%),
  linear-gradient(180deg, rgba(8, 21, 40, .7) 0%, rgba(8, 21, 40, 0) 22%); }
.hero__in { max-width: 1180px; }
.hero__in > * { max-width: 680px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font: 700 .78rem var(--head); letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 244, 232, .82); margin-bottom: 26px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(242, 92, 5, .7); animation: pulse 2.2s infinite; }
@keyframes pulse { to { box-shadow: 0 0 0 14px rgba(242, 92, 5, 0); } }
.hero h1 { font-size: clamp(2.5rem, 6.2vw, 4.6rem); margin-bottom: 26px; }
.rotator { display: block; position: relative; color: var(--orange); white-space: nowrap; min-height: 1.12em; }
.rotator__word { display: inline-block; animation: wordIn .6s var(--ease) both; }
.rotator__word.is-out { animation: wordOut .4s var(--ease) both; }
@keyframes wordIn { from { opacity: 0; transform: translateY(.5em) rotateX(-40deg); filter: blur(6px); } }
@keyframes wordOut { to { opacity: 0; transform: translateY(-.4em); filter: blur(6px); } }
.hero__lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: rgba(255, 244, 232, .84); margin-bottom: 38px; max-width: 590px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { margin-top: 24px; font-size: .92rem; color: var(--muted); }
.hero__note a { color: var(--cream); font-weight: 600; text-underline-offset: 4px; }
.hero__note a:hover { color: var(--orange); }

.ticker { position: absolute; left: 0; right: 0; bottom: 0; border-top: 1px solid var(--line); background: rgba(8, 21, 40, .55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker__track { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker span { display: inline-flex; align-items: baseline; gap: 10px; padding: 18px 34px; font-size: .9rem; color: var(--muted); white-space: nowrap; }
.ticker span::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); margin-left: 58px; transform: translateY(-2px); }
.ticker b { font: 800 1rem var(--head); color: var(--cream); letter-spacing: .02em; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Seções */
.section { position: relative; padding: clamp(80px, 11vw, 140px) 0; isolation: isolate; }
.section--alt { background: var(--navy-900); }
.section__head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.kicker { font: 700 .78rem var(--head); letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.sub { margin-top: 18px; font-size: 1.1rem; color: var(--muted); max-width: 640px; }
.fineprint { margin-top: 28px; font-size: .84rem; line-height: 1.55; color: rgba(169, 184, 204, .8); max-width: 820px; }

.pattern { position: absolute; inset: 0; z-index: -1; opacity: .06; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='%23FFF4E8'%3E%3Cpath d='M32 20h15v9a5 5 0 0 0 5 5h9v26a7 7 0 0 1-7 7H32a7 7 0 0 1-7-7V27a7 7 0 0 1 7-7Z'/%3E%3Cpath d='M142 128h15v9a5 5 0 0 0 5 5h9v26a7 7 0 0 1-7 7h-22a7 7 0 0 1-7-7v-33a7 7 0 0 1 7-7Z' transform='rotate(12 153 151)'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: radial-gradient(ellipse at 80% 20%, #000 0%, transparent 65%); -webkit-mask-image: radial-gradient(ellipse at 80% 20%, #000 0%, transparent 65%); }
.pattern--soft { opacity: .045; }

/* Guia interativo */
.section--finder { background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); }
.finder { display: grid; grid-template-columns: 1.05fr 1fr; gap: 28px; align-items: start; }
.finder__options { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { text-align: left; padding: 15px 20px 15px 46px; border-radius: 16px; border: 1.5px solid var(--line); background: var(--card); font: 600 .98rem/1.3 var(--head); position: relative; transition: border-color .25s, background .25s, transform .25s var(--ease); }
.chip::before { content: ""; position: absolute; left: 16px; top: 50%; width: 18px; height: 18px; margin-top: -9px; border-radius: 6px; border: 2px solid rgba(255, 244, 232, .35); transition: background .2s, border-color .2s; }
.chip::after { content: ""; position: absolute; left: 22px; top: 50%; width: 5px; height: 9px; margin-top: -7px; border: solid #fff; border-width: 0 2.4px 2.4px 0; transform: rotate(45deg) scale(0); transition: transform .25s var(--ease); }
.chip:hover { border-color: rgba(255, 244, 232, .4); transform: translateY(-2px); }
.chip[aria-pressed="true"] { border-color: var(--orange); background: rgba(242, 92, 5, .13); }
.chip[aria-pressed="true"]::before { background: var(--orange); border-color: var(--orange); }
.chip[aria-pressed="true"]::after { transform: rotate(45deg) scale(1); }
.finder__result { position: sticky; top: 100px; min-height: 320px; border-radius: var(--radius); background: var(--cream); color: var(--navy); padding: 28px; box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .6); overflow: hidden; }
.finder__result::before { content: ""; position: absolute; top: 0; right: 0; width: 64px; height: 64px; background: var(--orange); clip-path: polygon(0 0, 100% 100%, 100% 0); border-bottom-left-radius: 10px; }
.finder__empty { display: grid; place-items: center; text-align: center; gap: 18px; min-height: 264px; color: rgba(16, 36, 62, .6); padding: 0 12%; }
.finder__icon { width: 54px; height: 70px; fill: rgba(16, 36, 62, .16); animation: float 5s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-8px); } }
.finder__title { font: 800 1.25rem var(--head); margin-bottom: 18px; padding-right: 50px; letter-spacing: -.01em; }
.result { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; padding: 16px 0; border-top: 1px solid rgba(16, 36, 62, .12); animation: rise .5s var(--ease) both; }
.result:first-of-type { border-top: 0; padding-top: 0; }
.result__tag { grid-row: span 2; align-self: start; min-width: 78px; text-align: center; padding: 8px 10px; border-radius: 10px; background: var(--navy); color: var(--cream); font: 800 .9rem var(--head); letter-spacing: .02em; }
.result b { font: 700 1rem/1.3 var(--head); }
.result p { font-size: .92rem; line-height: 1.5; color: rgba(16, 36, 62, .75); }
.finder__go { margin-top: 20px; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } }

/* Públicos */
.aud__tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 26px; scrollbar-width: none; }
.aud__tabs::-webkit-scrollbar { display: none; }
.aud__tab { position: relative; flex: none; padding: 13px 20px; border-radius: 999px; border: 1.5px solid var(--line); background: transparent; font: 700 .93rem var(--head); color: var(--muted); overflow: hidden; transition: color .25s, border-color .25s, background .25s; }
.aud__tab:hover { color: var(--cream); border-color: rgba(255, 244, 232, .35); }
.aud__tab.is-active { color: var(--navy); background: var(--cream); border-color: var(--cream); }
.aud__tab i { position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--orange); }
.aud__tab.is-active.is-timing i { animation: fill var(--aud-time, 9s) linear forwards; }
@keyframes fill { to { width: 100%; } }
.aud__stage { display: grid; grid-template-columns: 1.25fr 1fr; border-radius: 28px; overflow: hidden; border: 1px solid var(--line); background: var(--navy-700); min-height: 480px; }
.aud__media { position: relative; background: var(--navy-900); overflow: hidden; }
.aud__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .45s, transform 1.2s var(--ease); }
.aud__media.is-switching video { opacity: 0; transform: scale(1.04); }
.aud__media-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8, 21, 40, .75), transparent 45%), linear-gradient(270deg, rgba(20, 44, 75, .55), transparent 30%); }
.aud__badges { position: absolute; left: 22px; bottom: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.badge { padding: 8px 14px; border-radius: 999px; background: rgba(8, 21, 40, .7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255, 244, 232, .22); font: 800 .82rem var(--head); letter-spacing: .03em; animation: rise .5s var(--ease) both; }
.badge:nth-child(2) { animation-delay: .08s; } .badge:nth-child(3) { animation-delay: .16s; } .badge:nth-child(n+4) { animation-delay: .24s; }
.aud__panel { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.aud__panel > * { animation: rise .55s var(--ease) both; }
.aud__panel > :nth-child(2) { animation-delay: .06s; } .aud__panel > :nth-child(3) { animation-delay: .12s; } .aud__panel > :nth-child(4) { animation-delay: .18s; }
.aud__panel h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; }
.aud__panel p { color: rgba(255, 244, 232, .8); }
.aud__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.aud__list li { display: flex; gap: 12px; font-size: .97rem; line-height: 1.5; }
.aud__list .ic { color: var(--orange); margin-top: .2em; }
.link { display: inline-flex; align-items: center; gap: 8px; font: 700 .95rem var(--head); color: var(--orange); text-decoration: none; }
.link .ic { transition: transform .25s var(--ease); }
.link:hover .ic, a:hover > .link .ic { transform: translateX(4px); }

/* Documentos */
.docs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.doc { position: relative; padding: 28px 26px 26px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; gap: 10px; text-decoration: none; transition: transform .35s var(--ease), border-color .3s, background .3s; }
.doc::before { content: ""; position: absolute; inset: 0; background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 0%), rgba(242, 92, 5, .16), transparent 60%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.doc::after { content: ""; position: absolute; top: 0; right: 0; width: 0; height: 0; background: var(--orange); clip-path: polygon(0 0, 100% 100%, 100% 0); border-bottom-left-radius: 8px; transition: width .35s var(--ease), height .35s var(--ease); }
.doc:hover { transform: translateY(-6px); border-color: rgba(242, 92, 5, .55); background: rgba(255, 244, 232, .07); }
.doc:hover::before { opacity: 1; }
.doc:hover::after, .doc.is-hit::after { width: 46px; height: 46px; }
.doc.is-hit { border-color: var(--orange); }
.doc__tag { align-self: flex-start; font: 800 1.55rem var(--head); letter-spacing: -.01em; color: var(--cream); }
.doc h3 { font: 600 .82rem/1.4 var(--body); letter-spacing: 0; color: var(--muted); min-height: 2.8em; }
.doc__for { font: 700 1.05rem/1.3 var(--head); color: var(--orange); }
.doc__txt { font-size: .93rem; line-height: 1.55; color: rgba(255, 244, 232, .78); flex: 1; }
.doc__who { font-size: .78rem; line-height: 1.5; color: var(--muted); padding-top: 14px; border-top: 1px solid var(--line); }
.doc--cta { background: var(--orange); border-color: var(--orange); color: #fff; justify-content: flex-end; }
.doc--cta::after { background: var(--cream); }
.doc--cta:hover { background: #ff6a14; border-color: #ff6a14; }
.doc--cta h3 { font: 800 1.4rem var(--head); color: #fff; min-height: 0; letter-spacing: -.02em; }
.doc--cta .doc__txt { color: rgba(255, 255, 255, .92); flex: none; }
.doc--cta .link { color: #fff; margin-top: 6px; }
.doc__big { width: 40px; height: 52px; fill: rgba(255, 255, 255, .95); margin-bottom: auto; }

/* Plataforma */
.plat { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.feat { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; }
.feat li { display: flex; gap: 12px; }
.feat .ic { width: 26px; height: 26px; padding: 5px; border-radius: 8px; background: rgba(242, 92, 5, .16); color: var(--orange); margin-top: 2px; }
.feat b { display: block; font: 700 1rem/1.3 var(--head); margin-bottom: 3px; }
.feat span { font-size: .9rem; line-height: 1.5; color: var(--muted); display: block; }
.plat__art { position: relative; min-height: 460px; display: grid; place-items: center; perspective: 1400px; }
.plat__art::before { content: ""; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(242, 92, 5, .32), transparent 62%); filter: blur(30px); }
.plat__cap { position: absolute; right: 0; bottom: -6px; font-size: .74rem; color: rgba(169, 184, 204, .65); }
.device { position: relative; transition: transform .5s var(--ease); transform-style: preserve-3d; }
.device--laptop { width: min(100%, 520px); transform: rotateY(-14deg) rotateX(6deg); }
.device--laptop .screen { aspect-ratio: 16 / 10.2; border-radius: 16px 16px 4px 4px; border: 8px solid #0a1424; background: var(--cream); overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8); }
.device--laptop .base { height: 14px; margin: 0 -7%; border-radius: 3px 3px 16px 16px; background: linear-gradient(#c9d1dc, #8e9aab); }
.device--phone { position: absolute; right: 2%; bottom: 0; width: 132px; transform: rotateY(-14deg) rotateX(6deg) translateZ(60px); animation: float 6s ease-in-out infinite; }
.device--phone .screen { aspect-ratio: 9 / 18.5; border-radius: 24px; border: 6px solid #0a1424; background: var(--cream); padding: 12px 10px; display: flex; flex-direction: column; gap: 9px; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .8); }
.ui__bar { height: 13%; min-height: 22px; background: var(--navy); display: flex; align-items: center; gap: 8px; padding: 0 12px; }
.ui__bar svg { width: 12px; height: 16px; fill: var(--orange); margin-right: auto; }
.ui__bar i { width: 26px; height: 5px; border-radius: 3px; background: rgba(255, 244, 232, .35); }
.device--phone .ui__bar { height: 26px; min-height: 0; border-radius: 8px; flex: none; }
.ui__body { display: flex; height: 87%; }
.ui__side { width: 17%; background: rgba(16, 36, 62, .07); padding: 12px 9px; display: grid; gap: 9px; align-content: start; }
.ui__side i { height: 9px; border-radius: 5px; background: rgba(16, 36, 62, .16); }
.ui__side i.on { background: var(--orange); }
.ui__main { flex: 1; padding: 16px 20px; display: grid; gap: 11px; align-content: start; }
.ui__title { width: 46%; height: 13px; border-radius: 6px; background: var(--navy); }
.ui__row { display: flex; gap: 10px; }
.ui__row span { flex: 1; height: 26px; border-radius: 8px; border: 1.5px solid rgba(16, 36, 62, .16); background: #fff; position: relative; overflow: hidden; }
.ui__row span::after { content: ""; position: absolute; left: 9px; top: 50%; height: 5px; margin-top: -2.5px; width: 0; border-radius: 3px; background: rgba(16, 36, 62, .45); animation: typing 5s var(--ease) infinite; }
.ui__row:nth-child(3) span::after { animation-delay: .7s; } .ui__row:nth-child(4) span::after { animation-delay: 1.4s; }
.ui__row .w { height: 44px; }
@keyframes typing { 0% { width: 0; } 35%, 88% { width: 58%; } 100% { width: 58%; opacity: 0; } }
.ui__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.ui__foot em { width: 30%; height: 9px; border-radius: 5px; background: rgba(14, 159, 110, .5); }
.ui__foot b { font: 800 .68rem var(--head); color: #fff; background: var(--orange); padding: 8px 18px; border-radius: 999px; animation: tap 5s var(--ease) infinite; }
@keyframes tap { 0%, 60%, 76%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(242, 92, 5, .5); } 68% { transform: scale(.93); box-shadow: 0 0 0 10px rgba(242, 92, 5, 0); } }
.ui__ok { width: 46px; height: 46px; margin: 14px auto 4px; border-radius: 50%; background: var(--green); display: grid; place-items: center; animation: pop 5s var(--ease) infinite; }
.ui__ok svg { width: 24px; height: 24px; color: #fff; }
@keyframes pop { 0%, 66% { transform: scale(0); } 76% { transform: scale(1.15); } 82%, 100% { transform: scale(1); } }
.ui__line { height: 8px; border-radius: 4px; background: rgba(16, 36, 62, .2); margin: 0 8px; }
.ui__line.s { margin: 0 26px; background: rgba(16, 36, 62, .12); }
.ui__btn { margin-top: auto; height: 26px; border-radius: 999px; background: var(--orange); }

/* Passos */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: s; position: relative; }
.steps::before { content: ""; position: absolute; left: 4%; right: 4%; top: 27px; height: 2px; background: repeating-linear-gradient(90deg, rgba(255, 244, 232, .22) 0 8px, transparent 8px 16px); }
.step { position: relative; padding-right: 12px; }
.step__n { position: relative; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 18px; background: var(--navy-700); border: 1.5px solid var(--line); font: 800 1.3rem var(--head); color: var(--orange); margin-bottom: 24px; transition: background .3s, color .3s, transform .3s var(--ease); }
.step:hover .step__n { background: var(--orange); color: #fff; transform: rotate(-6deg) scale(1.06); }
.step h3 { margin-bottom: 10px; }
.step p { font-size: .95rem; color: var(--muted); }

/* Contato */
.section--contact { background: linear-gradient(160deg, var(--navy-700), var(--navy-800) 60%); }
.contact { display: grid; grid-template-columns: 1fr minmax(0, 480px); gap: clamp(40px, 6vw, 90px); align-items: center; }
.ticks { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 14px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.ticks .ic { color: var(--green); margin-top: .25em; }
.form { position: relative; background: var(--cream); color: var(--navy); border-radius: 26px; padding: clamp(26px, 3.4vw, 40px); box-shadow: 0 40px 100px -40px rgba(0, 0, 0, .7); display: grid; gap: 16px; overflow: hidden; }
.form::before { content: ""; position: absolute; top: 0; right: 0; width: 70px; height: 70px; background: var(--orange); clip-path: polygon(0 0, 100% 100%, 100% 0); border-bottom-left-radius: 12px; }
.form h3 { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 4px; }
.field { display: grid; gap: 6px; }
.field label { font: 700 .84rem var(--head); }
.field small { font-weight: 500; opacity: .6; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border-radius: 12px; border: 1.5px solid rgba(16, 36, 62, .18); background: #fff; font: 400 1rem var(--body); color: var(--navy); transition: border-color .2s, box-shadow .2s; }
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(242, 92, 5, .16); }
.field.is-invalid input, .field.is-invalid select { border-color: #c0341d; }
.form__note { font-size: .78rem; line-height: 1.5; color: rgba(16, 36, 62, .62); text-align: center; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details { border-radius: 18px; border: 1px solid var(--line); background: var(--card); transition: border-color .3s, background .3s; }
.faq details[open] { border-color: rgba(242, 92, 5, .5); background: rgba(255, 244, 232, .07); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 60px 22px 24px; font: 700 1.05rem/1.35 var(--head); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after { content: ""; position: absolute; right: 26px; top: 50%; width: 14px; height: 2.4px; margin-top: -1.2px; border-radius: 2px; background: var(--orange); transition: transform .3s var(--ease); }
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { transform: rotate(0); }
.faq details p { padding: 0 24px 24px; color: rgba(255, 244, 232, .8); animation: rise .4s var(--ease) both; }
.faq details a { color: var(--orange); font-weight: 600; text-underline-offset: 3px; }

/* CTA final */
.final { position: relative; background: var(--orange); color: var(--navy); padding: clamp(80px, 10vw, 130px) 0; overflow: hidden; isolation: isolate; }
.final .pattern { opacity: .12; mask-image: none; -webkit-mask-image: none; }
.final__in { text-align: center; display: grid; justify-items: center; gap: 18px; }
.final__doc { width: 58px; height: 76px; fill: var(--cream); margin-bottom: 10px; animation: float 5s ease-in-out infinite; }
.final h2 { font-size: clamp(2.3rem, 5.6vw, 4.2rem); color: var(--navy); }
.final h2 em { font-style: normal; color: var(--cream); }
.final p { font: 700 1.2rem var(--head); color: rgba(16, 36, 62, .8); margin-bottom: 14px; }
.final .hero__cta { justify-content: center; }

/* Rodapé */
.footer { background: var(--navy-900); padding: 64px 0 34px; }
.footer__in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.footer__brand img { height: 36px; width: auto; margin-bottom: 12px; }
.footer__brand p { font: 700 .74rem var(--head); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.footer__nav a { font: 600 .92rem var(--head); color: rgba(255, 244, 232, .75); text-decoration: none; }
.footer__nav a:hover { color: var(--orange); }
.footer__help { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; padding: 24px 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.footer__help span { font: 700 .74rem var(--head); letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-right: 6px; }
.footer__help a { color: rgba(255, 244, 232, .82); text-decoration: none; font-weight: 500; border-bottom: 1px solid rgba(255, 244, 232, .25); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.footer__help a:hover { color: var(--orange); border-color: var(--orange); }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 26px; font-size: .82rem; color: var(--muted); }

/* Revelação ao rolar */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* Responsivo */
@media (max-width: 1080px) {
  .nav { position: fixed; inset: 76px 0 auto; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px 26px; background: rgba(8, 21, 40, .97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .3s, transform .3s var(--ease), visibility .3s; max-height: calc(100svh - 76px); overflow-y: auto; }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav { height: calc(100svh - 76px); }
  .nav > a { padding: 16px 4px; font-size: 1.08rem; border-bottom: 1px solid var(--line); }
  .nav > a::after { display: none; }
  .nav__cta { display: grid; gap: 12px; margin-top: 22px; }
  .burger { display: block; }
  .header.is-menu { background: rgba(8, 21, 40, .97); }
  .docs { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .steps::before { display: none; }
}
@media (max-width: 900px) {
  .finder, .plat, .contact, .aud__stage { grid-template-columns: 1fr; }
  .finder__result { position: relative; top: 0; }
  .aud__media { aspect-ratio: 16 / 10; }
  .aud__stage { min-height: 0; }
  .plat__art { order: -1; min-height: 380px; }
  .hero__shade { background:
    linear-gradient(90deg, rgba(8, 21, 40, .94) 0%, rgba(8, 21, 40, .72) 60%, rgba(8, 21, 40, .45) 100%),
    linear-gradient(0deg, var(--navy-800) 0%, rgba(11, 27, 49, 0) 35%); }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container, .narrow { width: calc(100% - 32px); }
  .hide-m { display: none; }
  .header__in { height: 68px; }
  .nav { inset: 68px 0 auto; height: calc(100svh - 68px); max-height: none; }
  .plat__art { min-height: 340px; padding-bottom: 30px; }
  .device--laptop { width: 82%; justify-self: start; margin-left: 7%; }
  .device--phone { bottom: 30px; }
  .plat__cap { left: 0; right: auto; bottom: 0; }
  .brand img { height: 30px; }
  .hero { padding: 110px 0 110px; min-height: 100svh; }
  .hero h1 { font-size: clamp(2rem, 9.4vw, 2.5rem); }
  .hero__cta .btn { width: 100%; }
  .docs, .feat, .steps { grid-template-columns: 1fr; }
  .doc h3 { min-height: 0; }
  .chip { width: 100%; }
  .device--phone { width: 104px; right: 0; }
  .ticker span { padding: 15px 22px; }
  .ticker span::after { margin-left: 34px; }
  .footer__in { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
  .ui__ok { transform: scale(1); }
}
