/*
 * Página de apresentação do AgendaFull.
 *
 * Um arquivo só, sem dependência externa: a página precisa abrir rápido no
 * 4G de quem está no balcão da barbearia olhando o celular.
 *
 * O ritmo é claro > escuro > claro: as seções escuras marcam os momentos que
 * têm que ficar na cabeça (o link no WhatsApp, o "é seu", o preço).
 */

/* ------------------------------------------------------------------ *
 * Fundamentos
 * ------------------------------------------------------------------ */

:root {
	--l-primary: #2f6bd8;
	--l-wa: #22c55e;
	--l-wa-dark: #16a34a;

	--l-ink: #0f172a;
	--l-ink-2: #1e293b;
	--l-text: #334155;
	--l-muted: #64748b;
	--l-line: #e2e8f0;
	--l-bg: #ffffff;
	--l-bg-alt: #eaeef4;

	--l-dark-bg: #0f172a;
	--l-dark-soft: #1c2942;
	--l-dark-text: #cbd5e1;
	--l-dark-line: rgba(255, 255, 255, .12);

	--l-radius: 16px;
	--l-radius-sm: 10px;
	--l-shell: 1140px;

	--l-shadow: 0 1px 2px rgba(15, 23, 42, .06), 0 8px 24px rgba(15, 23, 42, .06);
	--l-shadow-lg: 0 20px 50px rgba(15, 23, 42, .18);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--l-bg);
	color: var(--l-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--l-primary);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	border: 0;
	word-wrap: normal !important;
}

h1, h2, h3 {
	color: var(--l-ink);
	line-height: 1.18;
	margin: 0 0 12px;
	letter-spacing: -.02em;
}

p {
	margin: 0 0 14px;
}

/* Atalho para quem navega pelo teclado. */
.l-skip {
	position: absolute;
	left: -9999px;
}

.l-skip:focus {
	left: 12px;
	top: 12px;
	z-index: 999;
	background: #fff;
	padding: 10px 16px;
	border-radius: var(--l-radius-sm);
}

.l-shell {
	width: 100%;
	max-width: var(--l-shell);
	margin: 0 auto;
	padding: 0 20px;
}

.l-shell--narrow {
	max-width: 780px;
}

/* ------------------------------------------------------------------ *
 * Botões
 * ------------------------------------------------------------------ */

.l-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--l-primary);
	color: #fff;
	font-size: 15.5px;
	font-weight: 700;
	text-decoration: none;
	line-height: 1.2;
	cursor: pointer;
	transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.l-btn:hover {
	transform: translateY(-1px);
	box-shadow: var(--l-shadow);
}

/* O verde do WhatsApp é reconhecido antes de o texto ser lido. Gastar essa
   vantagem com outra cor seria desperdício. */
.l-btn--wa {
	background: var(--l-wa);
	color: #05300f;
}

.l-btn--wa:hover {
	background: var(--l-wa-dark);
	color: #fff;
}

.l-btn--ghost {
	background: transparent;
	border-color: currentColor;
	color: inherit;
}

.l-btn--lg {
	padding: 16px 30px;
	font-size: 17px;
}

.l-btn--sm {
	padding: 10px 16px;
	font-size: 14.5px;
}

.l-btn--block {
	display: flex;
	width: 100%;
}

/* ------------------------------------------------------------------ *
 * Cabeçalho
 * ------------------------------------------------------------------ */

.l-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: saturate(160%) blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.l-header.is-stuck {
	border-bottom-color: var(--l-line);
	box-shadow: 0 2px 12px rgba(15, 23, 42, .05);
}

.l-header-inner {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 68px;
}

.l-brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	flex: none;
}

/* Altura E largura. Limitar só a altura deixa a logo comprida empurrar o
   menu para fora da barra — e a altura vem do Personalizar, porque logo
   quadrada e logo deitada pedem números diferentes. */
.l-brand img,
.l-footer-brand img {
	max-height: var(--l-logo-h, 36px);
	max-width: min(220px, 46vw);
	width: auto;
	height: auto;
	object-fit: contain;
}

