/* ============================================================
   POSHY DESIGN SYSTEM — versão aprovada (one-page)
   Tokens + dark mode + animações + estilos componentes/seções.
   ============================================================ */

/* ===== Reset leve ===== */
*,*::before,*::after { box-sizing: border-box; }
html { font-size: 10px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overscroll-behavior: none; }
body { margin: 0; overflow-x: hidden; transition: background .4s, color .4s; font-family: var(--poshy-body); }
::selection { background: rgba(224,0,77,.15); color: var(--poshy-text); }
img, svg { max-width: 100%; display: block; }

/* ===== Tokens ===== */
:root {
	--poshy-pk: #E0004D;
	--poshy-pink: #FF6B9D;
	--poshy-orange: #FE5000;
	--poshy-bg: #FFFFFF;
	--poshy-text: #1A1A1A;
	--poshy-text-2: #6B6B6B;
	--poshy-text-3: #A8A4A0;
	--poshy-border: rgba(26,26,26,.08);
	--poshy-card-hover: rgba(26,26,26,.02);
	--poshy-header-bg: rgba(255,255,255,.88);
	--poshy-glow-1: rgba(224,0,77,.12);
	--poshy-glow-2: rgba(254,80,0,.10);

	--poshy-heading: 'Dystopian','DM Sans',sans-serif;
	--poshy-body: 'DM Sans', system-ui, -apple-system, sans-serif;

	--poshy-section-x: 5.3vw;
	--poshy-section-y: 10rem;

	--poshy-ease-smooth: cubic-bezier(.16,1,.3,1);
	--poshy-ease-soft: cubic-bezier(.25,.46,.45,.94);
}
@media (min-width: 1024px) {
	:root {
		--poshy-section-x: 11.25vw;
		--poshy-section-y: 14rem;
	}
}

[data-theme="dark"] {
	--poshy-bg: #0F0F0F;
	--poshy-text: #EDEBE8;
	--poshy-text-2: #908C88;
	--poshy-text-3: #5A5650;
	--poshy-border: rgba(255,255,255,.06);
	--poshy-card-hover: rgba(255,255,255,.03);
	--poshy-header-bg: rgba(15,15,15,.9);
	--poshy-glow-1: rgba(224,0,77,.15);
	--poshy-glow-2: rgba(254,80,0,.12);
}

html, body { background: var(--poshy-bg); color: var(--poshy-text); }
.wp-site-blocks { background: var(--poshy-bg); }

/* Esconde título da home */
body.home .wp-block-post-title,
body.home .entry-title,
body.page-id-6 .wp-block-post-title,
body.page-id-6 .entry-title { display: none !important; }

/* Text-wrap balance pros títulos chamativos */
.poshy-hero-title,
.poshy-tempos-title,
.poshy-abord-intro,
.poshy-cta-statement,
.poshy-estudio-lead,
.poshy-sobre-name,
.poshy-tempo-name { text-wrap: balance; }

/* ===== Animações compartilhadas ===== */
@keyframes blobFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(2%, -3%) scale(1.05); }
}
@keyframes marqueeRoll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ===== Reveal utility ===== */
.poshy-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .8s ease, transform .8s var(--poshy-ease-smooth);
}
.poshy-reveal.is-in { opacity: 1; transform: translateY(0); }
.poshy-d1 { transition-delay: .1s; }
.poshy-d2 { transition-delay: .2s; }
.poshy-d3 { transition-delay: .3s; }
.poshy-d4 { transition-delay: .4s; }
.poshy-d5 { transition-delay: .5s; }
.poshy-d6 { transition-delay: .6s; }

/* ===== Cursor custom ===== */
.poshy-cursor {
	position: fixed;
	width: 10px;
	height: 10px;
	background: var(--poshy-orange);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: width .3s var(--poshy-ease-smooth), height .3s var(--poshy-ease-smooth), opacity .3s ease;
	will-change: transform;
}
.poshy-cursor.is-hover { width: 44px; height: 44px; opacity: .6; }
@media (max-width: 768px), (hover: none) {
	.poshy-cursor { display: none; }
}

/* ============================================================
   HEADER
   ============================================================ */
.poshy-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2rem var(--poshy-section-x);
	z-index: 100;
	transition: background .5s, padding .4s, backdrop-filter .4s;
}
.poshy-header.is-scrolled {
	background: var(--poshy-header-bg);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	padding: 1.4rem var(--poshy-section-x);
}
.poshy-logo {
	display: flex;
	align-items: center;
	gap: .6rem;
	z-index: 110;
	position: relative;
	text-decoration: none;
}
.poshy-logo svg {
	height: 32px;
	width: auto;
	fill: var(--poshy-text);
	transition: fill .3s;
}
.poshy-nav { display: flex; align-items: center; }
.poshy-nav ul {
	display: flex;
	align-items: center;
	gap: 2.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.poshy-nav a {
	font-size: 1.05rem;
	text-transform: uppercase;
	letter-spacing: .18em;
	font-weight: 500;
	color: var(--poshy-text);
	text-decoration: none;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: .8rem;
	transition: color .3s;
}
.poshy-nav a .nav-num {
	font-family: var(--poshy-heading);
	font-size: .9rem;
	color: var(--poshy-pk);
	letter-spacing: .04em;
	font-weight: 400;
}
.poshy-nav a::after {
	content: '';
	position: absolute;
	bottom: -3px; left: 0;
	width: 100%;
	height: 1px;
	background: var(--poshy-orange);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .4s var(--poshy-ease-smooth);
}
.poshy-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.poshy-nav-cta {
	display: inline-flex;
	align-items: center;
	gap: .8rem;
	padding: .7rem 2rem !important;
	border: 1px solid var(--poshy-text);
	border-radius: 100px;
	transition: background .3s, color .3s, border-color .3s;
}
.poshy-nav-cta::after { display: none !important; }
.poshy-nav-cta:hover {
	background: var(--poshy-orange);
	color: #fff;
	border-color: var(--poshy-orange);
}
.poshy-nav-cta svg {
	width: 1em;
	height: 1.4em;
	fill: currentColor;
	flex-shrink: 0;
}

.poshy-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 28px;
	height: 20px;
	position: relative;
	z-index: 110;
}
.poshy-menu-toggle span {
	display: block;
	width: 100%;
	height: 1.5px;
	background: var(--poshy-text);
	position: absolute;
	left: 0;
	transition: .35s var(--poshy-ease-smooth);
}
.poshy-menu-toggle span:nth-child(1) { top: 0; }
.poshy-menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.poshy-menu-toggle span:nth-child(3) { bottom: 0; }
.poshy-menu-toggle.is-open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.poshy-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.poshy-menu-toggle.is-open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 900px) {
	.poshy-menu-toggle { display: block; }
	.poshy-nav {
		position: fixed;
		inset: 0;
		background: var(--poshy-bg);
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		visibility: hidden;
		transition: .5s;
		z-index: 105;
	}
	.poshy-nav.is-open { opacity: 1; visibility: visible; }
	.poshy-nav ul { flex-direction: column; gap: 3rem; }
	.poshy-nav a {
		font-family: var(--poshy-heading);
		font-size: 3rem;
		font-weight: 300;
		text-transform: none;
		letter-spacing: .04em;
	}
	.poshy-nav a .nav-num { font-size: 1.6rem; }
	.poshy-nav-cta { font-size: 1.5rem !important; padding: .8rem 2.8rem !important; }
}

