/* =============================================================================
   Laux Brasil — folha de estilo principal
   Escrita à mão a partir do layout no Figma. Sem framework, sem build step:
   o arquivo é servido como está e versionado por filemtime.

   Sumário
   01. Tokens
   02. Reset e base
   03. Tipografia
   04. Layout
   05. Componentes (botões, badges, cards, paginação, breadcrumbs)
   06. Cabeçalho e menu
   07. Rodapé
   08. Home
   09. Sobre
   10. Marcas
   11. Blog
   12. Conteúdo do editor
   13. Utilitários e acessibilidade
   ========================================================================== */

/* -----------------------------------------------------------------------------
   01. Tokens
   Valores retirados das variáveis e dos estilos de texto do arquivo do Figma.
-------------------------------------------------------------------------- */
:root {
	/* Cores */
	--laux-primary: #ffc400;
	--laux-primary-300: #fff3cc;
	--laux-black: #1d1d1d;
	--laux-ink: #111111;
	--laux-pure-black: #000000;
	--laux-white: #ffffff;
	--laux-surface: #f5f5f5;
	--laux-line: #cccccc;
	--laux-line-strong: #b3b3b3;
	--laux-muted: #666666;

	/* Tipografia */
	--laux-font: "Inria Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

	--laux-text-xs: 0.75rem;    /* 12 / 16 */
	--laux-text-sm: 0.875rem;   /* 14 / 20 */
	--laux-text-base: 1rem;     /* 16 / 24 */
	--laux-text-lg: 1.125rem;   /* 18 / 28 */
	--laux-text-xl: 1.25rem;    /* 20 / 28 */
	--laux-text-2xl: 1.5rem;    /* 24 / 32 */
	--laux-text-5xl: 3rem;      /* 48 / 48 */

	/* Grade: 1248px de conteúdo com 96px de respiro em 1440px */
	--laux-container: 1440px;
	--laux-gutter: clamp(1.25rem, 6.6667vw, 6rem);
	--laux-section-y: 5.5rem;   /* 88px */
	--laux-gap: 1.5rem;         /* 24px */

	/* Movimento */
	--laux-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--laux-speed: 220ms;
}

/* -----------------------------------------------------------------------------
   02. Reset e base
-------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	/* Compensa o cabeçalho fixo ao pular para uma âncora. */
	scroll-padding-top: 12rem;
}

body {
	margin: 0;
	background-color: var(--laux-surface);
	color: var(--laux-black);
	font-family: var(--laux-font);
	font-size: var(--laux-text-base);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* `clip` e não `hidden`: hidden transformaria o body em contêiner de rolagem,
   o que quebra o position:sticky da linha do tempo. Fica só no body para não
   propagar overflow para o viewport pelo elemento raiz. */
body {
	overflow-x: clip;
}

img,
picture,
video,
svg {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

figure {
	margin: 0;
}

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

/* Nada de outline duplo em fundo amarelo. */
.is-yellow-surface :focus-visible {
	outline-color: var(--laux-ink);
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* -----------------------------------------------------------------------------
   03. Tipografia
-------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1;
}

p {
	margin: 0;
}

.t-display {
	font-size: clamp(2rem, 1.5rem + 2.2vw, var(--laux-text-5xl));
	line-height: 1;
	font-weight: 700;
}

.t-display--light {
	font-weight: 400;
}

.t-lead {
	font-size: var(--laux-text-base);
	line-height: 1.5;
	font-weight: 400;
}

.t-xl {
	font-size: var(--laux-text-xl);
	line-height: 1.4;
	font-weight: 700;
}

.t-2xl {
	font-size: var(--laux-text-2xl);
	line-height: 1.3333;
	font-weight: 400;
}

.t-lg-bold {
	font-size: var(--laux-text-lg);
	line-height: 1.5556;
	font-weight: 700;
}

.t-meta {
	font-size: var(--laux-text-xs);
	line-height: 1.3333;
	font-weight: 700;
}

/* -----------------------------------------------------------------------------
   04. Layout
-------------------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--laux-container);
	margin-inline: auto;
	padding-inline: var(--laux-gutter);
}

.section {
	padding-block: var(--laux-section-y);
}

.section--surface {
	background-color: var(--laux-surface);
}

.section--dark {
	background-color: var(--laux-pure-black);
	color: var(--laux-white);
}

.section__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
	max-width: 51.25rem; /* 820px */
	margin-inline: auto;
}

/* "Conheça nossas marcas" usa um bloco de texto mais estreito. */
.section__head--narrow {
	max-width: 34.375rem; /* 550px */
}

.section__head + * {
	margin-top: 2.4375rem; /* 39px */
}

.section__title {
	max-width: 49.5rem; /* 792px */
}

.section__desc {
	max-width: 43.25rem; /* 692px */
}

.section__head--narrow .section__title,
.section__head--narrow .section__desc {
	max-width: none;
}

.divider {
	height: 1px;
	border: 0;
	margin: 0;
	background-color: var(--laux-line);
}

/* -----------------------------------------------------------------------------
   05. Componentes
-------------------------------------------------------------------------- */

/* Botão-link com sublinhado que cresce no hover (comportamento da "Line 5" do Figma). */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	font-size: var(--laux-text-sm);
	line-height: 1.4286;
	font-weight: 700;
	text-transform: uppercase;
	transition: color var(--laux-speed) var(--laux-ease), background-color var(--laux-speed) var(--laux-ease);
}

