.palco-tt {
	text-align: center;
	margin-top: 3%;
	margin-bottom: 0%;
	display: flex;
	align-items: anchor-center;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
}

h3.palco1 {
	font-weight: 800;
	font-size: 4rem;
	color: #3e4d68;
}

h3.palco2 {
	font-weight: 800;
	font-size: 4rem;
	color: #01122b;
	display: inline;
	margin-top: 0px;
}
.palco-subt p {
	font-size: 1.9rem;
	color: #9e9d9d;
	width: 90%;
	margin: 0px auto 0% auto;
}
.palco-subt {
	text-align: center;
}
.palco-itens-pai {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1%;
	margin-top: 6%;
	justify-content: space-around;
}

.palco-card {
	width: 22%;
}

.efeito-palco {
	background: white;
	text-align: -webkit-center;
	padding: 11% 0;
	border-radius: 14px;
	position: relative;
	transition: transform 0.4s ease;
	transform-style: preserve-3d;
}
.efeito-palco:hover {
	transform: perspective(800px) rotateX(0deg); /* inclina pra trás */
}
.efeito-palco::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 9px;
	width: 100%;
	transition:
		transform 0.5s ease,
		opacity 0.5s ease;
}
.efeito-palco::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	display: block;
	height: 9px;
	width: 100%;
	transform: translateY(100%);
	transition:
		transform 0.5s ease,
		opacity 0.5s ease;
}

.efeito-palco:hover::before {
	transform: translateY(-100%);
	opacity: 0;
}
.efeito-palco:hover::after {
	transform: translateY(0);
	opacity: 1;
}
.palco-img img {
	width: 100%;
	height: auto;
	transition: 1s;
}
.efeito-palco a {
	color: inherit;
}
.efeito-palco:hover img {
	scale: 1.1;
	transition: 1s;
}

.texto-palco h4 {
	font-size: 1.5rem;
	width: 80%;
	font-weight: 700;
}

p.cargo {
	font-size: 1.3rem;
	font-weight: 400;
	color: black;
	margin-top: 7%;
	margin-bottom: 0%;
}

p.localt {
	font-size: 1.4rem;
	color: #1e78d4;
	font-weight: 500;
}
a:focus,
a:hover {
	/* color: initial !important; */
	text-decoration: none !important;
}

.vejatodas-palco a {
	background: #00a86b;
	color: white;
	padding: 7px 20px;
	border-radius: 7px;
	display: block;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	font-size: 2rem;
}

.vejatodas-palco {
	justify-self: center;
	margin-top: 4%;
}
.vejatodas-palco a:hover {
	transform: translateY(-8px);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	color: white !important;
}
.efeito-palco:hover a {
	color: black !important;
}
@media screen and (max-width: 1100px) {
	.palco-itens-pai {
		justify-content: center;
	}
	.palco-card {
		width: 40%;
		margin-bottom: 3%;
	}
}

@media screen and (max-width: 700px) {
	.palco-card {
		width: 48%;
	}
}

@media screen and (max-width: 600px) {
	.palco-card {
		width: 60%;
	}
}