@media (min-width: 900px) {
	.l-brand img,
	.l-footer-brand img {
		max-width: 280px;
	}
}

.l-brand-name {
	font-size: 21px;
	font-weight: 800;
	color: var(--l-ink);
	letter-spacing: -.02em;
}

.l-nav {
	display: none;
	gap: 22px;
	margin-left: auto;
}

.l-nav a {
	color: var(--l-text);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
}

.l-nav a:hover {
	color: var(--l-primary);
}

.l-header-cta {
	margin-left: auto;
}

@media (min-width: 900px) {
	.l-nav {
		display: flex;
	}

	.l-header-cta {
		margin-left: 0;
	}
}

/* ------------------------------------------------------------------ *
 * Topo
 * ------------------------------------------------------------------ */

.l-hero {
	position: relative;
	background: var(--l-dark-bg);
	color: #fff;
	padding: 56px 0 48px;
}

/* A imagem entra escurecida: ela é ambiente, não conteúdo. Texto branco
   sobre foto clara é o jeito mais rápido de tornar a chamada ilegível. */
.l-hero.has-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--l-hero-image);
	background-size: cover;
	background-position: center;
	opacity: .28;
}

.l-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, .55) 0%, rgba(15, 23, 42, .9) 62%, var(--l-dark-bg) 100%);
}

.l-hero-inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.l-eyebrow {
	display: inline-block;
	margin: 0 0 14px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid var(--l-dark-line);
	color: #e2e8f0;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: .01em;
}

.l-eyebrow--dark {
	background: color-mix(in srgb, var(--l-primary) 10%, transparent);
	border-color: color-mix(in srgb, var(--l-primary) 22%, transparent);
	color: var(--l-primary);
}

.l-hero-title {
	color: #fff;
	font-size: clamp(32px, 7.5vw, 58px);
	margin: 0 0 16px;
	text-wrap: balance;
}

.l-hero-text {
	max-width: 640px;
	margin: 0 auto 26px;
	color: #dbe4f0;
	font-size: clamp(16.5px, 2.4vw, 19px);
}

.l-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.l-hero-actions--center {
	justify-content: center;
}

.l-hero-note {
	margin: 18px 0 0;
	color: #94a3b8;
	font-size: 14px;
	font-weight: 600;
}

/* Sem sobreposição. A margem negativa encurtava o topo e puxava a seção
   seguinte para debaixo do celular: o título de lá aparecia cortado ao meio,
   atrás do bloco escuro. Efeito bonito não paga um título ilegível. */
.l-hero-shot {
	position: relative;
	z-index: 2;
	margin: 38px auto 0;
	max-width: 340px;
}

/* ------------------------------------------------------------------ *
 * Selos rápidos ("sem e-mail, sem senha", "aniversário é opcional")
 * ------------------------------------------------------------------ */

.l-perks {
	list-style: none;
	margin: -8px 0 32px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
}

.l-perks li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--l-text);
}

.l-perks svg {
	flex: none;
	color: var(--l-wa);
}

@media (min-width: 900px) {
	.l-hero {
		padding-top: 76px;
	}

	.l-hero-shot {
		max-width: 380px;
	}
}

/* ------------------------------------------------------------------ *
 * Moldura de celular
 *
 * Os prints são de telas de verdade. A moldura existe só para deixar óbvio,
 * de relance, que aquilo acontece no celular.
 * ------------------------------------------------------------------ */

