/* =====================================================================
   Empório Pantanal: tema
   Cor, tipografia e componentes. A estrutura (respiro, largura,
   alinhamento) vem de estrutura-texto.css, carregado antes deste.
   ===================================================================== */

:root {
	/* Paleta extraída da logomarca */
	--v9:  #16301B;   /* verde profundo: rodapé e seções escuras */
	--v7:  #214627;   /* verde institucional */
	--v5:  #35603A;
	--v3:  #DCE4D4;   /* tinta clara */
	--lm:  #709432;   /* verde folha: acento, ícones */
	--lm7: #5D7E28;   /* verde de botão: contraste 4.6:1 com branco */
	--cr:  #E9DEB0;   /* creme */
	--brw: #674B24;   /* marrom do pilão */
	--tan: #CBA870;

	--off: #F6F5EF;   /* fundo da página */
	--sur: #EAEEE2;   /* verde muito claro, seção alternada */
	--cre: #F4EFE1;   /* bege claro, seção alternada quente */
	--br:  #FFFFFF;
	--tx:  #1E2B1C;
	--tw:  #5A6857;   /* texto secundário */
	--ln:  #E2E2D6;   /* linhas */

	--radius: 14px;
	--sombra:    0 8px 24px rgba(22, 48, 27, .10);
	--sombra-lg: 0 18px 48px rgba(22, 48, 27, .18);

	--ff-titulo: "Archivo", "Helvetica Neue", Helvetica, sans-serif;
	--ff-texto:  "Karla", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
	margin: 0;
	background: var(--off);
	color: var(--tx);
	font-family: var(--ff-texto);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; }
p { margin: 0; }

a { color: var(--lm7); text-decoration: none; }
a:hover { color: var(--v7); }

:focus-visible { outline: 3px solid var(--lm); outline-offset: 3px; border-radius: 4px; }

/* ------------------------------ tipografia ------------------------- */

h1, h2, h3, h4 { font-family: var(--ff-titulo); margin: 0; color: var(--v9); }

h1 {
	font-weight: 800;
	font-size: clamp(30px, 3.4vw, 46px);
	line-height: 1.06;
	letter-spacing: -.015em;
	text-transform: uppercase;
}

h2 {
	font-weight: 800;
	font-size: clamp(28px, 3.2vw, 46px);
	line-height: 1.08;
	letter-spacing: -.01em;
	text-transform: uppercase;
}

h3 { font-weight: 700; font-size: 22px; line-height: 1.25; }

.wt-label {
	font-family: var(--ff-titulo);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--lm7);
}

.wt-lead  { color: var(--tw); }
.wt-body  { color: var(--tw); }

.wt-rule { width: 64px; height: 4px; border-radius: 2px; background: var(--lm); }

.wt-divider { background: var(--ln); }