/* ============================================================
   SECTION wrapper
   ============================================================ */
.poshy-sec {
	padding: var(--poshy-section-y) var(--poshy-section-x);
	position: relative;
}

/* Section label (label de seção pequeno com linha) */
.poshy-sec-label {
	display: inline-flex !important;
	align-items: center;
	gap: 1rem !important;
	font-size: 1rem !important;
	text-transform: uppercase;
	letter-spacing: .22em !important;
	font-weight: 500 !important;
	color: var(--poshy-pk) !important;
	margin: 0 0 3rem !important;
}
.poshy-sec-label::before {
	content: '';
	display: inline-block;
	width: 32px;
	height: 1px;
	background: var(--poshy-pk);
}

/* ============================================================
   HERO
   ============================================================ */
.poshy-hero {
	min-height: 100vh;
	display: flex !important;
	flex-direction: column;
	justify-content: center;
	padding: 14rem var(--poshy-section-x) 10rem !important;
	position: relative;
	overflow: hidden;
}
.poshy-hero-blob {
	position: absolute;
	right: -8%;
	top: 10%;
	width: 55vw;
	height: 55vw;
	max-width: 760px;
	max-height: 760px;
	background:
		radial-gradient(ellipse at 30% 40%, var(--poshy-pk), transparent 60%),
		radial-gradient(ellipse at 70% 60%, var(--poshy-orange), transparent 55%),
		radial-gradient(ellipse at 50% 30%, var(--poshy-pink), transparent 70%);
	filter: blur(80px);
	opacity: .28;
	border-radius: 50%;
	z-index: 0;
	animation: blobFloat 12s ease-in-out infinite;
	pointer-events: none;
}
.poshy-hero-title {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	letter-spacing: -.01em !important;
	line-height: .95 !important;
	font-size: clamp(4.8rem, 12vw, 16rem) !important;
	margin: 0 !important;
	color: var(--poshy-text);
	position: relative;
	z-index: 2;
	clip-path: inset(0 0 100% 0);
	transform: translateY(40px);
	opacity: 0;
	transition: clip-path 1.4s var(--poshy-ease-smooth), transform 1.2s var(--poshy-ease-smooth), opacity 1s ease;
}
.poshy-hero-title.is-visible {
	clip-path: inset(0 0 -10% 0);
	transform: translateY(0);
	opacity: 1;
}
.poshy-hero-title em,
.poshy-hero-title .accent {
	color: var(--poshy-pk);
	font-style: italic;
}
.poshy-hero-sub {
	max-width: 46rem;
	font-size: 1.5rem !important;
	line-height: 1.65;
	color: var(--poshy-text-2);
	margin-top: 4rem !important;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .8s ease 1.2s, transform .8s ease 1.2s;
	position: relative;
	z-index: 2;
}
.poshy-hero-sub.is-visible { opacity: 1; transform: translateY(0); }
@media (min-width: 1024px) {
	.poshy-hero-sub {
		position: absolute;
		bottom: 8rem;
		right: 6.25vw;
		margin-top: 0 !important;
	}
}

/* ============================================================
   ESTUDIO
   ============================================================ */
.poshy-estudio-lead {
	font-family: var(--poshy-heading) !important;
	font-weight: 400 !important;
	font-size: clamp(2rem, 3.4vw, 3.6rem) !important;
	line-height: 1.25 !important;
	margin: 0 0 3rem !important;
	max-width: 76rem;
	color: var(--poshy-text);
}
.poshy-estudio-lead .accent { color: var(--poshy-pk); font-style: italic; }
.poshy-estudio-text {
	font-size: 1.6rem !important;
	line-height: 1.7;
	color: var(--poshy-text-2);
	max-width: 68rem;
	font-weight: 300;
	margin: 0 !important;
}

/* ============================================================
   TRES TEMPOS
   ============================================================ */
