:root {

	--navy: #0a1c3f;
	--blue: #2d51a3;
	--blue-2: #2f66c9;
	--green: #2c8a43;
	--yellow: #f5b12b;

	--ink: #0a1c3f;
	--muted: #55607a;
	--cream: #fbf9f4;
	--paper: #ffffff;
	--line: #e7e3d8;

	--shadow-sm: 0 2px 10px rgba(10, 28, 63, 0.06);
	--shadow-md: 0 18px 44px rgba(10, 28, 63, 0.12);
	--shadow-lg: 0 30px 70px rgba(10, 28, 63, 0.18);
	--radius: 20px;
	--radius-sm: 12px;

	--font-sans: "Arimo", "Helvetica Neue", Helvetica, Arial, sans-serif;

	--font-display: "Manrope", "Helvetica Neue", Arial, sans-serif;

	--shell: 1140px;
}

* {
	box-sizing: border-box;
}

picture {
	display: contents;
}

.hero-mascot picture,
.faq-mascot picture {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.page-screen picture {
	display: block;
	width: 100%;
	height: 100%;
}

.story-selection__avatar picture {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
}

/* O <source> vira item do grid e abre uma linha extra, empurrando a imagem
   para baixo do centro do anel. */
.story-selection__avatar picture > source {
	display: none;
}

html {
	scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	margin: 0;
	font-family: var(--font-sans);
	color: var(--ink);
	background: var(--cream);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
}

h1,
h2,
h3 {
	font-family: var(--font-sans);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0;
}

.shell {
	width: min(100% - 2.4rem, var(--shell));
	margin-inline: auto;
}

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

.hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skip-link {
	position: absolute;
	left: 12px;
	top: -60px;
	z-index: 200;
	background: var(--navy);
	color: #fff;
	padding: 0.6rem 1rem;
	border-radius: 10px;
	text-decoration: none;
	transition: top 0.2s;
}
.skip-link:focus {
	top: 12px;
}

:focus-visible {
	outline: 3px solid var(--blue-2);
	outline-offset: 2px;
	border-radius: 6px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;

	background: transparent;
	backdrop-filter: none;
	border-bottom: 1px solid transparent;
	transition:
		border-color 0.25s,
		box-shadow 0.25s,
		backdrop-filter 0.25s,
		background 0.25s;
}

.site-header.is-stuck {
	background: rgba(251, 249, 244, 0.82);
	backdrop-filter: saturate(160%) blur(12px);
	border-color: var(--line);
	box-shadow: var(--shadow-sm);
}
.header-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.7rem 0;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin-left: auto;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	color: var(--ink);
}
.brand img {
	border-radius: 10px;
}
.brand-copy {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.brand-copy strong {
	/* A hierarquia aqui é INVERTIDA em relação ao que o texto sugere: "Santa Fé
	   do Sul" é a linha pequena e "news" é a grande. É assim no logo, e o
	   cabeçalho precisa ler como a mesma marca. Trocar isso desalinha os dois. */
	font-family: var(--font-sans);
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.17em;
	line-height: 1;
	text-transform: uppercase;
	color: var(--ink);
}
.brand-copy small {
	/* Manrope 800 porque é o peso mais próximo do desenho do logo; a Arimo, que
	   serve o resto do texto, não vai além de 700 e sairia leve demais aqui.
	   Mesma tinta da linha de cima, como no logo: a diferença entre as duas
	   vem de tamanho, peso e caixa — não de cor. */
	font-family: var(--font-display);
	font-size: 1.42rem;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 0.92;
	text-transform: lowercase;
	color: var(--ink);
	margin-top: 3px;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 1.6rem;
}
.main-nav a {
	text-decoration: none;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--ink);
	transition: color 0.18s;
}
.main-nav a:hover {
	color: var(--blue);
}

.header-social {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.header-social a {
	display: grid;
	isolation: isolate;
	overflow: hidden;
	width: 44px;
	height: 44px;
	padding: 0;
	place-items: center;
	border: 1px solid rgba(11, 29, 56, 0.09);
	border-radius: 50%;
	background-color: rgba(255, 253, 248, 0.32);
	background-image: none;
	color: rgba(11, 29, 56, 0.56);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.62),
		0 4px 10px rgba(11, 29, 56, 0.04);
	text-decoration: none;
	transition:
		transform 0.18s ease,
		border-color 0.18s ease,
		background-color 0.18s ease,
		box-shadow 0.18s ease,
		color 0.18s ease;
}

.header-social svg {
	position: relative;
	z-index: 1;
	display: block;
	width: 18.8px;
	height: 18.8px;
	fill: currentColor;
}

.header-social a:hover,
.header-social a:focus-visible {
	border-color: transparent;
	color: #fff;
	transform: translateY(-1px);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 8px;
}
.menu-toggle span {
	width: 26px;
	height: 2.5px;
	background: var(--navy);
	border-radius: 3px;
	transition:
		transform 0.25s,
		opacity 0.25s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

.hero {
	position: relative;
	isolation: isolate;
	overflow-x: clip;
	overflow-y: visible;
	padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 7vw, 5.5rem);

}
.hero-inner {
	position: relative;
	z-index: 2;
	max-width: 780px;
	margin-inline: auto;
	text-align: center;
}
.hero h1 {

	font-size: clamp(2.6rem, 5.6vw, 4.2rem);
	font-weight: 800;
	color: #0e0e12;
	letter-spacing: -0.03em;
	margin-bottom: 1.2rem;
}

.hero h1 .hl,
.hero h1 .hl #rotating-word {
	background: linear-gradient(96deg, var(--blue) 0%, #4f86e8 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.hero h1 .type-cursor {
	display: inline-block;
	width: 0.5em;
	height: 0.1em;
	margin-left: 0.06em;
	vertical-align: -0.02em;
	border-radius: 0.02em;
	background: #4f86e8;
	color: transparent;
	overflow: hidden;
	line-height: 0;
	animation: blink 1s steps(2) infinite;
}
.hero h1 .hl {
	display: inline-block;
	white-space: nowrap;
}
.type-cursor {
	display: inline-block;
	color: var(--blue);
	font-weight: 700;
	animation: blink 1s steps(2) infinite;
	margin-left: 1px;
}
@keyframes blink {
	0%,
	50% {
		opacity: 1;
	}
	50.01%,
	100% {
		opacity: 0;
	}
}

.hero-blob {
	position: absolute;
	opacity: 1;
	z-index: 0;
	background-repeat: no-repeat;
	pointer-events: none;
}

/*
 * Os gradientes usam uma área transparente extra ao redor do desenho original.
 * Centros, raios e opacidades continuam idênticos; o espaço adicional apenas
 * deixa a cauda transparente terminar antes da borda do elemento, evitando
 * cortes retos durante a composição.
 */
.hero-blob--blue {
	top: -360px;
	right: -360px;
	width: 1060px;
	height: 900px;
	background:
		radial-gradient(
			ellipse 417.6px 358.4px at 666.8px 366px,
			rgba(45, 81, 163, 0.29) 0%,
			rgba(45, 81, 163, 0.21) 24%,
			rgba(45, 81, 163, 0.105) 48%,
			rgba(45, 81, 163, 0.034) 68%,
			rgba(45, 81, 163, 0) 88%
		),
		radial-gradient(
			ellipse 309.6px 257.6px at 422px 545.2px,
			rgba(79, 134, 232, 0.11) 0%,
			rgba(79, 134, 232, 0.05) 48%,
			rgba(79, 134, 232, 0) 86%
		);
}
.hero-blob--green {
	right: calc(2% - 120px);
	bottom: -375px;
	width: 960px;
	height: 740px;
	background:
		radial-gradient(
			ellipse 417.6px 330px at 523.2px 380px,
			rgba(44, 138, 67, 0.23) 0%,
			rgba(44, 138, 67, 0.14) 28%,
			rgba(44, 138, 67, 0.062) 52%,
			rgba(44, 138, 67, 0.021) 70%,
			rgba(44, 138, 67, 0) 88%
		),
		radial-gradient(
			ellipse 288px 230px at 321.6px 275px,
			rgba(91, 163, 91, 0.07) 0%,
			rgba(91, 163, 91, 0.03) 52%,
			rgba(91, 163, 91, 0) 86%
		);
}
.hero-blob--yellow {
	top: calc(28% - 100px);
	left: -320px;
	width: 820px;
	height: 740px;
	background:
		radial-gradient(
			ellipse 359.6px 345.6px at 335.6px 359.2px,
			rgba(245, 177, 43, 0.26) 0%,
			rgba(245, 177, 43, 0.165) 25%,
			rgba(245, 177, 43, 0.075) 50%,
			rgba(245, 177, 43, 0.025) 70%,
			rgba(245, 177, 43, 0) 88%
		),
		radial-gradient(
			ellipse 235.6px 226.8px at 534px 262px,
			rgba(255, 205, 92, 0.09) 0%,
			rgba(255, 205, 92, 0.038) 52%,
			rgba(255, 205, 92, 0) 86%
		);
}

.hero-mascot {
	position: absolute;
	z-index: 1;
	left: clamp(1.2rem, 4vw, 4.5rem);
	bottom: clamp(0.75rem, 1.8vw, 1.5rem);
	isolation: isolate;
	display: flex;
	width: min(25vw, 265px);
	height: min(36vh, 285px);
	align-items: center;
	justify-content: center;
	pointer-events: none;
	transform-origin: 44% 90%;
	animation: hero-mascot-arrive 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.hero-mascot::after {
	content: "";
	position: absolute;
	z-index: 0;
	left: 44%;
	bottom: 9%;
	width: clamp(62px, 7vw, 96px);
	height: clamp(8px, 1vw, 13px);
	border-radius: 50%;
	background: radial-gradient(
		ellipse,
		rgba(10, 28, 63, 0.18) 0%,
		rgba(10, 28, 63, 0.11) 46%,
		rgba(10, 28, 63, 0) 78%
	);
	transform: translateX(-50%);
	animation: hero-mascot-shadow-arrive 0.9s ease-out 0.25s both;
}

.hero-mascot img {
	position: relative;
	z-index: 1;
	width: min(100%, 265px);
	height: 100%;
	object-fit: contain;
	object-position: center;
}

@keyframes hero-mascot-arrive {
	0% {
		opacity: 0;
		transform: translate(-28px, 18px) scale(0.9) rotate(-4deg);
	}
	68% {
		opacity: 1;
		transform: translate(4px, -3px) scale(1.015) rotate(1deg);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

@keyframes hero-mascot-shadow-arrive {
	0% {
		opacity: 0;
		transform: translateX(-50%) scaleX(0.55);
	}
	68% {
		opacity: 1;
		transform: translateX(-50%) scaleX(1.06);
	}
	100% {
		opacity: 1;
		transform: translateX(-50%) scaleX(1);
	}
}

.signup {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	position: relative;
	background: var(--paper);
	border: 2px solid var(--line);
	border-radius: 999px;
	padding: 0.35rem 0.35rem 0.35rem 3rem;
	max-width: 500px;
	margin-inline: auto;
	box-shadow: var(--shadow-md);
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
}
.signup:focus-within {
	border-color: var(--blue);
	box-shadow: 0 18px 44px rgba(31, 82, 168, 0.18);
}
.signup .mail-ico {
	position: absolute;
	left: 1.1rem;
	color: var(--blue);
	font-size: 1.1rem;
}
.signup input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	font: inherit;
	font-size: 1rem;
	color: var(--ink);
	padding: 0.7rem 0;
}
.signup input:focus {
	outline: none;
}
.signup input::placeholder {
	color: #9aa2b5;
}
.signup button {
	border: 0;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	white-space: nowrap;
	background: var(--blue);
	color: #fff;
	padding: 0.8rem 1.4rem;
	border-radius: 999px;
	transition:
		transform 0.18s,
		background 0.18s;
}
.signup button:hover {
	transform: translateY(-1px);
	background: var(--navy);
}

.signup button {
	position: relative;
}
.signup button[disabled] {
	cursor: progress;
}
.signup button[disabled]:hover {
	transform: none;
}
.signup button.is-loading > span {
	visibility: hidden;
}
.signup button.is-loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 18px;
	margin: -9px 0 0 -9px;
	border: 2px solid rgba(255, 255, 255, 0.42);
	border-top-color: #fff;
	border-radius: 50%;
	animation: signup-spin 0.7s linear infinite;
}
@keyframes signup-spin {
	to {
		transform: rotate(360deg);
	}
}
@media (prefers-reduced-motion: reduce) {

	.signup button.is-loading > span {
		visibility: visible;
	}
	.signup button.is-loading::after {
		display: none;
	}
}

.signup-note {
	font-size: 0.85rem;
	/* --muted a 45%, por decisão de design: 1,97:1 sobre o creme, bem abaixo
	   dos 4,5:1 da WCAG AA para texto regular deste tamanho. */
	color: rgba(85, 96, 122, 0.45);
	margin: 0.9rem 0 0;
}
.signup-note a {
	/* Mesma opacidade da nota (45%), sobre --ink em vez de --muted: o link
	   segue mais escuro que o texto ao redor, mas só pelo tom, não pelo alfa.
	   A 2,83:1 sobre o creme, o negrito é a principal pista de que é clicável. */
	color: rgba(10, 28, 63, 0.45);
	font-weight: 700;
	text-decoration: none;
}
.signup-feedback {
	font-size: 0.9rem;
	font-weight: 600;
	margin: 0.6rem 0 0;
	min-height: 1.2em;
}
.signup-feedback.is-ok {
	color: var(--green);
}
.signup-feedback.is-err {
	color: #c23b3b;
}

.section {
	padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.section-head {
	max-width: 640px;
	margin: 0 auto clamp(2rem, 5vw, 3rem);
	text-align: center;
}
.section-head h2 {
	font-size: clamp(1.9rem, 4.5vw, 2.9rem);
}
.section-sub {
	color: var(--muted);
	font-size: 1.05rem;
	margin: 0.8rem 0 0;
}

.steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
	position: relative;
}

.steps::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 4rem;
	left: 14%;
	right: 14%;
	height: 2px;
	background: repeating-linear-gradient(
		90deg,
		rgba(45, 81, 163, 0.4) 0 7px,
		transparent 7px 16px
	);
}

