/* =========================================================================
   Advogado Inventário — Ícaro Picolli Advocacia · main.css
   Landing page única · mesma identidade do site principal
   Direção: Art Déco Editorial · linha dupla dourada
   Paleta: ônix #141414 · marrom dourado #B38A54 · creme #F4EEE3 · marfim
   Fonte: Montserrat
   ========================================================================= */

:root {
	--gold: #B38A54;
	--gold-dark: #9a743f;
	--gold-light: #d2b384;
	--gold-glow: rgba(179, 138, 84, .16);
	--ink: #141414;
	--ink-2: #1c1c1c;
	--ink-soft: #2c2926;
	--gray: #6c665d;
	--gray-light: #9a948a;
	--line: #e4ddd0;
	--line-dark: rgba(179, 138, 84, .28);
	--cream: #F4EEE3;
	--ivory: #FBF8F2;
	--white: #ffffff;

	--font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-display: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--container: 1240px;
	--container-narrow: 820px;

	--space-lg: 3.5rem;
	--space-xl: 6rem;
	--space-2xl: 9rem;

	--radius: 0px;
	--shadow-sm: 0 2px 18px rgba(20,20,20,.06);
	--shadow-md: 0 18px 50px rgba(20,20,20,.12);
	--shadow-lg: 0 30px 80px rgba(20,20,20,.20);
	--ease: cubic-bezier(.22,.61,.36,1);
	--transition: .45s var(--ease);

	--header-h: 96px;
	--header-h-scrolled: 72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--ink);
	background: var(--ivory);
	line-height: 1.75;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	position: relative;
}
/* Grão sutil global */
body::after {
	content: "";
	position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: .035;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	mix-blend-mode: multiply;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.14; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.015em; }
p { margin: 0 0 1.3em; }
ul, ol { margin: 0; padding: 0; }
::selection { background: var(--gold); color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: var(--space-2xl) 0; position: relative; }
.section--cream { background: var(--cream); }
.ip-skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 100000; }
.ip-skip:focus { left: 10px; top: 10px; }

/* ---------- Eyebrow / labels ---------- */
.section__eyebrow,
.hero__eyebrow {
	display: inline-flex; align-items: center; gap: .8rem;
	font-family: var(--font-body);
	font-size: .7rem; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
	color: var(--gold-dark); margin-bottom: 1.3rem;
}
.section__eyebrow::before,
.hero__eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }

/* ---------- Section heads ---------- */
.section__head { max-width: 760px; margin: 0 auto var(--space-lg); text-align: center; }
.section__head .section__eyebrow { justify-content: center; }
.section__head .section__title::after,
.section__title--center::after { content: ""; display: block; width: 48px; height: 1px; background: var(--gold); margin: 1.3rem auto 0; box-shadow: 0 4px 0 -3px var(--gold); }
.section__title { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 600; }
.section__title--center { text-align: center; }
.section__lead { color: var(--gray); font-size: 1.08rem; font-weight: 300; }

/* Régua dupla art-déco com losango central */
.deco-rule { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto .6rem; }
.deco-rule::before, .deco-rule::after { content: ""; height: 1px; width: 60px; background: var(--gold); box-shadow: 0 4px 0 -3px var(--gold); }
.deco-rule i { width: 7px; height: 7px; border: 1px solid var(--gold); transform: rotate(45deg); display: block; }

