﻿:root {
	--unimed-green: #00995d;
	--unimed-green-dark: #006844;
	--unimed-green-light: #e8f5f0;
	--gradient-primary: linear-gradient(135deg, #00995d 0%, #006844 100%);
	--gradient-soft: linear-gradient(135deg, rgba(0,153,93,0.05) 0%, rgba(0,104,68,0.02) 100%);
	--gradient-hero: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(0,153,93,0.3) 0%, transparent 50%);
	--shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
	--shadow-md: 0 8px 24px rgba(0,0,0,0.08);
	--shadow-lg: 0 16px 48px rgba(0,153,93,0.15);
	--shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
	--radius-sm: 12px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-xl: 32px;
	--transition-base: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	--transition-smooth: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#pagina-interna-conteudo {
	overflow-x: hidden;
}

#pagina-interna-titulo {
	position: relative;
	overflow: hidden;
	min-height: 280px;
}

	#pagina-interna-titulo::before {
		content: "";
		position: absolute;
		inset: 0;
		background: var(--gradient-hero);
		pointer-events: none;
		animation: heroGlow 8s ease-in-out infinite alternate;
	}

@keyframes heroGlow {
	0% {
		opacity: 0.5;
	}

	100% {
		opacity: 1;
	}
}

#pagina-interna-titulo h1 {
	position: relative;
	z-index: 2;
	text-shadow: 0 4px 20px rgba(0,0,0,0.2);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.section-governanca,
.content-box-governanca {
	background: #ffffff;
	border-radius: var(--radius-lg);
	position: relative;
	overflow: hidden;
	margin-bottom: 2.5rem;
	padding: 2.5rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid #e9e9e9;
}

	.section-governanca::before,
	.content-box-governanca::before {
		content: "";
		position: absolute;
		top: -50%;
		right: -20%;
		width: 500px;
		height: 500px;
		background: radial-gradient(circle, rgba(0,153,93,0.06) 0%, transparent 70%);
		pointer-events: none;
		animation: floatOrb 20s ease-in-out infinite;
	}

@keyframes floatOrb {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}

	50% {
		transform: translate(-30px, 30px) scale(1.1);
	}
}

.section-governanca > *,
.content-box-governanca > * {
	position: relative;
	z-index: 1;
}

.section-title-governanca {
	font-size: 2rem;
	font-weight: 800;
	color: #003f3c;
	margin-bottom: 2rem;
	position: relative;
	display: inline-block;
}

	.section-title-governanca::after {
		content: "";
		position: absolute;
		bottom: -8px;
		left: 0;
		width: 60px;
		height: 4px;
		background: var(--gradient-primary);
		border-radius: 2px;
	}

h3.section-title-governanca,
h3.mb-3,
h3.mb-4,
h3.mb-5 {
	font-size: 1.75rem;
	font-weight: 800;
	color: #003f3c;
	position: relative;
	padding-bottom: 1rem;
}

	h3.section-title-governanca::after,
	h3.mb-3::after,
	h3.mb-4::after,
	h3.mb-5::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 60px;
		height: 4px;
		background: var(--gradient-primary);
		border-radius: 2px;
	}

.card-presidente {
	background: var(--gradient-primary);
	border-radius: var(--radius-xl);
	padding: 2rem 3rem;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	transform-style: preserve-3d;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	border: 0;
}

	.card-presidente::before {
		content: "";
		position: absolute;
		inset: 0;
		background: radial-gradient(circle at top left, rgba(255,255,255,0.3) 0%, transparent 50%), radial-gradient(circle at bottom right, rgba(0,0,0,0.1) 0%, transparent 50%);
		pointer-events: none;
	}

	.card-presidente::after {
		content: "";
		position: absolute;
		top: -50%;
		right: -50%;
		width: 200%;
		height: 200%;
		background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
		transform: translateX(-100%);
		transition: transform 0.8s ease;
	}

	.card-presidente:hover {
		transform: translateY(-8px) scale(1.02);
		box-shadow: 0 32px 80px rgba(0,153,93,0.25);
	}

		.card-presidente:hover::after {
			transform: translateX(100%);
		}

.presidente-badge {
	display: inline-block;
	background: rgba(255,255,255,0.2);
	backdrop-filter: blur(10px);
	color: #fff;
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 1rem;
	border: 1px solid rgba(255,255,255,0.3);
}

