/* ---------- Tokens ---------- */
:root {
	--petrol: #1f6079; /* azul petróleo (acento) */
	--petrol-strong: #174c60;
	--sand: #d9c9ae; /* secundária pastel (areia suave) */
	--bg: #f6f4ef; /* claro suave, não branco chapado */
	--surface: #fffdf8;
	--line: rgba(31, 96, 121, 0.14);
	--text: #2b3238;
	--muted: rgba(43, 50, 56, 0.68);
	--soft: rgba(43, 50, 56, 0.45);
	--on-accent: #f7f5f0;
	--band-bg: #1f6079;
	--band-fg: #f4f1ea;
	--shadow: 0 18px 40px -20px rgba(23, 49, 60, 0.35);
}
@media (prefers-color-scheme: dark) {
	:root:not(.light) {
		--petrol: #6fb3cc;
		--petrol-strong: #8ec6dc;
		--sand: #c3b394;
		--bg: #131b21;
		--surface: #18232b;
		--line: rgba(143, 198, 220, 0.16);
		--text: #e7ecef;
		--muted: rgba(231, 236, 239, 0.72);
		--soft: rgba(231, 236, 239, 0.45);
		--on-accent: #0f171c;
		--band-bg: #0e2732;
		--band-fg: #e7ecef;
		--shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.6);
	}
}
:root.dark {
	--petrol: #6fb3cc;
	--petrol-strong: #8ec6dc;
	--sand: #c3b394;
	--bg: #131b21;
	--surface: #18232b;
	--line: rgba(143, 198, 220, 0.16);
	--text: #e7ecef;
	--muted: rgba(231, 236, 239, 0.72);
	--soft: rgba(231, 236, 239, 0.45);
	--on-accent: #0f171c;
	--band-bg: #0e2732;
	--band-fg: #e7ecef;
	--shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.6);
}

* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Arial,
		sans-serif;
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
.serif,
blockquote {
	font-family: Lora, Georgia, "Times New Roman", serif;
	font-weight: 400;
}
img,
video{
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
}
.wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}
.narrow {
	max-width: 760px;
	margin: 0 auto;
}
.eyebrow {
	font-size: 11px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--petrol);
	margin: 0 0 18px;
}
.lead {
	font-size: 1.08rem;
	color: var(--muted);
}
section {
	padding: 88px 0;
}
h2 {
	font-size: clamp(1.7rem, 3.2vw, 2.4rem);
	line-height: 1.15;
	margin: 0 0 16px;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 30px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 500;
	background: var(--petrol);
	color: var(--on-accent);
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, background 0.2s ease;
	border: 1px solid transparent;
}
.btn:hover {
	background: var(--petrol-strong);
	transform: translateY(-1px);
}
.btn--ghost {
	background: transparent;
	color: var(--petrol);
	border-color: var(--line);
	box-shadow: none;
}
.btn--ghost:hover {
	background: rgba(31, 96, 121, 0.07);
}

/* ---------- Header / Nav ---------- */
.topbar {
	position: sticky;
	top: 0;
	z-index: 20;
	background: color-mix(in oklab, var(--bg) 88%, transparent);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 24px;
	max-width: 1180px;
	margin: 0 auto;
}
.brand {
	font-family: Lora, serif;
	font-style: italic;
	font-size: 1.2rem;
	text-decoration: none;
}
.brand small {
	display: block;
	font-family: inherit;
	font-style: normal;
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--soft);
	font-family: "Plus Jakarta Sans", sans-serif;
}
#brand-logo-top{
	color: var(--petrol);
}
#brand-logo-footer{
	color: var(--soft);
}
.nav {
	display: flex;
	align-items: center;
	gap: 26px;
}
.nav a {
	text-decoration: none;
	font-size: 0.9rem;
	color: var(--muted);
}
.nav a:hover {
	color: var(--petrol);
}
.tools {
	display: flex;
	align-items: center;
	gap: 10px;
}
.icon-btn {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: transparent;
	color: var(--petrol);
	cursor: pointer;
	font-size: 1rem;
	display: grid;
	place-items: center;
}
.icon-btn:hover {
	background: rgba(31, 96, 121, 0.08);
}
#theme-toggle {
	display: none;
}
html.js #theme-toggle {
	display: grid;
}

