/* ════════════════════════════════════════════════
   bpc-founder-cta — banner escuro "Pacote Fundador"
   ════════════════════════════════════════════════ */
.bpc-founder {
	--bpc-bg:    #2b1a0e;
	--bpc-coral: #e0623d;
	--bpc-text:  #f5efe6;

	box-sizing: border-box;
	width: 100%;
	max-width: 1080px;
	margin-inline: auto;
}
.bpc-founder *, .bpc-founder *::before, .bpc-founder *::after { box-sizing: border-box; }

.bpc-founder__inner {
	position: relative;
	overflow: hidden;
	padding: 56px 40px;
	border-radius: 26px;
	text-align: center;
	background: var(--bpc-bg);
	background-image:
		radial-gradient(circle at 0% 0%, rgba(224, 98, 61, 0.18), transparent 45%),
		radial-gradient(circle at 100% 100%, rgba(200, 134, 26, 0.16), transparent 45%);
	color: var(--bpc-text);
}

/* ── Badge ─────────────────────────────────────── */
.bpc-founder__badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 8px 18px;
	margin-bottom: 22px;
	border-radius: 999px;
	background: rgba(224, 98, 61, 0.16);
	border: 1px solid rgba(224, 98, 61, 0.4);
	color: #f4b9a4;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.bpc-founder__pulse {
	position: relative;
	width: 9px; height: 9px;
	border-radius: 50%;
	background: var(--bpc-coral);
}
.bpc-founder__pulse::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--bpc-coral);
	animation: bpc-founder-pulse 1.8s ease-out infinite;
}
@keyframes bpc-founder-pulse {
	0%   { transform: scale(1);   opacity: 0.7; }
	100% { transform: scale(3.4); opacity: 0;   }
}

/* ── Texto ─────────────────────────────────────── */
.bpc-founder__title {
	margin: 0 auto 16px;
	max-width: 720px;
	font-size: clamp(1.8rem, 4vw, 2.7rem);
	line-height: 1.16;
	font-weight: 800;
	color: #fff;
}
.bpc-founder__desc {
	margin: 0 auto 32px;
	max-width: 620px;
	font-size: 1.06rem;
	line-height: 1.6;
	color: rgba(245, 239, 230, 0.82);
}

/* ── CTA ───────────────────────────────────────── */
.bpc-founder__cta {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 16px 32px;
	border-radius: 999px;
	background: var(--bpc-coral);
	color: #fff;
	text-decoration: none;
	font-size: 1.06rem;
	font-weight: 700;
	box-shadow: 0 12px 30px rgba(224, 98, 61, 0.4);
	transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.bpc-founder__cta:hover {
	transform: translateY(-2px);
	background: #d4542f;
	box-shadow: 0 16px 38px rgba(224, 98, 61, 0.5);
}
.bpc-founder__cta:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.bpc-founder__seta { transition: transform 0.18s ease; }
.bpc-founder__cta:hover .bpc-founder__seta { transform: translateX(3px); }

/* ── Vagas ─────────────────────────────────────── */
.bpc-founder__vagas {
	margin: 22px 0 0;
	font-size: 0.96rem;
	color: rgba(245, 239, 230, 0.7);
}
.bpc-founder__vagas strong { color: #f0c98a; font-weight: 800; }

/* ── Responsivo ────────────────────────────────── */
@media (max-width: 600px) {
	.bpc-founder__inner { padding: 42px 24px; border-radius: 20px; }
}
@media (max-width: 480px) {
	.bpc-founder__inner { padding: 34px 18px; }
	.bpc-founder__desc { margin-bottom: 26px; }
	/* CTA ocupa a largura toda e centraliza no celular */
	.bpc-founder__cta { display: flex; width: 100%; justify-content: center; padding: 15px 20px; }
}

/* ── Acessibilidade — sem animação ─────────────── */
@media (prefers-reduced-motion: reduce) {
	.bpc-founder__pulse::after { animation: none; }
	.bpc-founder__cta:hover .bpc-founder__seta { transform: none; }
}