.poshy-tempos { position: relative; overflow: hidden; }
.poshy-tempos-title {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	letter-spacing: -.01em !important;
	font-size: clamp(3.2rem, 6.5vw, 7.6rem) !important;
	line-height: 1 !important;
	margin: 0 0 7rem !important;
	color: var(--poshy-text);
}
.poshy-tempos-title em,
.poshy-tempos-title .accent { color: var(--poshy-pk); font-style: italic; }
.poshy-tempos-grid {
	display: grid !important;
	grid-template-columns: 1fr;
	gap: 4rem !important;
}
@media (min-width: 768px) {
	.poshy-tempos-grid { grid-template-columns: repeat(3, 1fr); gap: 4rem !important; }
}
.poshy-tempo {
	padding-top: 2.5rem;
	border-top: 1px solid var(--poshy-text);
}
.poshy-tempo-num {
	font-family: var(--poshy-heading);
	font-weight: 300;
	font-size: 5.6rem;
	color: var(--poshy-pk);
	opacity: .55;
	line-height: 1;
	margin: 0 0 .8rem;
	letter-spacing: -.02em;
}
.poshy-tempo h3 {
	font-family: var(--poshy-heading) !important;
	font-weight: 400 !important;
	font-size: 1.9rem !important;
	letter-spacing: .02em !important;
	margin: 0 0 1.4rem !important;
	color: var(--poshy-text);
}
.poshy-tempo p {
	font-size: 1.5rem;
	line-height: 1.65;
	color: var(--poshy-text-2);
	font-weight: 300;
	margin: 0;
}
.poshy-tempos-foot {
	margin: 6rem 0 0 !important;
	font-family: var(--poshy-heading) !important;
	font-weight: 400 !important;
	font-size: clamp(1.8rem, 2.4vw, 2.4rem) !important;
	line-height: 1.45;
	max-width: 68rem;
	color: var(--poshy-text);
}

/* ============================================================
   MARQUEE (Visual Break)
   ============================================================ */
.poshy-marquee {
	background: var(--poshy-bg);
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--poshy-border);
	border-bottom: 1px solid var(--poshy-border);
}
.poshy-marquee-track {
	display: flex;
	white-space: nowrap;
	animation: marqueeRoll 40s linear infinite;
	font-family: var(--poshy-heading);
	font-weight: 400;
	font-size: clamp(3rem, 5.5vw, 6.4rem);
	letter-spacing: -.01em;
	color: var(--poshy-text);
}
.poshy-marquee-track > span {
	padding: 0 2.5rem;
	display: inline-flex;
	align-items: center;
	gap: 2.5rem;
	flex-shrink: 0;
}
.poshy-marquee-track svg {
	width: .55em;
	height: .55em;
	fill: var(--poshy-pk);
	flex-shrink: 0;
}

/* ============================================================
   PORTFOLIO PREVIEW (versão MVP — grid simples)
   ============================================================ */
.poshy-pf-head {
	display: flex !important;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 2rem !important;
	margin-bottom: 5rem !important;
}
.poshy-pf-head h2 {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	font-size: clamp(3rem, 5.5vw, 6rem) !important;
	line-height: 1 !important;
	margin: 0 !important;
}
.poshy-pf-link {
	font-family: var(--poshy-heading);
	font-size: 1.4rem;
	color: var(--poshy-text);
	text-decoration: none;
	border-bottom: 1px solid var(--poshy-orange);
	padding-bottom: .3rem;
	transition: color .3s, gap .3s;
}
.poshy-pf-link:hover { color: var(--poshy-orange); }

