*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
@import url(https://use.typekit.net/hgq1bfb.css);
:root {
	--bg: #f0f2f5;
	--c: #ffffff;
	--text-orange: #ff5d28;
	--text: #14161a;
	--text-muted: #5b6068;
	--border: #e2e5ea;
	--radius: 14px;
	--shadow: 0 1px 2px rgba(20, 22, 26, 0.04), 0 8px 24px rgba(20, 22, 26, 0.05);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: neue-haas-grotesk-display, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	font-size: 15px;
}

a {
	color: inherit;
}

.wrap {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
    
	background: rgba(240, 242, 245, 0.85);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--border);
}

.site-header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.logo-NOSSA {
	height: 22px;
	width: auto;
	display: block;
}

.site-header nav {
	display: flex;
	gap: 32px;
}

.site-header nav a {
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-muted);
	transition: color 0.15s ease;
}

.site-header nav a:hover {
	color: var(--text);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--text);
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 18px;
	border-radius: 999px;
	transition: background 0.15s ease;
}

.header-cta:hover {
	background: var(--text-orange);
}

/* Eyebrow / pill */
.pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--text-orange);
	background: rgba(255, 93, 40, 0.1);
	border: 1px solid rgba(255, 93, 40, 0.18);
	padding: 6px 14px;
	border-radius: 999px;
}

.pill .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--text-orange);
}

/* Hero */
.hero {
	padding: 100px 0 80px;
	text-align: center;
}

.hero h1 {
	font-size: clamp(34px, 5.2vw, 58px);
	line-height: 1.08;
	letter-spacing: -0.02em;
	font-weight: 600;
	max-width: 900px;
	margin: 24px auto 20px;
}

.hero h1 em {
	font-style: normal;
	color: var(--text-orange);
}

.hero .lead {
	max-width: 620px;
	margin: 0 auto;
	font-size: 18px;
	color: var(--text-muted);
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 36px;
	flex-wrap: wrap;
}

.hero-example-links {
	margin-top: 20px;
	font-size: 14px;
	color: var(--text-muted);
	text-align: center;
}
.hero-example-links a {
	color: var(--text);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.hero-example-links a:hover {
	color: var(--text-orange);
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 13px 24px;
	border-radius: 999px;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
	background: var(--text-orange);
	color: #fff;
}
.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(255, 93, 40, 0.3);
}

.btn-secondary {
	background: var(--c);
	color: var(--text);
	border: 1px solid var(--border);
}
.btn-secondary:hover {
	border-color: var(--text);
}

/* Section scaffolding */
section {
	padding: 88px 0;
}
section + section {
	border-top: 1px solid var(--border);
}

.section-head {
	max-width: 620px;
	margin: 0 0 48px;
}
.section-head.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section-head .pill {
	margin-bottom: 18px;
}

.section-head h2 {
	font-size: clamp(26px, 3.4vw, 36px);
	letter-spacing: -0.015em;
	font-weight: 600;
	margin-bottom: 14px;
}

.section-head p {
	color: var(--text-muted);
	font-size: 16px;
}

/* Cards grid */
.grid {
	display: grid;
	gap: 20px;
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.card {
	background: var(--c);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
}

.card h3 {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 8px;
}

.card p {
	color: var(--text-muted);
	font-size: 14.5px;
}

.card .icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: rgba(255, 93, 40, 0.1);
	color: var(--text-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	margin-bottom: 16px;
}

/* Flow / steps */
.flow {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	position: relative;
}

.flow-step {
	background: var(--c);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px 18px;
	position: relative;
	margin: 0 8px;
}

.flow-step .num {
	font-size: 12px;
	font-weight: 700;
	color: var(--text-orange);
	letter-spacing: 0.04em;
	margin-bottom: 10px;
}

.flow-step h4 {
	font-size: 14.5px;
	font-weight: 600;
	margin-bottom: 6px;
}
.flow-step p {
	font-size: 13px;
	color: var(--text-muted);
}

.flow-arrow {
	display: none;
}

code {
	font-family: ui-monospace, 'SF Mono', Menlo, monospace;
	font-size: 0.92em;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 5px;
	padding: 1px 6px;
}

.human-note {
	margin-top: 22px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: var(--text-muted);
	background: rgba(255, 93, 40, 0.06);
	border: 1px dashed rgba(255, 93, 40, 0.3);
	border-radius: 10px;
	padding: 12px 16px;
}

/* Comparison table */
.compare {
	width: 100%;
	border-collapse: collapse;
	background: var(--c);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}

.compare th,
.compare td {
	text-align: left;
	padding: 14px 20px;
	font-size: 14px;
	border-bottom: 1px solid var(--border);
}

.compare th {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--text-muted);
	background: var(--bg);
}

