/* =========================================================
   Nuvem Hospedagem Blog — estilos do tema
   Paleta navy/ciano + tipografia Mont.
   ========================================================= */

/* ---------- Fontes (Mont) ----------
   Pesos disponiveis no site da Nuvem: Light (300), SemiBold (600), Bold (700).
   Nao existe um peso "Regular" 400 — por isso a faixa 300-400 usa a Light. */
@font-face {
	font-family: 'Mont';
	src: url('../fonts/Mont-Light.woff2') format('woff2'),
		url('../fonts/Mont-Light.woff') format('woff');
	font-weight: 300 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Mont';
	src: url('../fonts/Mont-SemiBold.woff2') format('woff2'),
		url('../fonts/Mont-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Mont';
	src: url('../fonts/Mont-Bold.woff2') format('woff2'),
		url('../fonts/Mont-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* ---------- Tokens da marca ---------- */
:root {
	--np-accent: #2EC9D4;        /* ciano — links, badge, CTAs, destaque */
	--np-accent-dark: #0C7A82;   /* ciano escurecido para contraste/hover */
	--np-navy: #0C2030;          /* cor padrao da marca — titulos, logo, texto forte */
	--np-navy-soft: #132D41;     /* navy medio — faixa de navegacao do header */
	--np-ink: #050C1A;           /* navy mais escuro — barra de promo / fundos escuros */
	--np-text: #334155;          /* corpo de texto */
	--np-muted: rgba(12, 32, 48, 0.6); /* subtitulos, meta */
	--np-bg: #F5FBFD;            /* fundo geral — azul claríssimo */
	--np-badge-bg: rgba(46, 201, 212, 0.10);
	--np-rule: rgba(12, 32, 48, 0.10);
	--np-white: #FFFFFF;

	--np-radius: 20px;
	--np-radius-btn: 10px;
	--np-container: 1200px;
	--np-font: 'Mont', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
	margin: 0;
	background: var(--np-bg);
	color: var(--np-text);
	font-family: var(--np-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--np-accent-dark);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

/* Forca a Mont em todos os titulos. Sobrescreve qualquer fonte serifada
   herdada de um CSS global do WordPress (Customizer, plugin ou tema antigo). */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--np-font);
}

.np-container {
	width: 100%;
	max-width: var(--np-container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ===================== Header (3 faixas) ===================== */
.np-header {
	position: relative;
	z-index: 20;
}

/* Faixa 1 — barra de promocao (ciano, aponta para os planos) */
.np-topbar {
	background: var(--np-accent);
}
.np-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding-top: 11px;
	padding-bottom: 11px;
	color: var(--np-navy);
}
.np-topbar__inner:hover {
	text-decoration: none;
}
.np-topbar__text {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}
.np-topbar__cta {
	flex-shrink: 0;
	font-size: 14px;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Faixa 2 — logo + utilitarios */
.np-headbar {
	background: var(--np-navy);
	color: var(--np-white);
}
.np-headbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 64px;
	padding-top: 12px;
	padding-bottom: 12px;
}
.np-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--np-white);
}
.np-logo:hover {
	text-decoration: none;
}
.np-logo__img {
	height: 30px;
	width: auto;
}
.np-logo__tag {
	font-weight: 400;
	font-size: 17px;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.5px;
}
.np-headbar__utils {
	display: flex;
	align-items: center;
	gap: 24px;
}
.np-headbar__link {
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
}
.np-headbar__link:hover {
	color: var(--np-white);
	text-decoration: none;
}

/* Faixa 3 — navegacao + busca */
.np-navbar {
	background: var(--np-navy-soft);
}
.np-navbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 52px;
}
.np-nav__list {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.np-nav__list li {
	position: relative;
}
.np-nav__list a {
	display: inline-block;
	color: rgba(255, 255, 255, 0.92);
	font-size: 15px;
	font-weight: 400;
	padding: 14px 0;
}
.np-nav__list a:hover {
	color: var(--np-accent);
	text-decoration: none;
}
/* setinha nos itens com submenu */
.np-nav__list .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	margin-left: 7px;
	border: 4px solid transparent;
	border-top-color: currentColor;
	transform: translateY(2px);
}
/* submenu (dropdown) */
.np-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: var(--np-navy);
	border-radius: 0 0 12px 12px;
	box-shadow: 0 16px 32px rgba(5, 12, 26, 0.25);
	list-style: none;
	margin: 0;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	z-index: 30;
}
.np-nav__list li:hover > .sub-menu,
.np-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.np-nav__list .sub-menu a {
	display: block;
	padding: 8px 20px;
}