.poshy-pf-grid {
	display: grid !important;
	grid-template-columns: 1fr;
	gap: 2rem !important;
}
@media (min-width: 768px) {
	.poshy-pf-grid {
		grid-template-columns: repeat(6, 1fr);
		grid-auto-rows: 14rem;
		gap: 2rem !important;
	}
	.poshy-pf-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
	.poshy-pf-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
	.poshy-pf-item:nth-child(3) { grid-column: span 2; grid-row: span 1; }
	.poshy-pf-item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
	.poshy-pf-item:nth-child(5) { grid-column: span 4; grid-row: span 1; }
	.poshy-pf-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
}
.poshy-pf-item {
	position: relative;
	background: linear-gradient(135deg, rgba(224,0,77,.08), rgba(254,80,0,.08));
	overflow: hidden;
	min-height: 24rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform .5s var(--poshy-ease-smooth);
}
.poshy-pf-item:hover { transform: scale(1.02); }
.poshy-pf-ph {
	font-family: var(--poshy-heading);
	font-weight: 300;
	font-size: 2rem;
	color: var(--poshy-text-3);
	letter-spacing: .14em;
	text-transform: uppercase;
}
.poshy-pf-over {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.7), transparent 50%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2rem;
	color: #fff;
	opacity: 0;
	transition: opacity .4s ease;
}
.poshy-pf-item:hover .poshy-pf-over { opacity: 1; }
.poshy-pf-over .poshy-pf-name {
	font-family: var(--poshy-heading);
	font-weight: 400;
	font-size: 1.8rem;
	margin-bottom: .4rem;
}
.poshy-pf-over .poshy-pf-svcs {
	font-size: 1.1rem;
	color: rgba(255,255,255,.8);
	letter-spacing: .04em;
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.poshy-svc-top {
	display: flex !important;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 3rem !important;
	margin-bottom: 6rem !important;
}
.poshy-svc-top h2 {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	font-size: clamp(3rem, 5.5vw, 6rem) !important;
	line-height: 1 !important;
	margin: 0 !important;
}
.poshy-svc-intro {
	max-width: 34rem;
	font-size: 1.5rem !important;
	line-height: 1.65;
	color: var(--poshy-text-2);
	font-weight: 300;
	margin: 0 !important;
}
.poshy-svc-list {
	border-top: 1px solid var(--poshy-border);
}
.poshy-svc-item {
	display: grid !important;
	grid-template-columns: 1fr;
	gap: 2.5rem !important;
	padding: 4rem 0 !important;
	border-bottom: 1px solid var(--poshy-border);
	cursor: pointer;
	transition: background .4s, padding .4s;
}
@media (min-width: 768px) {
	.poshy-svc-item { grid-template-columns: 1fr 2fr; gap: 4rem !important; }
}
.poshy-svc-item:hover { background: var(--poshy-card-hover); padding-left: 2rem !important; padding-right: 2rem !important; }
.poshy-svc-name-wrap { display: flex !important; flex-direction: column; gap: .6rem !important; }
.poshy-svc-name {
	font-family: var(--poshy-heading);
	font-weight: 400;
	font-size: clamp(2.4rem, 3.4vw, 3.6rem);
	line-height: 1.05;
	color: var(--poshy-text);
	transition: color .4s;
}
.poshy-svc-item:hover .poshy-svc-name { color: var(--poshy-orange); }
.poshy-svc-sub {
	font-family: var(--poshy-body);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: .2em;
	color: var(--poshy-pk);
	font-weight: 500;
}
.poshy-svc-desc {
	font-size: 1.6rem !important;
	line-height: 1.7;
	color: var(--poshy-text-2);
	font-weight: 300;
	margin: 0 !important;
}

/* ============================================================
   ABORDAGEM
   ============================================================ */
.poshy-abord-intro {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	font-size: clamp(3rem, 5.4vw, 5.8rem) !important;
	line-height: 1 !important;
	margin: 0 0 3rem !important;
	color: var(--poshy-text);
}
.poshy-abord-intro em,
.poshy-abord-intro .accent { color: var(--poshy-pk); font-style: italic; }
.poshy-abord-lead {
	font-size: 1.6rem !important;
	line-height: 1.7;
	color: var(--poshy-text-2);
	max-width: 64rem;
	margin: 0 0 6rem !important;
	font-weight: 300;
}
.poshy-crenca {
	display: grid !important;
	grid-template-columns: 1fr;
	gap: 2rem !important;
	padding: 4.5rem 0 !important;
	border-top: 1px solid var(--poshy-border);
}
@media (min-width: 768px) {
	.poshy-crenca { grid-template-columns: 8rem 1fr; gap: 4rem !important; }
}
.poshy-crenca:last-of-type { border-bottom: 1px solid var(--poshy-border); }
.poshy-crenca-num {
	font-family: var(--poshy-heading);
	font-weight: 300;
	font-size: clamp(4rem, 6vw, 7rem);
	color: var(--poshy-pk);
	line-height: .9;
	letter-spacing: -.02em;
	margin: 0;
}
.poshy-crenca h3 {
	font-family: var(--poshy-heading) !important;
	font-weight: 400 !important;
	font-size: clamp(2rem, 2.8vw, 3rem) !important;
	line-height: 1.2 !important;
	margin: 0 0 1.8rem !important;
	color: var(--poshy-text);
}
.poshy-crenca p {
	font-size: 1.6rem;
	line-height: 1.75;
	color: var(--poshy-text-2);
	font-weight: 300;
	max-width: 64rem;
	margin: 0 0 1.4rem;
}
.poshy-abord-link-wrap {
	margin-top: 5rem !important;
	padding-top: 4rem !important;
	border-top: 1px solid var(--poshy-border);
	display: flex !important;
	justify-content: center;
}
.poshy-abord-link {
	display: inline-flex !important;
	align-items: center;
	gap: 1.2rem !important;
	font-family: var(--poshy-heading);
	font-weight: 400;
	font-size: clamp(1.8rem, 2.6vw, 2.8rem);
	color: var(--poshy-text);
	text-decoration: none;
	position: relative;
	padding-bottom: .4rem;
	transition: color .3s, gap .3s;
}
.poshy-abord-link::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0;
	width: 100%;
	height: 1px;
	background: var(--poshy-orange);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .5s var(--poshy-ease-smooth);
}
.poshy-abord-link:hover { color: var(--poshy-pk); gap: 1.8rem !important; }
.poshy-abord-link:hover::after { transform: scaleX(1); transform-origin: left; }
.poshy-abord-link::before { content: '→'; display: none; }

/* ============================================================
   SOBRE (Deborah)
   ============================================================ */