/* hamburger: CSS puro via checkbox */
.menu-toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.burger {
	display: none;
	cursor: pointer;
}
.burger span,
.burger span::before,
.burger span::after {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	content: "";
}
.burger span {
	position: relative;
}
.burger span::before {
	position: absolute;
	top: -6px;
}
.burger span::after {
	position: absolute;
	top: 6px;
}

@media (max-width: 860px) {
	.burger {
		display: grid;
		place-items: center;
		color: var(--petrol);
	}
	.nav {
		position: static;
		display: grid;
		gap: 0;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}
	.topbar__inner {
		flex-wrap: wrap;
	}
	.brand {
		order: 0;
	}
	.tools {
		order: 1;
		margin-left: auto;
	}
	.nav {
		order: 2;
	}
	.nav a {
		padding: 14px 4px;
		border-top: 1px solid var(--line);
		font-size: 1rem;
	}
	.menu-toggle:checked ~ .nav {
		max-height: 400px;
	}
}

/* ---------- Hero ---------- */
.hero {
	display: grid;
	gap: 52px;
	grid-template-columns: 1fr;
	align-items: center;
	padding: 64px 0 88px;
}
@media (min-width: 960px) {
	.hero {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 64px;
	}
}
.hero h1 {
	font-size: clamp(2.1rem, 5vw, 3.5rem);
	line-height: 1.06;
	margin: 18px 0;
}
.hero h1 em {
	font-style: italic;
	color: var(--petrol);
}
.tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--petrol);
}
.dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--sand);
}
.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 28px 0 12px;
}
.hero-figure {
	position: relative;
}
.hero-figure::before {
	content: "";
	position: absolute;
	inset: -22px;
	border-radius: 50%;
	background: radial-gradient(
		circle at 60% 40%,
		color-mix(in oklab, var(--sand) 55%, transparent),
		transparent 70%
	);
	filter: blur(26px);
}
.hero-figure img,
.hero-figure video{
	position: relative;
	aspect-ratio: 4/5;
	max-height: 600px;
	margin-left: auto;
	object-fit: cover;
	border-radius: 36px;
	box-shadow: var(--shadow);
}

















.video-container {
  position: relative;
  display: inline-block; /* Ou block, conforme seu layout */
  max-width: 100%;
}

/* Garante que o vídeo ocupe o espaço certo */
.video-container video {
  display: block;
  width: 100%;
  height: auto;
  controls: none;
}

/* Botão centralizado */
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.4); /* Fundo semi-transparente opcional */
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 20px;
  transition: opacity 0.3s, transform 0.2s;
  z-index: 10;
}

.play-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0, 0, 0, 0.6);
}

/* Classe para esconder o botão quando o vídeo estiver rodando */
.play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* --- TRUQUE PARA ESCONDER CONTROLES NATIVOS (iOS/Android) --- */
/* Esconde o botão gigante de play do iOS/Android quando o vídeo está pausado */
video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

/* Esconde a barra de controles se o navegador tentar mostrar */
video::-webkit-media-controls {
  display: none !important;
}


























.fine {
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--soft);
}

/* ---------- Pain points ---------- */
.band {
	background: var(--band-bg);
	color: var(--band-fg);
}
.band .eyebrow {
	color: color-mix(in oklab, var(--sand) 80%, var(--band-fg));
}
.band h2 {
	font-style: italic;
	text-align: center;
}
.pains {
	list-style: none;
	margin: 44px 0 0;
	padding: 0;
}
.pains li {
	display: flex;
	gap: 22px;
	align-items: flex-start;
	padding: 22px 0;
	border-bottom: 1px solid
		color-mix(in oklab, var(--band-fg) 18%, transparent);
}
.pains b {
	font-family: Lora, serif;
	font-style: italic;
	font-weight: 400;
	font-size: 1.4rem;
	color: color-mix(in oklab, var(--sand) 85%, var(--band-fg));
	min-width: 34px;
}
.pains p {
	margin: 0;
	font-size: 1.08rem;
	font-weight: 300;
}