.btn__label {
	position: relative;
	display: inline-block;
	padding-block: 0.75rem;
}

.btn__label::after {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	bottom: 0.5rem;
	width: 0;
	height: 2px;
	background-color: currentcolor;
	transition: width var(--laux-speed) var(--laux-ease);
}

.btn:hover .btn__label::after,
.btn:focus-visible .btn__label::after {
	width: 100%;
}

.btn__icon {
	width: 1rem;
	height: 1rem;
	flex: none;
}

.btn--link {
	color: var(--laux-primary);
}

.btn--link-dark {
	color: var(--laux-ink);
}

.btn--solid {
	background-color: var(--laux-primary);
	color: var(--laux-black);
	padding-inline: 1rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn--solid .btn__label {
	padding-block: 0.75rem;
}

.btn--solid .btn__label::after {
	display: none;
}

.btn--solid:hover,
.btn--solid:focus-visible {
	background-color: #e6b000;
}

/* Botão retangular amarelo dos cards de diferencial (110×30 no layout). */
.btn--chip {
	background-color: var(--laux-primary);
	color: var(--laux-black);
	min-width: 6.875rem;
	padding: 0.3125rem 0.6875rem;
	gap: 0.375rem;
}

.btn--chip .btn__label {
	padding-block: 0;
}

.btn--chip .btn__label::after {
	display: none;
}

/* O ícone exportado do Figma é um "×"; girado 45° ele vira o "+" do layout,
   e voltar a 0° dá o "fechar" quando o card está aberto. */
.btn--chip .btn__icon {
	width: 0.75rem;
	height: 0.75rem;
	transform: rotate(45deg);
	transition: transform var(--laux-speed) var(--laux-ease);
}

.badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 1.375rem;
	padding: 0.125rem 0.625rem;
	border: 1px solid var(--laux-line-strong);
	border-radius: 999px;
	background-color: var(--laux-line);
	color: var(--laux-ink);
	font-size: var(--laux-text-xs);
	line-height: 1.3333;
	font-weight: 700;
	text-transform: uppercase;
}

/* Card de post — medidas do componente "Blog Card". */
.card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	overflow: hidden;
	background-color: var(--laux-white);
	border: 1px solid var(--laux-primary-300);
	border-radius: 10px;
	height: 100%;
	transition: transform var(--laux-speed) var(--laux-ease), box-shadow var(--laux-speed) var(--laux-ease);
}

.card:hover,
.card:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(17, 17, 17, 0.1);
}

.card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 510 / 287;
	overflow: hidden;
	background-color: var(--laux-line);
}

.card__media::after {
	/* Camada de cor amarela do layout, em mix-blend-mode color. */
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(255, 184, 0, 0.2);
	mix-blend-mode: color;
	pointer-events: none;
}

.card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	width: 100%;
	flex: 1;
}

.card__cat {
	font-size: var(--laux-text-xs);
	line-height: 1.3333;
	font-weight: 700;
	color: var(--laux-ink);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.card__title {
	font-size: var(--laux-text-xl);
	line-height: 1.4;
	font-weight: 700;
	color: var(--laux-black);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card__title a::after {
	/* Área de clique cobre o card inteiro sem aninhar links. */
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

.card__excerpt {
	font-size: var(--laux-text-base);
	line-height: 1.5;
	color: var(--laux-black);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card__date {
	font-size: var(--laux-text-xs);
	line-height: 1.3333;
	font-weight: 700;
	color: var(--laux-ink);
	opacity: 0.6;
}

.card__cta {
	margin-top: auto;
}

.card--linked {
	position: relative;
}

.card--linked .card__cat,
.card--linked .card__cta {
	position: relative;
	z-index: 2;
}

/* Variante horizontal usada em "Em destaque". */
.card--wide {
	flex-direction: row;
	align-items: stretch;
}

.card--wide .card__media {
	width: 8.5rem;
	flex: none;
	aspect-ratio: auto;
}

.card--wide .card__title {
	font-size: var(--laux-text-xl);
}

@media (min-width: 48rem) {
	.card--wide .card__media {
		width: 13.75rem;
	}
}

.pagination {
	margin-top: 3rem;
}

.pagination__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	font-size: var(--laux-text-sm);
	font-weight: 700;
}

.pagination__list .page-numbers {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	min-width: 2rem;
	height: 2rem;
	padding-inline: 0.5rem;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 6px;
	color: var(--laux-ink);
	transition: border-color var(--laux-speed) var(--laux-ease), background-color var(--laux-speed) var(--laux-ease);
}

.pagination__list a.page-numbers:hover {
	border-color: var(--laux-line);
	background-color: var(--laux-white);
}

.pagination__list .page-numbers.current {
	border-color: var(--laux-primary);
	background-color: var(--laux-white);
}

.pagination__arrow {
	width: 0.75rem;
	height: 0.75rem;
	transform: rotate(45deg);
}

.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	font-size: var(--laux-text-xs);
	line-height: 1.3333;
}

.breadcrumbs__item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.75);
}

.breadcrumbs__item a {
	color: var(--laux-primary);
}

.breadcrumbs__item a:hover {
	text-decoration: underline;
}

.breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.5);
}

/* Filtro de categorias — pílulas retangulares do layout do blog. */
.cat-filter__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.cat-filter__link {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 0.875rem;
	border: 1px solid var(--laux-line);
	background-color: var(--laux-white);
	color: var(--laux-ink);
	font-size: var(--laux-text-xs);
	line-height: 1.3333;
	font-weight: 700;
	text-transform: uppercase;
	transition: background-color var(--laux-speed) var(--laux-ease), border-color var(--laux-speed) var(--laux-ease);
}

