/**
 * Novamira - estilos de secoes da home / landing (carregado so na front page).
 * As secoes usam classes nv-* e podem ser montadas no conteudo da pagina inicial.
 */

.nv-home { --nv-brand: #4f46e5; --nv-ink: #1a1a24; --nv-muted: #5b5b6b; --nv-line: #e7e7ee; --nv-bg-soft: #f6f6fb; }
.nv-home .nv-site-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nv-section { padding: 64px 0; }
.nv-section-title { font-size: clamp(24px, 3.4vw, 34px); margin: 0 0 32px; text-align: center; }

/* ===== Hero ===== */
.nv-hero {
	background: radial-gradient(1200px 500px at 70% -10%, rgba(124,58,237,.18), transparent 60%),
		linear-gradient(180deg, #0e0e1a, #171735);
	color: #fff;
	padding: 96px 20px 104px;
	text-align: center;
}
.nv-hero-inner { max-width: 820px; margin: 0 auto; }
.nv-hero .nv-eyebrow { color: #a5b4fc; justify-content: center; }
.nv-hero-title { font-size: clamp(34px, 6vw, 60px); line-height: 1.08; margin: 12px 0 18px; letter-spacing: -.02em; }
.nv-hero-sub { font-size: clamp(17px, 2.2vw, 21px); color: #c9c9e6; margin: 0 auto 32px; max-width: 640px; }
.nv-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Botoes ===== */
.nv-btn {
	display: inline-block; font-weight: 700; text-decoration: none;
	padding: 14px 26px; border-radius: 12px; transition: transform .12s, box-shadow .12s;
}
.nv-btn:hover { transform: translateY(-1px); }
.nv-btn--primary { background: var(--nv-brand); color: #fff; box-shadow: 0 10px 26px rgba(79,70,229,.35); }
.nv-btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.25); }

/* ===== Servicos ===== */
.nv-services-grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px;
}
.nv-service {
	border: 1px solid var(--nv-line); border-radius: 16px; padding: 28px 24px; background: #fff;
	transition: box-shadow .15s, transform .15s;
}
.nv-service:hover { box-shadow: 0 14px 34px rgba(20,20,40,.08); transform: translateY(-3px); }
.nv-service-ico { font-size: 30px; line-height: 1; margin-bottom: 14px; }
.nv-service h3 { font-size: 20px; margin: 0 0 8px; }
.nv-service p { color: var(--nv-muted); margin: 0; font-size: 15px; }

/* ===== Faixa clara (por que nos) ===== */
.nv-band { background: var(--nv-bg-soft); }
.nv-band-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.nv-stat { text-align: center; }
.nv-stat-num { font-size: 40px; font-weight: 800; color: var(--nv-brand); line-height: 1; }
.nv-stat-label { color: var(--nv-muted); margin-top: 6px; font-size: 15px; }

/* ===== Faixa de CTA ===== */
.nv-cta-band {
	background: linear-gradient(120deg, #4f46e5, #7c3aed); color: #fff; text-align: center;
	border-radius: 20px; padding: 56px 24px; margin: 0 20px;
}
.nv-cta-band h2 { font-size: clamp(24px, 3.4vw, 34px); margin: 0 0 12px; }
.nv-cta-band p { color: #e9e9ff; margin: 0 auto 26px; max-width: 560px; font-size: 17px; }
.nv-cta-band .nv-btn--primary { background: #fff; color: var(--nv-brand); }

/* ===== Ultimos posts na home ===== */
.nv-home-latest { max-width: 1200px; margin: 0 auto; }

@media (max-width: 640px) {
	.nv-section { padding: 44px 0; }
	.nv-hero { padding: 64px 20px 72px; }
	.nv-cta-band { padding: 40px 20px; }
}
