/* ==========================================================================
   Wilmie Pieroni — Mídia e Imóveis — CSS do tema
   Paleta e fontes vêm de Personalizar → Identidade Visual (inc/tokens.php),
   injetadas como variáveis CSS em :root. Os valores abaixo são só o
   fallback caso, por algum motivo, o inline style não carregue.
   ========================================================================== */

:root {
	--wpp-cor-texto: #1C1B18;
	--wpp-cor-fundo: #FFFFFF;
	--wpp-cor-fundo-alt: #F6F4EF;
	--wpp-cor-cinza: #E7E4DD;
	--wpp-cor-dourado: #AD8A5C;
	--wpp-cor-icones-sociais: #AD8A5C;
	--wpp-raio: 12px;
	--wpp-fonte-titulos: 'Playfair Display', Georgia, serif;
	--wpp-fonte-corpo: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--wpp-largura-max: 1360px;
	--wpp-header-altura: 92px;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--wpp-fonte-corpo);
	color: var(--wpp-cor-texto);
	background: var(--wpp-cor-fundo);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
	white-space: nowrap;
}
.wpp-skip-link {
	position: fixed;
	top: -60px; left: 12px;
	z-index: 999999;
	background: var(--wpp-cor-texto);
	color: #fff;
	padding: 10px 18px;
	border-radius: var(--wpp-raio);
	transition: top .2s ease;
}
.wpp-skip-link:focus { top: 12px; width: auto; height: auto; overflow: visible; clip: auto; }

.wpp-wrap { max-width: var(--wpp-largura-max); margin: 0 auto; padding: 0 32px; }

/* ---------- Botões: grandes, cantos de 12px, minimalistas ---------- */
.wpp-botao {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 30px;
	border-radius: var(--wpp-raio);
	font-family: var(--wpp-fonte-corpo);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	border: 1px solid var(--wpp-cor-texto);
	background: transparent;
	color: var(--wpp-cor-texto);
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}
.wpp-botao:hover { background: var(--wpp-cor-texto); color: var(--wpp-cor-fundo); }
.wpp-botao--primario { background: var(--wpp-cor-texto); color: var(--wpp-cor-fundo); }
.wpp-botao--primario:hover { opacity: .82; }
.wpp-botao--outline { border-color: var(--wpp-cor-cinza); color: var(--wpp-cor-texto); background: transparent; }
.wpp-botao--outline:hover { border-color: var(--wpp-cor-texto); background: transparent; color: var(--wpp-cor-texto); opacity: .7; }

.wpp-secao { padding: 100px 0; }
.wpp-secao__cabecalho { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 40px; }
.wpp-secao__cabecalho .imv-secao__titulo { margin-bottom: 0; padding-bottom: 0; font-family: var(--wpp-fonte-titulos); }
.wpp-secao__cabecalho .imv-secao__titulo::after { display: none; }
.wpp-link-ver-todos { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--wpp-cor-texto); white-space: nowrap; padding-bottom: 4px; border-bottom: 1px solid var(--wpp-cor-cinza); }
.wpp-link-ver-todos svg { width: 15px; height: 15px; transition: transform .2s ease; color: var(--wpp-cor-dourado); }
.wpp-link-ver-todos:hover svg { transform: translateX(3px); }

/* ---------- Header — estático (não acompanha rolagem), sem sombra ---------- */
.wpp-header { position: relative; width: 100%; background: var(--wpp-cor-fundo); z-index: 100; }
.wpp-header--transparente { position: absolute; top: 0; left: 0; right: 0; background: transparent; }

.wpp-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: var(--wpp-header-altura); padding-top: 20px; padding-bottom: 20px; }