.cat-filter__link:hover,
.cat-filter__link.is-current {
	background-color: var(--laux-primary);
	border-color: var(--laux-primary);
}

/* -----------------------------------------------------------------------------
   06. Cabeçalho e menu
-------------------------------------------------------------------------- */
.site-header {
	position: absolute;
	inset-inline: 0;
	top: 0;
	z-index: 50;
	padding-top: 3.125rem; /* 50px */
	transition: background-color var(--laux-speed) var(--laux-ease), padding var(--laux-speed) var(--laux-ease);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: 1.5rem;
}

.site-header__logo {
	display: block;
	flex: none;
	width: 14.25rem; /* 228px */
	max-width: 100%;
}

.site-header__logo svg {
	width: 100%;
	height: auto;
}

.site-header__logo .logo--dark {
	display: none;
}

/* Estado "scroll": barra amarela com a versão positiva do logo. */
.site-header.is-stuck {
	position: fixed;
	padding-top: 0;
	background-color: var(--laux-primary);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.site-header.is-stuck .site-header__inner {
	padding-block: 2rem; /* 32px */
}

.site-header.is-stuck .logo--light {
	display: none;
}

.site-header.is-stuck .logo--dark {
	display: block;
}

.site-header.is-stuck .nav-link {
	color: var(--laux-ink);
}

.site-header.is-stuck .nav-link.is-current {
	background-color: var(--laux-white);
}

/* Páginas internas: o topo escuro já está no conteúdo, o header só se sobrepõe.
   O :not(.is-stuck) evita que este seletor, de mesma especificidade e mais
   abaixo no arquivo, anule o padding-top: 0 do estado fixo. */
.has-solid-header .site-header:not(.is-stuck) {
	padding-top: 3rem;
}

.primary-nav .nav-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.5rem;
}

.nav-link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.75rem 1rem;
	color: var(--laux-primary-300);
	font-size: var(--laux-text-sm);
	line-height: 1.4286;
	font-weight: 700;
	text-transform: uppercase;
	transition: color var(--laux-speed) var(--laux-ease), background-color var(--laux-speed) var(--laux-ease);
}

.nav-link:hover {
	color: var(--laux-primary);
}

.nav-link.is-current {
	background-color: var(--laux-primary);
	color: var(--laux-ink);
}

.nav-link__arrow {
	width: 0.75rem;
	height: 0.75rem;
}

/* Botão MENU do mobile */
.menu-toggle {
	display: none;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background-color: var(--laux-primary);
	color: var(--laux-ink);
	font-size: var(--laux-text-sm);
	line-height: 1.4286;
	font-weight: 700;
	text-transform: uppercase;
}

.menu-toggle__icon {
	position: relative;
	width: 1.125rem;
	height: 0.75rem;
	flex: none;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after,
.menu-toggle__icon span {
	content: "";
	position: absolute;
	inset-inline: 0;
	height: 2px;
	background-color: currentcolor;
	transition: transform var(--laux-speed) var(--laux-ease), opacity var(--laux-speed) var(--laux-ease);
}

.menu-toggle__icon::before {
	top: 0;
}

.menu-toggle__icon span {
	top: 5px;
}

.menu-toggle__icon::after {
	bottom: 0;
}

/* Overlay de navegação em tela cheia */
.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	flex-direction: column;
	background-color: #333333;
	color: var(--laux-white);
	padding: 3.4375rem 1.5rem 2rem;
	transform: translateY(-100%);
	visibility: hidden;
	transition: transform 320ms var(--laux-ease), visibility 320ms var(--laux-ease);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.mobile-menu.is-open {
	transform: translateY(0);
	visibility: visible;
}

.mobile-menu__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.mobile-menu__logo {
	width: 8.0625rem; /* 129px */
}

.mobile-menu__nav {
	margin-top: 4.375rem;
}

.mobile-menu__nav .nav-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.mobile-menu__nav .nav-link {
	padding: 0.5rem 0;
	color: var(--laux-white);
	font-size: var(--laux-text-lg);
}

.mobile-menu__nav .nav-link.is-current {
	background-color: transparent;
	color: var(--laux-primary);
}

body.menu-open {
	overflow: hidden;
}

@media (max-width: 63.9375rem) {
	.primary-nav {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.site-header:not(.is-stuck) {
		padding-top: 2rem;
	}

	.site-header__inner {
		padding-block: 1.25rem;
	}

	.site-header__logo {
		width: 8.0625rem;
	}

	.site-header.is-stuck .site-header__inner {
		padding-block: 1rem;
	}
}

/* -----------------------------------------------------------------------------
   07. Rodapé
-------------------------------------------------------------------------- */
.site-footer {
	background-color: var(--laux-pure-black);
	color: var(--laux-white);
	padding-block: 5.625rem; /* 90px */
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.125rem; /* 50px */
}

.site-footer__grid {
	width: 100%;
	max-width: 64.875rem; /* 1038px */
}

.site-footer__brand {
	display: flex;
	align-items: center;
	gap: 2.0625rem; /* 33px */
}

.site-footer__logo {
	width: 8.9375rem; /* 143px */
	flex: none;
}

.site-footer__slogan {
	font-size: var(--laux-text-lg);
	line-height: 1.5556;
}

.site-footer__cols {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr));
	gap: 2rem;
	align-items: start;
}