.wt-section        { background: var(--off); }
.wt-section--tinta  { background: var(--sur); }
.wt-section--creme  { background: var(--cre); }
.wt-section--verde  { background: var(--v7); }
.wt-section--verde h2, .wt-section--verde h3 { color: #fff; }
.wt-section--verde .wt-label { color: var(--cr); }
.wt-section--verde .wt-lead, .wt-section--verde .wt-body, .wt-section--verde p { color: #CFDAC8; }
.wt-section--verde .wt-rule { background: var(--cr); }
.wt-section--escura { background: var(--v9); }
.wt-section--escura h2, .wt-section--escura h3 { color: #fff; }
.wt-section--escura .wt-label { color: var(--lm); }
.wt-section--escura .wt-lead,
.wt-section--escura .wt-body,
.wt-section--escura p { color: #C6CFC0; }

/* -------------------------------- botões --------------------------- */

.wt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 56px;
	padding-inline: 28px;
	border: 2px solid transparent;
	border-radius: 8px;
	font-family: var(--ff-titulo);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .08em;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	transition: transform .15s ease, background-color .15s ease, color .15s ease;
}
.wt-btn:hover { transform: translateY(-2px); }
.wt-btn svg { flex: 0 0 auto; }

.wt-btn--wa    { background: var(--lm7); color: #fff; }
.wt-btn--wa:hover { background: var(--v5); color: #fff; }

.wt-btn--solid { background: var(--v7); color: #fff; }
.wt-btn--solid:hover { background: var(--v9); color: #fff; }

.wt-btn--ghost { background: transparent; color: var(--v9); border-color: var(--v9); }
.wt-btn--ghost:hover { background: var(--v9); color: #fff; }

.wt-btn--creme { background: var(--cr); color: var(--v9); }
.wt-btn--creme:hover { background: #fff; color: var(--v9); }

.wt-cta-centro { display: flex; justify-content: center; margin-top: var(--wt-space-5); }

/* ---------------------- seções em altura de tela -------------------- */

/* min-height, nunca height: se o conteúdo passar da tela, a seção cresce.
   svh em vez de vh porque a barra do navegador móvel corta o vh. */
.wt-section--tela {
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	/* respiro menor que o das seções comuns: aqui a altura da tela já
	   dá o ar, e 128px em cima e embaixo empurrava o conteúdo para fora */
	padding-block: var(--wt-space-6);
}
.wt-section--tela > .wt-container { width: 100%; }
.wt-section--tela .wt-section__head { margin-bottom: var(--wt-space-4); }

/* as tiras 9:16 são o que estoura a tela: presas à altura, não à largura.
   Quem define o tamanho do video e este teto de altura, nao a largura do
   container: com aspect-ratio 9/16 e height fixa, a largura e derivada. */
.wt-section--tela .wt-videos {
	grid-template-columns: repeat(3, auto);
	justify-content: center;
}
.wt-section--tela .wt-video { height: min(46vh, 470px); width: auto; }

/* O exame tem um video so, entao ele pode ser bem maior que as tres tiras
   lado a lado dos depoimentos. */
.wt-section--tela .wt-bio__video .wt-video { height: min(58vh, 640px); }

/* Abaixo disso a altura de tela vira estorvo: o conteúdo já passa dela
   e o respiro da seção basta. */
@media (max-width: 900px) {
	.wt-section--tela { min-height: 0; display: block; }

	/* as tiras presas a vh so fazem sentido quando a secao ocupa a tela.
	   Sem este reset elas mantêm 3 colunas fixas e estouram a largura no
	   celular, porque .wt-section--tela .wt-videos vence o responsivo
	   generico na especificidade. */
	.wt-section--tela .wt-videos { grid-template-columns: repeat(3, minmax(0, 1fr)); justify-content: normal; }
	.wt-section--tela .wt-video  { height: auto; width: auto; }
}

@media (max-width: 700px) {
	.wt-section--tela .wt-videos       { grid-template-columns: 1fr; }
	.wt-section--tela .wt-videos--seis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* -------------------------------- cards ---------------------------- */

.wt-card {
	background: var(--br);
	border: 1px solid var(--ln);
	border-radius: 16px;
	box-shadow: var(--sombra);
}

.wt-media { position: relative; overflow: hidden; border-radius: var(--radius); }
.wt-media img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   HERO
   ===================================================================== */

.wt-hero { background: var(--off); padding-block: var(--wt-space-5); }

.wt-hero__fundo {
	position: absolute;
	inset: 0 0 0 auto;
	width: 44%;
	background: #E9EEE3;
	border-top-left-radius: 280px;
	z-index: 0;
}

.wt-hero .wt-container { position: relative; z-index: 1; }

.wt-hero__grid {
	display: grid;
	grid-template-columns: 1fr .92fr;
	gap: var(--wt-space-5);
	align-items: center;
}

.wt-hero__texto { display: flex; flex-direction: column; align-items: flex-start; gap: var(--wt-space-3); }
.wt-hero__logo  { width: 190px; height: auto; }
.wt-hero__title { max-width: 17ch; }
.wt-hero__desc  {
	max-width: 52ch;
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: var(--tw);
	/* o hero aqui é dividido, não centralizado: justificar com a última
	   linha ao centro abriria rios de espaço numa coluna de 52ch */
	text-align: left;
	text-align-last: left;
}

.wt-hero__selos { display: flex; align-items: center; gap: var(--wt-space-3); flex-wrap: wrap; }
.wt-hero__selo  { display: flex; flex-direction: column; gap: 2px; }
.wt-hero__selo b { font-family: var(--ff-titulo); font-weight: 800; font-size: 20px; color: var(--v9); }
.wt-hero__selo span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--tw); }
.wt-hero__sep { width: 1px; height: 38px; background: var(--ln); }

.wt-hero__contatos { font-size: 13px; color: var(--tw); }
.wt-hero__slogan   { color: var(--lm7); font-weight: 700; }

/* colagem
   Posicionamento em PORCENTAGEM, nao em px. Com px fixos (desenhados para
   a coluna de 1440px) as fotos vazavam da coluna em toda largura abaixo
   disso: 19px em 1440, 199px em 950. O overflow-x: hidden do body escondia
   o sintoma sem resolver o problema. A caixa guarda a proporcao original
   (568x620) e tudo escala junto. */
.wt-colagem {
	position: relative;
	width: 100%;
	aspect-ratio: 568 / 620;
}
.wt-colagem__item {
	position: absolute;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(22, 48, 27, .16);
}
.wt-colagem__item img { display: block; width: 100%; height: 100%; object-fit: cover; }

.wt-colagem__item--a { left: 1.926%;   top: 3.871%;  width: 29.930%; height: 36.290%; transform: rotate(-5deg); }
.wt-colagem__item--b { left: 55.301%; top: 0.000%;   width: 44.014%; height: 25.484%; transform: rotate(2deg); }
.wt-colagem__item--c { left: 60.528%; top: 30.000%; width: 36.972%; height: 43.548%; transform: rotate(3deg); }
.wt-colagem__item--d { left: 3.169%;  top: 69.355%; width: 31.690%; height: 30.645%; transform: rotate(-3deg); }

.wt-colagem__destaque {
	position: absolute;
	left: 22.183%;
	top: 9.032%;
	width: 54.577%;
	height: 69.355%;
	z-index: 4;
	border-radius: 16px;
	overflow: hidden;
	background: var(--br);
	box-shadow: var(--sombra-lg);
}
.wt-colagem__destaque img { display: block; width: 100%; height: 100%; object-fit: cover; }

.wt-colagem__chip {
	position: absolute;
	left: 26.408%;
	top: 72.903%;
	z-index: 5;
	display: flex;
	flex-direction: column;
	gap: 2px;
	max-width: 72%;
	padding: clamp(10px, 1.6vw, 14px) clamp(14px, 2.4vw, 22px);
	border-radius: 12px;
	background: var(--v7);
	box-shadow: 0 14px 34px rgba(22, 48, 27, .30);
}
.wt-colagem__chip b { font-family: var(--ff-titulo); font-weight: 800; font-size: clamp(12px, 1.15vw, 15px); color: #fff; }
.wt-colagem__chip span { font-size: clamp(10px, .9vw, 12px); letter-spacing: .12em; text-transform: uppercase; color: var(--lm); }

/* =====================================================================
   PROVA SOCIAL
   ===================================================================== */

.wt-prova {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: var(--wt-space-4);
	align-items: center;
}
/* sem os depoimentos carregados, a nota ocupa a faixa inteira em vez de
   deixar um vazio ao lado */
.wt-prova--so-nota { grid-template-columns: 1fr; }

.wt-prova__nota { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.wt-prova__nota strong { font-family: var(--ff-titulo); font-weight: 800; font-size: 26px; color: var(--v9); }
.wt-prova__nota p { font-size: 15px; color: var(--tw); }
.wt-prova__estrelas { display: flex; gap: 4px; color: #F5B301; }
.wt-google { display: block; margin-top: 2px; }

/* ---- carrossel de avaliações ---- */
.wt-prova__carrossel { position: relative; min-width: 0; }

.wt-prova__trilho {
	display: flex;
	gap: var(--wt-space-3);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-block: 4px;
	align-items: stretch;
}
.wt-prova__trilho::-webkit-scrollbar { display: none; }

.wt-prova__carrossel .wt-carrossel__nav { width: 44px; height: 44px; }
.wt-prova__carrossel .wt-carrossel__nav--e { left: -22px; }
.wt-prova__carrossel .wt-carrossel__nav--d { right: -22px; }

.wt-review {
	flex: 0 0 auto;
	width: calc((100% - var(--wt-space-3) * 2) / 3);
	min-width: 240px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 26px;
	border-radius: 14px;
}
.wt-review__topo { display: flex; align-items: center; gap: 12px; }
.wt-review__avatar {
	flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--ff-titulo); font-weight: 800; font-size: 16px; color: #fff;
}
.wt-review__id { display: flex; flex-direction: column; gap: 1px; flex: 1 1 auto; min-width: 0; }
.wt-review__id b {
	font-family: var(--ff-titulo); font-weight: 700; font-size: 15px; color: var(--v9);
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wt-review__id span { font-size: 12px; color: var(--tw); }
.wt-review__fonte { flex: 0 0 auto; }
.wt-review__nota { display: flex; align-items: center; gap: 6px; }
.wt-review__selo { color: #4285F4; display: flex; }

.wt-review p {
	line-height: 1.6;
	color: var(--tw);
	font-size: 15px;
	white-space: pre-line;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* =====================================================================
   VÍDEOS (depoimentos e portfólio)
   ===================================================================== */

.wt-videos { display: grid; gap: var(--wt-space-4); max-width: 1000px; margin-inline: auto; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wt-videos--seis { max-width: none; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--wt-space-2); }

.wt-video {
	position: relative;
	display: block;
	aspect-ratio: 9 / 16;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--v3);
	border: 0;
	padding: 0;
	cursor: pointer;
}
.wt-video img, .wt-video iframe { width: 100%; height: 100%; border: 0; object-fit: cover; display: block; }
.wt-video__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(22, 48, 27, .18);
	transition: background .2s ease;
}
.wt-video:hover .wt-video__play { background: rgba(22, 48, 27, .34); }
.wt-video__play span {
	width: 64px; height: 64px; border-radius: 50%;
	background: rgba(22, 48, 27, .8); color: #fff;
	display: flex; align-items: center; justify-content: center;
}
.wt-videos--seis .wt-video__play span { width: 48px; height: 48px; }

/* =====================================================================
   NATUROPATA
   ===================================================================== */

.wt-nat { display: grid; grid-template-columns: .85fr 1.15fr; gap: var(--wt-space-5); align-items: center; }

.wt-nat__foto {
	position: relative;
	/* quadrado: o recorte é levemente mais largo que alto (1,15:1), então
	   um card retrato deixava sobra de verde em cima ou obrigava a ampliar
	   a foto para além da caixa */
	aspect-ratio: 1 / 1;
	border-radius: 20px;
	background: var(--v7);
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.wt-nat__halo {
	position: absolute;
	left: 50%; top: 4%;
	transform: translateX(-50%);
	width: 105%;
	aspect-ratio: 1 / 1;
	/* halo difuso, não um disco: o círculo de borda dura competia com o
	   rosto e lia como elemento gráfico solto */
	background: radial-gradient(circle,
		rgba(112, 148, 50, .38) 0%,
		rgba(112, 148, 50, .16) 52%,
		rgba(112, 148, 50, 0) 70%);
}
.wt-nat__foto img {
	position: relative;
	display: block;
	/* contain, nunca largura maior que 100%: a foto se encaixa na caixa
	   inteira em vez de vazar pelas laterais e ser cortada no ombro */
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}

.wt-nat__texto { display: flex; flex-direction: column; align-items: flex-start; gap: var(--wt-space-3); justify-content: center; }
.wt-nat__crt { font-family: var(--ff-titulo); font-weight: 700; font-size: 16px; letter-spacing: .08em; color: var(--lm7); }

.wt-pill {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding-inline: 24px;
	border-radius: 22px;
	background: var(--v7);
	color: #fff;
	font-family: var(--ff-titulo);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .04em;
}

/* lista com ícone de folha */
.wt-lista { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; width: 100%; }
.wt-lista li { display: flex; align-items: flex-start; gap: 14px; line-height: 1.5; }
.wt-lista__ico {
	flex: 0 0 auto;
	width: 32px; height: 32px;
	border-radius: 50%;
	background: var(--lm);
	color: var(--v9);
	display: flex; align-items: center; justify-content: center;
}
.wt-lista--check .wt-lista__ico { width: 24px; height: 24px; border-radius: 6px; margin-top: 3px; }

/* =====================================================================
   CARDS DE SERVIÇO
   ===================================================================== */

.wt-servicos-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--wt-space-3); }

.wt-item-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.wt-item-card__media { height: 230px; overflow: hidden; }
.wt-item-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.wt-item-card__corpo { display: flex; flex-direction: column; gap: 14px; padding: 28px 32px 32px; flex: 1 1 auto; }
.wt-item-card__sub { font-size: 15px; color: var(--lm7); font-weight: 600; line-height: 1.5; }
.wt-item-card__desc { color: var(--tw); font-size: 16px; line-height: 1.7; flex: 1 1 auto; }
.wt-item-card .wt-btn { align-self: flex-start; }

/* =====================================================================
   BIORRESSONÂNCIA
   ===================================================================== */

.wt-bio { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--wt-space-5); align-items: center; }
.wt-bio__blocos { display: flex; flex-direction: column; gap: var(--wt-space-3); }
.wt-bio__bloco {
	display: flex;
	gap: 18px;
	padding: 26px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(112, 148, 50, .28);
}
.wt-bio__bloco p { text-align: justify; hyphens: auto; line-height: 1.7; font-size: 16px; }
.wt-bio__video { width: 100%; display: flex; justify-content: center; }
.wt-bio__fecho { display: flex; flex-direction: column; align-items: center; gap: var(--wt-space-3); margin-top: var(--wt-space-5); }

/* =====================================================================
   DEMAIS PRODUTOS
   ===================================================================== */

.wt-demais { display: grid; grid-template-columns: 1.55fr 1fr; gap: var(--wt-space-3); align-items: stretch; }
.wt-demais__col { display: flex; flex-direction: column; gap: var(--wt-space-3); padding: 36px; }
.wt-demais__titulo { font-size: 16px; letter-spacing: .16em; text-transform: uppercase; color: var(--lm7); }
.wt-demais__lista { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 32px; }
.wt-demais__foto { flex: 1 1 auto; min-height: 180px; border-radius: 12px; overflow: hidden; }
.wt-demais__foto img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   ENCAPSULADOS
   ===================================================================== */

.wt-enc__faixa { border-radius: 18px; overflow: hidden; margin-bottom: var(--wt-space-4); }
.wt-enc__faixa img { display: block; width: 100%; height: auto; }

.wt-enc__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--wt-space-2); align-items: stretch; }
.wt-enc__item {
	display: flex; flex-direction: column; gap: 4px;
	padding: 18px 20px;
	border-radius: 12px;
	background: var(--br);
	border: 1px solid var(--ln);
}
.wt-enc__item b { font-family: var(--ff-titulo); font-weight: 800; font-size: 17px; color: var(--v9); }
.wt-enc__item span { font-size: 13px; line-height: 1.4; color: var(--tw); }

/* =====================================================================
   ENTREGA
   ===================================================================== */

.wt-entrega { position: relative; overflow: hidden; padding-block: var(--wt-space-6); background: var(--v9); }
.wt-entrega__brilho {
	position: absolute; left: -120px; bottom: -160px;
	width: 520px; height: 520px; border-radius: 50%;
	background: rgba(112, 148, 50, .10);
}
.wt-entrega__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--wt-space-5); align-items: center; }
.wt-entrega__texto { display: flex; flex-direction: column; align-items: flex-start; gap: var(--wt-space-3); }
/* a foto e quadrada: caixa quadrada evita corte e mantem a bolsa com a
   marca inteira no enquadramento */
.wt-entrega__foto {
	aspect-ratio: 1 / 1;
	max-width: 470px;
	width: 100%;
	margin-inline: auto;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--sombra-lg);
}
.wt-entrega__foto img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   DIFERENCIAIS
   ===================================================================== */

.wt-dif-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--wt-space-3); align-items: stretch; }
.wt-dif { display: flex; flex-direction: column; align-items: center; gap: var(--wt-space-2); text-align: center; padding: 40px 28px; }
.wt-dif__ico {
	width: 64px; height: 64px; border-radius: 50%;
	background: var(--lm); color: var(--v9);
	display: flex; align-items: center; justify-content: center;
}
.wt-dif p { line-height: 1.6; color: var(--tw); font-size: 15px; }

/* =====================================================================
   CARROSSEL DO PORTFÓLIO
   ===================================================================== */

.wt-carrossel { position: relative; width: 100%; margin-bottom: var(--wt-space-3); }

.wt-carrossel__trilho {
	display: flex;
	gap: var(--wt-space-2);
	padding-inline: var(--wt-container-gutter);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.wt-carrossel__trilho::-webkit-scrollbar { display: none; }

.wt-carrossel__foto {
	flex: 0 0 auto;
	width: 250px;
	height: 330px;
	border-radius: var(--radius);
	overflow: hidden;
	scroll-snap-align: center;
	box-shadow: var(--sombra);
	border: 0;
	padding: 0;
	background: var(--v3);
	cursor: zoom-in;
}
.wt-carrossel__foto img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.wt-carrossel__foto:hover img { transform: scale(1.05); }

.wt-carrossel__fade {
	position: absolute; top: 0; height: 100%; width: 110px;
	pointer-events: none;
}
/* o degradê precisa acompanhar o fundo da seção onde o carrossel vive */
.wt-carrossel { --fade: var(--off); }
.wt-carrossel__fade--e { left: 0;  background: linear-gradient(to right, var(--fade), transparent); }
.wt-carrossel__fade--d { right: 0; background: linear-gradient(to left,  var(--fade), transparent); }

.wt-carrossel__nav {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 52px; height: 52px;
	border-radius: 50%;
	border: 1px solid var(--ln);
	background: var(--br);
	color: var(--v7);
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 6px 18px rgba(22, 48, 27, .14);
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
	z-index: 2;
}
.wt-carrossel__nav:hover { background: var(--v7); color: #fff; }
.wt-carrossel__nav[disabled] { opacity: .35; cursor: default; }
.wt-carrossel__nav:hover[disabled] { background: var(--br); color: var(--v7); }
.wt-carrossel__nav--e { left: 24px; }
.wt-carrossel__nav--d { right: 24px; }

.wt-carrossel__pontos { display: flex; justify-content: center; gap: 0; align-items: center; margin-bottom: var(--wt-space-4); }
/* O ponto visivel tem 8px, mas a area clicavel precisa de ~40px para uso
   com o dedo. O padding cresce o botao e o background-clip mantem a cor
   so no miolo. */
.wt-carrossel__ponto {
	box-sizing: content-box;
	width: 8px; height: 8px;
	padding: 16px 5px;
	border-radius: 4px;
	background-color: var(--ln);
	background-clip: content-box;
	border: 0;
	cursor: pointer;
	transition: width .2s ease, background-color .2s ease;
}
.wt-carrossel__ponto[aria-current="true"] { width: 26px; background-color: var(--lm7); }

/* lightbox */
.wt-lightbox {
	position: fixed; inset: 0; z-index: 100;
	display: none;
	align-items: center; justify-content: center;
	padding: 24px;
	background: rgba(10, 20, 12, .92);
}
.wt-lightbox[open] { display: flex; }
.wt-lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; border-radius: 10px; }
.wt-lightbox__fechar {
	position: absolute; top: 20px; right: 20px;
	width: 48px; height: 48px; border-radius: 50%;
	background: rgba(255, 255, 255, .12); color: #fff;
	border: 0; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
}

/* =====================================================================
   QUEM SOMOS
   ===================================================================== */

.wt-quem { display: grid; grid-template-columns: 1fr .85fr; gap: var(--wt-space-5); align-items: stretch; margin-bottom: var(--wt-space-5); }
.wt-quem__texto { display: flex; flex-direction: column; align-items: flex-start; gap: var(--wt-space-2); justify-content: center; }
.wt-quem__foto { min-height: 520px; border-radius: 20px; overflow: hidden; }
.wt-quem__foto img { display: block; width: 100%; height: 100%; object-fit: cover; }
.wt-quem__slide { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--wt-space-2); }
.wt-quem__slide button { aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; border: 0; padding: 0; cursor: zoom-in; background: var(--v3); }
.wt-quem__slide img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   FORMULÁRIO
   ===================================================================== */

.wt-form { display: flex; flex-direction: column; gap: var(--wt-space-3); }
.wt-campo { display: flex; flex-direction: column; gap: 8px; }
.wt-campo label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--v9); }