/* ---------- Buttons ---------- */
.ip-btn {
	position: relative; overflow: hidden;
	display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
	font-family: var(--font-body); font-weight: 600; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
	padding: 17px 36px; border: 1px solid var(--ink); border-radius: var(--radius);
	cursor: pointer; transition: color var(--transition), border-color var(--transition), background var(--transition); line-height: 1;
	color: var(--ink); background: transparent; z-index: 1; text-align: center;
}
.ip-btn::before {
	content: ""; position: absolute; inset: 0; z-index: -1; background: var(--ink);
	transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.ip-btn:hover::before { transform: scaleX(1); }
.ip-btn:hover { color: #fff; }
.ip-btn--solid { background: var(--gold); border-color: var(--gold); color: #fff; }
.ip-btn--solid::before { background: var(--ink); }
.ip-btn--solid:hover { color: #fff; border-color: var(--ink); }
.ip-btn--outline { border-color: var(--ink); color: var(--ink); }
.ip-btn--outline::before { background: var(--ink); }
.ip-btn--ghost { border-color: rgba(255,255,255,.35); color: rgba(255,255,255,.85); }
.ip-btn--ghost::before { background: #fff; }
.ip-btn--ghost:hover { color: var(--ink); }
.ip-btn--lg { padding: 20px 44px; font-size: .78rem; }
.ip-btn--sm { padding: 12px 22px; font-size: .66rem; }
.ip-btn--block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h);
	background: rgba(251,248,242,.92); backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
	transition: background var(--transition), height var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.site-header__inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.site-header.scrolled { height: var(--header-h-scrolled); box-shadow: var(--shadow-sm); }
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo__img { height: 54px; width: auto; transition: height var(--transition); }
.site-header.scrolled .site-logo__img { height: 42px; }
.site-logo__img--light { display: none; }
.site-logo__img--dark { display: block; }

.site-nav { margin-left: auto; }
.site-nav__list { display: flex; align-items: center; gap: 2.4rem; list-style: none; }
.site-nav__list a {
	font-family: var(--font-body); font-size: .76rem; font-weight: 500; letter-spacing: .14em;
	text-transform: uppercase; color: var(--ink); position: relative; padding: 8px 0;
}
.site-nav__list a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--transition); }
.site-nav__list a:hover::after { width: 100%; }
.site-nav__list a:hover { color: var(--gold-dark); }
.site-header__cta { margin-left: .6rem; }

/* Transparente sobre o hero */
body.is-home .site-header:not(.scrolled) { background: transparent; border-color: transparent; box-shadow: none; backdrop-filter: none; }
body.is-home .site-header:not(.scrolled) .site-logo__img--light { display: block; }
body.is-home .site-header:not(.scrolled) .site-logo__img--dark { display: none; }
body.is-home .site-header:not(.scrolled) .site-nav__list > li > a { color: rgba(255,255,255,.88); }
body.is-home .site-header:not(.scrolled) .site-nav__list > li > a:hover { color: #fff; }

.site-burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1100; }
.site-burger span { width: 26px; height: 1.5px; background: var(--ink); transition: all var(--transition); display: block; }
body.is-home .site-header:not(.scrolled) .site-burger span { background: #fff; }
.site-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.site-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.site-nav-mobile { position: fixed; inset: 0; background: var(--ink); z-index: 1050; display: flex; flex-direction: column; justify-content: center; gap: 1.2rem; padding: 100px 40px 40px; transform: translateX(100%); transition: transform var(--transition); }
.site-nav-mobile::before { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(179,138,84,.35); pointer-events: none; }
.site-nav-mobile::after { content: ""; position: absolute; inset: 28px; border: 1px solid rgba(179,138,84,.18); pointer-events: none; }
.site-nav-mobile.open { transform: translateX(0); }
.site-nav-mobile__list { list-style: none; display: flex; flex-direction: column; gap: 1rem; position: relative; }
.site-nav-mobile__list a { color: #fff; font-family: var(--font-display); font-size: 1.9rem; font-weight: 500; }
.site-nav-mobile__list a:hover { color: var(--gold-light); }
.site-nav-mobile .ip-btn { margin-top: 1.5rem; position: relative; }

/* ---------- HERO ---------- */
.hero {
	position: relative; min-height: 100vh; display: flex; align-items: center;
	background: var(--ink); color: #fff; overflow: hidden;
	padding: calc(var(--header-h) + 60px) 0 80px;
}
.hero::before {
	content: ""; position: absolute; inset: 0; z-index: 0;
	background:
		radial-gradient(ellipse at 78% 28%, var(--gold-glow), transparent 56%),
		repeating-linear-gradient(90deg, transparent 0 119px, rgba(255,255,255,.018) 119px 120px),
		var(--ink);
}
.hero__inner { position: relative; z-index: 2; max-width: var(--container); width: 100%; padding: 0 32px; margin: 0 auto; }
.hero__inner::before {
	content: ""; position: absolute; left: 32px; top: -3.6rem; width: 46px; height: 46px;
	border-left: 1px solid var(--gold); border-top: 1px solid var(--gold);
	box-shadow: -6px -6px 0 -5px var(--gold);
}
.hero__eyebrow { margin-top: .4rem; color: var(--gold-light); letter-spacing: .34em; }
.hero__eyebrow::before { display: none; }
.hero__title {
	color: #fff; font-size: clamp(2.2rem, 3.6vw, 3.2rem); font-weight: 600; line-height: 1.1;
	letter-spacing: -.02em; margin-bottom: 1.6rem; max-width: 22ch;
}
.hero__title em { font-style: normal; font-weight: 300; color: var(--gold-light); }
.hero__subtitle { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: rgba(255,255,255,.74); font-weight: 300; max-width: 580px; margin-bottom: 2.6rem; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__actions .ip-btn--outline { color: #fff; border-color: rgba(255,255,255,.4); }
.hero__actions .ip-btn--outline::before { background: #fff; }
.hero__actions .ip-btn--outline:hover { color: var(--ink); border-color: #fff; }
.hero__trust { margin: 2.2rem 0 0; font-family: var(--font-body); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.42); }
/* Selo vertical lateral */
.hero::after {
	content: "ADVOGADO · INVENTÁRIO";
	position: absolute; right: 38px; top: 50%; transform: translateY(-50%) rotate(180deg);
	writing-mode: vertical-rl; z-index: 2;
	font-family: var(--font-body); font-size: .64rem; letter-spacing: .42em; text-transform: uppercase;
	color: rgba(255,255,255,.32);
}

/* ---------- Dores (pain grid) ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.pain-card {
	position: relative; padding: 3rem 2rem 2.6rem; background: transparent;
	border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
	transition: background var(--transition); overflow: hidden;
}
.pain-card:nth-child(4n) { border-right: none; }
.pain-card::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.pain-card:hover::after { transform: scaleX(1); }
.pain-card__icon { color: var(--gold); font-size: 34px; width: 34px; height: 34px; margin-bottom: 1.2rem; }
.pain-card__title { font-size: 1.25rem; font-weight: 600; margin-bottom: .6rem; }
.pain-card__text { color: var(--gray); font-size: .92rem; font-weight: 300; margin: 0; }

/* ---------- Comparativo extrajudicial x judicial ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); }
.compare__col { padding: 3rem 2.6rem; position: relative; }
.compare__col:first-child { border-right: 1px solid var(--line); background: var(--ivory); }
.compare__col:last-child { background: var(--cream); }
.compare__tag { display: inline-block; font-family: var(--font-body); font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #fff; background: var(--gold); padding: 5px 12px; margin-bottom: 1.2rem; }
.compare__tag--alt { background: var(--ink); }
.compare__title { font-size: 2rem; font-weight: 600; margin-bottom: .3rem; }
.compare__sub { color: var(--gray); font-weight: 300; font-size: .96rem; margin-bottom: 1.6rem; }
.compare__list { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.compare__list li { display: flex; gap: .8rem; align-items: flex-start; font-size: .98rem; color: var(--ink-soft); }
.vias__cta { text-align: center; margin-top: var(--space-lg); }

/* ---------- Como funciona (process) ---------- */
.lp-process__list { list-style: none; max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.lp-step { display: flex; gap: 1.8rem; padding: 1.8rem 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.lp-step:last-child { border-bottom: none; }
.lp-step__num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 300; line-height: 1; color: var(--gold); flex-shrink: 0; width: 64px; }
.lp-step__title { font-size: 1.4rem; font-weight: 600; margin-bottom: .3rem; }
.lp-step__text { color: var(--gray); font-weight: 300; font-size: .98rem; margin: 0; }

/* ---------- Benefícios ---------- */
.lp-benefits__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.8rem; max-width: 980px; margin: 0 auto; }
.lp-benefits__list li { display: flex; gap: .8rem; align-items: flex-start; font-size: 1rem; color: var(--ink-soft); }
.lp-check { color: var(--gold); font-size: 20px; width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

/* ---------- Autoridade / sobre ---------- */
.authority { background: var(--ink); color: #fff; padding: var(--space-xl) 0; position: relative; overflow: hidden; }
.authority::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 30%, var(--gold-glow), transparent 55%); }
.authority::after { content: ""; position: absolute; inset: 26px; border: 1px solid rgba(179,138,84,.2); pointer-events: none; }
.authority__grid { position: relative; display: grid; grid-template-columns: 360px 1fr; gap: var(--space-lg); align-items: center; }
.authority__media { position: relative; }
.authority__media::before { content: ""; position: absolute; left: -18px; top: -18px; width: 92px; height: 92px; border-left: 1px solid var(--gold); border-top: 1px solid var(--gold); box-shadow: -7px -7px 0 -6px var(--gold); z-index: 1; }
.authority__media::after { content: ""; position: absolute; right: -18px; bottom: -18px; width: 92px; height: 92px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); box-shadow: 7px 7px 0 -6px var(--gold); z-index: 1; }
.authority__media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center; box-shadow: var(--shadow-md); position: relative; z-index: 0; filter: grayscale(.08) contrast(1.02); }
.authority__inner { position: relative; min-width: 0; }
.authority .section__eyebrow { color: var(--gold-light); }
.authority__name { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; margin-bottom: .3rem; }
.authority__oab { font-family: var(--font-body); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.6rem; }
.authority__bio { color: rgba(255,255,255,.74); font-weight: 300; font-size: 1.05rem; }
.authority .ip-btn { margin-top: 1.4rem; }

/* ---------- CTA band ---------- */
.home-cta { background: var(--ink); color: #fff; padding: var(--space-xl) 0; position: relative; overflow: hidden; }
.home-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 120%, var(--gold-glow), transparent 60%); }
.home-cta::after { content: ""; position: absolute; inset: 26px; border: 1px solid rgba(179,138,84,.22); pointer-events: none; }
.home-cta__inner { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.home-cta__title { color: #fff; font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 600; max-width: 20ch; margin: 0; }
.home-cta__title em { font-style: normal; font-weight: 300; color: var(--gold-light); }
.home-cta__text { color: rgba(255,255,255,.72); font-weight: 300; max-width: 520px; margin: 0; }
.home-cta__alt { margin: .4rem 0 0; font-family: var(--font-body); font-size: .9rem; color: rgba(255,255,255,.6); }
.home-cta__alt a { color: var(--gold-light); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.4rem 0; text-align: left; font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; color: var(--ink); transition: color var(--transition); }
.faq__q:hover { color: var(--gold-dark); }
.faq__icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--gold); transition: transform var(--transition); }
.faq__icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq__icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); }
.faq__a { font-weight: 300; color: var(--gray); padding: 0 0 1.4rem; max-width: 92%; }
.faq__a p { margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: var(--space-xl) 0 0; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.site-footer__inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.8fr 1fr 1.2fr; gap: 2.6rem; }
.site-footer__logo { height: 62px; width: auto; margin-bottom: 1.4rem; }
.site-footer__tagline { font-size: .92rem; font-weight: 300; color: rgba(255,255,255,.55); max-width: 300px; }
.site-footer__title { color: #fff; font-size: 1.15rem; font-weight: 500; margin-bottom: 1.3rem; }
.site-footer__menu, .site-footer__contact { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.site-footer__menu a, .site-footer__contact a, .site-footer__contact li { color: rgba(255,255,255,.66); font-size: .9rem; font-weight: 300; font-family: var(--font-body); }
.site-footer__menu a:hover, .site-footer__contact a:hover { color: var(--gold-light); }
.site-footer__social { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.3rem; }
.site-footer__social-link { color: rgba(255,255,255,.66); font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; font-family: var(--font-body); }
.site-footer__social-link:hover { color: var(--gold-light); }
.site-footer__contact .ip-btn { margin-top: 1rem; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.09); margin-top: var(--space-lg); padding: 2rem 32px; max-width: var(--container); margin-left: auto; margin-right: auto; text-align: center; }
.site-footer__bottom p { font-size: .78rem; font-weight: 300; color: rgba(255,255,255,.45); margin: 0 0 .5rem; font-family: var(--font-body); }
.site-footer__disclaimer { font-size: .7rem !important; color: rgba(255,255,255,.32) !important; max-width: 820px; margin: 0 auto !important; }
.site-footer__credit { font-size: .74rem; color: rgba(255,255,255,.5); margin: .8rem 0 0; font-family: var(--font-body); }
.site-footer__credit a { color: var(--gold-light); font-weight: 600; }
.site-footer__credit a:hover { color: #fff; }

/* ---------- WhatsApp float ---------- */
.ip-whatsapp-float { position: fixed; bottom: 28px; z-index: 900; width: 58px; height: 58px; background: #1f1f1f; color: #fff; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: all var(--transition); animation: ip-wa-pop .5s var(--ease) both; }
.ip-whatsapp-float:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.ip-whatsapp-float--right { right: 28px; }
.ip-whatsapp-float--left { left: 28px; }
@keyframes ip-wa-pop { from { transform: scale(0) rotate(-20deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } }

/* ---------- Barra fixa de CTA (mobile) ---------- */
.ai-sticky-cta {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
	display: none; align-items: center; justify-content: center; gap: .6rem;
	background: var(--gold); color: #fff; padding: 16px 18px;
	font-family: var(--font-body); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
	box-shadow: 0 -8px 30px rgba(20,20,20,.18);
	transform: translateY(100%); transition: transform var(--transition);
}
.ai-sticky-cta .dashicons { font-size: 20px; width: 20px; height: 20px; }
.ai-sticky-cta:hover { color: #fff; }
body.past-hero .ai-sticky-cta { transform: translateY(0); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ---------- Hero load stagger ---------- */
.hero__inner > * { opacity: 0; animation: ip-rise .9s var(--ease) forwards; }
.hero__eyebrow { animation-delay: .15s; }
.hero__title { animation-delay: .3s; }
.hero__subtitle { animation-delay: .5s; }
.hero__actions { animation-delay: .68s; }
.hero__trust { animation-delay: .82s; }
@keyframes ip-rise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }

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

/* =========================================================================
   Responsive
   ========================================================================= */
/* Notebooks (1366×768 etc.) — escala mais compacta */
@media (max-width: 1440px) {
	:root { --space-2xl: 6.5rem; --space-xl: 5rem; }
	.hero { padding: calc(var(--header-h) + 32px) 0 56px; }
	.hero__title { font-size: clamp(2rem, 3vw, 2.75rem); max-width: 24ch; }
	.hero__subtitle { font-size: 1.08rem; margin-bottom: 2rem; }
	.section__title { font-size: clamp(1.85rem, 3.2vw, 2.55rem); }
	.compare__title { font-size: 1.7rem; }
	.authority__name { font-size: 2.1rem; }
	.authority__grid { grid-template-columns: 300px 1fr; }
}

@media (max-width: 1024px) {
	.section { padding: var(--space-xl) 0; }
	.authority__grid { grid-template-columns: 260px 1fr; gap: 2.4rem; }
	.pain-grid { grid-template-columns: 1fr 1fr; }
	.pain-card:nth-child(4n) { border-right: 1px solid var(--line); }
	.pain-card:nth-child(2n) { border-right: none; }
	.site-footer__inner { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
	.hero::after { display: none; }
}

@media (max-width: 768px) {
	body { font-size: 16px; }
	.site-nav, .site-header__cta { display: none; }
	.site-burger { display: flex; }
	.ai-sticky-cta { display: flex; }
	.ip-whatsapp-float { bottom: 84px; }
	.pain-grid { grid-template-columns: 1fr; border-top: none; }
	.pain-card, .pain-card:nth-child(n) { border-right: none; border-left: 1px solid var(--line); }
	.compare { grid-template-columns: 1fr; }
	.compare__col:first-child { border-right: none; border-bottom: 1px solid var(--line); }
	.authority__grid { grid-template-columns: 1fr; gap: 2.8rem; }
	.authority__media { max-width: 300px; margin: 0 auto; }
	.lp-benefits__list { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr; gap: 2.2rem; }
	.hero { min-height: 92vh; }
	.hero__actions { flex-direction: column; }
	.hero__actions .ip-btn { width: 100%; }
	.hero__inner::before { display: none; }
	.lp-step { gap: 1rem; }
	.lp-step__num { width: 44px; font-size: 1.9rem; }
}

@media (max-width: 480px) {
	.container { padding: 0 22px; }
	.section { padding: 4rem 0; }
	.hero__title { font-size: 2.15rem; }
	.compare__col { padding: 2.2rem 1.6rem; }
}