.footer-col__title {
	font-size: var(--laux-text-base);
	line-height: 1.5;
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.footer-col .nav-list {
	display: flex;
	flex-direction: column;
}

.footer-col .nav-link {
	padding: 0.75rem 0;
	color: var(--laux-primary);
	background: none;
}

.footer-col .nav-link.is-current {
	background: none;
	color: var(--laux-primary);
}

.footer-col .nav-link .nav-link__label {
	position: relative;
}

.footer-col .nav-link:hover .nav-link__label {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.footer-address {
	font-size: var(--laux-text-base);
	line-height: 1.5;
	font-style: normal;
}

.footer-address p + p {
	margin-top: 1.5rem;
}

/* O e-mail é o único link dentro do endereço: herda o amarelo dos demais links
   do rodapé e ganha o mesmo sublinhado que cresce no hover. */
.footer-address__email {
	color: var(--laux-primary);
	position: relative;
	display: inline-block;
}

.footer-address__email::after {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background-color: currentcolor;
	transition: width var(--laux-speed) var(--laux-ease);
}

.footer-address__email:hover::after,
.footer-address__email:focus-visible::after {
	width: 100%;
}

.footer-social .nav-link,
.footer-social__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 0;
	color: var(--laux-primary);
	font-size: var(--laux-text-sm);
	line-height: 1.4286;
	font-weight: 700;
	text-transform: uppercase;
}

.footer-social__link svg {
	width: 1rem;
	height: 1rem;
	flex: none;
}

.footer-social__link:hover span {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.site-footer__rule {
	width: 100%;
	max-width: 78rem; /* 1248px */
	height: 1px;
	background-color: rgba(255, 255, 255, 0.25);
}

.site-footer__bottom {
	font-size: var(--laux-text-base);
	line-height: 1.5;
	text-align: center;
}

@media (max-width: 63.9375rem) {
	.site-footer__cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem 1.5rem;
	}

	.site-footer__brand {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
	}
}

@media (max-width: 30rem) {
	.site-footer__cols {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* -----------------------------------------------------------------------------
   08. Home
-------------------------------------------------------------------------- */

/* Hero com vídeo do manifesto */
.hero {
	position: relative;
	min-height: 42.875rem; /* 686px */
	display: flex;
	align-items: center;
	background-color: var(--laux-ink);
	color: var(--laux-white);
	overflow: hidden;
	isolation: isolate;
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
	overflow: hidden;
}

.hero__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
}

/* O iframe do YouTube não aceita object-fit, então ele é sobredimensionado e
   centralizado: cobre o hero sem letterbox e joga a marca d'água e os controles
   do player para fora da área visível.
   A largura mínima de 103rem vem de 42.875rem (altura do hero) × 16/9 × 1,35 —
   o fator garante a cobertura mesmo quando a janela é mais estreita que isso. */
.hero__video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: max(135%, 103rem);
	height: auto;
	aspect-ratio: 16 / 9;
	transform: translate(-50%, -50%);
	border: 0;
	pointer-events: none;
	opacity: 0;
	transition: opacity 600ms var(--laux-ease);
}

.hero__video.is-ready {
	opacity: 1;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: linear-gradient(270deg, rgba(17, 17, 17, 0) 0%, var(--laux-ink) 59%);
}

.hero__content {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 2.125rem; /* 34px */
	max-width: 31.625rem; /* 506px */
	padding-block: 6rem 3rem;
}

.hero__text {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hero__title {
	color: var(--laux-primary);
}

.hero__author {
	margin-bottom: 0;
}

@media (max-width: 47.9375rem) {
	.hero {
		min-height: 46.75rem; /* 748px */
		align-items: flex-end;
		text-align: center;
	}

	.hero__content {
		max-width: none;
		align-items: center;
		padding-block: 0 3rem;
		gap: 1.75rem;
	}

	.hero__text {
		align-items: center;
	}

	.hero__overlay {
		background-image: linear-gradient(180deg, rgba(17, 17, 17, 0.35) 0%, rgba(17, 17, 17, 0.75) 45%, var(--laux-ink) 100%);
	}

	/* O recorte vertical do poster precisa manter o rosto enquadrado. */
	.hero__poster {
		object-position: 55% 25%;
	}
}

/* Modal do manifesto */
/* O <dialog> fechado precisa continuar com o display:none do agente do usuário —
   por isso só o estado [open] recebe layout. */
.video-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	padding: 1.5rem;
	background-color: rgba(0, 0, 0, 0.85);
	border: 0;
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
}

.video-modal[open] {
	display: grid;
	place-items: center;
}

.video-modal::backdrop {
	background-color: rgba(0, 0, 0, 0.85);
}

.video-modal__frame {
	position: relative;
	width: min(64rem, 100%);
	aspect-ratio: 16 / 9;
	background-color: #000;
}

.video-modal__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.video-modal__close {
	position: absolute;
	top: -3rem;
	right: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--laux-white);
	font-size: var(--laux-text-sm);
	font-weight: 700;
	text-transform: uppercase;
}

/* Conheça nossas marcas */
.brands__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--laux-gap);
}

/* A grade estica o <li> até a altura da linha; sem isto o cartão só cresce até o
   próprio conteúdo e o de texto mais longo fica mais alto que os vizinhos. */
.brands__grid > li {
	display: flex;
}