/* Busca */
.np-search__input {
	width: 200px;
	max-width: 100%;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: var(--np-white);
	font-family: var(--np-font);
	font-size: 14px;
	padding: 9px 14px;
}
.np-search__input::placeholder {
	color: rgba(255, 255, 255, 0.65);
}
.np-search__input:focus {
	outline: none;
	border-color: var(--np-accent);
	background: rgba(255, 255, 255, 0.18);
}

/* Botao hamburguer (so aparece no mobile) */
.np-navtoggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: none;
	cursor: pointer;
}
.np-navtoggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	margin: 0 auto;
	background: var(--np-white);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Botoes ---------- */
.np-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--np-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	border-radius: var(--np-radius-btn);
	padding: 16px 32px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: filter 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.np-btn:hover {
	text-decoration: none;
}
.np-btn--primary {
	background: var(--np-accent);
	color: var(--np-navy);
}
.np-btn--primary:hover {
	filter: brightness(0.95);
}
.np-btn--ghost {
	background: transparent;
	color: var(--np-navy);
	border-color: var(--np-rule);
}
.np-btn--ghost:hover {
	border-color: var(--np-navy);
}
/* contorno claro — usado sobre o fundo navy do header */
.np-btn--outline {
	background: transparent;
	color: var(--np-white);
	border-color: rgba(255, 255, 255, 0.55);
}
.np-btn--outline:hover {
	border-color: var(--np-white);
	background: rgba(255, 255, 255, 0.08);
}
/* botao compacto (barra de promo) */
.np-btn--sm {
	font-size: 13px;
	padding: 9px 18px;
}

/* ---------- Feed: grid em largura total ---------- */
.np-feed {
	padding-top: 56px;
	padding-bottom: 80px;
}
.np-accent {
	color: var(--np-accent);
}
.np-feed__head {
	margin-bottom: 40px;
}
.np-feed__title {
	font-size: 40px;
	font-weight: 600;
	line-height: 1.1;
	color: var(--np-navy);
	margin: 0;
}
.np-feed__subtitle {
	font-size: 17px;
	line-height: 1.6;
	color: var(--np-text);
	max-width: 64ch;
	margin: 14px 0 0;
}

/* ---------- Grid de posts ---------- */
.np-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* ---------- Card (loop item) ---------- */
.np-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: transparent; /* card transparente sobre o fundo da pagina */
}
.np-card__thumb {
	display: block;
	border-radius: var(--np-radius);
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--np-badge-bg);
}
.np-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.np-card__badge {
	align-self: flex-start;
	background: var(--np-badge-bg);
	color: var(--np-accent-dark);
	font-size: 14.4px;
	font-weight: 400;
	line-height: 1;
	border-radius: 80px;
	padding: 8px 24px;
}
.np-card__badge:hover {
	text-decoration: none;
	background: rgba(46, 201, 212, 0.18);
}
.np-card__title {
	font-family: var(--np-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--np-navy);
	margin: 0;
}
.np-card__title a {
	color: inherit;
}
.np-card__title a:hover {
	color: var(--np-accent-dark);
	text-decoration: none;
}
.np-card__excerpt {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #243648;
	margin: 0;
}

/* ---------- Paginacao numerada ---------- */
.np-pagination {
	margin-top: 56px;
}
.np-pagination ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.np-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: var(--np-radius-btn);
	border: 1px solid rgba(12, 32, 48, 0.12);
	background: var(--np-white);
	color: var(--np-navy);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.np-pagination a.page-numbers:hover {
	border-color: var(--np-accent);
	color: var(--np-accent-dark);
}
.np-pagination .page-numbers.current {
	background: var(--np-accent);
	border-color: var(--np-accent);
	color: var(--np-white);
}
.np-pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
	font-weight: 400;
}

/* Texto visivel apenas para leitores de tela (acessibilidade). */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.np-empty {
	color: var(--np-muted);
	font-size: 16px;
}

/* ---------- Post individual ---------- */
.np-single__inner {
	max-width: 760px;
	padding-top: 48px;
	padding-bottom: 80px;
}
.np-single__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}
.np-single__title {
	font-family: var(--np-font);
	font-size: 40px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--np-navy);
	margin: 0;
}
.np-single__meta {
	color: var(--np-muted);
	font-size: 14px;
	margin: 0;
}
.np-single__thumb {
	border-radius: var(--np-radius);
	overflow: hidden;
	margin-bottom: 32px;
	aspect-ratio: 16 / 9;
}
.np-single__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.np-single__body {
	font-size: 17px;
	line-height: 1.7;
	color: var(--np-text);
}
.np-single__body h2,
.np-single__body h3 {
	font-family: var(--np-font);
	color: var(--np-navy);
	font-weight: 600;
}
.np-single__body a {
	color: var(--np-accent-dark);
	text-decoration: underline;
}