.l-phone {
	margin: 0;
	border-radius: 26px;
	padding: 8px;
	background: linear-gradient(160deg, #2a3546, #10151f);
	box-shadow: var(--l-shadow-lg);
}

.l-phone img {
	border-radius: 19px;
	width: 100%;
}

.l-phone--tall img {
	max-height: 620px;
	object-fit: cover;
	object-position: top;
}

.l-shot {
	margin: 0;
}

.l-shot figcaption,
.l-carousel-item figcaption {
	padding: 10px 4px 0;
	color: var(--l-muted);
	font-size: 13.5px;
	font-weight: 600;
	text-align: center;
}

.l-frame {
	margin: 0;
	border-radius: var(--l-radius);
	overflow: hidden;
	border: 1px solid var(--l-line);
	box-shadow: var(--l-shadow);
}

.l-section--dark .l-frame,
.l-section--dark .l-phone figcaption {
	border-color: var(--l-dark-line);
	color: var(--l-dark-text);
}

/* ------------------------------------------------------------------ *
 * Seções
 * ------------------------------------------------------------------ */

.l-section {
	padding: 64px 0;
}

.l-section--tight {
	padding: 48px 0;
}

.l-section--alt {
	background: var(--l-bg-alt);
}

.l-section--dark {
	background: var(--l-dark-bg);
	color: var(--l-dark-text);
}

.l-title {
	font-size: clamp(25px, 4.4vw, 38px);
	margin: 0 0 14px;
	text-wrap: balance;
}

.l-title--light {
	color: #fff;
}

.l-lead {
	max-width: 720px;
	margin: 0 0 32px;
	color: var(--l-muted);
	font-size: clamp(16px, 2.2vw, 18.5px);
}

.l-lead--light {
	color: #a9b6c9;
}

.l-lead--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.l-section--dark .l-title,
.l-section--dark h3 {
	color: #fff;
}

.l-prose h3 {
	font-size: 20px;
	margin-top: 24px;
}

.l-prose h3:first-child {
	margin-top: 0;
}

/* ------------------------------------------------------------------ *
 * Colunas
 * ------------------------------------------------------------------ */

.l-split {
	display: grid;
	gap: 34px;
	align-items: start;
}

.l-split--center {
	align-items: center;
}

@media (min-width: 900px) {
	.l-split {
		grid-template-columns: 1fr 1fr;
		gap: 54px;
	}

	/* A ordem visual alterna de seção em seção para a página não virar uma
	   coluna de blocos idênticos. */
	.l-split--reverse > :first-child {
		order: 2;
	}
}

/* ------------------------------------------------------------------ *
 * Cartões
 * ------------------------------------------------------------------ */

.l-cards {
	display: grid;
	gap: 16px;
}

@media (min-width: 700px) {
	.l-cards--3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.l-cards--4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.l-cards--4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

.l-card {
	padding: 22px;
	border-radius: var(--l-radius);
	border: 1px solid var(--l-line);
	background: #fff;
}

.l-card h3 {
	font-size: 17.5px;
	margin: 12px 0 6px;
}

.l-card p {
	margin: 0;
	font-size: 15.5px;
	color: var(--l-muted);
}

.l-card--dark {
	background: var(--l-dark-soft);
	border-color: var(--l-dark-line);
}

.l-card--dark p {
	color: var(--l-dark-text);
}

.l-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: color-mix(in srgb, var(--l-primary) 12%, transparent);
	color: var(--l-primary);
}

.l-card--dark .l-card-icon {
	background: rgba(255, 255, 255, .1);
	color: #fff;
}

.l-card--pain .l-card-icon {
	background: rgba(239, 68, 68, .12);
	color: #dc2626;
}

/* ------------------------------------------------------------------ *
 * Passos e listas
 * ------------------------------------------------------------------ */

.l-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 22px;
}

.l-steps li,
.l-list li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.l-step-n {
	flex: none;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--l-primary);
	color: #fff;
	font-weight: 800;
	font-size: 15px;
}

.l-steps h3,
.l-list h3 {
	font-size: 17.5px;
	margin: 2px 0 4px;
}

.l-steps p,
.l-list p {
	margin: 0;
	color: var(--l-muted);
	font-size: 15.5px;
}

@media (min-width: 800px) {
	.l-steps--row {
		grid-template-columns: repeat(3, 1fr);
		gap: 28px;
	}
}

.l-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 22px;
}