.brand-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	min-height: 22.25rem; /* 356px */
	padding: 3.125rem 1.5rem 1.5rem;
	background-color: var(--laux-primary);
	color: var(--laux-ink);
	text-align: center;
	transition: transform var(--laux-speed) var(--laux-ease), box-shadow var(--laux-speed) var(--laux-ease);
}

.brand-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(17, 17, 17, 0.18);
}

.brand-card__logo {
	display: grid;
	place-items: center;
	min-height: 5.375rem; /* 86px, o maior dos três logos */
}

.brand-card__logo svg {
	height: auto;
}

.brand-card__text {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex: 1;
	align-self: stretch; /* ocupa a largura do cartão para o alinhamento valer */
	text-align: left;
}

.brand-card__question {
	font-weight: 700;
}

.brand-card__cta {
	margin-top: auto;
}

@media (max-width: 61.25rem) {
	.brands__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Diferenciais */
.features__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: var(--laux-gap);
	align-items: stretch;
}

/* A célula segura a altura da linha (240px do Figma). No desktop o cartão sai do
   fluxo e cresce para baixo ao abrir, então revelar o texto não empurra a grade. */
.features__cell {
	position: relative;
	min-height: 15rem; /* 240px */
	display: flex;
}

.feature {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	padding: 1.5rem;
	border: 1px solid var(--laux-ink);
	background-color: transparent;
	transition:
		background-color 260ms var(--laux-ease),
		border-color 260ms var(--laux-ease),
		box-shadow 260ms var(--laux-ease);
}

.feature__icon {
	width: 3rem;
	height: 3rem;
	color: var(--laux-primary);
	flex: none;
	transition: color 260ms var(--laux-ease);
}

.feature__title {
	font-size: var(--laux-text-2xl);
	line-height: 1.3333;
	font-weight: 400;
	color: var(--laux-ink);
	margin-block: 1.5rem;
}

.feature__foot {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}

/* 0fr → 1fr anima altura automática sem precisar saber o tamanho do texto. */
.feature__reveal {
	display: grid;
	grid-template-rows: 0fr;
	width: 100%;
	transition: grid-template-rows 320ms var(--laux-ease);
}

.feature__reveal-inner {
	overflow: hidden;
	min-height: 0;
}

.feature__detail {
	font-size: var(--laux-text-base);
	line-height: 1.5;
	color: var(--laux-ink);
	opacity: 0;
	transition: opacity 200ms var(--laux-ease);
}

.feature__toggle {
	margin-top: 1rem;
	max-height: 1.875rem; /* 30px */
	overflow: hidden;
	transition:
		opacity 180ms var(--laux-ease),
		max-height 260ms var(--laux-ease),
		margin-top 260ms var(--laux-ease);
}

.feature__toggle[aria-expanded="true"] .btn__icon {
	transform: rotate(0deg);
}

/* Sem JS o texto fica sempre visível e o botão não aparece. */
.no-js .feature__reveal {
	grid-template-rows: 1fr;
}

.no-js .feature__detail {
	opacity: 1;
}

/* ---- Estado aberto: fundo e bordas amarelos, textos pretos ---- */
.feature.is-open,
.feature:focus-within {
	background-color: var(--laux-primary);
	border-color: var(--laux-primary);
}

.feature.is-open .feature__icon,
.feature:focus-within .feature__icon {
	color: var(--laux-ink);
}

.feature.is-open .feature__reveal,
.feature:focus-within .feature__reveal {
	grid-template-rows: 1fr;
}

.feature.is-open .feature__detail,
.feature:focus-within .feature__detail {
	opacity: 1;
	transition-delay: 80ms;
}

/* Em quem tem mouse, passar o cursor faz tudo: não é preciso clicar.
   O botão continua no ar quando o foco é por teclado — ele é a única
   forma de abrir o cartão sem ponteiro. */
@media (hover: hover) and (pointer: fine) {
	/* Sempre fora do fluxo — trocar de position no :hover causaria tremida.
	   A célula mantém a altura da linha; o cartão cresce por cima dos vizinhos. */
	.feature {
		position: absolute;
		inset: 0 0 auto 0;
		min-height: 100%;
	}

	.feature:hover,
	.feature:focus-within,
	.feature.is-open {
		z-index: 3;
	}

	.feature:hover {
		background-color: var(--laux-primary);
		border-color: var(--laux-primary);
		box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.12);
	}

	.feature:hover .feature__icon {
		color: var(--laux-ink);
	}

	.feature:hover .feature__reveal {
		grid-template-rows: 1fr;
	}

	.feature:hover .feature__detail {
		opacity: 1;
		transition-delay: 80ms;
	}

	.feature:hover:not(:focus-within) .feature__toggle {
		opacity: 0;
		max-height: 0;
		margin-top: 0;
		pointer-events: none;
	}
}

@media (max-width: 79.9375rem) {
	.features__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 47.9375rem) {
	.features__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 1.5rem;
	}

	.features__cell {
		min-height: 0;
	}

	.feature__title {
		margin-block: 1rem;
	}
}

/* Bloco institucional com números
   Medidas do Figma (150:3743, 1440×919): padding-top 112, coluna de texto 611,
   gap 24, cartão de número 156 de altura com padding 16, foto 278 de altura.
   O restante da altura é a foto do ipê aparecendo abaixo do conteúdo. */
.institutional {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background-color: #8ec6dd;
	min-height: 57.4375rem; /* 919px */
	padding-top: 7rem;      /* 112px */
	padding-bottom: 0;
	color: var(--laux-ink);
}