.wpp-header__logo { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; color: var(--wpp-cor-texto); }
.wpp-header--transparente .wpp-header__logo { color: #fff; }
.wpp-header__logo img { max-height: var(--wpp-logo-altura, 44px); width: auto; }
.wpp-logo-marca { display: flex; width: calc(var(--wpp-logo-altura, 44px) * 0.68); height: calc(var(--wpp-logo-altura, 44px) * 0.64); }
.wpp-logo-marca svg { width: 100%; height: 100%; }
.wpp-logo-texto { display: flex; flex-direction: column; line-height: 1.15; font-family: var(--wpp-fonte-titulos); }
.wpp-logo-texto strong { font-size: calc(var(--wpp-logo-altura, 44px) * 0.36); font-weight: 600; letter-spacing: .02em; }
.wpp-logo-texto small { font-family: var(--wpp-fonte-corpo); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--wpp-cor-dourado); margin-top: 2px; }

.wpp-header__nav { flex: 1 1 auto; display: flex; justify-content: center; }
.wpp-header__menu { list-style: none; display: flex; gap: 34px; margin: 0; padding: 0; }
.wpp-header__menu a { font-size: var(--wpp-menu-fonte-tamanho, 12px); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--wpp-cor-texto); padding: 6px 0; border-bottom: 1px solid transparent; transition: border-color .2s ease, color .2s ease; }
.wpp-header--transparente .wpp-header__menu a { color: #fff; }
.wpp-header__menu a:hover { border-color: var(--wpp-cor-dourado); color: var(--wpp-cor-dourado); }

.wpp-header__acoes { flex: 0 0 auto; display: flex; align-items: center; gap: 18px; }
.wpp-header__sociais { display: flex; align-items: center; gap: 12px; }
.wpp-header__sociais a { color: var(--wpp-cor-icones-sociais); display: flex; }
.wpp-header--transparente .wpp-header__sociais a { color: #fff; opacity: .9; }
.wpp-header__sociais svg { width: 16px; height: 16px; }

.wpp-header--transparente .wpp-header__contato { background: #fff; color: var(--wpp-cor-texto); border-color: #fff; }
.wpp-header__menu-toggle { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: var(--wpp-raio); border: 1px solid var(--wpp-cor-cinza); background: transparent; color: var(--wpp-cor-texto); cursor: pointer; }
.wpp-header--transparente .wpp-header__menu-toggle { color: #fff; border-color: rgba(255,255,255,.5); }
.wpp-header__menu-toggle svg { width: 18px; height: 18px; }

.wpp-menu-movel { display: none; background: var(--wpp-cor-fundo); border-top: 1px solid var(--wpp-cor-cinza); padding: 20px 0 28px; }
.wpp-menu-movel.is-aberto { display: block; }
.wpp-header--transparente .wpp-menu-movel.is-aberto { position: relative; background: var(--wpp-cor-fundo); }
.wpp-menu-movel__lista { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.wpp-menu-movel__lista a { display: block; padding: 12px 0; border-bottom: 1px solid var(--wpp-cor-cinza); font-size: 15px; font-weight: 600; color: var(--wpp-cor-texto); }
.wpp-menu-movel__sociais { display: flex; gap: 16px; margin-top: 18px; }
.wpp-menu-movel__sociais a { color: var(--wpp-cor-dourado); }
.wpp-menu-movel__sociais svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.wpp-hero { position: relative; min-height: 100vh; background-color: var(--wpp-cor-texto); background-size: cover; background-position: center; display: flex; align-items: center; overflow: hidden; }
.wpp-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.wpp-hero__overlay {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: var(--wpp-header-altura);
}
.wpp-hero__overlay::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--wpp-cor-texto);
	opacity: var(--wpp-hero-overlay-opacidade, .35);
	z-index: -1;
}
.wpp-hero__conteudo { width: 100%; }
.wpp-hero__texto { max-width: 720px; color: #fff; }
.wpp-hero__texto .imv-eyebrow { color: rgba(255,255,255,.8); letter-spacing: .18em; }
.wpp-hero__titulo {
	font-family: var(--wpp-fonte-titulos);
	font-weight: 500;
	font-size: clamp(38px, 5.2vw, 64px);
	line-height: 1.1;
	margin: 14px 0 36px;
	color: #fff;
}
.wpp-hero__titulo em { font-style: italic; color: var(--wpp-cor-dourado); }

/* ---------- Busca: barra + painel de filtros ---------- */
.wpp-busca { max-width: 900px; }
.wpp-busca__barra {
	display: flex; align-items: center; gap: 10px;
	max-width: 680px;
	background: rgba(255,255,255,.14);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255,255,255,.35);
	border-radius: var(--wpp-raio);
	padding: 6px 6px 6px 20px;
}
.wpp-busca__icone { display: none; }
.wpp-busca__barra input[type="text"] { flex: 1; border: none; outline: none; font-family: var(--wpp-fonte-corpo); font-size: 14px; color: #fff; background: transparent; min-width: 0; }
.wpp-busca__barra input::placeholder { color: rgba(255,255,255,.72); }
.wpp-busca__toggle { display: flex; align-items: center; gap: 8px; background: transparent; border: none; border-left: 1px solid rgba(255,255,255,.3); padding: 9px 14px; font-family: var(--wpp-fonte-corpo); font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #fff; cursor: pointer; white-space: nowrap; }
.wpp-busca__toggle svg { width: 16px; height: 16px; color: var(--wpp-cor-dourado); }
.wpp-busca__toggle[aria-expanded="true"] { color: var(--wpp-cor-dourado); }
.wpp-busca__submit { padding: 11px 16px; border-radius: calc(var(--wpp-raio) - 4px); background: #fff; color: var(--wpp-cor-texto); border-color: #fff; }
.wpp-busca__submit:hover { background: var(--wpp-cor-dourado); border-color: var(--wpp-cor-dourado); color: #fff; }
.wpp-busca__submit svg { width: 15px; height: 15px; }

.wpp-busca__painel {
	margin-top: 10px;
	max-width: 900px;
	background: rgba(255,255,255,.14);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255,255,255,.28);
	border-radius: var(--wpp-raio);
	padding: 18px;
	box-sizing: border-box;
	overflow: hidden;
}
.wpp-busca__painel[hidden] { display: none; }
.wpp-busca__grade { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px 14px; }
.wpp-busca__campo { display: flex; flex-direction: column; gap: 6px; min-width: 0; font-size: 10px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.wpp-busca__campo select,
.wpp-busca__campo input {
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	font-family: var(--wpp-fonte-corpo);
	font-size: 13px;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	color: #fff;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.3);
	border-radius: calc(var(--wpp-raio) - 4px);
	padding: 9px 8px;
}
.wpp-busca__campo select option { color: var(--wpp-cor-texto); }
.wpp-busca__campo input::placeholder { color: rgba(255,255,255,.55); }
.wpp-busca__campo--faixa { grid-column: span 2; min-width: 0; }
.wpp-busca__faixa { display: flex; align-items: center; gap: 8px; min-width: 0; }
.wpp-busca__faixa input { flex: 1 1 0; min-width: 0; }
.wpp-busca__acoes { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.22); }
.wpp-busca__limpar { font-size: 12px; font-weight: 600; text-decoration: underline; color: rgba(255,255,255,.75); }
.wpp-busca__limpar:hover { color: #fff; }

.wpp-hero__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 0; padding: 0; }
.wpp-hero__chips a { display: inline-flex; align-items: center; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,.4); border-radius: var(--wpp-raio); padding: 9px 18px; transition: background .2s ease, border-color .2s ease; }
.wpp-hero__chips a:hover { background: rgba(255,255,255,.14); border-color: #fff; }

/* ---------- Redes sociais: abas + carrossel ---------- */
.wpp-social__cabecalho { display: flex; align-items: center; justify-content: center; position: relative; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.wpp-social__titulo { position: absolute; left: 0; margin: 0; display: none; }
.wpp-social__abas { display: flex; align-items: center; gap: 20px; }
.wpp-social__aba {
	display: flex; align-items: center; gap: 8px;
	background: none; border: none; cursor: pointer;
	padding: 6px 2px 12px;
	font-family: var(--wpp-fonte-corpo);
	font-size: 13px; font-weight: 700; letter-spacing: .08em;
	color: var(--wpp-cor-cinza);
	border-bottom: 2px solid transparent;
	transition: color .2s ease, border-color .2s ease;
}
.wpp-social__aba svg { width: 18px; height: 18px; }
.wpp-social__aba.is-ativa { color: var(--wpp-cor-dourado); border-color: var(--wpp-cor-dourado); }
.wpp-social__aba:not(.is-ativa):hover { color: var(--wpp-cor-texto); }
.wpp-social__separador { width: 1px; height: 22px; background: var(--wpp-cor-cinza); }
.wpp-social__ver-todos { position: absolute; right: 0; top: 50%; transform: translateY(-50%); white-space: nowrap; }

.wpp-social-grid {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	gap: 16px;
	padding-bottom: 4px;
	scrollbar-width: none;
}
.wpp-social-grid::-webkit-scrollbar { display: none; }

.wpp-social-card {
	position: relative;
	flex: 0 0 240px;
	aspect-ratio: 3/4.4;
	border-radius: var(--wpp-raio);
	overflow: hidden;
	background: var(--wpp-cor-fundo-alt);
	display: block;
	scroll-snap-align: start;
}
.wpp-social-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wpp-social-card:hover img { transform: scale(1.05); }
.wpp-social-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,13,10,0) 45%, rgba(15,13,10,.82) 100%); }
.wpp-social-card__badge {
	position: absolute; top: 12px; right: 12px; z-index: 1;
	width: 30px; height: 30px; border-radius: 50%;
	background: rgba(255,255,255,.92);
	display: flex; align-items: center; justify-content: center;
	color: var(--wpp-cor-texto);
}
.wpp-social-card__badge svg { width: 15px; height: 15px; }
.wpp-social-card__info { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 1; color: #fff; }
.wpp-social-card__info strong { display: block; font-family: var(--wpp-fonte-titulos); font-size: 17px; font-weight: 500; line-height: 1.25; margin-bottom: 4px; }
.wpp-social-card__info small { display: block; font-size: 12px; color: rgba(255,255,255,.72); margin-bottom: 10px; }
.wpp-social-card__contagem { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9); }
.wpp-social-card__contagem svg { width: 13px; height: 13px; color: var(--wpp-cor-dourado); }

/* ---------- Carrossel (Estilo, Destaque, Destinos) ---------- */
.wpp-carrossel { position: relative; }
.wpp-carrossel__seta {
	position: absolute; top: 50%; transform: translateY(-50%);
	z-index: 2;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--wpp-cor-fundo);
	border: 1px solid var(--wpp-cor-cinza);
	color: var(--wpp-cor-texto);
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0,0,0,.1);
	transition: opacity .2s ease, background .2s ease;
}
.wpp-carrossel__seta:hover { background: var(--wpp-cor-texto); color: var(--wpp-cor-fundo); }
.wpp-carrossel__seta svg { width: 17px; height: 17px; }
.wpp-carrossel__seta--prev { left: -22px; }
.wpp-carrossel__seta--next { right: -22px; }
.wpp-carrossel__seta[disabled] { opacity: 0; pointer-events: none; }

.wpp-tiles,
.wpp-carrossel .imv-grid {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	gap: 16px;
	padding-bottom: 4px;
	scrollbar-width: none;
}
.wpp-tiles::-webkit-scrollbar,
.wpp-carrossel .imv-grid::-webkit-scrollbar { display: none; }

.wpp-tile { position: relative; flex: 0 0 240px; aspect-ratio: 3/4; border-radius: var(--wpp-raio); overflow: hidden; background: var(--wpp-cor-fundo-alt); display: block; scroll-snap-align: start; }
.wpp-carrossel .imv-grid > * { flex: 0 0 300px; scroll-snap-align: start; }
.wpp-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wpp-tile:hover img { transform: scale(1.06); }
.wpp-tile__vazia { width: 100%; height: 100%; background: linear-gradient(160deg, #2a2823, var(--wpp-cor-texto)); }
.wpp-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,15,0) 42%, rgba(20,18,15,.72) 100%); }
.wpp-tile__rotulo { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 1; color: #fff; font-family: var(--wpp-fonte-titulos); font-size: 15px; font-weight: 500; }
.wpp-tile__rotulo small { display: block; font-family: var(--wpp-fonte-corpo); font-weight: 400; font-size: 11px; color: rgba(255,255,255,.72); margin-top: 2px; }

.wpp-grid-destaque { margin-bottom: 0; }

/* ---------- Sobre ---------- */
.wpp-sobre { background: var(--wpp-cor-fundo-alt); padding: 100px 0; }
.wpp-sobre__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.wpp-sobre__foto { border-radius: var(--wpp-raio); overflow: hidden; aspect-ratio: 4/5; background: var(--wpp-cor-cinza); }
.wpp-sobre__foto img { width: 100%; height: 100%; object-fit: cover; }
.wpp-sobre__foto-vazia { width: 100%; height: 100%; background: linear-gradient(160deg, #ddd7c8, var(--wpp-cor-fundo-alt)); }
.wpp-sobre__titulo { font-family: var(--wpp-fonte-titulos); font-weight: 500; font-size: clamp(28px, 3vw, 40px); color: var(--wpp-cor-texto); line-height: 1.2; margin: 10px 0 20px; }
.wpp-sobre__titulo em { font-style: italic; color: var(--wpp-cor-dourado); }
.wpp-sobre__descricao { font-size: 15px; line-height: 1.75; color: var(--wpp-cor-texto); max-width: 480px; margin: 0 0 32px; }
.wpp-sobre__badges { list-style: none; display: grid; grid-template-columns: repeat(4, auto); gap: 22px; padding: 0; margin: 0 0 36px; }
.wpp-sobre__badges li { display: flex; flex-direction: column; gap: 9px; font-size: 11px; font-weight: 600; color: var(--wpp-cor-texto); max-width: 120px; }
.wpp-sobre__badges svg { width: 22px; height: 22px; color: var(--wpp-cor-dourado); }

/* ---------- Instagram ---------- */
.wpp-instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.wpp-instagram-grid__item { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: calc(var(--wpp-raio) - 4px); background: var(--wpp-cor-fundo-alt); }
.wpp-instagram-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.wpp-instagram-grid__item:hover img { transform: scale(1.08); }
.wpp-instagram-grid__icone { position: absolute; top: 10px; right: 10px; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.92); display: flex; align-items: center; justify-content: center; color: var(--wpp-cor-texto); }
.wpp-instagram-grid__icone svg { width: 14px; height: 14px; }
.wpp-instagram-cta { margin-top: 26px; }

/* ---------- Footer ---------- */
.wpp-footer { background: var(--wpp-cor-texto); color: rgba(255,255,255,.72); padding-top: 76px; }
.wpp-footer__colunas { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.14); }
.wpp-footer__marca img { max-height: 40px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.wpp-footer__nome { font-family: var(--wpp-fonte-titulos); font-size: 19px; color: #fff; margin: 0 0 14px; }
.wpp-footer__assinatura { font-size: 13px; line-height: 1.65; max-width: 240px; }
.wpp-footer__coluna-titulo { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.wpp-footer__lista { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.wpp-footer__lista a, .wpp-footer__lista li { font-size: 13px; }
.wpp-footer__lista a:hover { color: var(--wpp-cor-dourado); }
.wpp-footer__contato-lista { margin-bottom: 18px; }
.wpp-footer__sociais { display: flex; gap: 14px; }
.wpp-footer__sociais a { color: var(--wpp-cor-icones-sociais); }
.wpp-footer__sociais svg { width: 18px; height: 18px; }
.wpp-footer__sociais a:hover { opacity: .8; }
.wpp-footer__creci { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 6px; }

.wpp-footer__base-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 22px 0; font-size: 12px; }
.wpp-footer__base-links { display: flex; gap: 20px; }
.wpp-footer__base-links a:hover { color: #fff; }

/* ---------- WhatsApp flutuante ---------- */
.wpp-whatsapp-flutuante { position: fixed; right: 22px; bottom: 22px; z-index: 500; width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,.22); }
.wpp-whatsapp-flutuante svg { width: 26px; height: 26px; }

/* ---------- Páginas genéricas / blog ---------- */
.wpp-pagina__header { background: var(--wpp-cor-fundo-alt); padding: 64px 0 40px; }
.wpp-pagina__titulo { font-family: var(--wpp-fonte-titulos); font-size: clamp(30px, 4vw, 44px); color: var(--wpp-cor-texto); margin: 0; }
.wpp-pagina__conteudo { max-width: 780px; padding-top: 48px; padding-bottom: 88px; }
.wpp-pagina__capa { margin-bottom: 32px; border-radius: var(--wpp-raio); overflow: hidden; }

.wpp-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 40px; }
.wpp-post-card { background: var(--wpp-cor-fundo); }
.wpp-post-card__imagem { aspect-ratio: 4/3; overflow: hidden; border-radius: calc(var(--wpp-raio) - 4px); margin-bottom: 14px; background: var(--wpp-cor-fundo-alt); }
.wpp-post-card__imagem img { width: 100%; height: 100%; object-fit: cover; }
.wpp-post-card__resumo { font-size: 13px; line-height: 1.6; color: var(--wpp-cor-texto); }

.wpp-404 { padding: 120px 0; text-align: center; }
.wpp-404 .wpp-botao { margin-top: 20px; }

/* ---------- Responsivo ---------- */
@media (max-width: 1100px) {
	.wpp-instagram-grid { grid-template-columns: repeat(3, 1fr); }
	.wpp-sobre__inner { grid-template-columns: 1fr; }
	.wpp-sobre__foto { max-width: 380px; }
	.wpp-posts-grid { grid-template-columns: repeat(2, 1fr); }
	.wpp-footer__colunas { grid-template-columns: 1fr 1fr; }
	.wpp-busca__grade { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.wpp-busca__campo--faixa { grid-column: span 2; }
}

@media (max-width: 880px) {
	.wpp-header__nav { display: none; }
	.wpp-header__menu-toggle { display: flex; }
	.wpp-header__contato, .wpp-header__sociais { display: none; }
	.wpp-hero__titulo { margin-bottom: 26px; }
	.wpp-sobre__badges { grid-template-columns: repeat(2, auto); }
	.wpp-carrossel__seta { display: none; }
	.wpp-social__cabecalho { flex-direction: column; justify-content: flex-start; align-items: flex-start; }
	.wpp-social__ver-todos { position: static; transform: none; }
}

@media (max-width: 640px) {
	.wpp-wrap { padding: 0 20px; }
	.wpp-secao { padding: 64px 0; }
	.wpp-tile { flex-basis: 200px; }
	.wpp-social-card { flex-basis: 190px; }
	.wpp-carrossel .imv-grid > * { flex-basis: 260px; }
	.wpp-instagram-grid { grid-template-columns: repeat(2, 1fr); }
	.wpp-posts-grid { grid-template-columns: 1fr; }
	.wpp-secao__cabecalho { flex-direction: column; align-items: flex-start; gap: 10px; }
	.wpp-footer__colunas { grid-template-columns: 1fr; gap: 32px; }
	.wpp-busca__barra { flex-wrap: wrap; border-radius: var(--wpp-raio); padding: 14px; }
	.wpp-busca__barra input[type="text"] { flex: 1 1 100%; order: 1; padding: 6px 0; }
	.wpp-busca__toggle { order: 2; border-left: none; padding-left: 0; }
	.wpp-busca__submit { order: 3; }
	.wpp-busca__grade { grid-template-columns: minmax(0, 1fr); }
	.wpp-busca__campo--faixa { grid-column: span 1; }
}