.presidente-nome {
	font-size: 2rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
	margin-bottom: 0.5rem;
	text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.presidente-periodo {
	color: rgba(255,255,255,0.85);
	font-size: 0.95rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

	.presidente-periodo::before {
		content: "📅";
		font-size: 1.2rem;
	}

.card-diretor {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: var(--radius-lg);
	padding: 2rem;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: var(--transition-smooth);
	box-shadow: var(--shadow-sm);
}

	.card-diretor::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 4px;
		height: 0;
		background: var(--gradient-primary);
		transition: height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.card-diretor:hover {
		transform: translateY(-8px) translateX(4px);
		box-shadow: var(--shadow-lg);
		border-color: rgba(0,153,93,0.2);
	}

		.card-diretor:hover::before {
			height: 100%;
		}

.diretor-cargo {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--unimed-green);
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

	.diretor-cargo::before {
		content: "";
		width: 24px;
		height: 24px;
		background: var(--gradient-soft);
		border-radius: 6px;
		display: inline-block;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300995d'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
		background-size: 16px;
		background-position: center;
		background-repeat: no-repeat;
	}

.diretor-nome {
	font-size: 1.15rem;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.4;
}

.card-conselho {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	height: 100%;
	box-shadow: var(--shadow-sm);
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
}

	.card-conselho::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		width: 100px;
		height: 100px;
		background: radial-gradient(circle, rgba(0,153,93,0.08) 0%, transparent 70%);
		border-radius: 0 var(--radius-lg) 0 100%;
		transition: all 0.5s ease;
	}

	.card-conselho:hover {
		box-shadow: var(--shadow-md);
		transform: translateY(-4px);
		border-color: rgba(0,153,93,0.15);
	}

		.card-conselho:hover::after {
			width: 150px;
			height: 150px;
		}

.conselho-header {
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}

.conselho-titulo {
	font-size: 1.5rem;
	font-weight: 800;
	color: #003f3c;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

	.conselho-titulo::before {
		content: "";
		width: 6px;
		height: 36px;
		background: var(--gradient-primary);
		border-radius: 3px;
	}

.conselho-periodo {
	font-size: 0.85rem;
	color: #6c757d;
	font-weight: 600;
	margin-left: 3.25rem;
}

.conselho-subtitulo {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--unimed-green);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: 2rem;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid rgba(0,153,93,0.1);
}

h4.fw-bold {
	font-weight: 800 !important;
}

h6.fw-bold {
	font-weight: 700 !important;
}

.lista-membros,
ul.list-unstyled {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 2;
}

	.lista-membros li,
	ul.list-unstyled li {
		padding: 1rem 0;
		padding-left: 2rem;
		border-bottom: 1px solid rgba(0,0,0,0.05);
		color: #2d2d2d;
		font-size: 0.95rem;
		font-weight: 500;
		position: relative;
		transition: var(--transition-base);
	}

		.lista-membros li::before,
		ul.list-unstyled li::before {
			content: "";
			position: absolute;
			left: 0;
			top: 50%;
			transform: translateY(-50%);
			width: 8px;
			height: 8px;
			background: var(--unimed-green);
			border-radius: 50%;
			transition: var(--transition-base);
			box-shadow: 0 0 0 0 rgba(0,153,93,0.4);
		}

		.lista-membros li:hover,
		ul.list-unstyled li:hover {
			padding-left: 2.5rem;
			color: var(--unimed-green-dark);
		}

			.lista-membros li:hover::before,
			ul.list-unstyled li:hover::before {
				width: 12px;
				height: 12px;
				box-shadow: 0 0 0 4px rgba(0,153,93,0.2);
			}

		.lista-membros li:last-child,
		ul.list-unstyled li:last-child {
			border-bottom: none;
		}

	.lista-membros .text-muted,
	ul.list-unstyled .text-muted {
		font-style: italic;
		font-size: 0.85rem;
	}

.sumario-governanca {
	background: #ffffff;
	border-radius: var(--radius-md);
	padding: 2rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(0,0,0,0.06);
}

	.sumario-governanca p {
		margin-bottom: 1.25rem;
		position: relative;
		padding-left: 2rem;
	}

		.sumario-governanca p::before {
			content: "";
			position: absolute;
			left: 0;
			top: 0.4rem;
			width: 6px;
			height: 6px;
			background: var(--unimed-green);
			border-radius: 50%;
		}

	.sumario-governanca a {
		color: var(--unimed-green-dark);
		font-weight: 600;
		text-decoration: none;
		transition: all 0.3s ease;
		position: relative;
	}

		.sumario-governanca a::after {
			content: "";
			position: absolute;
			bottom: -2px;
			left: 0;
			width: 0;
			height: 2px;
			background: var(--gradient-primary);
			transition: width 0.3s ease;
		}

		.sumario-governanca a:hover {
			color: var(--unimed-green);
		}

			.sumario-governanca a:hover::after {
				width: 100%;
			}

.text-justify .a-governanca,
.col-12 .a-governanca {
	color: var(--unimed-green-dark);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
}

	.text-justify .a-governanca:hover,
	.col-12 .a-governanca:hover {
		color: var(--unimed-green);
		transform: translateX(4px);
	}

#box-scroll {
	position: sticky;
	top: 2rem;
}