/* Enquadramento do Figma: 123,01% × 129,7%, deslocada -0,6% / -10,98%. */
.institutional__bg {
	position: absolute;
	left: -0.6%;
	top: -10.98%;
	width: 123.01%;
	height: 129.7%;
	max-width: none;
	object-fit: cover;
	z-index: -1;
	pointer-events: none;
}

/* 611 : 613 do Figma — proporcional para não espremer os cartões entre 1248 e 1440. */
.institutional__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 611fr) minmax(0, 613fr);
	gap: 1.5rem;            /* 24px */
	align-items: start;
}

.institutional__text {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;            /* linha em branco entre parágrafos */
	font-size: 1.125rem;    /* 18px */
	line-height: 1.3333;    /* 24px */
}

/* No Figma estes números estão em vermelho — marcação de "preencher depois",
   não escolha de cor. Amarelo sobre o céu dá 1,35:1 de contraste (AA pede 4,5:1),
   então o destaque fica no peso da fonte, mantendo 8,75:1 de legibilidade. */
.institutional__highlight {
	font-weight: 700;
}

.institutional__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;            /* 24px */
}

.stat {
	display: flex;
	flex-direction: column;
	background-color: var(--laux-ink);
	color: var(--laux-primary);
	overflow: hidden;
}

.stat__head {
	padding: 1rem;          /* 16px */
	height: 9.75rem;        /* 156px */
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.25rem;           /* 4px */
}

.stat__value {
	font-size: 3rem;        /* 48px */
	line-height: 1;         /* 48px */
	font-weight: 700;
}

.stat__label {
	font-size: 1.125rem;    /* 18px */
	line-height: 1.5556;    /* 28px */
}

.stat__media {
	height: 17.375rem;      /* 278px */
	overflow: hidden;
}

.stat__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 61.25rem) {
	.institutional {
		min-height: 0;
		padding-top: 4rem;
		padding-bottom: 20rem; /* espaço para a árvore aparecer */
	}

	.institutional__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 2.5rem;
	}

	.stat__head {
		height: auto;
		min-height: 8rem;
	}

	.stat__value {
		font-size: clamp(1.75rem, 1.2rem + 1.6vw, 3rem);
	}

	.stat__media {
		height: auto;
		aspect-ratio: 294 / 278;
	}
}

@media (max-width: 30rem) {
	.institutional__stats {
		gap: 0.75rem;
	}

	.stat__label {
		font-size: var(--laux-text-base);
	}
}

/* Chamada para a linha do tempo */
/* Figma 150:6699: padding 112, texto 643, gap 39, imagem 566×278 alinhada ao topo. */
.timeline-cta {
	position: relative;
	background-color: var(--laux-pure-black);
	color: var(--laux-white);
	padding-block: 7rem; /* 112px */
	overflow: hidden;
}

.timeline-cta__grid {
	display: grid;
	grid-template-columns: minmax(0, 643fr) minmax(0, 566fr); /* proporção do Figma */
	gap: 2.4375rem;      /* 39px */
	align-items: start;
}

.timeline-cta__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;           /* 16px */
}

/* PNG com fundo transparente: exibido inteiro, sem recorte. */
.timeline-cta__media {
	width: 100%;
	max-width: 35.375rem; /* 566px */
}

.timeline-cta__media img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 61.25rem) {
	.timeline-cta {
		padding-block: var(--laux-section-y);
	}

	.timeline-cta__grid {
		grid-template-columns: minmax(0, 1fr);
		justify-items: stretch;
	}

	.timeline-cta__media {
		max-width: none;
		margin-inline: auto;
	}

	.timeline-cta__content {
		align-items: center;
		text-align: center;
		max-width: none;
	}

	.timeline-cta__content .btn--solid {
		width: 100%;
	}
}

/* -----------------------------------------------------------------------------
   09. Sobre
-------------------------------------------------------------------------- */
.page-hero {
	position: relative;
	background-color: var(--laux-ink);
	color: var(--laux-white);
	overflow: hidden;
	isolation: isolate;
}

.page-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
}

.page-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, var(--laux-ink) 0%, rgba(17, 17, 17, 0.85) 40%, rgba(17, 17, 17, 0.25) 100%);
}

.page-hero__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.5rem;
	padding-block: 14rem 4rem;
	max-width: 38.25rem; /* 612px */
}

.page-hero__title {
	color: var(--laux-primary);
}