/* ---------- Breadcrumb (post individual) ---------- */
.np-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 14px;
	color: var(--np-muted);
	margin-bottom: 24px;
}
.np-breadcrumb a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--np-accent-dark);
	font-weight: 600;
}
.np-breadcrumb a:hover {
	color: var(--np-accent);
	text-decoration: none;
}
.np-breadcrumb__home svg {
	display: block;
}
.np-breadcrumb__sep {
	color: var(--np-muted);
}
.np-breadcrumb__current {
	color: var(--np-muted);
	font-weight: 400;
	max-width: 360px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* ---------- Posts relacionados ---------- */
.np-related {
	margin-top: 56px;
	padding-top: 40px;
	border-top: 1px solid var(--np-rule);
}
.np-related__title {
	font-family: var(--np-font);
	font-size: 24px;
	font-weight: 600;
	color: var(--np-navy);
	margin: 0 0 28px;
}
.np-related__grid .np-card__title {
	font-size: 17px;
}
.np-related__grid .np-card__excerpt {
	display: none;
}

/* ---------- Footer ---------- */
.np-footer {
	background: var(--np-navy);
	color: rgba(255, 255, 255, 0.75);
	margin-top: 40px;
}
.np-footer__inner {
	display: grid;
	grid-template-columns: 1.2fr 1.4fr 0.8fr;
	gap: 48px;
	padding-top: 56px;
	padding-bottom: 48px;
}
.np-footer a {
	color: rgba(255, 255, 255, 0.75);
}
.np-footer a:hover {
	color: var(--np-accent);
	text-decoration: none;
}
.np-footer__logo {
	height: 32px;
	width: auto;
	margin-bottom: 20px;
}
.np-footer__cnpj {
	font-size: 14px;
	font-weight: 600;
	color: var(--np-white);
	margin: 0 0 8px;
}
.np-footer__addr {
	font-size: 13px;
	line-height: 1.6;
	margin: 0 0 20px;
}
.np-footer__divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
	margin: 0 0 16px;
	max-width: 280px;
}
.np-footer__email {
	font-size: 14px;
	font-weight: 600;
	color: var(--np-white);
	margin: 0;
}
.np-footer__claim {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--np-white);
	margin: 0 0 28px;
	max-width: 28ch;
}
.np-footer__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.np-footer__col {
	display: flex;
	flex-direction: column;
	gap: 14px;
	font-size: 14px;
}
.np-footer__social-title {
	font-size: 15px;
	font-weight: 600;
	color: var(--np-white);
	margin: 0 0 18px;
}
.np-footer__social-btns {
	display: flex;
	gap: 12px;
}
.np-footer__social-btns a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	transition: background-color 0.2s ease;
}
.np-footer__social-btns a:hover {
	background: var(--np-accent);
}
.np-footer__social-btns img {
	width: 22px;
	height: 22px;
}
.np-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 20px 0;
}
.np-footer__copy {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	text-align: center;
}

/* ---------- Barra de Parceiros Oficiais ---------- */
.np-partners {
	background: var(--np-ink);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.np-partners__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px 40px;
	padding-top: 28px;
	padding-bottom: 28px;
}
.np-partners__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}
.np-partners__logos {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
}
.np-partners__logos img {
	height: 38px;
	width: auto;
	opacity: 0.9;
	transition: opacity 0.2s ease;
}
.np-partners__logos img:hover {
	opacity: 1;
}

/* ---------- Secao Migrar (CTA da home) ---------- */
.np-migrate {
	position: relative;
	overflow: hidden;
	background: var(--np-ink);
	padding: 120px 0 70px;
}
.np-migrate__divider {
	position: absolute;
	top: -2px;
	left: 0;
	width: 100%;
	height: auto;
	display: block;
}
.np-migrate__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}
.np-migrate__card {
	flex: 1 1 auto;
	max-width: 600px;
	background: var(--np-navy-soft);
	border-radius: 16px;
	padding: 40px;
}
.np-migrate__tag {
	display: flex;
	align-items: center;
	gap: 10px;
}
.np-migrate__dot {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--np-white);
	border: 3px solid #FFEC3E;
}
.np-migrate__tag h3 {
	font-size: 16px;
	font-weight: 400;
	color: #FFEC3E;
	margin: 0;
}
.np-migrate__tag h3 span {
	font-weight: 600;
}
.np-migrate__title {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--np-white);
	max-width: 420px;
	margin: 14px 0 8px;
}
.np-migrate__title span {
	color: var(--np-accent);
}
.np-migrate__text {
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
	max-width: 460px;
	margin: 0;
}
.np-migrate__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--np-accent);
	color: var(--np-white);
	font-size: 16px;
	font-weight: 700;
	border-radius: 50px;
	padding: 10px 26px 10px 10px;
	margin-top: 22px;
	transition: filter 0.2s ease;
}
.np-migrate__btn:hover {
	filter: brightness(1.08);
	text-decoration: none;
	color: var(--np-white);
}
.np-migrate__btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--np-white);
	flex-shrink: 0;
}
.np-migrate__btn-icon img {
	width: 20px;
	height: auto;
}
.np-migrate__art {
	flex-shrink: 0;
	width: 100%;
	max-width: 560px;
	height: auto;
}