.poshy-sobre-wrap {
	display: grid !important;
	grid-template-columns: 1fr;
	gap: 5rem !important;
	align-items: start;
}
@media (min-width: 900px) {
	.poshy-sobre-wrap { grid-template-columns: 1fr 1.4fr; }
}
.poshy-sobre-img {
	aspect-ratio: 3/4;
	background: linear-gradient(135deg, rgba(224,0,77,.04), rgba(254,80,0,.04));
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--poshy-heading);
	color: var(--poshy-text-3);
	font-size: 1.2rem;
	letter-spacing: .3em;
	text-transform: uppercase;
	font-weight: 300;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
}
.poshy-sobre-img::before {
	content: '';
	position: absolute;
	top: -20%; left: -20%;
	width: 80%; height: 80%;
	background: radial-gradient(circle, var(--poshy-pk), transparent 60%);
	filter: blur(60px);
	opacity: .25;
}
.poshy-sobre-img::after {
	content: '';
	position: absolute;
	bottom: -20%; right: -20%;
	width: 80%; height: 80%;
	background: radial-gradient(circle, var(--poshy-orange), transparent 60%);
	filter: blur(60px);
	opacity: .22;
}
.poshy-sobre-img > span { position: relative; z-index: 2; }
.poshy-sobre-name {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	font-size: clamp(3.6rem, 5.4vw, 6.2rem) !important;
	line-height: 1 !important;
	margin: 0 0 3rem !important;
	color: var(--poshy-text);
}
.poshy-sobre-text {
	font-size: 1.6rem !important;
	line-height: 1.75;
	color: var(--poshy-text-2);
	font-weight: 300;
	margin: 0 0 1.6rem !important;
}
.poshy-sobre-hl {
	margin-top: 2.5rem !important;
	padding-top: 2rem !important;
	border-top: 1px solid var(--poshy-border);
	font-family: var(--poshy-heading) !important;
	font-weight: 400 !important;
	font-size: 1.3rem !important;
	text-transform: uppercase;
	letter-spacing: .14em !important;
	color: var(--poshy-pk) !important;
}
.poshy-sobre-link-wrap { margin-top: 3.5rem !important; }
.poshy-sobre-link {
	display: inline-flex !important;
	align-items: center;
	gap: 1rem !important;
	font-family: var(--poshy-heading);
	font-weight: 400;
	font-size: clamp(1.6rem, 2.2vw, 2.2rem);
	color: var(--poshy-text);
	text-decoration: none;
	position: relative;
	padding-bottom: .4rem;
	transition: color .3s, gap .3s;
}
.poshy-sobre-link::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0;
	width: 100%;
	height: 1px;
	background: var(--poshy-orange);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .5s var(--poshy-ease-smooth);
}
.poshy-sobre-link:hover { color: var(--poshy-pk); gap: 1.5rem !important; }
.poshy-sobre-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.poshy-cta {
	text-align: center;
	position: relative;
	overflow: hidden;
	padding: 18rem var(--poshy-section-x) !important;
}
.poshy-cta-blob {
	position: absolute;
	left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	width: 80vw;
	height: 80vw;
	max-width: 900px;
	max-height: 900px;
	background:
		radial-gradient(ellipse at 30% 40%, var(--poshy-pk), transparent 55%),
		radial-gradient(ellipse at 70% 60%, var(--poshy-orange), transparent 50%);
	filter: blur(90px);
	opacity: .18;
	border-radius: 50%;
	z-index: 0;
	animation: blobFloat 14s ease-in-out infinite;
	pointer-events: none;
}
.poshy-cta-statement {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	letter-spacing: -.01em !important;
	font-size: clamp(3rem, 6.5vw, 7.8rem) !important;
	line-height: 1.05 !important;
	max-width: 110rem;
	margin: 0 auto 5rem !important;
	color: var(--poshy-text);
	position: relative;
	z-index: 2;
}
.poshy-cta-statement em,
.poshy-cta-statement .accent { color: var(--poshy-pk); font-style: italic; }
.poshy-cta-btn {
	display: inline-flex !important;
	align-items: center;
	gap: 1rem !important;
	padding: 1.6rem 4rem !important;
	background: var(--poshy-text);
	color: var(--poshy-bg) !important;
	font-family: var(--poshy-heading);
	font-weight: 400;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: .14em;
	border-radius: 100px;
	text-decoration: none;
	transition: background .35s, color .35s, transform .35s, gap .35s;
	position: relative;
	z-index: 2;
}
.poshy-cta-btn:hover {
	background: var(--poshy-orange);
	color: #fff !important;
	transform: translateY(-2px);
	gap: 1.6rem !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.poshy-footer { padding: 0 var(--poshy-section-x) 3rem; }
.poshy-footer-cta {
	text-align: center;
	padding: 9rem 0 5rem;
}
.poshy-footer-cta a {
	font-family: var(--poshy-heading);
	font-size: clamp(3rem, 7.5vw, 9rem);
	font-weight: 300;
	display: inline-block;
	line-height: 1;
	position: relative;
	color: var(--poshy-text);
	text-decoration: none;
}
.poshy-footer-cta-line {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--poshy-orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .7s var(--poshy-ease-smooth);
}
.poshy-footer-cta a:hover .poshy-footer-cta-line { transform: scaleX(1); }
.poshy-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3.5rem;
	margin-bottom: 4rem;
	padding-top: 3.5rem;
	border-top: 1px solid var(--poshy-border);
}
@media (min-width: 768px) {
	.poshy-footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.poshy-footer-info p { font-size: 1.25rem; line-height: 1.5; color: var(--poshy-text-2); margin: 0 0 .5rem; }
.poshy-footer-brand {
	font-family: var(--poshy-heading);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--poshy-text) !important;
	margin-bottom: .3rem !important;
}
.poshy-footer-col h4 {
	font-family: var(--poshy-heading);
	font-size: 1.15rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	margin: 0 0 1.2rem;
	color: var(--poshy-text);
}
.poshy-footer-col a {
	display: block;
	font-size: 1.2rem;
	color: var(--poshy-text-2);
	margin-bottom: .6rem;
	transition: color .3s;
	text-decoration: none;
}
.poshy-footer-col a:hover { color: var(--poshy-orange); }
.poshy-footer-bottom {
	text-align: center;
	padding-top: 1.5rem;
	border-top: 1px solid var(--poshy-border);
}
.poshy-footer-bottom p { font-size: 1.05rem; color: var(--poshy-text-3); margin: 0; }

/* ============================================================
   THEME TOGGLE
   ============================================================ */