.step-card {
	--accent: var(--blue);
	--accent-rgb: 45, 81, 163;
	--ico-fg: #fff;
	position: relative;
	z-index: 1;
	isolation: isolate;
	overflow: hidden;
	background:
		linear-gradient(
			180deg,
			rgba(var(--accent-rgb), 0.1),
			rgba(var(--accent-rgb), 0) 58%
		),
		var(--paper);
	border: 1px solid rgba(var(--accent-rgb), 0.18);
	border-radius: 24px;
	padding: 2.2rem 1.7rem 1.9rem;
	box-shadow: 0 10px 30px rgba(10, 28, 63, 0.05);
	transition:
		transform 0.38s ease-in-out,
		box-shadow 0.38s ease-in-out,
		border-color 0.38s ease-in-out;
}

.step-card.reveal {
	transition:
		opacity 0.6s ease,
		transform 0.38s ease-in-out,
		box-shadow 0.38s ease-in-out,
		border-color 0.38s ease-in-out;
}

.step-card--green {
	--accent: var(--green);
	--accent-rgb: 44, 138, 67;
}
.step-card--yellow {
	--accent: var(--yellow);
	--accent-rgb: 245, 177, 43;
	--ico-fg: #fff;
	border-color: rgba(var(--accent-rgb), 0.42);
}

.step-card:hover {
	transform: translateY(-8px);
	border-color: rgba(var(--accent-rgb), 0.45);
	box-shadow: 0 28px 55px rgba(var(--accent-rgb), 0.2);
}

.step-card--yellow:hover {
	border-color: rgba(var(--accent-rgb), 0.72);
}

.step-count {
	position: absolute;
	top: 0.7rem;
	right: 1.3rem;
	font-size: 4.4rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
	color: rgba(var(--accent-rgb), 0.14);
	transition: color 0.38s ease-in-out;
}

.step-card:hover .step-count {
	color: rgba(var(--accent-rgb), 0.26);
}

.step-ico {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin-bottom: 1.4rem;
	border-radius: 20px;
	color: var(--ico-fg);
	background: linear-gradient(
		150deg,
		var(--accent),
		rgba(var(--accent-rgb), 0.7)
	);
	box-shadow: 0 16px 28px rgba(var(--accent-rgb), 0.4);
	transition: transform 0.38s ease-in-out;
}
.step-ico svg {
	width: 30px;
	height: 30px;
}
.step-card:hover .step-ico {
	transform: translateY(-3px) scale(1.06) rotate(-3deg);
}

.step-card h3 {
	font-size: 1.35rem;
	margin-bottom: 0.5rem;
}
.step-card p {
	margin: 0;
	color: var(--muted);
}

.receive {
	--receive-navy: #0b1d38;
	--receive-blue: #3159b8;
	--receive-yellow: #f3b82f;
	--receive-ink: #0d1728;
	--receive-muted: #606b7d;
	--receive-paper: #fffdf8;
	--receive-line: rgba(13, 23, 40, 0.12);
	--receive-shadow: 0 24px 60px rgba(11, 29, 56, 0.13);
	position: relative;
	padding: clamp(5rem, 9vw, 8.5rem) 0 clamp(1rem, 1.8vw, 1.7rem);
	color: var(--receive-ink);
	font-family: var(--font-display);
}

.receive .shell {
	width: min(calc(100% - 2.5rem), 1180px);
}

.receive .section-head--receive {
	max-width: none;
	margin: 0 auto clamp(2rem, 3.5vw, 3.1rem);
	text-align: left;
}

.receive .section-head--receive h2 {
	font-family: var(--font-sans);
	font-size: clamp(2.6rem, 5.8vw, 5.1rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.02em;
}

.receive .bento-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr 0.85fr;
	grid-template-rows: repeat(2, minmax(250px, auto));
	gap: 1.15rem;
}

.receive .bento-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 250px;
	padding: 1.8rem;
	overflow: hidden;
	border: 1px solid var(--receive-line);
	border-radius: 24px;
	color: var(--receive-ink);
	background: var(--receive-paper);
	transition:
		transform 0.4s ease-in-out,
		box-shadow 0.4s ease-in-out,
		border-color 0.4s ease-in-out;
}

.receive .bento-card.reveal {
	transition:
		opacity 0.75s ease-in-out,
		transform 0.4s ease-in-out,
		box-shadow 0.4s ease-in-out,
		border-color 0.4s ease-in-out;
}

.receive .bento-card.reveal.is-visible:hover {
	z-index: 2;
	box-shadow: var(--receive-shadow);
	transform: translateY(-7px);
}

.receive .bento-card--lead {
	grid-row: 1 / 3;
	min-height: 520px;
	color: #fff;
	background: var(--receive-blue);
}

.receive .bento-card--agenda {
	background: var(--receive-yellow);
}

.receive .bento-card--service {
	background: var(--receive-paper);
}

.receive .bento-card--economy {
	grid-column: 2 / 4;
	color: #fff;
	background: var(--receive-navy);
}