/* ---------- Cards ---------- */
.grid-4 {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) {
	.grid-4 {
		grid-template-columns: 1fr 1fr;
	}
}
@media (min-width: 1024px) {
	.grid-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}
.card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 26px;
	padding: 30px;
}
.card:hover {
	border-color: color-mix(in oklab, var(--petrol) 40%, transparent);
}
.card h3 {
	font-size: 1.15rem;
	margin: 0 0 10px;
}
.card p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--muted);
}
.num {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	background: color-mix(in oklab, var(--sand) 45%, transparent);
	display: grid;
	place-items: center;
	font-family: Lora, serif;
	color: var(--petrol);
	margin-bottom: 20px;
}
.dark .num {
	color: var(--text);
}
.pull {
	margin: 56px auto 0;
	max-width: 820px;
	border-left: 2px solid var(--sand);
	padding-left: 26px;
	font-family: Lora, serif;
	font-style: italic;
	font-size: 1.15rem;
	color: var(--muted);
}

/* ---------- Issues ---------- */
.alt {
	background: color-mix(in oklab, var(--sand) 24%, var(--bg));
}
.two-col {
	display: grid;
	gap: 44px;
	grid-template-columns: 1fr;
	align-items: start;
}
@media (min-width: 960px) {
	.two-col {
		grid-template-columns: 1fr 1.15fr;
		gap: 64px;
	}
}
.issues {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
}
@media (min-width: 640px) {
	.issues {
		grid-template-columns: 1fr 1fr;
		column-gap: 34px;
	}
}
.issues li {
	display: flex;
	gap: 14px;
	padding: 17px 0;
	border-bottom: 1px solid var(--line);
}
.issues i {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--petrol);
	margin-top: 9px;
	flex: none;
}

/* ---------- About ---------- */
.about img {
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 26px;
	box-shadow: var(--shadow);
	object-position: 43%;
}
.creds {
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
	font-size: 0.92rem;
	color: var(--muted);
}
.creds li {
	display: flex;
	gap: 10px;
	padding: 4px 0;
}
.creds li::before {
	content: "—";
	color: var(--sand);
}

/* ---------- FAQ ---------- */
.faq {
	border-top: 1px solid var(--line);
}
.faq details {
	border-bottom: 1px solid var(--line);
}
.faq summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 22px 0;
	font-family: Lora, serif;
	font-size: 1.1rem;
}
.faq summary::-webkit-details-marker {
	display: none;
}
.faq summary::after {
	content: "+";
	flex: none;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	border: 1px solid var(--line);
	display: grid;
	place-items: center;
	color: var(--petrol);
	transition: transform 0.2s ease;
}
.faq details[open] summary::after {
	transform: rotate(45deg);
}
.faq p {
	margin: 0 0 26px;
	color: var(--muted);
	max-width: 64ch;
}

/* ---------- Final CTA / Footer ---------- */
.final {
	text-align: center;
}
.final blockquote {
	font-size: clamp(1.3rem, 2.6vw, 1.85rem);
	font-style: italic;
	line-height: 1.5;
	margin: 0 auto 34px;
	max-width: 760px;
}
footer {
	border-top: 1px solid var(--line);
	padding: 44px 0;
}
.footer-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	justify-content: space-between;
	align-items: center;
}
.footer-links {
	display: flex;
	gap: 24px;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}
.footer-links a {
	text-decoration: none;
}
.footer-links a:hover {
	color: var(--petrol);
}
.disclaimer {
	font-size: 10.5px;
	color: var(--soft);
	max-width: 320px;
	line-height: 1.6;
}
.skip {
	position: absolute;
	left: -9999px;
}
.skip:focus {
	left: 16px;
	top: 16px;
	background: var(--surface);
	padding: 10px 16px;
	border-radius: 8px;
	z-index: 50;
}