.poshy-theme-toggle {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 200;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--poshy-border);
	background: var(--poshy-bg);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .2s, border-color .3s, background .4s;
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.poshy-theme-toggle:hover { transform: scale(1.1); border-color: var(--poshy-orange); }
.poshy-theme-toggle svg {
	width: 18px; height: 18px;
	fill: none;
	stroke: var(--poshy-text);
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.poshy-theme-toggle .icon-sun { display: none; }
.poshy-theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .poshy-theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .poshy-theme-toggle .icon-moon { display: none; }

/* ============================================================
   OVERRIDES — alta especificidade para sobrepor wp-block-group / is-layout-flow
   do WordPress 6.9. Necessário porque o core injeta classes que ganham em
   especificidade.
   ============================================================ */

/* Garantir font-size raiz */
html { font-size: 10px !important; }

/* Reset wp-block-group default behavior nas nossas seções */
.wp-block-group.poshy-hero,
.wp-block-group.poshy-sec,
.wp-block-group.poshy-cta {
	max-width: none !important;
	margin: 0 !important;
}

/* HERO */
.wp-block-group.poshy-hero {
	min-height: 100vh;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	padding: 14rem var(--poshy-section-x) 10rem !important;
	position: relative;
	overflow: hidden;
	gap: 0 !important;
}
.wp-block-group.poshy-hero > * { margin: 0; }
h1.wp-block-heading.poshy-hero-title {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	font-size: clamp(4.8rem, 12vw, 16rem) !important;
	line-height: .95 !important;
	letter-spacing: -.01em !important;
	color: var(--poshy-text) !important;
	margin: 0 !important;
	max-width: 90%;
	position: relative;
	z-index: 2;
}
h1.wp-block-heading.poshy-hero-title em { color: var(--poshy-pk) !important; font-style: italic !important; }
p.poshy-hero-sub {
	max-width: 46rem !important;
	font-size: 1.5rem !important;
	line-height: 1.65 !important;
	color: var(--poshy-text-2) !important;
	margin-top: 4rem !important;
	position: relative;
	z-index: 2;
}
@media (min-width: 1024px) {
	p.poshy-hero-sub {
		position: absolute !important;
		bottom: 8rem !important;
		right: 6.25vw !important;
		margin-top: 0 !important;
	}
}

/* SECTION wrapper */
.wp-block-group.poshy-sec {
	padding: var(--poshy-section-y) var(--poshy-section-x) !important;
	display: block !important;
}

/* ESTÚDIO */
.wp-block-group.poshy-sec p.poshy-sec-label {
	display: inline-flex !important;
	align-items: center;
	gap: 1rem;
	font-size: 1rem !important;
	text-transform: uppercase;
	letter-spacing: .22em !important;
	font-weight: 500 !important;
	color: var(--poshy-pk) !important;
	margin: 0 0 3rem !important;
}
.wp-block-group.poshy-sec p.poshy-sec-label::before {
	content: '';
	display: inline-block;
	width: 32px;
	height: 1px;
	background: var(--poshy-pk);
}
.wp-block-group.poshy-sec p.poshy-estudio-lead {
	font-family: var(--poshy-heading) !important;
	font-weight: 400 !important;
	font-size: clamp(2rem, 3.4vw, 3.6rem) !important;
	line-height: 1.25 !important;
	margin: 0 0 3rem !important;
	max-width: 76rem;
	color: var(--poshy-text) !important;
}
.wp-block-group.poshy-sec p.poshy-estudio-lead em { color: var(--poshy-pk) !important; font-style: italic !important; }
.wp-block-group.poshy-sec p.poshy-estudio-text {
	font-size: 1.6rem !important;
	line-height: 1.7 !important;
	color: var(--poshy-text-2) !important;
	max-width: 68rem;
	font-weight: 300;
	margin: 0 !important;
}

/* TEMPOS */
.wp-block-group.poshy-tempos h2.wp-block-heading.poshy-tempos-title {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	font-size: clamp(3.2rem, 6.5vw, 7.6rem) !important;
	line-height: 1 !important;
	letter-spacing: -.01em !important;
	margin: 0 0 7rem !important;
	color: var(--poshy-text) !important;
}
.wp-block-group.poshy-tempos h2.poshy-tempos-title em { color: var(--poshy-pk) !important; font-style: italic !important; }

.wp-block-group.poshy-tempos-grid {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 4rem !important;
	margin: 0 !important;
}
@media (min-width: 768px) {
	.wp-block-group.poshy-tempos-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}
.wp-block-group.poshy-tempo {
	padding-top: 2.5rem !important;
	border-top: 1px solid var(--poshy-text) !important;
	display: block !important;
}
.wp-block-group.poshy-tempo p.poshy-tempo-num {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	font-size: 5.6rem !important;
	color: var(--poshy-pk) !important;
	opacity: .55;
	line-height: 1 !important;
	margin: 0 0 .8rem !important;
	letter-spacing: -.02em;
}
.wp-block-group.poshy-tempo h3.wp-block-heading {
	font-family: var(--poshy-heading) !important;
	font-weight: 400 !important;
	font-size: 1.9rem !important;
	letter-spacing: .02em;
	margin: 0 0 1.4rem !important;
	color: var(--poshy-text) !important;
}
.wp-block-group.poshy-tempo p:not(.poshy-tempo-num) {
	font-size: 1.5rem !important;
	line-height: 1.65 !important;
	color: var(--poshy-text-2) !important;
	font-weight: 300;
	margin: 0 !important;
}
p.poshy-tempos-foot {
	margin: 6rem 0 0 !important;
	font-family: var(--poshy-heading) !important;
	font-weight: 400 !important;
	font-size: clamp(1.8rem, 2.4vw, 2.4rem) !important;
	line-height: 1.45 !important;
	max-width: 68rem;
	color: var(--poshy-text) !important;
}

/* MARQUEE — SVG dimensions FIXED */
section.poshy-marquee {
	background: var(--poshy-bg);
	padding: 4rem 0 !important;
	overflow: hidden;
	border-top: 1px solid var(--poshy-border);
	border-bottom: 1px solid var(--poshy-border);
	position: relative;
}
section.poshy-marquee .poshy-marquee-track {
	display: flex !important;
	flex-direction: row !important;
	white-space: nowrap !important;
	animation: marqueeRoll 40s linear infinite;
	font-family: var(--poshy-heading);
	font-weight: 400;
	font-size: clamp(3rem, 5.5vw, 6.4rem) !important;
	letter-spacing: -.01em;
	color: var(--poshy-text);
	width: max-content;
}
section.poshy-marquee .poshy-marquee-track > span {
	padding: 0 2.5rem;
	display: inline-flex !important;
	align-items: center;
	gap: 2.5rem;
	flex-shrink: 0 !important;
	flex-direction: row !important;
}
section.poshy-marquee .poshy-marquee-track svg {
	width: 3rem !important;
	height: 3rem !important;
	max-width: 3rem !important;
	max-height: 3rem !important;
	fill: var(--poshy-pk);
	flex-shrink: 0 !important;
	display: inline-block !important;
}

/* PORTFOLIO PREVIEW — scroll horizontal */
.wp-block-group.poshy-pf .wp-block-group.poshy-pf-head {
	display: flex !important;
	justify-content: space-between !important;
	align-items: flex-end !important;
	flex-wrap: wrap;
	gap: 2rem;
	margin: 0 0 5rem !important;
}
.wp-block-group.poshy-pf-head h2.wp-block-heading {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	font-size: clamp(3rem, 5.5vw, 6rem) !important;
	line-height: 1 !important;
	margin: 0 !important;
	color: var(--poshy-text) !important;
}
.poshy-pf-link {
	font-family: var(--poshy-heading);
	font-size: 1.4rem !important;
	color: var(--poshy-text) !important;
	text-decoration: none !important;
	border-bottom: 1px solid var(--poshy-orange);
	padding-bottom: .3rem;
	transition: color .3s, gap .3s;
}
.poshy-pf-link:hover { color: var(--poshy-orange) !important; }

/* Scroll horizontal container */
.poshy-pf-grid {
	display: flex !important;
	flex-direction: row !important;
	gap: 2rem !important;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding: 1rem 0 3rem;
	margin: 0 calc(-1 * var(--poshy-section-x));
	padding-left: var(--poshy-section-x);
	padding-right: var(--poshy-section-x);
	scrollbar-width: thin;
	scrollbar-color: var(--poshy-orange) var(--poshy-border);
}
.poshy-pf-grid::-webkit-scrollbar {
	height: 6px;
}
.poshy-pf-grid::-webkit-scrollbar-track {
	background: var(--poshy-border);
	border-radius: 3px;
}
.poshy-pf-grid::-webkit-scrollbar-thumb {
	background: var(--poshy-orange);
	border-radius: 3px;
}
.poshy-pf-item {
	flex-shrink: 0 !important;
	scroll-snap-align: start;
	width: 48rem;
	aspect-ratio: 4 / 3;
	position: relative;
	background: linear-gradient(135deg, rgba(224,0,77,.12), rgba(254,80,0,.12));
	overflow: hidden;
	display: flex !important;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform .5s var(--poshy-ease-smooth);
	border-radius: 2px;
}
.poshy-pf-item:hover { transform: translateY(-4px); }
@media (max-width: 768px) {
	.poshy-pf-item { width: 80vw; }
}
.poshy-pf-ph {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	font-size: 2.4rem !important;
	color: var(--poshy-text-2) !important;
	letter-spacing: .14em !important;
	text-transform: uppercase;
	display: block;
}
.poshy-pf-over {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.2) 50%, transparent 80%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2.5rem;
	color: #fff;
	opacity: 0;
	transition: opacity .4s ease;
}
.poshy-pf-item:hover .poshy-pf-over { opacity: 1; }
.poshy-pf-over .poshy-pf-name {
	font-family: var(--poshy-heading) !important;
	font-weight: 400 !important;
	font-size: 2rem !important;
	color: #fff !important;
	margin: 0 0 .4rem !important;
}
.poshy-pf-over .poshy-pf-svcs {
	font-size: 1.2rem !important;
	color: rgba(255,255,255,.85) !important;
	letter-spacing: .04em;
}