.receive .bento-top {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	left: 1.5rem;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.receive .bento-label {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.receive .bento-icon {
	display: grid;
	width: 58px;
	height: 58px;
	margin-bottom: 1.3rem;
	place-items: center;
	border-radius: 18px;
	color: var(--receive-blue);
	background: rgba(49, 89, 184, 0.1);
}

.receive .bento-card--lead .bento-icon {
	color: #fff;
	background: rgba(255, 255, 255, 0.13);
}

.receive .bento-icon svg {
	display: block;
	width: 29px;
	height: 29px;
}

.receive .bento-card--service .bento-icon {
	position: absolute;
	top: 0.8rem;
	right: 0.9rem;
	bottom: auto;
	width: 8.5rem;
	height: 8.5rem;
	margin: 0;
	border-radius: 0;
	color: var(--receive-blue);
	background: transparent;
	opacity: 0.09;
	pointer-events: none;
	transition:
		transform 0.45s ease-in-out,
		opacity 0.45s ease-in-out;
}

.receive .bento-card--service .bento-icon svg {
	width: 100%;
	height: 100%;
}

.receive .bento-card--service:hover .bento-icon {
	opacity: 0.14;
	transform: translate(-4px, 4px) scale(1.04);
}

.receive .bento-card h3 {
	max-width: 480px;
	margin: 0 0 0.75rem;
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 2.8vw, 2.55rem);
	line-height: 1.04;
	letter-spacing: -0.045em;
	transition: transform 0.4s ease-in-out;
}

.receive .bento-card p {
	max-width: 500px;
	margin: 0;
	color: var(--receive-muted);
	font-size: 0.9rem;
	transition: transform 0.4s ease-in-out;
}

.receive .bento-card:hover h3,
.receive .bento-card:hover p {
	transform: translateY(-3px);
}

.receive .bento-card--lead p,
.receive .bento-card--economy p {

	color: rgba(255, 255, 255, 0.82);
}

.receive .mini-chart {
	display: flex;
	align-items: end;
	gap: 8px;
	height: 135px;
	margin: 2.5rem 0 2rem;
	padding: 0 0.5rem;
}

.receive .mini-chart span {
	height: var(--h);
	flex: 1;
	border-radius: 7px 7px 2px 2px;
	background: rgba(255, 255, 255, 0.19);
	transition:
		height 0.5s ease-in-out,
		background 0.4s ease-in-out;
}

.receive .bento-card:hover .mini-chart span {
	height: calc(var(--h) + 8%);
	background: rgba(255, 255, 255, 0.34);
}

.receive .bento-date {
	position: absolute;
	right: 1rem;
	bottom: 0.85rem;
	display: grid;
	gap: 10px;
	color: rgba(11, 29, 56, 0.12);
	text-align: right;
	line-height: 0.75;
	transition:
		transform 0.45s ease-in-out,
		color 0.45s ease-in-out;
}

.receive .bento-date b {
	font-size: 6.5rem;
	letter-spacing: -0.1em;
}

.receive .bento-date small {
	font-size: 1.3rem;
	font-weight: 800;
	text-transform: uppercase;
}

.receive .bento-card--agenda:hover .bento-date {
	color: rgba(11, 29, 56, 0.17);
	transform: translateY(-5px) scale(1.02);
}

.receive .bento-card--agenda h3,
.receive .bento-card--agenda p,
.receive .bento-card--service h3,
.receive .bento-card--service p {
	position: relative;
	z-index: 2;
}

.receive .bento-card--agenda h3,
.receive .bento-card--service h3 {
	max-width: 72%;
}

.receive .bento-card--agenda p {
	max-width: 65%;
}

.receive .bento-card--service p {
	max-width: 58%;
}

.receive .trend {
	position: absolute;
	top: 3.6rem;
	right: 2rem;
	width: 42%;
	height: 90px;
	opacity: 0.8;
}

.receive .trend svg {
	display: block;
	width: 100%;
	height: 100%;
}

.receive .trend path {
	fill: none;
	stroke: var(--receive-yellow);
	stroke-width: 4;
	stroke-linecap: round;
	stroke-dasharray: 240;
	stroke-dashoffset: 240;
	transition: stroke-dashoffset 1s ease-in-out;
}

.receive .bento-card:hover .trend path,
.receive .bento-card.is-visible .trend path {
	stroke-dashoffset: 0;
}

@media (min-width: 901px) {
	.receive .bento-card--service h3 {
		top: -1.04em;
	}
}

@media (max-width: 900px) {
	.receive .bento-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.receive .bento-card--lead {
		grid-row: span 2;
		min-height: 520px;
	}

	.receive .bento-card--economy {
		grid-column: 1 / 3;
	}
}

@media (max-width: 640px) {
	.receive {
		padding: 5rem 0 1rem;
	}

	.receive .shell {
		width: min(calc(100% - 1.5rem), 1180px);
	}

	.receive .section-head--receive h2 {
		font-size: clamp(2.6rem, 12vw, 3.8rem);
	}

	.receive .bento-grid {
		grid-template-columns: 1fr;
	}

	.receive .bento-card,
	.receive .bento-card--lead,
	.receive .bento-card--economy {
		grid-column: auto;
		grid-row: auto;
		min-height: 300px;
	}

	.receive .bento-card--lead {
		min-height: 480px;
	}

	.receive .bento-card--agenda h3 {
		max-width: 82%;
	}

	.receive .bento-card--agenda p {
		max-width: 74%;
	}
}

.faq {
	background: var(--cream);
}

.faq-shell {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(480px, 1.22fr);
	gap: clamp(3rem, 7vw, 6rem);
	align-items: start;
}

.faq-heading {
	position: sticky;
	top: 92px;
	align-self: start;
	margin: 0;
	text-align: left;
}

.faq-heading h2 {
	margin: 0;
	color: var(--navy);
	font-size: clamp(4.8rem, 8vw, 7.3rem);
	font-weight: 800;
	line-height: 0.82;
	letter-spacing: -0.075em;
}

.faq-mascot {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	justify-content: center;
	height: min(36vh, 285px);
	margin-top: 1.25rem;
	overflow: visible;
}

.faq-mascot::after {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	bottom: 2px;
	width: clamp(68px, 8vw, 112px);
	height: clamp(10px, 1.2vw, 17px);
	border-radius: 50%;
	background: radial-gradient(
		ellipse,
		rgba(10, 28, 63, 0.22) 0%,
		rgba(10, 28, 63, 0.12) 46%,
		rgba(10, 28, 63, 0) 78%
	);
	transform: translateX(-50%);
}

.faq-mascot img {
	position: relative;
	z-index: 1;
	width: min(100%, 265px);
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.accordion {
	display: grid;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.faq-item {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	interpolate-size: allow-keywords;
	transition:
		border-color 0.3s ease-in-out,
		box-shadow 0.3s ease-in-out,
		transform 0.3s ease-in-out;
}

.faq-item:hover,
.faq-item[open] {
	border-color: rgba(45, 81, 163, 0.25);
	box-shadow: 0 16px 36px rgba(10, 28, 63, 0.09);
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	cursor: pointer;
	list-style: none;
	min-height: 76px;
	padding: 1.2rem 1.4rem;
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--ink);
}
.faq-item summary:focus-visible {
	outline: none;
	box-shadow: inset 0 0 0 3px rgba(45, 81, 163, 0.48);
	border-radius: 17px;
}
.faq-item summary::-webkit-details-marker {
	display: none;
}
.chev {
	width: 12px;
	height: 12px;
	border-right: 2.5px solid var(--blue);
	border-bottom: 2.5px solid var(--blue);
	transform: rotate(45deg);
	transition: transform 0.35s ease-in-out;
	flex: none;
	margin-right: 4px;
}
.faq-item[open] .chev {
	transform: rotate(-135deg);
}
.faq-item::details-content {
	block-size: 0;
	overflow: clip;
	opacity: 0;
	transition:
		block-size 0.36s cubic-bezier(0.65, 0, 0.35, 1),
		opacity 0.3s cubic-bezier(0.65, 0, 0.35, 1),
		content-visibility 0.36s allow-discrete;
	transition-behavior: allow-discrete;
}
.faq-item[open]::details-content {
	block-size: auto;
	opacity: 1;
}
.faq-body {
	padding: 0 1.4rem 1.3rem;
}
.faq-body p {
	margin: 0;
	color: var(--muted);
}

.final-cta {
	padding: clamp(3rem, 7vw, 5rem) 0;
}
.final-shell {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	text-align: left;

	background:
		radial-gradient(
			70% 130% at 100% 2%,
			rgba(122, 166, 236, 0.4),
			transparent 55%
		),
		radial-gradient(
			48% 95% at 4% 50%,
			rgba(47, 102, 201, 0.42),
			transparent 60%
		),
		linear-gradient(120deg, var(--navy) 40%, #143a63 112%);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 30px;
	padding: clamp(2rem, 4vw, 3rem) clamp(1.8rem, 4vw, 3.4rem);
	box-shadow:
		0 34px 72px rgba(10, 28, 63, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.final-shell::after {
	content: "";
	position: absolute;
	z-index: -1;
	left: -80px;
	top: 50%;
	width: 460px;
	height: 460px;
	transform: translateY(-50%);

	background: url("../images/brand/arara-logo.png?v=v3-17") center / contain
		no-repeat;
	background: image-set(
			url("../images/brand/arara-logo.avif?v=v3-17") type("image/avif"),
			url("../images/brand/arara-logo.png?v=v3-17") type("image/png")
		) center / contain no-repeat;
	opacity: 0.06;
	filter: grayscale(1) brightness(1.9);
	pointer-events: none;
}
.final-left {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.5vw, 2rem);
	flex: 1 1 420px;
}
.final-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	margin: 0 0 0.65rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #7aa6ec;
}

.final-text h2 {
	color: #fff;
	font-size: clamp(1.55rem, 3.2vw, 2.5rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.02em;
}
.final-sub {
	margin: 0.85rem 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}
.final-form-wrap {
	flex: 0 1 400px;
	position: relative;
}

.final-form-wrap .signup-feedback {
	position: absolute;
	top: calc(100% + 0.4rem);
	left: 1.2rem;
	margin: 0;
	min-height: 0;
}

/* O painel do CTA final é escuro: o cinza de --muted não tem contraste aqui. */
.final-form-wrap .signup-note {
	color: rgba(255, 255, 255, 0.72);
	margin: 0.7rem 0 0;
}
.final-form-wrap .signup-note a {
	color: #fff;
}
.final-form-wrap .signup {
	width: 100%;
	max-width: none;
	margin: 0;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}
.final-form-wrap .signup:focus-within {
	box-shadow:
		0 0 0 4px rgba(47, 102, 201, 0.28),
		0 18px 40px rgba(0, 0, 0, 0.22);
}
.final-form-wrap .signup button {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: linear-gradient(135deg, var(--blue), #3f74d6);
	box-shadow: 0 10px 22px rgba(45, 81, 163, 0.5);
}
.final-form-wrap .signup button:hover {
	background: linear-gradient(135deg, #244a97, #2f66c9);
}
.final-shell .signup-feedback.is-ok {
	color: #eafff0;
}
.final-shell .signup-feedback.is-err {
	color: #ffe0e0;
}

.site-footer {
	--footer-ink: #0b1d38;

	--footer-muted: #586273;
	--footer-blue: #3159b8;
	--footer-yellow: #f3b82f;
	/* Transparência da marca-d'água do rodapé — vale para o logo E para o nome
	   ao lado dele, que precisam andar sempre juntos. Ponto único de ajuste.
	   Referência de acessibilidade: 0.66 é o menor valor em que o nome alcança
	   o contraste mínimo AA (5.02:1 sobre o fundo do rodapé). O valor atual
	   fica um pouco abaixo disso, por decisão de projeto — 4.12:1. */
	--footer-brand-opacity: 0.594;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(
			circle at 6% 12%,
			rgba(243, 184, 47, 0.18),
			transparent 21rem
		),
		radial-gradient(
			circle at 96% 90%,
			rgba(37, 134, 74, 0.17),
			transparent 25rem
		),
		#ebe7da;
	color: var(--footer-muted);
	font-family: var(--font-sans);
}

.site-footer::before {
	content: "";
	position: absolute;
	inset: 6px 0 0;
	background-image:
		linear-gradient(rgba(11, 29, 56, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(11, 29, 56, 0.03) 1px, transparent 1px);
	background-size: 46px 46px;
	mask-image: linear-gradient(black, transparent 92%);
	pointer-events: none;
}

.footer-accent {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 36% 27% 37%;
	height: 6px;
}

.footer-accent i:nth-child(1) {
	background: var(--footer-blue);
}

.footer-accent i:nth-child(2) {
	background: var(--footer-yellow);
}

.footer-accent i:nth-child(3) {
	background: var(--green);
}

.footer-compact-grid {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: 240px;
	grid-template-columns: 1.16fr 0.72fr 1.25fr 1.2fr;
	align-items: center;
	gap: clamp(1.5rem, 3vw, 3rem);
	padding-block: 1.8rem 1.45rem;
}

.site-footer h2 {
	margin: 0;
	color: var(--footer-ink);
	font-family: var(--font-sans);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.footer-compact-brand {
	align-self: center;
	text-align: left;
}

.footer-compact-brand > a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.68rem;
	color: var(--footer-ink);
	text-decoration: none;
}

.footer-compact-brand img {
	width: 60px;
	height: 63px;
	object-fit: contain;
	filter: grayscale(1) contrast(1.15);
	opacity: var(--footer-brand-opacity);
}

.footer-brand-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1;
	/* Mesma transparência da imagem do logo, pela mesma variável, para que o
	   conjunto leia como uma marca-d'água única e os dois nunca divirjam. */
	opacity: var(--footer-brand-opacity);
}

.footer-brand-copy strong {
	/* Tinta cheia: toda a transparência vem do opacity acima, como no logo. */
	color: var(--footer-ink);
	font-family: var(--font-sans);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.17em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.footer-brand-copy small {
	margin-top: 2px;
	/* Mesma tinta do nome acima: com a opacidade do conjunto em 0.66, um tom
	   mais claro não alcançaria o contraste mínimo. A hierarquia entre as duas
	   linhas fica por conta de tamanho, peso e caixa alta. */
	color: var(--footer-ink);
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 0.92;
	text-transform: lowercase;
}

.footer-social {
	display: flex;
	justify-content: center;
	gap: 0.44rem;
	width: fit-content;
	margin: 1.65rem auto 0;
}

.footer-social a {
	display: grid;
	isolation: isolate;
	overflow: hidden;
	width: 44.9px;
	height: 44.9px;
	place-items: center;
	border: 1px solid rgba(11, 29, 56, 0.09);
	border-radius: 50%;
	background-color: rgba(255, 253, 248, 0.28);
	background-image: none;
	color: rgba(11, 29, 56, 0.56);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.58),
		0 4px 10px rgba(11, 29, 56, 0.035);
	text-decoration: none;
	transition:
		transform 0.18s ease,
		border-color 0.18s ease,
		background-color 0.18s ease,
		box-shadow 0.18s ease,
		color 0.18s ease;
}

.footer-social svg {
	position: relative;
	z-index: 1;
	width: 18.8px;
	height: 18.8px;
	fill: currentColor;
}

.footer-social a:hover {
	border-color: transparent;
	color: #fff;
	transform: translateY(-1px);
}

/* ---------- cores de marca no hover ----------
   Sem prefixo de contêiner: as mesmas regras servem o cabeçalho e o rodapé,
   garantindo que um ícone se comporte igual nos dois lugares. */
.social-facebook:hover,
.social-facebook:focus-visible {
	background-color: #1877f2;
	background-image: none;
	box-shadow: 0 7px 15px rgba(24, 119, 242, 0.26);
}

.social-instagram:hover,
.social-instagram:focus-visible {
	border-color: rgba(255, 255, 255, 0.34);
	background-color: #e1306c;
	background-image: radial-gradient(
		circle at 30% 107%,
		#fdf497 0%,
		#fdf497 5%,
		#fd5949 45%,
		#d6249f 60%,
		#285aeb 100%
	);
	background-clip: padding-box;
	box-shadow: 0 7px 15px rgba(225, 48, 108, 0.25);
}

.social-youtube:hover,
.social-youtube:focus-visible {
	background-color: #f00;
	background-image: none;
	box-shadow: 0 7px 15px rgba(255, 0, 0, 0.23);
}

/* TikTok: preto da marca com a franja cromática ciano/magenta que a
   identidade usa — o mesmo deslocamento de cor do logotipo. */
.social-tiktok:hover,
.social-tiktok:focus-visible {
	background-color: #010101;
	background-image: none;
	box-shadow:
		-3px 0 0 -1px #25f4ee,
		3px 0 0 -1px #fe2c55,
		0 7px 15px rgba(1, 1, 1, 0.28);
}

.footer-compact-nav > div {
	display: grid;
	gap: 0.45rem;
	margin-top: 0.85rem;
}

@media (min-width: 821px) {
	.footer-compact-nav,
	.footer-compact-contact {
		align-self: start;
		margin-top: 2.4rem;
	}
}

.footer-compact-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	width: fit-content;

	min-height: 24px;
	color: var(--footer-muted);
	font-size: 0.78rem;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.18s ease;
}

.footer-compact-nav a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0.22rem;
	left: 0;
	height: 1px;
	background: var(--footer-yellow);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.18s ease;
}

.footer-compact-nav a:hover {
	color: var(--footer-blue);
}

.footer-compact-nav a:hover::after {
	transform: scaleX(1);
}

.footer-compact-contact ul {
	display: grid;
	gap: 0.48rem;
	margin: 0.78rem 0 0;
	padding: 0;
	list-style: none;
}

.footer-compact-contact li {
	display: grid;
	grid-template-columns: 32px 1fr;
	align-items: center;
	gap: 0.65rem;
	color: var(--footer-muted);
	font-size: 0.78rem;
	line-height: 1.4;
}

.footer-compact-contact li > span {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border: 1px solid rgba(11, 29, 56, 0.09);
	border-radius: 50%;
	background: rgba(255, 253, 248, 0.28);
	color: rgba(11, 29, 56, 0.56);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.58),
		0 4px 10px rgba(11, 29, 56, 0.035);
}

.footer-compact-contact li svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.footer-compact-contact p {
	margin: 0;
}

.footer-compact-contact a {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	color: inherit;
	text-decoration: none;
	overflow-wrap: anywhere;
	transition: color 0.18s ease;
}

.footer-compact-contact a:hover {
	color: var(--footer-blue);
}

.footer-compact-map {
	position: relative;
	overflow: hidden;
	min-height: 148px;
	border: 1px solid rgba(11, 29, 56, 0.11);
	border-radius: 16px;
	background: #f5f2e9;
	box-shadow: 0 12px 28px rgba(11, 29, 56, 0.1);
}

.footer-compact-map iframe {
	display: block;
	width: 100%;
	height: 148px;
	border: 0;
	filter: saturate(0.7) contrast(0.94);
}

.footer-compact-map > a {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
	min-height: 26px;
	padding: 0.4rem 0.7rem;
	border-radius: 999px;
	background: rgba(255, 253, 248, 0.95);
	color: var(--footer-ink);
	box-shadow: 0 5px 14px rgba(11, 29, 56, 0.13);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-compact-map > a:hover {
	background: var(--footer-yellow);
}

.footer-compact-bottom {
	position: relative;
	z-index: 1;
	border-top: 1px solid rgba(11, 29, 56, 0.1);
	background: rgba(255, 253, 248, 0.38);
}

.footer-compact-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: 1.35rem;
}

.footer-compact-bottom p {
	margin: 0;
	color: var(--footer-muted);
	font-size: 0.78rem;
	line-height: 1.45;
}

.footer-credit {
	--footer-credit-opacity: 0.42;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.45rem;
	white-space: nowrap;
}

.footer-credit-heart,
.footer-credit-logo {
	filter: brightness(0) saturate(100%);
	opacity: var(--footer-credit-opacity);
}

.footer-credit-heart {
	display: inline-block;
}

.footer-credit-link {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	border-radius: 6px;
	text-decoration: none;
}

.footer-credit-logo {
	width: clamp(62.4px, 5.6vw, 73.6px);
	height: auto;
	transition:
		opacity 0.18s ease,
		transform 0.18s ease;
}

.footer-credit-link:hover .footer-credit-logo,
.footer-credit-link:focus-visible .footer-credit-logo {
	opacity: 0.64;
	transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
	.footer-credit-logo {
		transition: none;
	}
}

@media (max-width: 1100px) {
	.footer-compact-grid {
		grid-template-columns: 1fr 0.8fr 1.25fr;
	}

	.footer-compact-map {
		grid-column: 1 / -1;
	}
}

@media (max-width: 820px) {
	.footer-compact-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-compact-contact,
	.footer-compact-map {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.footer-compact-grid {
		grid-template-columns: 1fr;
		gap: 1.6rem;
		padding-block: 1.5rem;
	}

	.footer-compact-contact,
	.footer-compact-map {
		grid-column: auto;
	}

	.footer-compact-nav > div {
		grid-template-columns: 1fr;
	}

	.footer-compact-bottom-inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.45rem;
		padding-block: 1.1rem;
	}

	.footer-credit {
		justify-content: flex-start;
	}
}

.legal {
	padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.legal-shell {
	width: min(100% - 2.4rem, 720px);
}

.legal-draft {
	margin: 0 0 clamp(2rem, 4vw, 3rem);
	padding: 0.9rem 1.1rem;
	border: 1px solid rgba(245, 177, 43, 0.5);
	border-left-width: 4px;
	border-radius: 12px;
	background: rgba(245, 177, 43, 0.1);
	color: var(--ink);
	font-size: 0.92rem;
	line-height: 1.5;
}

.legal-head {
	margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.legal h1 {
	font-size: clamp(2.2rem, 5.5vw, 3.2rem);
	color: var(--navy);
}

.legal-meta {
	margin: 0.7rem 0 0;
	color: var(--muted);
	font-size: 0.88rem;
}

.legal-lead {
	margin: 0 0 clamp(1.8rem, 4vw, 2.6rem);
	font-size: 1.08rem;
	line-height: 1.65;
}

.legal h2 {
	margin: clamp(2rem, 4vw, 2.8rem) 0 0.85rem;
	font-size: clamp(1.15rem, 2.4vw, 1.4rem);
	line-height: 1.25;
	color: var(--navy);
}

.legal p,
.legal li {
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.7;
}

.legal p {
	margin: 0 0 1rem;
}

.legal strong {
	color: var(--ink);
}

.legal ul {
	margin: 0 0 1rem;
	padding-left: 1.3rem;
}

.legal li {
	margin-bottom: 0.45rem;
}

.legal a {
	/* Sem sublinhado, o negrito e o azul passam a ser a única marca de que ali
	   há um link. Os dois juntos são necessários: só a cor não distingue para
	   quem não enxerga bem o azul, e só o peso se confundiria com o <strong>
	   usado nos rótulos da lista do item 2. */
	color: var(--blue);
	font-weight: 700;
	text-decoration: none;
}

.legal a:hover {
	color: var(--navy);
}

.legal-back {
	margin-top: clamp(2.2rem, 5vw, 3.2rem);
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
	font-weight: 600;
}

.legal-back a {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	text-decoration: none;
}

.legal-back a:hover {
	text-decoration: underline;
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}
.reveal.is-visible {
	opacity: 1;
	transform: none;
}

.no-js .reveal {
	opacity: 1;
	transform: none;
	transition: none;
}
@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.type-cursor {
		animation: none;
	}
	.hero-mascot,
	.hero-mascot::after {
		animation: none;
	}
}

.portal-preview-section {
	--navy: #0b1d38;
	--blue: #3159b8;
	--yellow: #f3b82f;
	--muted: #657083;
	--preview-sans: var(--font-display);
	padding: clamp(4.5rem, 9vw, 8rem) 1.5rem;
	font-family: var(--preview-sans);
	line-height: normal;
}

.portal-preview-section .planes-demo {
	--blueprint-tilt: 2.316deg;
	--stage-border: rgba(183, 215, 255, 0.52);
	position: relative;
	isolation: isolate;
	width: min(1500px, 100%);
	min-height: 720px;
	margin-inline: auto;
	overflow: visible;
	border-radius: 36px;
	background: transparent;
	color: var(--navy);
	box-shadow: none;
}

.portal-preview-section .demo-shell {
	position: relative;
	z-index: 2;
	display: grid;
	width: min(1360px, calc(100% - 5rem));
	min-height: inherit;
	margin-inline: auto;
	padding-block: clamp(4rem, 7vw, 6rem);
	grid-template-columns: minmax(300px, 0.72fr) minmax(650px, 1.28fr);
	align-items: center;
	gap: clamp(2.5rem, 5vw, 5.5rem);
}

.portal-preview-section .demo-copy {
	position: relative;
	z-index: 5;
}

.portal-preview-section .story-selection {
	display: block;
	max-width: 570px;
}

.portal-preview-section .story-selection__title {
	max-width: none;
	margin: 0;
	isolation: isolate;
	font-family: var(--preview-sans);
	font-weight: 800;
	letter-spacing: -0.07em;
}

.portal-preview-section .story-selection__title > span {
	display: block;
}

.portal-preview-section .story-selection__title > span:first-child {
	max-width: 9.5ch;
	color: var(--navy);
	font-size: clamp(3.8rem, 5.25vw, 5.6rem);
	line-height: 0.96;
}

.portal-preview-section .story-selection__follow {
	width: fit-content;
	max-width: 14ch;
	margin: 2.25rem 0 0;
	color: var(--blue);
	font-family: var(--preview-sans);
	font-size: clamp(2.15rem, 3vw, 3rem);
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: -0.045em;
}

.portal-preview-section .story-selection__highlight {
	position: relative;
	z-index: 0;
	display: inline-block;
	isolation: isolate;
}

.portal-preview-section .story-selection__highlight::after {
	content: "";
	position: absolute;
	z-index: -1;
	right: 0;
	bottom: 0.02em;
	left: 0;
	height: 0.22em;
	border-radius: 99px;
	background: rgba(243, 184, 47, 0.72);
	transform: rotate(-1deg);
}

.portal-preview-section .story-selection__profile {
	display: grid;
	width: min(100%, 520px);
	min-height: 96px;
	margin-top: 3.25rem;
	padding: 0.8rem 0.9rem;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.9rem;
	border: 1px solid rgba(11, 29, 56, 0.1);
	border-radius: 27px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--navy);
	box-shadow:
		0 20px 45px rgba(11, 29, 56, 0.11),
		inset 0 1px 0 #fff;
	text-decoration: none;
	transition:
		transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.32s ease,
		border-color 0.32s ease;
}

.portal-preview-section .story-selection__profile:hover,
.portal-preview-section .story-selection__profile:focus-visible {
	border-color: rgba(49, 89, 184, 0.24);
	box-shadow: 0 27px 58px rgba(11, 29, 56, 0.16);
	transform: translateY(-4px);
}

.portal-preview-section .story-selection__avatar {
	position: relative;
	display: grid;
	width: 66px;
	height: 66px;
	place-items: center;
	border-radius: 50%;
}

.portal-preview-section .story-selection__avatar::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: conic-gradient(
		from 215deg,
		#f9ce34 0%,
		#f9ce34 10%,
		#f77737 24%,
		#ee2a7b 43%,
		#d62976 58%,
		#962fbf 76%,
		#6228d7 90%,
		#f9ce34 100%
	);
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);
}

.portal-preview-section .story-selection__avatar::after {
	content: "";
	position: absolute;
	inset: 4px;
	border: 3px solid #fff;
	border-radius: inherit;
	background: #fff;
}

.portal-preview-section .story-selection__avatar img {
	position: relative;
	z-index: 2;
	width: calc(100% - 14px);
	height: calc(100% - 14px);
	border-radius: 50%;
	background: #fff;
	object-fit: contain;
}

.portal-preview-section .story-selection__identity {
	display: grid;
	min-width: 0;
	gap: 0.25rem;
}

.portal-preview-section .story-selection__identity strong,
.portal-preview-section .story-selection__identity small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.portal-preview-section .story-selection__identity strong {
	font-size: 0.8rem;
	letter-spacing: -0.025em;
}

.portal-preview-section .story-selection__identity small {
	color: var(--muted);
	font-size: 0.61rem;
}

.portal-preview-section .story-selection__go {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 50%;
	background: var(--blue);
	color: #fff;
	transition: transform 0.28s ease;
}

.portal-preview-section .story-selection__go svg {
	display: block;
	width: 20px;
	height: 20px;
	max-width: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.portal-preview-section .story-selection__profile:hover .story-selection__go,
.portal-preview-section
	.story-selection__profile:focus-visible
	.story-selection__go {
	transform: translateX(3px);
}

.portal-preview-section .planes-stage {
	position: relative;
	isolation: isolate;
	height: 631.89px;
	min-width: 0;
	overflow: visible;
	border: 0;
	border-radius: 20px;
	background: transparent;
	box-shadow: none;
}

.portal-preview-section .planes-canvas {
	position: absolute;
	z-index: 4;
	inset: 86px 14px 78px;
}

.portal-preview-section .blueprint-overlay {
	position: absolute;
	z-index: 1;
	inset: 0;
	overflow: hidden;
	border: 1px solid var(--stage-border);
	border-radius: 20px;
	background:
		linear-gradient(rgba(173, 210, 255, 0.13) 1px, transparent 1px),
		linear-gradient(90deg, rgba(173, 210, 255, 0.13) 1px, transparent 1px),
		linear-gradient(rgba(173, 210, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(173, 210, 255, 0.045) 1px, transparent 1px),
		linear-gradient(145deg, #0c3472, #061a3d);
	background-position: -1px -1px;
	background-size:
		96px 96px,
		96px 96px,
		16px 16px,
		16px 16px,
		auto;
	box-shadow:
		inset 0 0 0 1px rgba(205, 228, 255, 0.08),
		inset 0 0 48px rgba(6, 17, 40, 0.2),
		0 28px 70px rgba(0, 0, 0, 0.18);
	color: rgba(195, 222, 255, 0.64);
	font-family:
		ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	text-transform: uppercase;
	pointer-events: none;
	transform: rotate(var(--blueprint-tilt));
	transform-origin: center;
}

.portal-preview-section .blueprint-overlay::before {
	content: "";
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(184, 216, 255, 0.24);
	border-radius: 11px;
	pointer-events: none;
}

.portal-preview-section .blueprint-meta {
	position: absolute;
	top: 22px;
	right: 22px;
	left: 22px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
	font-size: 0.43rem;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.portal-preview-section .blueprint-meta span:nth-child(2) {
	color: rgba(218, 235, 255, 0.42);
}

.portal-preview-section .blueprint-meta span:last-child {
	text-align: right;
}

.portal-preview-section .blueprint-dimension {
	position: absolute;
	color: rgba(201, 226, 255, 0.48);
	font-size: 0.42rem;
	letter-spacing: 0.1em;
}

.portal-preview-section .blueprint-dimension i {
	position: absolute;
	background: #0a2a5d;
	font-style: normal;
}

.portal-preview-section .blueprint-dimension--horizontal {
	top: 61px;
	right: 72px;
	left: 72px;
	border-top: 1px solid rgba(188, 220, 255, 0.26);
}

.portal-preview-section .blueprint-dimension--horizontal::before,
.portal-preview-section .blueprint-dimension--horizontal::after {
	content: "";
	position: absolute;
	top: -5px;
	width: 1px;
	height: 9px;
	background: rgba(188, 220, 255, 0.42);
}

.portal-preview-section .blueprint-dimension--horizontal::before {
	left: 0;
}

.portal-preview-section .blueprint-dimension--horizontal::after {
	right: 0;
}

.portal-preview-section .blueprint-dimension--horizontal i {
	top: -0.55em;
	left: 50%;
	padding-inline: 0.55rem;
	transform: translateX(-50%);
}

.portal-preview-section .blueprint-dimension--vertical {
	top: 108px;
	right: 28px;
	bottom: 104px;
	border-right: 1px solid rgba(188, 220, 255, 0.26);
}

.portal-preview-section .blueprint-dimension--vertical::before,
.portal-preview-section .blueprint-dimension--vertical::after {
	content: "";
	position: absolute;
	right: -5px;
	width: 9px;
	height: 1px;
	background: rgba(188, 220, 255, 0.42);
}

.portal-preview-section .blueprint-dimension--vertical::before {
	top: 0;
}

.portal-preview-section .blueprint-dimension--vertical::after {
	bottom: 0;
}

.portal-preview-section .blueprint-dimension--vertical i {
	top: 50%;
	right: -0.9em;
	padding-block: 0.45rem;
	writing-mode: vertical-rl;
	transform: translateY(-50%);
}

.portal-preview-section .blueprint-axis {
	position: absolute;
	opacity: 0.32;
}

.portal-preview-section .blueprint-axis--horizontal {
	top: 50%;
	right: 18px;
	left: 18px;
	border-top: 1px dashed rgba(173, 210, 255, 0.26);
}

.portal-preview-section .blueprint-axis--vertical {
	top: 72px;
	bottom: 82px;
	left: 50%;
	border-left: 1px dashed rgba(173, 210, 255, 0.26);
}

.portal-preview-section .blueprint-cross {
	position: absolute;
	width: 24px;
	height: 24px;
	border: 1px solid rgba(190, 220, 255, 0.24);
	border-radius: 50%;
	opacity: 0.68;
}

.portal-preview-section .blueprint-cross::before,
.portal-preview-section .blueprint-cross::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: rgba(190, 220, 255, 0.42);
	transform: translate(-50%, -50%);
}

.portal-preview-section .blueprint-cross::before {
	width: 34px;
	height: 1px;
}

.portal-preview-section .blueprint-cross::after {
	width: 1px;
	height: 34px;
}

.portal-preview-section .blueprint-cross--one {
	top: 29%;
	left: 17%;
}

.portal-preview-section .blueprint-cross--two {
	top: 61%;
	right: 16%;
}

.portal-preview-section .blueprint-title-block {
	position: absolute;
	right: 18px;
	bottom: 16px;
	display: grid;
	width: min(66%, 440px);
	height: 51px;
	grid-template-columns: 1.45fr 1fr 0.52fr 0.72fr;
	border: 1px solid rgba(193, 223, 255, 0.3);
	background: rgba(4, 18, 45, 0.34);
}

.portal-preview-section .blueprint-title-block div {
	display: flex;
	min-width: 0;
	padding: 0.42rem 0.5rem;
	flex-direction: column;
	justify-content: center;
	border-left: 1px solid rgba(193, 223, 255, 0.22);
}

.portal-preview-section .blueprint-title-block div:first-child {
	border-left: 0;
}

.portal-preview-section .blueprint-title-block span {
	color: rgba(194, 223, 255, 0.42);
	font-size: 0.34rem;
	letter-spacing: 0.11em;
}

.portal-preview-section .blueprint-title-block strong {
	overflow: hidden;
	color: rgba(222, 237, 255, 0.72);
	font-size: 0.43rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.portal-preview-section .stage-hint {
	position: absolute;
	z-index: 20;
	bottom: 26px;
	left: 22px;
	display: flex;
	width: fit-content;
	max-width: calc(100% - 44px);
	margin: 0;
	padding: 0.46rem 0.66rem;
	align-items: center;
	justify-content: flex-start;
	gap: 0.5rem;
	border: 1px solid rgba(203, 226, 255, 0.28);
	border-radius: 999px;
	background: rgba(4, 19, 47, 0.78);
	color: rgba(235, 245, 255, 0.94);
	box-shadow:
		0 8px 20px rgba(1, 10, 28, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
	font-family:
		ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	pointer-events: none;
	transform: rotate(var(--blueprint-tilt));
	transform-origin: center;
}

.portal-preview-section .stage-hint span {
	width: 6px;
	height: 6px;
	flex: none;
	border-radius: 50%;
	background: #ffd05a;
	box-shadow: 0 0 0 5px rgba(243, 184, 47, 0.18);
}

.portal-preview-section .planes-stage.is-expanded .stage-hint {
	opacity: 0;
}

.portal-preview-section .page-card {
	--open-width: 64%;
	--open-left: 50%;
	--open-top: 50%;
	--card-delay: 0ms;
	position: absolute;
	z-index: var(--open-z);
	top: var(--open-top);
	left: var(--open-left);
	width: var(--open-width);
	margin: 0;
	opacity: 1;
	transform: var(--open-transform);
	transform-origin: center;
	transition:
		transform 0.64s cubic-bezier(0.22, 1, 0.36, 1),
		width 0.48s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.28s ease,
		filter 0.35s ease;
}

.portal-preview-section .planes-stage:hover .page-card,
.portal-preview-section .planes-stage:focus-within .page-card,
.portal-preview-section .planes-stage.is-expanded .page-card {
	will-change: transform, width;
}

.portal-preview-section .page-card--1 {
	--open-transform: translate(-50%, -50%) translate(-19%, -22%) rotate(-4deg);
	--open-z: 7;
}

.portal-preview-section .page-card--2 {
	--open-transform: translate(-50%, -50%);
	--open-z: 8;
}

.portal-preview-section .page-card--3 {
	--open-transform: translate(-50%, -50%) translate(19%, 22%) rotate(4deg);
	--open-z: 9;
}

.portal-preview-section .page-screen {
	display: block;
	aspect-ratio: 1586 / 992;
	overflow: hidden;
	border: 1px solid rgba(215, 232, 255, 0.82);
	border-radius: 9px;
	background: #fff;
	box-shadow:
		0 0 0 1px rgba(6, 24, 55, 0.2),
		0 22px 48px rgba(2, 12, 30, 0.32);
	transition:
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

.portal-preview-section .page-screen img {
	width: 100%;
	height: 100%;
	background: #fff;
	object-fit: contain;
	object-position: top;
}

.portal-preview-section .page-card:focus-visible {
	z-index: 40;
	outline: none;
}

.portal-preview-section .page-card:focus-visible .page-screen {
	border-color: var(--yellow);
	box-shadow:
		0 0 0 3px rgba(243, 184, 47, 0.36),
		0 30px 65px rgba(0, 0, 0, 0.3);
}

.portal-preview-section
	.planes-stage.is-expanded:has(.page-card.is-inspected)
	.page-card:not(.is-inspected),
.portal-preview-section
	.planes-stage:has(.page-card:focus-visible)
	.page-card:not(:focus-visible) {
	opacity: 0.12;
	filter: saturate(0.4) brightness(0.62);
}

.portal-preview-section .planes-stage.is-expanded .page-card.is-inspected,
.portal-preview-section .planes-stage .page-card:focus-visible {
	z-index: 40;
	top: 50%;
	left: 50%;
	width: 90%;
	opacity: 1;
	filter: none;
	transform: translate(-50%, -50%);
}

@media (hover: hover) and (pointer: fine) {
	.portal-preview-section .planes-stage:hover .stage-hint {
		opacity: 1;
		transform: rotate(var(--blueprint-tilt));
	}

	.portal-preview-section
		.planes-stage:hover:has(.page-card:hover)
		.page-card:not(:hover) {
		opacity: 0.12;
		filter: saturate(0.4) brightness(0.62);
	}

	.portal-preview-section .planes-stage:hover .page-card:hover {
		z-index: 40;
		top: 50%;
		left: 50%;
		width: 90%;
		opacity: 1;
		filter: none;
		transform: translate(-50%, -50%);
	}

	.portal-preview-section .planes-stage:hover .page-card:hover .page-screen {
		border-color: rgba(243, 184, 47, 0.72);
		box-shadow: 0 32px 68px rgba(0, 0, 0, 0.31);
	}
}

@media (max-width: 1120px) {
	.portal-preview-section .planes-demo {
		min-height: 0;
	}

	.portal-preview-section .demo-shell {
		width: min(920px, calc(100% - 3rem));
		padding-block: 4.5rem;
		grid-template-columns: 1fr;
		gap: 2.8rem;
	}

	.portal-preview-section .planes-stage {
		height: 653.31px;
	}
}

@media (max-width: 760px) {
	.portal-preview-section {
		padding-inline: 0.85rem;
	}

	.portal-preview-section .story-selection {
		display: flex;
		flex-direction: column;
	}

	.portal-preview-section .story-selection__follow {
		order: 1;
		margin-top: 0;
	}

	.portal-preview-section .story-selection__profile {
		order: 2;
		margin-top: 2.5rem;
	}

	.portal-preview-section .story-selection__title {
		order: 3;
		margin-top: clamp(7.5rem, 24vw, 9.75rem);
	}

	.portal-preview-section .demo-shell {
		width: min(100% - 2rem, 620px);
		padding-block: 3.4rem;
		gap: 2.4rem;
	}

	.portal-preview-section .planes-stage {
		height: clamp(460.53px, 77.112vw, 599.76px);
		border-radius: 16px;
	}

	.portal-preview-section .blueprint-overlay {
		border-radius: 16px;
	}

	.portal-preview-section .blueprint-overlay::before {
		inset: 8px;
		border-radius: 9px;
	}

	.portal-preview-section .planes-canvas {
		inset: 82px 8px 72px;
	}

	.portal-preview-section .blueprint-meta {
		top: 18px;
		right: 16px;
		left: 16px;
		grid-template-columns: 1fr auto;
	}

	.portal-preview-section .blueprint-meta span:nth-child(2) {
		display: none;
	}

	.portal-preview-section .blueprint-dimension--horizontal {
		top: 55px;
		right: 54px;
		left: 54px;
	}

	.portal-preview-section .blueprint-dimension--vertical {
		top: 92px;
		right: 18px;
		bottom: 88px;
	}

	.portal-preview-section .blueprint-title-block {
		right: 12px;
		bottom: 11px;
		width: calc(100% - 24px);
		height: 46px;
	}

	.portal-preview-section .stage-hint {
		bottom: 67px;
		left: 16px;
	}

	.portal-preview-section .planes-stage.is-expanded .page-card.is-inspected,
	.portal-preview-section .planes-stage .page-card:focus-visible {
		width: 92%;
	}
}

@media (max-width: 520px) {
	.portal-preview-section .planes-demo {
		border-radius: 25px;
	}

	.portal-preview-section .demo-shell {
		width: calc(100% - 1.4rem);
		padding-block: 2.8rem;
	}

	.portal-preview-section .story-selection__title > span:first-child {
		font-size: clamp(3.35rem, 15vw, 3.95rem);
	}

	.portal-preview-section .story-selection__follow {
		font-size: clamp(1.95rem, 8.8vw, 2.35rem);
	}

	.portal-preview-section .story-selection__profile {
		margin-top: 2.8rem;
		padding: 0.72rem 0.78rem;
		gap: 0.7rem;
	}

	.portal-preview-section .story-selection__avatar {
		width: 58px;
		height: 58px;
	}

	.portal-preview-section .story-selection__go {
		width: 44px;
		height: 44px;
	}

	.portal-preview-section .planes-stage {
		height: 417.69px;
	}

	.portal-preview-section .planes-canvas {
		inset: 62px 4px 44px;
	}

	.portal-preview-section .blueprint-meta {
		grid-template-columns: 1fr;
	}

	.portal-preview-section .blueprint-meta span:not(:first-child),
	.portal-preview-section .blueprint-dimension,
	.portal-preview-section .blueprint-cross,
	.portal-preview-section .blueprint-title-block {
		display: none;
	}

	.portal-preview-section .blueprint-axis--vertical {
		top: 56px;
		bottom: 44px;
	}

	.portal-preview-section .stage-hint {
		right: 0;
		bottom: 16px;
		left: 0;
		margin-inline: auto;
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.portal-preview-section .story-selection__profile,
	.portal-preview-section .story-selection__go,
	.portal-preview-section .page-card,
	.portal-preview-section .page-screen {
		transition: none;
	}
}

@media (max-width: 900px) {
	.hero {
		padding-top: clamp(6rem, 16vw, 12rem);
		padding-bottom: 12.75rem;
	}

	.hero h1 {
		margin-bottom: clamp(7rem, 20vw, 10rem);
		font-size: clamp(2rem, 8.2vw, 3.8rem);
		line-height: 0.98;
	}

	.hero-mascot {
		right: 0;
		left: 0;
		bottom: 0;
		width: 162px;
		height: 197px;
		margin-inline: auto;
	}

	.hero .signup-feedback:empty {
		display: none;
	}

	.hero-mascot::after {
		left: 50%;
		bottom: 4%;
		width: 70px;
		height: 9px;
	}

	.hero-mascot img {
		width: 100%;
		height: 100%;
	}

	.hero-blob--blue {
		top: -210px;
		right: -220px;
		width: 630px;
		height: 570px;
		background:
			radial-gradient(
				ellipse 249.4px 236.8px at 396.7px 229.5px,
				rgba(45, 81, 163, 0.29) 0%,
				rgba(45, 81, 163, 0.21) 24%,
				rgba(45, 81, 163, 0.105) 48%,
				rgba(45, 81, 163, 0.034) 68%,
				rgba(45, 81, 163, 0) 88%
			),
			radial-gradient(
				ellipse 184.9px 170.2px at 250.5px 347.9px,
				rgba(79, 134, 232, 0.11) 0%,
				rgba(79, 134, 232, 0.05) 48%,
				rgba(79, 134, 232, 0) 86%
			);
	}

	.hero-blob--green {
		right: -180px;
		bottom: -255px;
		width: 650px;
		height: 550px;
		background:
			radial-gradient(
				ellipse 261px 231px at 352px 282px,
				rgba(44, 138, 67, 0.23) 0%,
				rgba(44, 138, 67, 0.14) 28%,
				rgba(44, 138, 67, 0.062) 52%,
				rgba(44, 138, 67, 0.021) 70%,
				rgba(44, 138, 67, 0) 88%
			),
			radial-gradient(
				ellipse 180px 161px at 226px 208.5px,
				rgba(91, 163, 91, 0.07) 0%,
				rgba(91, 163, 91, 0.03) 52%,
				rgba(91, 163, 91, 0) 86%
			);
	}

	.hero-blob--yellow {
		top: calc(34% - 100px);
		left: -290px;
		width: 630px;
		height: 580px;
		background:
			radial-gradient(
				ellipse 249.4px 243.2px at 263.4px 282.4px,
				rgba(245, 177, 43, 0.26) 0%,
				rgba(245, 177, 43, 0.165) 25%,
				rgba(245, 177, 43, 0.075) 50%,
				rgba(245, 177, 43, 0.025) 70%,
				rgba(245, 177, 43, 0) 88%
			),
			radial-gradient(
				ellipse 163.4px 159.6px at 401px 214px,
				rgba(255, 205, 92, 0.09) 0%,
				rgba(255, 205, 92, 0.038) 52%,
				rgba(255, 205, 92, 0) 86%
			);
	}

	.faq-shell {
		grid-template-columns: 1fr;
	}

	.faq-shell {
		gap: 1.25rem;
	}

	.faq-heading {
		top: 70px;
		z-index: 12;
		display: grid;
		grid-template-columns: 1fr auto;
		grid-template-rows: auto;
		align-items: center;
		column-gap: 1rem;
		padding: 1rem 0 0.8rem;
		background: linear-gradient(
			180deg,
			var(--cream) 0%,
			var(--cream) 86%,
			rgba(251, 249, 244, 0) 100%
		);
	}

	.faq-heading h2 {
		grid-column: 1;
		grid-row: 1;
		font-size: clamp(3.2rem, 10vw, 4.5rem);
	}

	.faq-mascot {
		grid-column: 2;
		grid-row: 1;
		width: 104px;
		height: 126px;
		margin: 0;
	}

	.faq-mascot img {
		width: 100%;
		height: 100%;
		object-position: center;
	}
}

@media (max-width: 860px) {
	.final-shell {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.final-left {
		flex-direction: column;
		text-align: center;
		flex-basis: auto;
	}
	.final-form-wrap {
		width: 100%;
		flex-basis: auto;
	}
	.final-form-wrap .signup {
		max-width: 460px;
		margin-inline: auto;
	}
}

@media (max-width: 780px) {
	.header-shell {
		gap: 0.55rem;
	}

	.header-actions {
		gap: 0.4rem;
	}

	/* No mobile o cabeçalho abriga logo + 4 redes + menu. O nome da marca sai
	   para liberar a largura; o logo sozinho continua identificando o site e
	   o link para o topo segue funcionando. */
	.brand-copy {
		display: none;
	}

	.header-social {
		gap: 0.3rem;
	}

	.menu-toggle {
		display: flex;
		position: relative;
		z-index: 101;
		width: 44px;
		height: 44px;
		align-items: center;
		justify-content: center;
	}

	.main-nav {
		position: fixed;
		inset: 0 0 auto auto;
		width: min(80vw, 320px);
		height: 100dvh;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0.4rem;
		background: var(--paper);
		padding: 5.5rem 1.6rem 2rem;
		overflow-y: auto;
		overscroll-behavior: contain;
		box-shadow: var(--shadow-lg);
		visibility: hidden;
		pointer-events: none;
		clip-path: inset(0 0 0 100%);
		transition:
			clip-path 0.3s ease,
			visibility 0s linear 0.3s;
		z-index: 90;
	}

	.main-nav.is-open {
		visibility: visible;
		pointer-events: auto;
		clip-path: inset(0);
		transition-delay: 0s;
	}

	.main-nav a {
		width: 100%;
		padding: 0.7rem 0;
		font-size: 1.05rem;
		border-bottom: 1px solid var(--line);
	}

	.steps {
		grid-template-columns: 1fr;
	}

	.steps::before {
		display: none;
	}
}

/* Telas muito estreitas (iPhone SE, 320px): a 44px os 4 ícones + logo + menu
   transbordariam. 36px continua bem acima do mínimo de 24px da WCAG 2.2.
   Em 375px cabem os 44px, então o corte fica em 360px. */
@media (max-width: 360px) {
	.header-social {
		gap: 0.25rem;
	}

	.header-social a {
		width: 36px;
		height: 36px;
	}

	.header-social svg {
		width: 16px;
		height: 16px;
	}
}

@media (max-width: 480px) {
	.faq-heading {
		grid-template-columns: minmax(0, 1fr) 84px;
		column-gap: 0.45rem;
	}

	.faq-heading h2 {
		min-width: 0;
		font-size: clamp(2.7rem, 14vw, 3.2rem);
	}

	.faq-mascot {
		width: 84px;
		height: 102px;
	}

	.signup {
		flex-wrap: wrap;
		padding: 0.5rem;
		padding-left: 2.8rem;
	}
	.signup button {
		width: 100%;
	}
}

.coverage-section {
	padding: clamp(0.9rem, 1.8vw, 1.5rem) 0;
}

.coverage-panel {
	--coverage-ink: #382f25;
	--coverage-ink-soft: #5b3513;
	--coverage-muted: #756b5f;

	--coverage-label: #806944;
	position: relative;
	isolation: isolate;
	width: 100%;
	min-height: clamp(580px, calc(100svh - 116px), 690px);
	overflow: hidden;
	border-radius: 0;
	color: var(--coverage-ink);
	background:
		radial-gradient(
			circle at 7% 88%,
			rgba(49, 89, 184, 0.12),
			transparent 30rem
		),
		#f8f5ed;
}

.coverage-panel::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	opacity: 1;
	background-image:
		linear-gradient(rgba(11, 29, 56, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(11, 29, 56, 0.025) 1px, transparent 1px);
	background-size: 58px 58px;
	-webkit-mask-image: linear-gradient(90deg, #000, transparent 72%);
	mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.coverage-panel::after {
	content: "";
	position: absolute;
	z-index: 0;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(251, 249, 244, 1) 0%,
		rgba(251, 249, 244, 0) 17%,
		rgba(251, 249, 244, 0) 81%,
		rgba(251, 249, 244, 1) 100%
	);
	pointer-events: none;
}

.coverage-layout {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(330px, 0.82fr) minmax(560px, 1.18fr);
	align-items: center;
	gap: clamp(2.5rem, 4.5vw, 4.75rem);
	min-height: inherit;
	padding-block: clamp(2.1rem, 4.5vh, 3.5rem);
}

.coverage-copy {
	position: relative;
	z-index: 4;
}

.coverage-copy h2 {
	max-width: 650px;
	margin: 0;
	color: var(--coverage-ink);
	font-size: clamp(3.15rem, 4.8vw, 5.25rem);
	font-weight: 800;
	line-height: 0.92;
	letter-spacing: -0.07em;
}

.coverage-copy > p {
	max-width: 610px;
	margin: 1.35rem 0 1.65rem;
	color: var(--coverage-muted);
	font-size: 0.93rem;
	line-height: 1.7;
}

.coverage-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.16fr 0.94fr;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
	perspective: 1100px;
	--coverage-watermark-left: 55.4%;
	--coverage-watermark-top: 50%;
	--coverage-watermark-size: clamp(300px, 21vw, 270px);
}

.coverage-card {
	position: relative;
	display: flex;
	min-height: 0;
	flex-direction: column;
	justify-content: center;
	padding: 1.45rem;
	overflow: hidden;
	border: 1px solid rgba(11, 29, 56, 0.11);
	border-radius: 23px;
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(12px) saturate(125%);
	box-shadow: 0 14px 34px rgba(11, 29, 56, 0.07);
	transition:
		opacity 0.6s ease-in-out,
		transform 0.6s ease-in-out,
		border-color 0.38s ease-in-out,
		box-shadow 0.38s ease-in-out,
		filter 0.38s ease-in-out;
}

.coverage-card--featured {
	grid-row: span 2;
	min-height: 414px;
	border-color: rgba(194, 130, 12, 0.35);
	background: #f6b92f;
	color: var(--navy);
	box-shadow: 0 25px 52px rgba(172, 111, 0, 0.18);
}

.coverage-card > div {
	position: relative;
	z-index: 3;
}

.coverage-card p {
	margin: 0 0 0.62rem;
	color: var(--coverage-label);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.coverage-card h3 {
	margin: 0;
	color: var(--coverage-ink-soft);
	font-size: clamp(1.2rem, 1.8vw, 1.55rem);
	line-height: 1.07;
	letter-spacing: -0.04em;
}

.coverage-card--featured p {
	color: #684b16;
}

.coverage-card--featured h3 {
	max-width: 460px;

	color: #5b3513;
	font-size: clamp(1.85rem, 2.8vw, 2.75rem);
}

.coverage-watermark {
	position: absolute;
	z-index: 2;
	top: var(--coverage-watermark-top);
	left: var(--coverage-watermark-left);
	width: var(--coverage-watermark-size);
	aspect-ratio: 1;

	background: url("../images/brand/arara-logo.png?v=v3-17") center / contain
		no-repeat;
	background: image-set(
			url("../images/brand/arara-logo.avif?v=v3-17") type("image/avif"),
			url("../images/brand/arara-logo.png?v=v3-17") type("image/png")
		) center / contain no-repeat;
	filter: grayscale(1) blur(7px) contrast(1.05);
	opacity: 0.075;
	pointer-events: none;
	transform: translate(-50%, -50%);
	transform-origin: center;
}

.coverage-card::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: var(--coverage-fragment-top);
	left: var(--coverage-fragment-left);
	width: var(--coverage-watermark-size);
	aspect-ratio: 1;

	background: url("../images/brand/arara-logo.png?v=v3-17") center / contain
		no-repeat;
	background: image-set(
			url("../images/brand/arara-logo.avif?v=v3-17") type("image/avif"),
			url("../images/brand/arara-logo.png?v=v3-17") type("image/png")
		) center / contain no-repeat;
	filter: grayscale(1) blur(0) contrast(1.15);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(0.94);
	transform-origin: center;
	transition:
		opacity 0.46s ease-in-out,
		transform 0.46s ease-in-out;
}

.coverage-card--featured {
	--coverage-fragment-left: calc(100% + 0.45rem);
	--coverage-fragment-top: 50%;
}

.coverage-card--top {
	--coverage-fragment-left: -0.45rem;
	--coverage-fragment-top: calc(100% + 0.45rem);
}

.coverage-card--bottom {
	--coverage-fragment-left: -0.45rem;
	--coverage-fragment-top: -0.45rem;
}

.coverage-card:hover,
.coverage-card:focus-within {
	border-color: rgba(49, 89, 184, 0.28);
	box-shadow: 0 22px 48px rgba(11, 29, 56, 0.13);
	filter: brightness(1.015);
}

.coverage-card--featured:hover,
.coverage-card--featured:focus-within {
	border-color: rgba(194, 130, 12, 0.55);
}

.coverage-card:hover::after,
.coverage-card:focus-within::after {
	opacity: 0.075;
	transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 920px) {
	.coverage-panel {
		min-height: 0;
	}

	.coverage-layout {
		grid-template-columns: 1fr;
		gap: 2.6rem;
		padding-block: 3.5rem;
	}

	.coverage-copy {
		max-width: 720px;
	}

	.coverage-copy h2 {
		max-width: 760px;
	}

	.coverage-grid {
		max-width: 720px;
	}
}

@media (max-width: 780px) {
	.coverage-section {
		padding-inline: 0;
	}

	.coverage-panel {
		width: 100%;
		border-radius: 0;
	}

	.coverage-layout {
		gap: 2.4rem;
		padding-block: 3.25rem;
	}

	.coverage-copy h2 {
		font-size: clamp(3rem, 13vw, 4.2rem);
	}

	.coverage-copy > p {
		font-size: 0.9rem;
	}

	.coverage-grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.coverage-card,
	.coverage-card--featured {
		grid-row: auto;
		min-height: 210px;
		padding: 1.45rem;
	}

	.coverage-card--featured {
		min-height: 380px;
	}

	.coverage-card--featured h3 {
		font-size: clamp(2rem, 9vw, 2.65rem);
	}

	.coverage-watermark {
		top: var(--coverage-watermark-top);
		left: var(--coverage-watermark-left);
		width: var(--coverage-watermark-size);
	}

	.coverage-grid {
		--coverage-watermark-left: 50%;
		--coverage-watermark-top: 46%;
		--coverage-watermark-size: clamp(180px, 56vw, 220px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.coverage-card::after {
		transition: none;
	}
}

.signup.signup--aurora {
	isolation: isolate;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.85rem;
	width: min(100%, 650px);
	max-width: 650px;
	min-height: 76px;
	margin-inline: auto;
	padding: 0.4rem 0.45rem 0.4rem 1.1rem;
	border: 1px solid rgba(10, 28, 63, 0.12);
	border-radius: 25px;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 14px 34px rgba(10, 28, 63, 0.08);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	transition:
		border-color 0.35s ease-in-out,
		box-shadow 0.35s ease-in-out,
		transform 0.35s ease-in-out;
}

.signup.signup--aurora:focus-within {
	border-color: rgba(49, 89, 173, 0.32);
	box-shadow:
		0 0 0 3px rgba(49, 89, 173, 0.06),
		0 16px 38px rgba(10, 28, 63, 0.09);
	transform: translateY(-1px);
}

.signup.signup--aurora .mail-ico {
	position: static;
	z-index: 1;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 0;
	border-radius: 0;
	color: var(--blue);
	background: transparent;
	box-shadow: none;
}

.signup.signup--aurora .mail-ico svg {
	width: 29px;
	height: 29px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.signup.signup--aurora .signup-field {
	z-index: 1;
	display: grid;
	min-width: 0;
	gap: 0.1rem;
	color: var(--muted);
	font-size: 0.68rem;
	line-height: 1.25;
	text-align: left;
}

.signup.signup--aurora .signup-field > span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.signup.signup--aurora input {
	width: 100%;
	min-width: 0;
	padding: 0.18rem 0;
	color: var(--navy);
	font-size: clamp(0.9rem, 1.6vw, 1.02rem);
	font-weight: 600;
}

.signup.signup--aurora input::placeholder {
	color: rgba(10, 28, 63, 0.7);
}

.signup.signup--aurora button {
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: 60px;
	padding: 0 1.45rem;
	border-radius: 19px;
	color: #fff;
	background: linear-gradient(135deg, var(--blue), #3f74d6);
	box-shadow: 0 10px 24px rgba(49, 89, 173, 0.24);
	transition:
		box-shadow 0.3s ease-in-out,
		transform 0.3s ease-in-out,
		filter 0.3s ease-in-out;
}

.signup.signup--aurora button:hover {
	color: #fff;
	background: linear-gradient(135deg, #244a97, #2f66c9);
	box-shadow: 0 14px 32px rgba(49, 89, 173, 0.34);
	filter: saturate(1.08);
	transform: none;
}

.final-form-wrap .signup.signup--aurora {
	gap: 0.65rem;
	width: 100%;
	max-width: none;
	min-height: 72px;
	padding: 0.35rem 0.4rem 0.35rem 0.85rem;
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.final-form-wrap--aurora {
	flex-basis: 420px;
}

.final-form-wrap .signup.signup--aurora .mail-ico {
	width: 32px;
	height: 32px;
	color: #9db8f0;
}

.final-form-wrap .signup.signup--aurora .mail-ico svg {
	width: 27px;
	height: 27px;
}

.final-form-wrap .signup.signup--aurora button {
	min-height: 56px;
	padding-inline: 1rem;
	border-radius: 17px;
	font-size: 0.82rem;
}

.final-form-wrap .signup.signup--aurora input {
	color: #fff;
}

.final-form-wrap .signup.signup--aurora input::placeholder {
	color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 780px) {
	.portal-preview-section .blueprint-overlay {
		box-shadow:
			inset 0 0 0 1px rgba(205, 228, 255, 0.08),
			inset 0 0 48px rgba(6, 17, 40, 0.2);
	}

	.hero .signup.signup--aurora {
		background: rgba(255, 255, 255, 0.78);
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.signup.signup--aurora,
	.final-form-wrap .signup.signup--aurora {
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 0.6rem;
		min-height: 0;
		padding: 0.65rem;
		border-radius: 21px;
	}

	.signup.signup--aurora .mail-ico,
	.final-form-wrap .signup.signup--aurora .mail-ico {
		width: 32px;
		height: 32px;
		border-radius: 0;
	}

	.signup.signup--aurora button,
	.final-form-wrap .signup.signup--aurora button {
		grid-column: 1 / -1;
		width: 100%;
		min-height: 52px;
		border-radius: 15px;
		font-size: 0.88rem;
	}

	.final-cta {
		padding-top: 1.75rem;
		padding-bottom: clamp(3.5rem, 8vw, 6rem);
	}

	.final-shell {
		gap: 1.25rem;
		padding: 1.6rem 1rem 2.1rem;
		border-radius: 24px;
	}

	.final-form-wrap--aurora {
		flex-basis: auto;
	}

	.final-shell::after {
		top: 28%;
		left: 50%;
		width: clamp(210px, 66vw, 280px);
		height: auto;
		aspect-ratio: 1;
		transform: translate(-50%, -50%);
	}

	.final-eyebrow {
		margin-bottom: 0.5rem;
		font-size: 0.72rem;
	}

	.final-sub {
		margin-top: 0.65rem;
	}

	.final-form-wrap .signup-feedback {
		position: static;
		margin: 0.55rem 0 0;
	}

	.final-form-wrap .signup-feedback:empty {
		display: none;
	}
}

@media (max-width: 860px) {
	.final-form-wrap--aurora {
		flex-basis: auto;
	}
}

@media (max-width: 780px) {
	.footer-compact-nav > div {
		grid-template-columns: 1fr;
	}

	.coverage-card::after {
		display: none;
	}

	.coverage-card {
		background: rgba(255, 255, 255, 0.92);
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.coverage-card--featured {
		background: #f6b92f;
	}

	.coverage-card:hover,
	.coverage-card:focus-within {
		border-color: rgba(11, 29, 56, 0.11);
		box-shadow: 0 14px 34px rgba(11, 29, 56, 0.07);
		filter: none;
	}

	.coverage-card--featured:hover,
	.coverage-card--featured:focus-within {
		border-color: rgba(194, 130, 12, 0.35);
		box-shadow: 0 25px 52px rgba(172, 111, 0, 0.18);
	}
}

@media (max-width: 780px) {
	:root {
		--mobile-section-pad: clamp(3.5rem, 8vw, 6rem);
		--mobile-preview-pad: clamp(4.5rem, 9vw, 8rem);
		--mobile-preview-shell-pad: 4.5rem;
		--mobile-reference-gap: calc(
			var(--mobile-section-pad) + var(--mobile-preview-pad) +
				var(--mobile-preview-shell-pad)
		);
	}

	.hero {
		margin-bottom: calc(
			var(--mobile-reference-gap) - var(--mobile-section-pad)
		);
	}

	.final-cta {
		padding-bottom: var(--mobile-reference-gap);
	}
}

@media (max-width: 760px) {
	:root {
		--mobile-preview-shell-pad: 3.4rem;
	}
}

@media (max-width: 520px) {
	:root {
		--mobile-preview-shell-pad: 2.8rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.signup.signup--aurora,
	.signup.signup--aurora button {
		transition: none;
	}
}

/* ---------- confirmação do cadastro ----------
   É um <dialog> nativo aberto com showModal(). O elemento vai para a top
   layer, acima de qualquer empilhamento da página, então aqui não existe
   z-index de propósito: não faria diferença. Prender o foco, fechar no Esc e
   inertizar o fundo também vêm do próprio elemento — não há JS para isso. */
.confirm-modal {
	--confirm-panel: #e7edfb;
	--confirm-ico-bg: #dbe5f9;
	--confirm-deco: #c3d3f2;

	width: min(100% - 2rem, 34rem);
	max-height: calc(100vh - 2rem);
	padding: 0;
	border: 0;
	border-radius: 28px;
	background: var(--confirm-panel);
	color: var(--ink);
	box-shadow: var(--shadow-lg);

	/* O mascote é absoluto e sangra para fora da borda direita de propósito.
	   Com overflow:auto nos dois eixos isso vira barra de rolagem horizontal e
	   o conteúdo aparece cortado à esquerda; recortar no eixo X resolve sem
	   tirar a rolagem vertical, que o modal precisa em telas baixas. */
	overflow-x: hidden;
	overflow-y: auto;
}

.confirm-modal::backdrop {
	background: rgba(10, 28, 63, 0.55);
}

/* Trava a rolagem do fundo enquanto o modal está aberto. Os navegadores atuais
   já fazem isso sozinhos com dialog modal — isto é rede de segurança para os
   que não fazem. É uma regra e não uma linha de JS justamente porque some no
   instante em que o [open] sai: não existe estado para destravar, e portanto
   não existe o caso de a página ficar presa sem rolagem. Sem suporte a :has()
   o fundo volta a rolar, que é degradação cosmética, não travamento. */
body:has(.confirm-modal[open]) {
	overflow: hidden;
}

.confirm-modal[open] {
	animation: confirm-modal-in 0.28s ease-out;
}
.confirm-modal[open]::backdrop {
	animation: confirm-modal-fade 0.28s ease-out;
}

@keyframes confirm-modal-in {
	from {
		opacity: 0;
		transform: translateY(14px) scale(0.97);
	}
}
@keyframes confirm-modal-fade {
	from {
		opacity: 0;
	}
}

.confirm-modal-close {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--muted);
	cursor: pointer;
	transition:
		background 0.18s,
		color 0.18s;
}
.confirm-modal-close svg {
	width: 1rem;
	height: 1rem;
}
.confirm-modal-close:hover {
	background: var(--cream);
	color: var(--ink);
}

/* Bloco de contenção do botão de fechar. Sem isto o absolute cairia no
   `position: fixed` que a folha do navegador dá a `dialog:modal` — funciona,
   mas some se o modal um dia for aberto com show() em vez de showModal(). */
.confirm-modal-body {
	position: relative;
	padding: 2.2rem 1.8rem 1.8rem;
}

/* O par título+subtítulo, à direita do círculo do check. A folga que separa o
   cabeçalho dos três cartões vive aqui embaixo, não entre o título e o
   subtítulo — os dois são um bloco só.

   Sem max-width de propósito: havia um limite de 82% para forçar o título
   antigo, mais longo, a quebrar em duas linhas. Mantê-lo agora estreitaria a
   coluna em ~85px e faria o subtítulo quebrar sem necessidade. */
.confirm-head {
	display: flex;
	/* Centro, não topo. Com flex-start o círculo não ficava alinhado a coisa
	   nenhuma: é mais alto que a linha do título, então sobrava abaixo dela e
	   ainda assim ficava acima do centro do bloco. Centralizar resolve sem
	   número mágico e continua valendo quando o subtítulo quebra em duas linhas
	   no mobile. */
	align-items: center;
	gap: 0.9rem;
	margin-bottom: 2.6rem;
}

/* min-width:0 porque item de flex não encolhe além do conteúdo por padrão: sem
   isto, um título longo empurraria a coluna para fora do modal em vez de
   quebrar linha. */
.confirm-headings {
	min-width: 0;
}

.confirm-check {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 2.9rem;
	height: 2.9rem;
	border-radius: 999px;
	background: var(--yellow);
	color: var(--navy);
}
.confirm-check svg {
	width: 1.5rem;
	height: 1.5rem;
}

.confirm-modal h2 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(1.55rem, 5.4vw, 2rem);
	line-height: 1.08;
	letter-spacing: -0.015em;
}

.confirm-lead {
	margin: 0 0 1rem;
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.45;
}

.confirm-rule {
	display: block;
	width: 5.2rem;
	height: 4px;
	margin-bottom: 1.15rem;
	border-radius: 999px;
	background: var(--yellow);
}

/* Subtítulo do par título+subtítulo. Três coisas o tornam subordinado ao h2, e
   as três precisam existir juntas: cor apagada, peso menor e proximidade. Só
   diminuir o corpo não basta — com a mesma cor e o mesmo peso do título, o
   resultado lê como um segundo cabeçalho, não como subtítulo.

   A folga grande foi para baixo do par, não para cima: ela separa o cabeçalho
   dos três cartões, que é onde a pausa faz sentido. */
.confirm-sub {
	margin: 0.4rem 0 0;
	font-family: var(--font-display);
	font-weight: 600;
	/* Calibrado para a frase caber em uma linha na coluna do título com folga.
	   A 1.02rem ela ficava em 351px numa coluna de 351px — encostando no limite,
	   onde qualquer diferença de renderização joga uma palavra para a linha de
	   baixo e o resultado parece acidente em vez de decisão. */
	font-size: 0.97rem;
	line-height: 1.35;
	color: var(--muted);
}

.confirm-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.confirm-step {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.72rem 0.9rem;
	border-radius: 16px;
	background: var(--paper);
}

.confirm-step-ico {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 999px;
	background: var(--confirm-ico-bg);
	color: var(--navy);
}
.confirm-step-ico svg {
	width: 1.35rem;
	height: 1.35rem;
}

.confirm-step p {
	margin: 0;
	padding-left: 0.8rem;
	border-left: 1px solid var(--confirm-ico-bg);
	font-size: 0.93rem;
	line-height: 1.35;
	font-weight: 600;
}

.confirm-step-n {
	color: var(--blue-2);
	font-weight: 800;
}

.confirm-note {
	/* Afastado do terceiro cartão: é o fecho do bloco, não um quarto item da
	   lista. A distância maior é o que marca essa diferença, já que ele não
	   tem o fundo branco dos cartões para separá-lo sozinho. */
	margin: 2.2rem 0 0;
	padding-left: 0.85rem;
	border-left: 4px solid var(--yellow);
	font-size: 0.93rem;
	line-height: 1.4;
	font-weight: 600;
}

/* O mascote e os enfeites são decoração: ficam fora da árvore de acessibilidade
   (aria-hidden no HTML) e não recebem ponteiro, para nunca disputarem um clique
   com o botão que fecha o modal. */
.confirm-mascote,
.confirm-deco {
	display: none;
	pointer-events: none;
}

.confirm-deco--dot-a,
.confirm-deco--dot-b {
	border-radius: 999px;
	background: var(--confirm-deco);
}

.confirm-modal-ok {
	width: 100%;
	margin-top: 1.4rem;
	padding: 0.85rem 1.4rem;
	border: 0;
	border-radius: 999px;
	background: var(--blue);
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.18s;
}
.confirm-modal-ok:hover {
	background: var(--blue-2);
}

/* Compartilhado com a página que o save_lead.php devolve a quem está sem
   JavaScript — as duas rotas dão a mesma orientação, com o mesmo desenho. */
.spam-tip {
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--cream);
	padding: 1.2rem 1.3rem;
}
.spam-tip h2,
.spam-tip h3 {
	margin: 0 0 0.5rem;
	font-family: var(--font-display);
	font-size: 1.02rem;
	line-height: 1.3;
}
.spam-tip ol {
	margin: 0;
	padding-left: 1.1rem;
	display: grid;
	gap: 0.5rem;
	font-size: 0.9rem;
	line-height: 1.5;
}
/* Mesmo fecho do modal: filete amarelo à esquerda, depois da lista. */
.spam-tip-note {
	margin: 1rem 0 0;
	padding-left: 0.85rem;
	border-left: 4px solid var(--yellow);
	font-size: 0.9rem;
	line-height: 1.4;
	font-weight: 600;
}
.spam-tip li::marker {
	color: var(--blue);
	font-weight: 700;
}

.legal .spam-tip {
	margin: 2rem 0;
	background: var(--paper);
}

@media (max-width: 480px) {
	.confirm-modal-body {
		padding: 2rem 1.3rem 1.4rem;
	}
}

/* Mascote e enfeites só entram quando há largura para eles conviverem com o
   texto. Abaixo disto o modal vira uma coluna só: some a decoração, ficam a
   confirmação e os três passos, que são o conteúdo que precisa ser lido. */
@media (min-width: 600px) {
	.confirm-mascote,
	.confirm-deco {
		display: block;
		position: absolute;
	}

	.confirm-mascote {
		right: -4%;
		bottom: 0.2rem;
		width: 53%;
	}
	.confirm-mascote img {
		display: block;
		width: 100%;
		height: auto;
	}

	/* Abre a coluna de texto à esquerda do mascote. O lead entra aqui também,
	   senão a mensagem do servidor passa por baixo do envelope decorativo.
	   O .confirm-sub fica de fora de propósito: ele ocupa a largura inteira,
	   e cabe porque está acima do mascote — o topo do canvas do bicho começa
	   só depois dele. */
	.confirm-lead,
	.confirm-steps,
	.confirm-note {
		max-width: 63%;
	}

	.confirm-modal-ok {
		width: auto;
		min-width: 11rem;
	}

	.confirm-deco {
		color: var(--confirm-deco);
	}
	.confirm-deco svg {
		display: block;
		width: 100%;
		height: auto;
	}
	/* Abaixo do bloco título+subtítulo. Na altura antiga o envelope ficava na
	   mesma linha do subtítulo e os dois se encostavam. */
	.confirm-deco--envelope {
		top: 6.4rem;
		right: 2rem;
		width: 3.4rem;
	}
	.confirm-deco--spark {
		top: 10.2rem;
		right: 3.6rem;
		width: 0.85rem;
	}
	.confirm-deco--dot-a {
		top: 3rem;
		right: 5.6rem;
		width: 0.6rem;
		height: 0.6rem;
	}
	.confirm-deco--dot-b {
		top: 11.5rem;
		right: 2.6rem;
		width: 0.55rem;
		height: 0.55rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.confirm-modal[open],
	.confirm-modal[open]::backdrop {
		animation: none;
	}
	.confirm-modal-close,
	.confirm-modal-ok {
		transition: none;
	}
}