.compare tr:last-child td {
	border-bottom: none;
}
.compare td.yes {
	color: #1a9b5c;
	font-weight: 600;
}
.compare td.no {
	color: #c23b3b;
}

/* Stack list */
.stack-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.chip {
	font-size: 13.5px;
	font-weight: 500;
	background: var(--c);
	border: 1px solid var(--border);
	padding: 9px 16px;
	border-radius: 999px;
}

/* Phases */
.phase {
	display: flex;
	gap: 20px;
	background: var(--c);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 26px 28px;
}

.phase + .phase {
	margin-top: 16px;
}

.phase .badge {
	flex: none;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 15px;
}

.phase.active .badge {
	background: var(--text-orange);
	color: #fff;
}
.phase.next .badge {
	background: var(--bg);
	color: var(--text-muted);
	border: 1px solid var(--border);
}

.phase h3 {
	font-size: 16.5px;
	margin-bottom: 4px;
}
.phase .status {
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-left: 10px;
	padding: 3px 9px;
	border-radius: 999px;
	vertical-align: middle;
}

.phase.active .status {
	background: rgba(255, 93, 40, 0.12);
	color: var(--text-orange);
}
.phase.next .status {
	background: var(--bg);
	color: var(--text-muted);
	border: 1px solid var(--border);
}

.phase p {
	color: var(--text-muted);
	font-size: 14.5px;
}

/* CTA band */
.cta-band {
	background: var(--text);
	border-radius: 24px;
	padding: 64px 48px;
	text-align: center;
	color: #fff;
}

.cta-band h2 {
	font-size: clamp(24px, 3vw, 32px);
	margin-bottom: 12px;
}
.cta-band p {
	color: rgba(255, 255, 255, 0.65);
	max-width: 480px;
	margin: 0 auto 30px;
}
.cta-band .btn-secondary {
	background: #fff;
	border: none;
}

/* Footer */
footer.site-footer {
	padding: 40px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	color: var(--text-muted);
}

footer.site-footer .logo-NOSSA {
	height: 16px;
	opacity: 0.6;
}

@media (max-width: 860px) {
	.grid-3,
	.grid-2 {
		grid-template-columns: 1fr;
	}
	.flow {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.flow-step {
		margin: 0;
	}
	.site-header nav {
		display: none;
	}
	.compare {
		display: block;
		overflow-x: auto;
	}
	.cta-band {
		padding: 48px 24px;
	}
	footer.site-footer {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}
}

/* =========================================================
   Site chrome real da NOSSA — usado nas páginas do blog
   (distinto do cabeçalho/rodapé da página de proposta acima)
   ========================================================= */

.blog-topbar {
	background: var(--bg);
	border-bottom: 1px solid var(--border);
}

.blog-topbar .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 76px;
}

.blog-topbar-logo {
	display: block;
	line-height: 0;
	flex: none;
}
.blog-topbar-logo .logo-NOSSA {
	height: 26px;
}

.blog-nav {
	display: flex;
	flex: 1;
	justify-content: center;
	gap: 28px;
}
.blog-nav a {
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-muted);
	transition: color 0.15s ease;
}
.blog-nav a:hover {
	color: var(--text);
}