.l-list-icon {
	flex: none;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: color-mix(in srgb, var(--l-primary) 12%, transparent);
	color: var(--l-primary);
}

.l-shots--pair {
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr;
	align-items: start;
}

@media (min-width: 560px) {
	.l-shots--pair {
		grid-template-columns: 1fr 1fr;
	}
}

/* ------------------------------------------------------------------ *
 * Conversa de WhatsApp (ilustração)
 * ------------------------------------------------------------------ */

.l-chat {
	background: #0b1522;
	border: 1px solid var(--l-dark-line);
	border-radius: var(--l-radius);
	padding: 20px;
	display: grid;
	gap: 12px;
	box-shadow: var(--l-shadow-lg);
}

.l-chat-bubble {
	position: relative;
	max-width: 88%;
	padding: 11px 14px 22px;
	border-radius: 14px;
	font-size: 15.5px;
	line-height: 1.45;
}

.l-chat-bubble--in {
	background: #1e293b;
	color: #e2e8f0;
	border-bottom-left-radius: 4px;
}

.l-chat-bubble--out {
	background: #14532d;
	color: #dcfce7;
	margin-left: auto;
	border-bottom-right-radius: 4px;
}

.l-chat-bubble time {
	position: absolute;
	right: 12px;
	bottom: 7px;
	font-size: 11.5px;
	opacity: .65;
}

.l-chat-link {
	display: block;
	margin-top: 6px;
	color: #7dd3fc;
	font-weight: 700;
	word-break: break-all;
}

.l-chat-note {
	margin: 0;
	text-align: right;
	font-size: 12.5px;
	color: #64748b;
	font-style: italic;
}

/* ------------------------------------------------------------------ *
 * Destaque dentro do texto
 * ------------------------------------------------------------------ */

.l-callout {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 22px 0 0;
	padding: 16px 18px;
	border-radius: var(--l-radius-sm);
	background: color-mix(in srgb, var(--l-wa) 12%, transparent);
	border: 1px solid color-mix(in srgb, var(--l-wa) 32%, transparent);
	color: var(--l-ink);
	font-weight: 600;
	font-size: 15.5px;
}

.l-callout-icon {
	flex: none;
	color: var(--l-wa-dark);
	margin-top: 1px;
}

/* Nota de rodapé de seção: o asterisco de um item logo acima. */
.l-footnote {
	margin: 26px 0 0;
	padding-top: 16px;
	border-top: 1px solid var(--l-line);
	color: var(--l-muted);
	font-size: 14.5px;
	max-width: 780px;
}

.l-section--dark .l-footnote {
	border-top-color: var(--l-dark-line);
}

/* ------------------------------------------------------------------ *
 * Vitrine dos visuais
 *
 * Em carrossel: um print de cada vez, grande, em vez dos quatro
 * espremidos numa grade. O scroll-snap já funciona só com o dedo ou o
 * trackpad; as setas e os pontinhos são um reforço para quem usa mouse,
 * e landing.js liga os dois — sem eles, a rolagem continua funcionando.
 * ------------------------------------------------------------------ */

.l-carousel {
	position: relative;
}

.l-carousel-track {
	display: flex;
	gap: 20px;
	margin: 0 -4px;
	padding: 4px 4px 6px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.l-carousel-track::-webkit-scrollbar {
	display: none;
}

.l-carousel-track:focus-visible {
	outline: 2px solid var(--l-primary);
	outline-offset: 4px;
}

.l-carousel-item {
	flex: 0 0 78%;
	max-width: 340px;
	margin: 0;
	scroll-snap-align: center;
}

.l-carousel-item .l-phone img {
	max-height: 640px;
	object-fit: cover;
	object-position: top;
}

@media (min-width: 640px) {
	.l-carousel-item {
		flex-basis: 45%;
	}
}

@media (min-width: 1000px) {
	.l-carousel-item {
		flex-basis: 29%;
	}
}

.l-carousel-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 24px;
}