.wt-campo input,
.wt-campo textarea {
	width: 100%;
	min-height: 54px;
	padding: 15px 16px;
	border: 1px solid var(--ln);
	border-radius: 10px;
	background: var(--br);
	font-family: var(--ff-texto);
	font-size: 16px;
	color: var(--tx);
}
.wt-campo textarea { min-height: 150px; resize: vertical; }
.wt-campo input:focus, .wt-campo textarea:focus { border-color: var(--lm); outline: none; box-shadow: 0 0 0 3px rgba(112, 148, 50, .18); }
.wt-campo--erro input, .wt-campo--erro textarea { border-color: #B3261E; }
.wt-erro { font-size: 13px; color: #B3261E; }

/* validador humano */
.wt-validador { display: flex; gap: 18px; padding: 24px; border-radius: 12px; background: rgba(112, 148, 50, .08); border: 1px solid var(--ln); }
.wt-validador--ok { border-color: var(--lm); background: rgba(112, 148, 50, .10); }
.wt-validador__marca {
	flex: 0 0 auto; width: 40px; height: 40px;
	border-radius: 8px; border: 1px solid var(--ln);
	background: var(--br); color: var(--ln);
	display: flex; align-items: center; justify-content: center;
}
.wt-validador--ok .wt-validador__marca { color: var(--lm7); border-color: var(--lm); }
.wt-validador__corpo { flex: 1 1 auto; display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.wt-validador__titulo { font-family: var(--ff-titulo); font-weight: 700; font-size: 17px; color: var(--v9); }
.wt-validador__dica { font-size: 14px; color: var(--tw); }
.wt-validador__dica b { color: var(--lm7); }

.wt-trilha { position: relative; display: flex; gap: 6px; align-items: center; touch-action: none; }
.wt-trilha__casa {
	flex: 1 1 0; min-width: 0; height: 44px;
	border-radius: 8px;
	background: var(--br);
	border: 1px solid var(--ln);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--ff-titulo); font-weight: 700; font-size: 15px;
	color: var(--tw);
	user-select: none;
}
.wt-trilha__casa--alvo { color: var(--lm7); border-color: var(--lm); }
.wt-trilha__puxador {
	flex: 1 1 0; min-width: 0; height: 44px;
	border-radius: 8px;
	background: var(--lm7);
	color: #fff;
	border: 0;
	display: flex; align-items: center; justify-content: center;
	cursor: grab;
	touch-action: none;
}
.wt-trilha__puxador:active { cursor: grabbing; }
.wt-trilha--ok .wt-trilha__puxador { background: var(--v7); cursor: default; }

.wt-form__resposta { padding: 16px; border-radius: 10px; font-size: 15px; }
.wt-form__resposta--ok  { background: rgba(112, 148, 50, .14); color: var(--v7); }
.wt-form__resposta--erro{ background: rgba(179, 38, 30, .10); color: #B3261E; }

/* =====================================================================
   LOCALIZAÇÃO
   ===================================================================== */

.wt-local { display: grid; grid-template-columns: 1fr 1.05fr; gap: var(--wt-space-5); align-items: stretch; }
.wt-local__texto { display: flex; flex-direction: column; align-items: flex-start; gap: var(--wt-space-3); justify-content: center; }
/* Endereco e horario sao pares rotulo/valor. Antes eram <div> sem classe:
   como itens flex numa coluna centralizada no mobile, encolhiam ate o
   conteudo e ficavam centrados, brigando com a lista alinhada a esquerda
   logo acima. Agora ocupam a largura toda e mantem o mesmo eixo. */
.wt-local__info {
	display: flex;
	flex-direction: column;
	gap: var(--wt-space-3);
	width: 100%;
	margin: 0;
}
.wt-local__item { display: flex; flex-direction: column; gap: 6px; }

.wt-local__rotulo {
	font-family: var(--ff-titulo);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--v9);
}
.wt-local__valor {
	margin: 0;
	max-width: 42ch;
	line-height: 1.6;
	color: var(--tw);
}

.wt-local__acoes { display: flex; flex-wrap: wrap; gap: var(--wt-space-2); }
.wt-local__mapa { min-height: 520px; border-radius: 18px; overflow: hidden; }
.wt-local__mapa iframe { display: block; width: 100%; height: 100%; min-height: 520px; border: 0; }

/* =====================================================================
   RODAPÉ
   ===================================================================== */

.wt-footer { background: var(--v9); color: #C6CFC0; }
.wt-footer a { color: var(--cr); }
.wt-footer a:hover { color: var(--lm); text-decoration: underline; }
.wt-footer__col span.wt-footer__titulo {
	font-family: var(--ff-titulo); font-weight: 700; font-size: 13px;
	letter-spacing: .16em; text-transform: uppercase; color: #fff;
}
.wt-footer__marca img { width: 170px; height: auto; }
.wt-footer__slogan { font-family: var(--ff-titulo); font-size: 15px; letter-spacing: .06em; color: var(--lm); }
.wt-footer__link { display: flex; align-items: center; gap: 10px; font-size: 15px; line-height: 1.5; }
.wt-footer__link--topo { align-items: flex-start; }
.wt-footer__link svg { flex: 0 0 auto; color: var(--lm); }

.wt-footer__redes { display: flex; gap: 10px; }
.wt-footer__rede {
	width: 42px; height: 42px; border-radius: 10px;
	border: 1px solid rgba(233, 222, 176, .28);
	display: flex; align-items: center; justify-content: center;
	color: var(--lm);
	transition: background .15s ease, color .15s ease;
}
.wt-footer__rede:hover { background: var(--lm); color: var(--v9); text-decoration: none; }

.wt-footer__bottom { border-top: 1px solid rgba(233, 222, 176, .16); }
.wt-footer__bottom-inner {
	display: flex; justify-content: space-between; align-items: center;
	gap: var(--wt-space-3); flex-wrap: wrap;
	padding-block: var(--wt-space-3);
	font-size: 13px;
}

/* =====================================================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ===================================================================== */

.wt-zap {
	position: fixed;
	right: 24px; bottom: 24px;
	z-index: 60;
	width: 60px; height: 60px;
	border-radius: 50%;
	background: var(--lm7);
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 24px rgba(22, 48, 27, .32);
	transition: transform .2s ease, background .2s ease;
}
.wt-zap:hover { transform: scale(1.08); background: var(--v5); color: #fff; }

/* =====================================================================
   PÁGINA LEGAL
   ===================================================================== */

.wt-legal__topo { background: var(--v9); padding-block: var(--wt-space-5); }
.wt-legal__topo h1 { color: #fff; max-width: 20ch; }
.wt-legal__topo p { color: #C6CFC0; margin-top: var(--wt-space-2); }
.wt-legal__topo a { color: var(--cr); }

.wt-legal__body { max-width: 860px; margin-inline: auto; }
.wt-legal__body h2 { font-size: 26px; margin-top: var(--wt-space-5); margin-bottom: var(--wt-space-2); }
.wt-legal__body h2:first-child { margin-top: 0; }
.wt-legal__body p, .wt-legal__body li { text-align: justify; hyphens: auto; line-height: 1.75; color: var(--tw); margin-bottom: var(--wt-space-2); }
.wt-legal__body ul { padding-left: 22px; }

/* =====================================================================
   RESPONSIVO
   ===================================================================== */

@media (max-width: 1100px) {
	/* regra 5 do padrão: abaixo de ~40 caracteres o justificado sai */
	.wt-item-card__desc,
	.wt-bio__bloco p { text-align: left; hyphens: manual; }

	.wt-enc__grid   { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.wt-dif-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.wt-videos--seis { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
	.wt-hero__fundo { display: none; }
	.wt-hero__grid,
	.wt-nat,
	.wt-bio,
	.wt-demais,
	.wt-quem,
	.wt-local,
	.wt-entrega__grid { grid-template-columns: 1fr; }

	.wt-hero__texto,
	.wt-nat__texto,
	.wt-quem__texto,
	.wt-local__texto,
	.wt-entrega__texto { align-items: center; text-align: center; }

	/* o cabecalho da secao segue centralizado como no resto do site, mas
	   lista, endereco e horario formam um bloco de dados unico, todo a
	   esquerda: era a mistura dos dois eixos que quebrava a hierarquia */
	.wt-local__info  { text-align: left; }
	.wt-local__valor { max-width: none; }
	.wt-local__acoes { justify-content: center; }

	.wt-hero__title { max-width: none; }
	.wt-hero__desc  { align-items: center; text-align: center; text-align-last: center; }
	.wt-hero__selos { justify-content: center; }
	.wt-lista li    { text-align: left; }
	.wt-nat__foto   { min-height: 0; }
	.wt-nat__halo { width: 86%; top: 6%; }

	.wt-prova { grid-template-columns: 1fr; gap: var(--wt-space-4); }
	.wt-review { width: calc((100% - var(--wt-space-3)) / 2); }
	.wt-prova__carrossel .wt-carrossel__nav--e { left: -8px; }
	.wt-prova__carrossel .wt-carrossel__nav--d { right: -8px; }

	.wt-servicos-grid { grid-template-columns: 1fr; }
	.wt-demais__lista { grid-template-columns: 1fr; }
	.wt-quem__slide   { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.wt-quem__foto    { min-height: 0; aspect-ratio: 16 / 10; }
	.wt-local__mapa, .wt-local__mapa iframe { min-height: 380px; }
	.wt-bio__video { max-width: 280px; }

	/* colagem vira grade simples: posicionamento absoluto não escala */
	.wt-colagem { height: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--wt-space-2); }
	/* empilhado, todas na mesma proporção: alturas diferentes deixavam
	   buracos entre as linhas da grade */
	.wt-colagem__item, .wt-colagem__destaque { position: static; width: auto; height: auto; aspect-ratio: 4 / 3; transform: none; }
	/* 4/5 com ancoragem no topo: a caixa 4/3 anterior so mostrava a imagem
	   a partir de 9,4% da altura, e a cabeca dele comeca em 2,4%. */
	.wt-colagem__destaque { grid-column: span 2; aspect-ratio: 4 / 5; box-shadow: var(--sombra); }
	.wt-colagem__destaque img { object-position: center top; }
	.wt-colagem__chip { position: static; grid-column: span 2; align-items: center; text-align: center; }
}

@media (max-width: 700px) {
	.wt-enc__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	/* uma avaliação por vez: em duas colunas o texto fica ilegível */
	.wt-review { width: 100%; min-width: 0; }
	.wt-prova__carrossel .wt-carrossel__nav { display: none; }
	.wt-videos    { grid-template-columns: 1fr; max-width: 320px; }
	.wt-videos--seis { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: none; }
	.wt-legal__body p, .wt-legal__body li { text-align: left; }
	.wt-bio__bloco { flex-direction: column; }
	.wt-carrossel__nav { display: none; }
	.wt-carrossel__fade { width: 40px; }
	.wt-carrossel__foto { width: 210px; height: 280px; }
	.wt-demais__col { padding: 28px 24px; }
}

@media (max-width: 600px) {
	.wt-dif-grid  { grid-template-columns: 1fr; }
	.wt-quem__slide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.wt-hero__selos { flex-direction: column; align-items: center; gap: var(--wt-space-2); }
	.wt-hero__sep   { display: none; }
	.wt-validador   { flex-direction: column; }
	.wt-trilha__casa:nth-child(n+7) { display: none; }
	.wt-footer__bottom-inner { flex-direction: column; text-align: center; }

	/* links de texto do rodape chegam a ~40px de altura para uso com o dedo */
	.wt-footer__col a { padding-block: 8px; }
	.wt-footer__link { justify-content: center; }
	.wt-zap { right: 16px; bottom: 16px; }
}