.blog-lang {
	display: flex;
	flex: none;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.blog-lang a {
	text-decoration: none;
	color: var(--text-muted);
}
.blog-lang a.active {
	color: var(--text-orange);
}

/* Footer real da NOSSA */
.blog-footer {
	background: #fff;
	border-top: 1px solid var(--border);
	padding: 56px 0 40px;
}

.blog-footer-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr 1.1fr 1.3fr;
	gap: 32px;
}

.bf-brand .logo-NOSSA {
	height: 20px;
	margin-bottom: 18px;
	display: block;
}

.bf-social {
	display: flex;
	gap: 12px;
}
.bf-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: var(--text);
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
}
.bf-social svg {
	width: 17px;
	height: 17px;
}
.bf-social a:hover {
	color: var(--text-orange);
}

.bf-links {
	display: flex;
	flex-direction: column;
	gap: 11px;
}
.bf-links a {
	text-decoration: none;
	font-weight: 600;
	font-size: 14.5px;
	color: var(--text);
}
.bf-links a:hover {
	color: var(--text-orange);
}

.bf-agencies h4 {
	font-size: 14.5px;
	font-weight: 600;
	margin-bottom: 14px;
}
.bf-agency {
	margin-bottom: 12px;
}
.bf-agency strong {
	display: block;
	font-size: 14.5px;
	color: var(--text-orange);
}
.bf-agency span {
	font-size: 12.5px;
	color: var(--text-muted);
}

.bf-contact {
	text-align: right;
	font-size: 13.5px;
}
.bf-contact .bf-address {
	font-weight: 600;
	margin-bottom: 8px;
}
.bf-contact .bf-phone,
.bf-contact .bf-email {
	margin-bottom: 3px;
}
.bf-contact .bf-phone span,
.bf-contact .bf-email span {
	color: var(--text-orange);
	font-weight: 700;
	margin-right: 5px;
}
.bf-contact .bf-note {
	color: var(--text-muted);
	font-size: 11.5px;
	margin-bottom: 18px;
}
.bf-contact .bf-legal {
	font-size: 11px;
	color: var(--text-muted);
	line-height: 1.7;
}
.bf-contact .bf-legal a {
	text-decoration: underline;
}

/* =========================================================
   Post de exemplo (artigo do blog)
   ========================================================= */

.breadcrumb {
	font-size: 13px;
	color: var(--text-muted);
	max-width: 760px;
	margin: 28px auto 0;
	padding: 0 24px;
}
.breadcrumb a {
	text-decoration: none;
	color: var(--text-muted);
}
.breadcrumb a:hover {
	color: var(--text-orange);
}

.post-hero {
	position: relative;
	height: 380px;
	overflow: hidden;
	margin-top: 24px;
}
.post-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.post-wrap {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 24px;
}

article.post {
	padding: 40px 0 90px;
}
article.post .post-header {
	margin-bottom: 8px;
}

.post-category {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--text-orange);
	background: rgba(255, 93, 40, 0.1);
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 18px;
}

.post h1 {
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.14;
	letter-spacing: -0.015em;
	font-weight: 600;
	margin-bottom: 18px;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: var(--text-muted);
}

.post-meta .ai-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11.5px;
	font-weight: 600;
	background: var(--bg);
	border: 1px solid var(--border);
	padding: 3px 10px;
	border-radius: 999px;
	color: var(--text-muted);
}

.post-lead {
	font-size: 18.5px;
	line-height: 1.55;
	font-weight: 500;
	margin: 28px 0 6px;
}

.post-body h2 {
	font-size: 23px;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin: 40px 0 14px;
}

.post-body p {
	margin-bottom: 18px;
	font-size: 16px;
}
.post-body ul {
	margin: 0 0 18px 20px;
}
.post-body li {
	margin-bottom: 8px;
	font-size: 16px;
}