.l-carousel-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 999px;
	border: 1px solid var(--l-line);
	background: #fff;
	color: var(--l-ink);
	cursor: pointer;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.l-carousel-btn:hover {
	background: var(--l-bg-alt);
	border-color: var(--l-primary);
	color: var(--l-primary);
}

.l-carousel-dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.l-carousel-dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: var(--l-line);
	cursor: pointer;
	transition: background .15s ease, width .15s ease;
}

.l-carousel-dot.is-active {
	width: 22px;
	background: var(--l-primary);
}

/* ------------------------------------------------------------------ *
 * Preço
 * ------------------------------------------------------------------ */

.l-price {
	display: grid;
	gap: 20px;
	max-width: 940px;
	margin: 0 auto;
}

@media (min-width: 860px) {
	.l-price {
		grid-template-columns: 1.05fr .95fr;
		gap: 24px;
		align-items: stretch;
	}
}

.l-price-main {
	position: relative;
	padding: 34px 26px 26px;
	border-radius: var(--l-radius);
	background: #fff;
	color: var(--l-text);
	text-align: center;
	box-shadow: var(--l-shadow-lg);
}

.l-price-badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	padding: 6px 16px;
	border-radius: 999px;
	background: var(--l-primary);
	color: #fff;
	font-size: 12.5px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.l-price-from {
	margin: 0 0 2px;
	color: var(--l-muted);
	font-size: 17px;
}

.l-price-from-label,
.l-price-now-label {
	font-size: 14px;
	font-weight: 700;
	color: var(--l-muted);
	margin-right: 4px;
}

.l-price-from s {
	text-decoration-thickness: 2px;
}

.l-price-now {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	margin: 0 0 14px;
	flex-wrap: wrap;
}

.l-price-now strong {
	font-size: clamp(44px, 9vw, 62px);
	font-weight: 800;
	color: var(--l-ink);
	letter-spacing: -.03em;
	line-height: 1;
}

.l-price-period {
	font-size: 19px;
	font-weight: 700;
	color: var(--l-muted);
}

.l-price-early {
	margin: 0 0 16px;
	padding: 14px 18px;
	border-radius: var(--l-radius);
	background: color-mix(in srgb, var(--l-wa) 14%, transparent);
	border: 1px solid color-mix(in srgb, var(--l-wa) 34%, transparent);
	color: #14532d;
}

.l-price-early-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .03em;
}

.l-price-early-value {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	margin: 4px 0 0;
}

.l-price-early-value strong {
	font-size: clamp(32px, 6.5vw, 44px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.03em;
	color: #14532d;
}

.l-price-early-value .l-price-period {
	color: #166534;
	font-size: 17px;
}

.l-trial {
	margin: 0 0 16px;
	padding: 14px 18px;
	border-radius: var(--l-radius);
	background: color-mix(in srgb, var(--l-primary) 10%, transparent);
	border: 1px solid color-mix(in srgb, var(--l-primary) 26%, transparent);
}

.l-trial-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--l-primary);
	font-size: 14px;
	font-weight: 800;
}

.l-trial-text {
	margin: 6px 0 0;
	color: var(--l-muted);
	font-size: 14px;
}

.l-price-note {
	margin: 0 0 20px;
	color: var(--l-muted);
	font-size: 14.5px;
}

.l-price-prazo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 14px 0 0;
	color: var(--l-muted);
	font-size: 13.5px;
	font-weight: 700;
}

.l-price-prazo svg {
	flex: none;
	color: var(--l-wa);
}

.l-price-payment {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 8px 0 0;
	color: var(--l-muted);
	font-size: 13.5px;
	font-weight: 700;
}

.l-price-payment svg {
	flex: none;
	color: var(--l-wa);
}

.l-price-side {
	padding: 26px;
	border-radius: var(--l-radius);
	background: var(--l-dark-soft);
	border: 1px solid var(--l-dark-line);
}

.l-price-side h3 {
	font-size: 18px;
	margin: 0 0 14px;
}

.l-checks {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 11px;
}

.l-checks li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 15.5px;
	color: var(--l-dark-text);
}