.page-hero__text {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (max-width: 63.9375rem) {
	.page-hero__inner {
		padding-block: 9rem 3rem;
	}
}

/* Linha do tempo com anos fixos */
.timeline {
	background-color: var(--laux-ink);
	color: var(--laux-white);
	padding-block: var(--laux-section-y);
}

.timeline .section__head {
	color: var(--laux-white);
}

.timeline__list {
	position: relative;
	margin-top: 4rem;
}

.timeline__item {
	position: relative;
	display: grid;
	grid-template-columns: 10.5rem 3rem minmax(0, 1fr);
	gap: 0 1.5rem;
	padding-bottom: 5rem;
}

.timeline__year {
	font-size: clamp(2rem, 1.4rem + 2.4vw, var(--laux-text-5xl));
	line-height: 1;
	font-weight: 700;
	color: var(--laux-white);
	text-align: right;
	transition: color 320ms var(--laux-ease);
}

.timeline__item.is-active .timeline__year {
	color: var(--laux-primary);
}

/* A coluna dos anos acompanha a rolagem (position: sticky, CSS puro). */
.timeline__year-wrap {
	position: sticky;
	top: 14rem;
	align-self: start;
}

.timeline__rail {
	position: relative;
	display: flex;
	justify-content: center;
}

.timeline__rail::before {
	content: "";
	position: absolute;
	inset-block: 0;
	width: 2px;
	background-color: rgba(255, 255, 255, 0.25);
}

.timeline__item:last-child .timeline__rail::before {
	bottom: auto;
	height: 1.5rem;
}

.timeline__dot {
	position: sticky;
	top: 15rem;
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background-color: var(--laux-white);
	transition: background-color 320ms var(--laux-ease), transform 320ms var(--laux-ease);
	z-index: 1;
}

.timeline__item.is-active .timeline__dot {
	background-color: var(--laux-primary);
	transform: scale(1.15);
}

/* Preenchimento amarelo que acompanha o scroll, controlado por --laux-progress. */
.timeline__progress {
	position: absolute;
	left: calc(10.5rem + 1.5rem + 1.5rem - 1px);
	top: 0;
	width: 2px;
	background-color: var(--laux-primary);
	height: calc(var(--laux-progress, 0) * 1%);
	max-height: 100%;
	transition: height 120ms linear;
	pointer-events: none;
	z-index: 1;
}

.timeline__content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-top: 0.25rem;
}

.timeline__title {
	font-size: var(--laux-text-xl);
	line-height: 1.4;
	font-weight: 700;
}

.timeline__text {
	color: rgba(255, 255, 255, 0.75);
	max-width: 30rem;
}

.timeline__media {
	margin-top: 0.5rem;
	max-width: 30rem;
}

.timeline__media img {
	width: 100%;
	height: auto;
}

@media (max-width: 47.9375rem) {
	.timeline__item {
		grid-template-columns: 3.75rem minmax(0, 1fr);
		gap: 0 1rem;
		padding-bottom: 3rem;
	}

	.timeline__rail {
		display: none;
	}

	.timeline__progress {
		display: none;
	}

	.timeline__year-wrap {
		position: static;
	}

	.timeline__year {
		text-align: left;
		font-size: 1.75rem;
	}
}

/* Propósito, missão e valores */
.pillars {
	background-color: var(--laux-pure-black);
	color: var(--laux-white);
	padding-block: var(--laux-section-y);
}

.pillars__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--laux-gap);
}

.pillar {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.pillar__icon {
	width: 2rem;
	height: 2rem;
	color: var(--laux-primary);
}

.pillar__title {
	font-size: var(--laux-text-xl);
	line-height: 1.4;
	font-weight: 400;
}

.pillar__text {
	color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 61.25rem) {
	.pillars__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* -----------------------------------------------------------------------------
   10. Marcas
-------------------------------------------------------------------------- */
.brands-page {
	background-color: var(--laux-ink);
	color: var(--laux-white);
	padding-bottom: var(--laux-section-y);
}

.brands-page__hero {
	padding-block: 14rem 4rem;
}

.brands-page__title {
	color: var(--laux-primary);
	max-width: 45rem;
}

.brands-page__desc {
	margin-top: 1.5rem;
	max-width: 41.25rem; /* 660px */
}

.brand-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--laux-gap);
	align-items: stretch;
}

.brand-row + .brand-row {
	margin-top: 3.125rem;
}

.brand-row__panel {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 1.5rem;
	padding: 3rem;
	background-color: var(--laux-primary);
	color: var(--laux-ink);
}

.brand-row__logo {
	min-height: 5.375rem;
	display: grid;
	place-items: center start;
}

.brand-row__media {
	overflow: hidden;
	background-color: #000;
	aspect-ratio: 714 / 400;
}

.brand-row__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Alterna a ordem a cada linha, como no layout. */
.brand-row:nth-child(even) .brand-row__panel {
	order: 2;
}

@media (max-width: 61.25rem) {
	.brands-page__hero {
		padding-block: 9rem 3rem;
	}

	.brand-row {
		grid-template-columns: minmax(0, 1fr);
	}

	.brand-row:nth-child(even) .brand-row__panel {
		order: 0;
	}

	.brand-row__panel {
		padding: 2rem 1.5rem;
	}
}

/* -----------------------------------------------------------------------------
   11. Blog
-------------------------------------------------------------------------- */
.blog-hero {
	position: relative;
	background-color: var(--laux-ink);
	color: var(--laux-white);
	min-height: 27.375rem; /* 438px */
	display: flex;
	align-items: flex-end;
	/* Recorte diagonal do layout: canto inferior direito cortado. */
	clip-path: polygon(0 0, 100% 0, 100% 5.6875rem, 89.6% 100%, 0 100%);
}

.blog-hero__inner {
	padding-block: 11rem 5rem;
	text-align: center;
	width: 100%;
}

.blog-hero__title {
	max-width: 40rem;
	margin-inline: auto;
}

.blog-hero__desc {
	max-width: 40rem;
	margin-inline: auto;
	margin-top: 1.5rem;
}

/* Topo das páginas de categoria e do post: alinhado à esquerda. */
.blog-hero--inner {
	align-items: flex-end;
}

.blog-hero--inner .blog-hero__inner {
	text-align: left;
	padding-block: 9rem 4rem;
}

.blog-hero--inner .blog-hero__title,
.blog-hero--inner .blog-hero__desc {
	margin-inline: 0;
	max-width: 45rem;
}