/* Hint de scroll abaixo do grid */
.poshy-pf-hint {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.1rem;
	color: var(--poshy-text-3);
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-top: 2rem;
	font-family: var(--poshy-heading);
}
.poshy-pf-hint svg {
	width: 2.4rem;
	height: 1rem;
	stroke: var(--poshy-orange);
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* SERVIÇOS */
.wp-block-group.poshy-svc .wp-block-group.poshy-svc-top {
	display: flex !important;
	justify-content: space-between !important;
	align-items: flex-end !important;
	flex-wrap: wrap;
	gap: 3rem;
	margin: 0 0 6rem !important;
}
.wp-block-group.poshy-svc-top h2.wp-block-heading {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	font-size: clamp(3rem, 5.5vw, 6rem) !important;
	line-height: 1 !important;
	margin: 0 !important;
	color: var(--poshy-text) !important;
}
.wp-block-group.poshy-svc-top p.poshy-svc-intro {
	max-width: 34rem !important;
	font-size: 1.5rem !important;
	line-height: 1.65 !important;
	color: var(--poshy-text-2) !important;
	font-weight: 300;
	margin: 0 !important;
}
.wp-block-group.poshy-svc-list {
	border-top: 1px solid var(--poshy-border);
	display: block !important;
}
.wp-block-group.poshy-svc-item {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 2.5rem !important;
	padding: 4rem 0 !important;
	border-bottom: 1px solid var(--poshy-border);
	transition: background .4s, padding .4s;
}
@media (min-width: 768px) {
	.wp-block-group.poshy-svc-item {
		grid-template-columns: 1fr 2fr !important;
		gap: 4rem !important;
	}
}
.wp-block-group.poshy-svc-item:hover { background: var(--poshy-card-hover); }
.wp-block-group.poshy-svc-name-wrap {
	display: flex !important;
	flex-direction: column !important;
	gap: .6rem !important;
}
.poshy-svc-name {
	font-family: var(--poshy-heading) !important;
	font-weight: 400 !important;
	font-size: clamp(2.4rem, 3.4vw, 3.6rem) !important;
	line-height: 1.05 !important;
	color: var(--poshy-text) !important;
	transition: color .4s;
	margin: 0 !important;
}
.wp-block-group.poshy-svc-item:hover .poshy-svc-name { color: var(--poshy-orange) !important; }
.poshy-svc-sub {
	font-family: var(--poshy-body) !important;
	font-size: 1rem !important;
	text-transform: uppercase;
	letter-spacing: .2em !important;
	color: var(--poshy-pk) !important;
	font-weight: 500 !important;
	margin: 0 !important;
}
.poshy-svc-desc {
	font-size: 1.6rem !important;
	line-height: 1.7 !important;
	color: var(--poshy-text-2) !important;
	font-weight: 300;
	margin: 0 !important;
}

/* ABORDAGEM */
.wp-block-group.poshy-abord h2.wp-block-heading.poshy-abord-intro {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	font-size: clamp(3rem, 5.4vw, 5.8rem) !important;
	line-height: 1 !important;
	margin: 0 0 3rem !important;
	color: var(--poshy-text) !important;
}
.wp-block-group.poshy-abord h2.poshy-abord-intro em { color: var(--poshy-pk) !important; font-style: italic !important; }
.wp-block-group.poshy-abord p.poshy-abord-lead {
	font-size: 1.6rem !important;
	line-height: 1.7 !important;
	color: var(--poshy-text-2) !important;
	max-width: 64rem;
	margin: 0 0 6rem !important;
	font-weight: 300;
}
.wp-block-group.poshy-crenca {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 2rem !important;
	padding: 4.5rem 0 !important;
	border-top: 1px solid var(--poshy-border);
}
@media (min-width: 768px) {
	.wp-block-group.poshy-crenca {
		grid-template-columns: 8rem 1fr !important;
		gap: 4rem !important;
	}
}
.wp-block-group.poshy-crenca:last-of-type { border-bottom: 1px solid var(--poshy-border); }
.wp-block-group.poshy-crenca p.poshy-crenca-num {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	font-size: clamp(4rem, 6vw, 7rem) !important;
	color: var(--poshy-pk) !important;
	line-height: .9 !important;
	letter-spacing: -.02em;
	margin: 0 !important;
}
.wp-block-group.poshy-crenca h3.wp-block-heading {
	font-family: var(--poshy-heading) !important;
	font-weight: 400 !important;
	font-size: clamp(2rem, 2.8vw, 3rem) !important;
	line-height: 1.2 !important;
	margin: 0 0 1.8rem !important;
	color: var(--poshy-text) !important;
}
.wp-block-group.poshy-crenca p:not(.poshy-crenca-num) {
	font-size: 1.6rem !important;
	line-height: 1.75 !important;
	color: var(--poshy-text-2) !important;
	font-weight: 300;
	max-width: 64rem;
	margin: 0 !important;
}
.poshy-abord-link-wrap {
	margin-top: 5rem !important;
	padding-top: 4rem !important;
	border-top: 1px solid var(--poshy-border);
	display: flex !important;
	justify-content: center;
}
.poshy-abord-link {
	display: inline-flex !important;
	align-items: center;
	gap: 1.2rem;
	font-family: var(--poshy-heading);
	font-weight: 400;
	font-size: clamp(1.8rem, 2.6vw, 2.8rem);
	color: var(--poshy-text);
	text-decoration: none;
	padding-bottom: .4rem;
	border-bottom: 1px solid var(--poshy-orange);
	transition: color .3s, gap .3s;
}
.poshy-abord-link:hover { color: var(--poshy-pk); gap: 1.8rem; }

/* SOBRE Deborah */
.wp-block-group.poshy-sobre .wp-block-group.poshy-sobre-wrap {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 5rem !important;
	align-items: start !important;
}
@media (min-width: 900px) {
	.wp-block-group.poshy-sobre .wp-block-group.poshy-sobre-wrap {
		grid-template-columns: 1fr 1.4fr !important;
	}
}
.poshy-sobre-img {
	aspect-ratio: 3/4;
	background: linear-gradient(135deg, rgba(224,0,77,.04), rgba(254,80,0,.04));
	display: flex !important;
	align-items: center;
	justify-content: center;
	font-family: var(--poshy-heading);
	color: var(--poshy-text-3);
	font-size: 1.2rem;
	letter-spacing: .3em;
	text-transform: uppercase;
	font-weight: 300;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
}
.wp-block-group.poshy-sobre h2.wp-block-heading.poshy-sobre-name {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	font-size: clamp(3.6rem, 5.4vw, 6.2rem) !important;
	line-height: 1 !important;
	margin: 0 0 3rem !important;
	color: var(--poshy-text) !important;
}
.wp-block-group.poshy-sobre p.poshy-sobre-text {
	font-size: 1.6rem !important;
	line-height: 1.75 !important;
	color: var(--poshy-text-2) !important;
	font-weight: 300;
	margin: 0 0 1.6rem !important;
}
.wp-block-group.poshy-sobre p.poshy-sobre-hl {
	margin-top: 2.5rem !important;
	padding-top: 2rem !important;
	border-top: 1px solid var(--poshy-border);
	font-family: var(--poshy-heading) !important;
	font-weight: 400 !important;
	font-size: 1.3rem !important;
	text-transform: uppercase;
	letter-spacing: .14em !important;
	color: var(--poshy-pk) !important;
}

/* CTA FINAL */
.wp-block-group.poshy-cta {
	text-align: center !important;
	position: relative;
	overflow: hidden;
	padding: 18rem var(--poshy-section-x) !important;
}
.wp-block-group.poshy-cta h2.wp-block-heading.poshy-cta-statement {
	font-family: var(--poshy-heading) !important;
	font-weight: 300 !important;
	font-size: clamp(3rem, 6.5vw, 7.8rem) !important;
	line-height: 1.05 !important;
	letter-spacing: -.01em !important;
	max-width: 110rem;
	margin: 0 auto 5rem !important;
	color: var(--poshy-text) !important;
	position: relative;
	z-index: 2;
}
.wp-block-group.poshy-cta h2.poshy-cta-statement em { color: var(--poshy-pk) !important; font-style: italic !important; }
.poshy-cta-btn {
	display: inline-flex !important;
	align-items: center;
	gap: 1rem;
	padding: 1.6rem 4rem !important;
	background: var(--poshy-text) !important;
	color: var(--poshy-bg) !important;
	font-family: var(--poshy-heading);
	font-weight: 400;
	font-size: 1.4rem !important;
	text-transform: uppercase;
	letter-spacing: .14em;
	border-radius: 100px;
	text-decoration: none !important;
	transition: background .35s, color .35s, transform .35s, gap .35s;
	position: relative;
	z-index: 2;
}
.poshy-cta-btn:hover {
	background: var(--poshy-orange) !important;
	color: #fff !important;
	transform: translateY(-2px);
	gap: 1.6rem;
}

/* MAIN: remover padding/gap default que o WP injeta */
main.wp-block-group.is-layout-flow > * + * {
	margin-block-start: 0 !important;
}
.wp-site-blocks {
	padding-top: 0 !important;
}

/* HEADER fix */
.poshy-header { gap: 0 !important; }
.poshy-header .poshy-nav ul { gap: 2.4rem !important; }
