:root {

	--vp-team-grad: linear-gradient(
		135deg,
		var(--color-brand-laranja-claro) 0%,
		var(--color-brand-laranja-escuro) 100%
	);
	--vp-team-muted: #7c6fa0;
    --vp-team-subtle: #f3f0f9;

    --vp-team-card-bg: #ffffff;
	--vp-team-border: #e8e4f0;
	--vp-team-text: #1b0f57;
	
    --vp-team-bg: #fbf9fa;
	--vp-team-purple: #1b0f57;
	--vp-team-orange1: #f97316;
	--vp-team-orange2: #fb923c;
}


.vp-team-hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--color-brand-azul-escuro);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.vp-team-hero-tag::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-brand-laranja);
}

.vp-team-hero h1 {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 800;
	color: var(--color-brand-azul-escuro);
	margin: 0 0 10px;
	line-height: 1.15;
}

.vp-team-hero h1 em {
	font-style: normal;
	background: var(--vp-team-grad);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.vp-team-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pill-nav {
	display: inline-block;
	padding: 6px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	border: 1.5px solid var(--vp-team-border);
	color: var(--vp-team-muted);
	background: #fff;
	transition: all 0.2s;
}

.pill-nav:hover {
	border-color: var(--color-brand-azul-escuro);
	color: var(--color-brand-azul-escuro);
	background: var(--vp-team-subtle);
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	padding: 2rem 0;
}

.section-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 20px;
	font-weight: 700;
	color: var(--color-brand-azul-escuro);
	margin: 0;
}

.section-title::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 3px;
	border-radius: 2px;
	background: var(--vp-team-grad);
}

.section-divider {
	border: none;
	border-top: 1px solid var(--vp-team-border);
	margin: 40px 24px 0;
}

.carousel-wrapper {
	overflow: hidden;
}

.carousel-track {
	display: flex;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.member-card {
	flex: none;
	width: 220px;
	background: var(--vp-team-card-bg);
	border: 1.5px solid var(--vp-team-border);
	border-radius: 14px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.member-card:hover {
	transform: translateY(-4px);
	border-color: var(--vp-team-purple);
	box-shadow: 0 8px 32px rgba(27, 15, 87, 0.1);
}

.card-photo {
	height: 230px;
	position: relative;
	background: var(--vp-team-subtle);
}

.card-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.card-photo-empty {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f0ecf9 0%, #e8e2f5 100%);
}

.card-body {
	padding: 14px 16px 16px;
}

.card-name {
	font-weight: 700;
	font-size: 14px;
	color: var(--vp-team-purple);
	margin: 0 0 3px;
}

.card-role {
	font-size: 12px;
	color: var(--vp-team-muted);
	margin: 0 0 10px;
}

.card-tags {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.tag-ig,
.tag-li,
.tag-info {
	border-radius: 5px;
	font-size: 11px;
	padding: 2px 8px;
	font-weight: 500;
}

.tag-ig {
	background: #fff5f0;
	color: #f97316;
	border: 1px solid #fdd8bf;
}

.tag-li {
	background: #eff6ff;
	color: #3b82f6;
	border: 1px solid #bfdbfe;
}



.tag-info {
	color: var(--vp-team-muted);
	opacity: 0.8;
}

.vp-team-arrows {
	display: flex;
	gap: 8px;
}

.arrow-btn {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	background: #fff;
	border: 1.5px solid var(--vp-team-border);
	color: var(--vp-team-muted);
	transition: all 0.2s;
}

.arrow-btn:hover:not(:disabled) {
	background: var(--vp-team-purple);
	border-color: var(--vp-team-purple);
	color: #fff;
}

.arrow-btn:disabled {
	opacity: 0.25;
	cursor: not-allowed;
}

.modal-bg {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(27, 15, 87, 0.45);
	backdrop-filter: blur(6px);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal-box {
	background: #fff;
	border-radius: 18px;
	max-width: 600px;
	width: 100%;
	overflow: hidden;
	box-shadow: 0 24px 64px rgba(27, 15, 87, 0.18);
}

.modal-photo {
	height: 180px;
	position: relative;
	background: linear-gradient(135deg, #f0ecf9 0%, #e8e2f5 100%);
}

.modal-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: none;
}

.modal-photo-empty {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-photo-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(to top, #fff 0%, transparent 100%);
}

.modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	border: none;
	cursor: pointer;
	font-size: 12px;
	color: var(--vp-team-purple);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.modal-body {
	padding: 18px 24px 26px;
}

.modal-name {
	font-size: 19px;
	font-weight: 800;
	color: var(--vp-team-purple);
	margin: 0 0 3px;
}

.modal-role {
	font-size: 13px;
	font-weight: 600;
	margin: 0 0 14px;
	background: var(--vp-team-grad);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.modal-desc {
	font-size: 13px;
	color: var(--vp-team-muted);
	line-height: 1.7;
	margin: 0 0 18px;
}

.modal-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.modal-link-ig,
.modal-link-li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
}

.modal-link-ig {
	background: var(--vp-team-grad);
}

.modal-link-li {
	background: #0077b5;
}

.modal-link-ig:hover,
.modal-link-li:hover {
    opacity: 70%;
	color: #fff;
	
}

.modal-empty {
	font-size: 13px;
	color: #999;
	font-style: italic;
}

@media (max-width: 900px) {
	.section-head {
		align-items: center;
	}
}