.blog-hero--post {
	min-height: 34.25rem; /* 548px */
	clip-path: polygon(0 0, 100% 0, 100% 9.625rem, 94% 28rem, 15% 100%, 0 26.375rem);
}

.blog-hero__breadcrumbs {
	margin-bottom: 1.5rem;
}

@media (max-width: 47.9375rem) {
	.blog-hero,
	.blog-hero--post {
		min-height: 0;
		clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
	}

	.blog-hero__inner,
	.blog-hero--inner .blog-hero__inner {
		padding-block: 8rem 4rem;
	}
}

.blog-section {
	background-color: var(--laux-surface);
	padding-block: var(--laux-section-y);
}

.blog-section__title {
	font-size: clamp(1.75rem, 1.2rem + 2vw, var(--laux-text-5xl));
	line-height: 1;
	font-weight: 700;
}

.featured {
	display: grid;
	grid-template-columns: minmax(0, 506fr) minmax(0, 718fr);
	gap: var(--laux-gap);
	margin-top: 2rem;
}

.featured__side {
	display: grid;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: var(--laux-gap);
}

@media (max-width: 61.25rem) {
	.featured {
		grid-template-columns: minmax(0, 1fr);
	}
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--laux-gap);
	margin-top: 2.5rem;
}

@media (max-width: 61.25rem) {
	.posts-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 40rem) {
	.posts-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

.blog-section__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	text-align: center;
}

/* Post individual */
.post-single {
	background-color: var(--laux-surface);
	padding-block: var(--laux-section-y);
}

.post-single__inner {
	max-width: 50rem;
	margin-inline: auto;
}

.post-single__footer {
	margin-top: 2.5rem;
	font-size: var(--laux-text-base);
	line-height: 1.5;
}

.post-single__footer a {
	color: var(--laux-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.post-single__footer a:hover {
	color: #c99b00;
}

.post-related {
	border-top: 1px solid var(--laux-line);
	margin-top: 3.5rem;
	padding-top: 3.5rem;
	text-align: center;
}

.post-related__title {
	font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem);
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

/* -----------------------------------------------------------------------------
   12. Conteúdo do editor clássico
-------------------------------------------------------------------------- */
.entry-content {
	font-size: var(--laux-text-base);
	line-height: 1.5;
	color: var(--laux-black);
}

.entry-content > * + * {
	margin-top: 1.5rem;
}

.entry-content h2 {
	font-size: var(--laux-text-2xl);
	line-height: 1.3333;
	margin-top: 2.5rem;
}

.entry-content h3 {
	font-size: var(--laux-text-xl);
	line-height: 1.4;
	margin-top: 2rem;
}

.entry-content a {
	color: var(--laux-ink);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: var(--laux-primary);
	text-decoration-thickness: 2px;
}

.entry-content a:hover {
	background-color: var(--laux-primary);
}

.entry-content ul,
.entry-content ol {
	padding-inline-start: 1.5rem;
}

.entry-content ul {
	list-style: disc;
}

.entry-content ol {
	list-style: decimal;
}

.entry-content li + li {
	margin-top: 0.5rem;
}

.entry-content img,
.entry-content figure {
	max-width: 100%;
	height: auto;
}

.entry-content blockquote {
	margin: 2rem 0;
	padding: 1rem 1.5rem;
	border-left: 4px solid var(--laux-primary);
	font-size: var(--laux-text-lg);
	line-height: 1.5556;
}

.entry-content figcaption {
	margin-top: 0.5rem;
	font-size: var(--laux-text-xs);
	color: var(--laux-muted);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	border: 1px solid var(--laux-line);
	padding: 0.5rem 0.75rem;
	text-align: left;
}

.alignleft {
	float: left;
	margin: 0 1.5rem 1rem 0;
}

.alignright {
	float: right;
	margin: 0 0 1rem 1.5rem;
}

.aligncenter {
	display: block;
	margin-inline: auto;
}

/* -----------------------------------------------------------------------------
   13. Utilitários e acessibilidade
-------------------------------------------------------------------------- */
.screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	top: -100%;
	left: 1rem;
	z-index: 999;
	padding: 0.75rem 1rem;
	background-color: var(--laux-primary);
	color: var(--laux-ink);
	font-weight: 700;
	transition: top var(--laux-speed) var(--laux-ease);
}

.skip-link:focus {
	top: 1rem;
}

.no-js .js-only {
	display: none;
}

.page-simple {
	background-color: var(--laux-surface);
	padding-block: var(--laux-section-y);
}

.page-simple__inner {
	max-width: 50rem;
	margin-inline: auto;
}

.page-simple__title {
	font-size: clamp(2rem, 1.5rem + 2.2vw, var(--laux-text-5xl));
	line-height: 1;
	margin-bottom: 2rem;
}

.error-404 {
	min-height: 60vh;
	display: grid;
	place-items: center;
	text-align: center;
	padding-block: 8rem 4rem;
	background-color: var(--laux-ink);
	color: var(--laux-white);
}

.error-404__code {
	font-size: clamp(4rem, 3rem + 6vw, 8rem);
	line-height: 1;
	color: var(--laux-primary);
}

.search-form {
	display: flex;
	gap: 0.5rem;
	max-width: 26rem;
	margin-inline: auto;
	margin-top: 2rem;
}

.search-form input[type="search"] {
	flex: 1;
	padding: 0.75rem 1rem;
	border: 1px solid var(--laux-line);
	font: inherit;
	background-color: var(--laux-white);
	color: var(--laux-black);
}