.menu-governanca-title,
.h5-governanca {
	font-size: 1.1rem;
	font-weight: 800;
	color: #003f3c;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 3px solid var(--unimed-green);
}

.list-group-item {
	border: none;
	border-radius: var(--radius-sm) !important;
	margin-bottom: 0.5rem;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	padding: 1rem 1.25rem;
}

	.list-group-item::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 0;
		background: rgba(255,255,255,0.2);
		transition: width 0.3s ease;
	}

	.list-group-item:hover {
		transform: translateX(4px);
		box-shadow: var(--shadow-sm);
	}

		.list-group-item:hover::before {
			width: 100%;
		}

.img-fluid-governanca {
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	transition: all 0.4s ease;
	padding: 3rem;
	width: 100%;
	height: 100%;
}

	.img-fluid-governanca:hover {
		transform: scale(1.02);
		box-shadow: var(--shadow-lg);
	}

.text-justify p {
	line-height: 1.8;
	color: #2d2d2d;
	margin-bottom: 1.25rem;
}

	.text-justify p strong {
		color: var(--unimed-green-dark);
		font-weight: 700;
	}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.card-presidente,
.card-diretor,
.card-conselho,
.content-box-governanca {
	animation: fadeInUp 0.6s ease-out backwards;
}

.card-presidente {
	animation-delay: 0.1s;
}

.card-diretor:nth-child(1) {
	animation-delay: 0.2s;
}

.card-diretor:nth-child(2) {
	animation-delay: 0.3s;
}

.card-diretor:nth-child(3) {
	animation-delay: 0.4s;
}

.card-diretor:nth-child(4) {
	animation-delay: 0.5s;
}

@media (max-width: 768px) {
	:root {
		--radius-lg: 20px;
		--radius-xl: 24px;
	}

	.section-title-governanca,
	h3.section-title-governanca,
	h3.mb-3,
	h3.mb-4,
	h3.mb-5 {
		font-size: 1.75rem;
	}

	.card-presidente {
		padding: 2rem;
		border-radius: var(--radius-lg);
	}

	.presidente-nome {
		font-size: 1.5rem;
	}

	.card-diretor,
	.card-conselho,
	.content-box-governanca,
	.section-governanca {
		padding: 1.5rem;
		margin-bottom: 1rem;
	}

	.conselho-titulo {
		font-size: 1.25rem;
	}

	.lista-membros li,
	ul.list-unstyled li {
		padding: 0.875rem 0;
		padding-left: 1.75rem;
		font-size: 0.9rem;
	}

	#pagina-interna-titulo {
		min-height: 220px;
	}

		#pagina-interna-titulo h1 {
			font-size: 2rem !important;
		}

	.sumario-governanca {
		padding: 1.5rem;
	}
}

@media (max-width: 576px) {
	.section-governanca,
	.content-box-governanca {
		border-radius: var(--radius-md);
	}

	.card-presidente,
	.card-diretor,
	.card-conselho {
		border-radius: var(--radius-md);
	}

	.presidente-nome {
		font-size: 1.35rem;
	}

	.conselho-titulo::before {
		height: 28px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@media (hover: none) and (pointer: coarse) {
	.card-diretor:hover,
	.card-conselho:hover,
	.content-box-governanca:hover {
		transform: none;
	}

	.lista-membros li:hover,
	ul.list-unstyled li:hover {
		padding-left: 2rem;
	}
}