.post-summary {
	background: var(--c);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px 24px;
	margin: 30px 0;
}
.post-summary h3 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--text-orange);
	margin-bottom: 12px;
}
.post-summary ul {
	margin: 0 0 0 18px;
}
.post-summary li {
	font-size: 14.5px;
	margin-bottom: 7px;
	color: var(--text-muted);
}
.post-summary li:last-child {
	margin-bottom: 0;
}

blockquote.post-quote {
	border-left: 3px solid var(--text-orange);
	padding: 2px 0 2px 22px;
	margin: 34px 0;
	font-size: 21px;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.4;
}

.video-embed {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius);
	overflow: hidden;
	margin: 30px 0 10px;
	background: var(--text);
}
.video-embed img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.5;
	display: block;
}
.video-embed .play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.video-embed .play span {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	backdrop-filter: blur(2px);
}
.video-caption {
	font-size: 12.5px;
	color: var(--text-muted);
	text-align: center;
	margin-bottom: 30px;
}

.post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 44px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
}

.post-cta {
	margin-top: 50px;
	text-align: center;
}

/* =========================================================
   Home do blog (informação da agência + listagem de posts)
   ========================================================= */

.agency-hero {
	position: relative;
	height: 440px;
	overflow: hidden;
}
.agency-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.agency-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10, 11, 14, 0.72);
}
.agency-hero-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.agency-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 18px;
}
.agency-hero-eyebrow::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--text-orange);
}
.agency-hero-content h1 {
	color: #fff;
	font-size: clamp(30px, 4.4vw, 50px);
	line-height: 1.14;
	letter-spacing: -0.015em;
	font-weight: 600;
	max-width: 760px;
	margin-bottom: 18px;
}
.agency-hero-content h1 span {
	color: var(--text-orange);
}
.agency-hero-lead {
	color: rgba(255, 255, 255, 0.85);
	font-size: 17px;
	line-height: 1.55;
	max-width: 560px;
}

.agency-about {
	padding: 48px 0;
	border-bottom: 1px solid var(--border);
}
.agency-about p {
	max-width: 660px;
	color: var(--text-muted);
	font-size: 16px;
	margin-bottom: 22px;
}
.agency-about-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.blog-listing {
	padding: 64px 0 90px;
}

.listing-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 32px;
}
.listing-head h2 {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 600;
	letter-spacing: -0.015em;
}

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 36px;
}
.filter-chip {
	font: inherit;
	font-size: 13.5px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--c);
	color: var(--text-muted);
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.filter-chip:hover {
	border-color: var(--text);
	color: var(--text);
}
.filter-chip.active {
	background: var(--text-orange);
	border-color: var(--text-orange);
	color: #fff;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.post-card {
	display: flex;
	flex-direction: column;
	background: var(--c);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.post-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.post-card-img {
	height: 170px;
	overflow: hidden;
}
.post-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.post-card-img.placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	background: linear-gradient(135deg, var(--bg), #e6e9ee);
}

.post-card-body {
	padding: 20px 22px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.post-card-cat {
	display: inline-block;
	align-self: flex-start;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--text-orange);
	background: rgba(255, 93, 40, 0.1);
	padding: 4px 10px;
	border-radius: 999px;
	margin-bottom: 12px;
}
.post-card-title {
	font-size: 16.5px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.005em;
	margin-bottom: 8px;
}
.post-card-excerpt {
	font-size: 13.5px;
	color: var(--text-muted);
	margin-bottom: 16px;
	flex: 1;
}
.post-card-meta {
	font-size: 12px;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 8px;
}

@media (max-width: 860px) {
	.blog-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px 24px;
	}
	.bf-contact {
		grid-column: span 2;
		text-align: left;
	}
	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.blog-footer-grid {
		grid-template-columns: 1fr;
	}
	.bf-contact {
		grid-column: auto;
	}
	.post-hero {
		height: 220px;
	}
	.blog-nav {
		display: none;
	}
	.agency-hero {
		height: 380px;
	}
	.post-grid {
		grid-template-columns: 1fr;
	}
}