/* A secao Migrar encosta direto no rodape (ambos escuros): remove o respiro.
   A migrate fica dentro de <main>, entao miramos o main que a contem. */
.np-main:has(.np-migrate) + .np-footer {
	margin-top: 0;
}

/* ---------- Responsivo ---------- */

/* Grid: 3 colunas -> 2 colunas */
@media (max-width: 1100px) {
	.np-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Tablet / mobile: header colapsa, layout em coluna unica */
@media (max-width: 992px) {
	.np-navtoggle {
		display: flex;
	}
	.np-headbar__link {
		display: none;
	}
	.np-headbar__utils {
		gap: 12px;
	}

	/* Faixa de navegacao vira painel que abre pelo hamburguer */
	.np-navbar {
		display: none;
	}
	.np-header.is-open .np-navbar {
		display: block;
	}
	.np-navbar__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
		min-height: 0;
		padding-top: 8px;
		padding-bottom: 16px;
	}
	.np-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.np-nav__list a {
		padding: 12px 0;
	}
	.np-nav__list .menu-item-has-children > a::after {
		float: right;
	}
	/* submenu estatico (sem hover) no mobile */
	.np-nav__list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: transparent;
		min-width: 0;
		padding: 0 0 8px 16px;
	}
	.np-search__input {
		width: 100%;
	}

	/* hamburguer vira "X" quando aberto */
	.np-header.is-open .np-navtoggle__bar:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	.np-header.is-open .np-navtoggle__bar:nth-child(2) {
		opacity: 0;
	}
	.np-header.is-open .np-navtoggle__bar:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	/* Footer empilhado */
	.np-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	.np-footer__brand {
		grid-column: 1 / -1;
	}

	/* Migrar: empilha (card em cima, ilustracao embaixo) */
	.np-migrate {
		padding: 90px 0 50px;
	}
	.np-migrate__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 32px;
	}
	.np-migrate__card {
		max-width: none;
	}
	.np-migrate__art {
		max-width: 480px;
		margin: 0 auto;
	}
}

/* Celular: 1 coluna de posts */
@media (max-width: 600px) {
	/* Aperta as laterais para ganhar espaco horizontal no header e no conteudo */
	.np-container {
		padding: 0 16px;
	}
	.np-grid {
		grid-template-columns: 1fr;
	}
	.np-feed {
		padding-top: 36px;
		padding-bottom: 56px;
	}
	.np-feed__title {
		font-size: 30px;
	}
	.np-feed__subtitle {
		font-size: 15px;
		margin-top: 10px;
	}

	/* Header compacto */
	.np-headbar__inner {
		min-height: 56px;
		gap: 12px;
	}
	.np-logo__img {
		height: 26px;
	}
	.np-logo {
		gap: 8px;
	}
	.np-logo__tag {
		font-size: 15px;
	}
	/* Botao "Acessar painel" menor para nao estourar o header */
	.np-headbar__utils .np-btn--outline {
		padding: 9px 14px;
		font-size: 13px;
	}

	/* Barra de promo: texto menor e empilha o CTA quando faltar largura */
	.np-topbar__inner {
		flex-wrap: wrap;
		gap: 4px 10px;
		padding-top: 9px;
		padding-bottom: 9px;
	}
	.np-topbar__text {
		font-size: 12.5px;
	}
	.np-topbar__cta {
		font-size: 12.5px;
	}

	/* Footer */
	.np-footer__inner {
		grid-template-columns: 1fr;
		gap: 36px;
		padding-top: 44px;
	}
	.np-footer__cols {
		grid-template-columns: 1fr 1fr;
	}
	.np-footer__claim {
		font-size: 21px;
	}
	.np-single__title {
		font-size: 28px;
	}

	/* Migrar: tamanhos menores no celular */
	.np-migrate {
		padding: 70px 0 40px;
	}
	.np-migrate__card {
		padding: 30px 24px;
	}
	.np-migrate__title {
		font-size: 24px;
	}

	/* Parceiros: empilha e reduz logos */
	.np-partners__inner {
		flex-direction: column;
		gap: 18px;
		padding-top: 24px;
		padding-bottom: 24px;
	}
	.np-partners__logos {
		gap: 20px 24px;
	}
	.np-partners__logos img {
		height: 30px;
	}
}

/* Telas muito estreitas (≤380px): links do footer em uma coluna */
@media (max-width: 380px) {
	.np-footer__cols {
		grid-template-columns: 1fr;
	}
}