.l-checks svg {
	flex: none;
	margin-top: 3px;
	color: var(--l-wa);
}

.l-price-free {
	max-width: 640px;
	margin: 26px auto 0;
	text-align: center;
	color: #94a3b8;
	font-size: 15px;
}

/* ------------------------------------------------------------------ *
 * Perguntas
 * ------------------------------------------------------------------ */

.l-faq {
	display: grid;
	gap: 10px;
}

.l-faq-item {
	border: 1px solid var(--l-line);
	border-radius: var(--l-radius-sm);
	background: #fff;
	overflow: hidden;
}

.l-faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 16px 46px 16px 18px;
	font-weight: 700;
	color: var(--l-ink);
	font-size: 16.5px;
	position: relative;
}

.l-faq-item summary::-webkit-details-marker {
	display: none;
}

.l-faq-item summary::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 9px;
	height: 9px;
	border-right: 2px solid var(--l-muted);
	border-bottom: 2px solid var(--l-muted);
	transform: translateY(-70%) rotate(45deg);
	transition: transform .18s ease;
}

.l-faq-item[open] summary::after {
	transform: translateY(-20%) rotate(-135deg);
}

.l-faq-item p {
	margin: 0;
	padding: 0 18px 18px;
	color: var(--l-muted);
	font-size: 16px;
}

/* ------------------------------------------------------------------ *
 * Fechamento
 * ------------------------------------------------------------------ */

.l-cta {
	padding: 72px 0;
	text-align: center;
}

.l-cta-title {
	color: #fff;
	font-size: clamp(26px, 5vw, 40px);
	margin: 0 0 12px;
	text-wrap: balance;
}

.l-cta-text {
	max-width: 620px;
	margin: 0 auto 26px;
	color: rgba(255, 255, 255, .9);
	font-size: 17.5px;
}

.l-cta-note {
	margin: 18px 0 0;
	color: rgba(255, 255, 255, .78);
	font-size: 14px;
	font-weight: 600;
}

/* ------------------------------------------------------------------ *
 * Rodapé
 * ------------------------------------------------------------------ */

.l-footer {
	background: var(--l-dark-bg);
	color: var(--l-dark-text);
	padding: 44px 0 28px;
}

.l-footer-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
}

.l-footer .l-brand-name {
	color: #fff;
}

.l-footer-tagline {
	margin: 6px 0 0;
	color: #94a3b8;
	font-size: 14.5px;
	max-width: 40ch;
}

.l-footer-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.l-footer-contact a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #e2e8f0;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
}

.l-footer-contact a:hover {
	color: #fff;
}

.l-footer-legal {
	margin-top: 26px;
	padding-top: 18px;
	border-top: 1px solid var(--l-dark-line);
	color: #64748b;
	font-size: 13.5px;
}

.l-footer-legal p {
	margin: 0 0 4px;
}

/* ------------------------------------------------------------------ *
 * Botão flutuante
 * ------------------------------------------------------------------ */

.l-float {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 60;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px;
	border-radius: 999px;
	background: var(--l-wa);
	color: #05300f;
	text-decoration: none;
	font-weight: 800;
	box-shadow: 0 10px 28px rgba(34, 197, 94, .38);
}

.l-float-text {
	display: none;
	font-size: 15px;
}

@media (min-width: 700px) {
	.l-float {
		padding: 14px 22px 14px 18px;
	}

	.l-float-text {
		display: inline;
	}
}

/* ------------------------------------------------------------------ *
 * Aparece ao rolar
 *
 * Discreto de propósito: um movimento pequeno chama atenção para o bloco;
 * um movimento grande atrapalha quem só quer ler.
 * ------------------------------------------------------------------ */

@media (prefers-reduced-motion: no-preference) {
	.l-reveal {
		opacity: 0;
		transform: translateY(14px);
		transition: opacity .5s ease, transform .5s ease;
	}

	.l-reveal.is-in {
		opacity: 1;
		transform: none;
	}
}
