.mainWrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mainWrapper .mainContentPhoto {
	display: none;
	max-width: 30%;
	width: auto;
	/* max-height: 400px; */
}

.mainWrapper .mainContentPhoto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mainContent {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mainContent .titleWelcome {
	display: flex;
	flex-direction: row;
	align-items: baseline;
	gap: 10px;
}

.mainContent h2 {
	font-weight: 300;
	font-size: 1em;
}

.mainContent h1 {
	font-size: 2em;
}

.mainContent h3 b {
	color: var(--primary-color);
}

.mainContent h1 b {
	color: var(--primary-color);
}

.modalRedes {
	position: relative;
	padding: 100px 0;
	margin-top: 100px;
}

.redesSociais {
	transform: translateY(calc(-30% - 130px));
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	filter: drop-shadow(0 0 0.75rem #0003);
}

.redesSociais .title {
	position: relative;
	width: max-content;
	padding: 20px 30px;
	font-weight: bold;
	background: var(--primary-color);
}

.redesSociais .title p {
	color: #fff;
}

.redesSociais .title span {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) translateY(50%);
	padding: 10px;
	background: var(--primary-color);
	border-radius: 50%;
	font-size: 1.2em;
	width: 20px;
	height: 20px;
	z-index: 9;
}

.redesSociais .title span iconify-icon {
	color: #fff;
}

.redesSociais .list {
	background-color: #fff;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: var(--box-shadow-darker);
}

.redesSociais .list .item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 20px;
	padding: 20px 25px;
	font-size: 1.3em;
	font-weight: bold;
	white-space: nowrap;
	transition: var(--transition-smooth);
}

.redesSociais .list .item * {
	color: var(--text-color-alternate);
	transition: var(--transition-smooth);
}

.redesSociais .list .item:hover {
	background: var(--primary-color);
	color: white;
}

.redesSociais .list .item:hover * {
	color: white;
}

.entidades {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	text-align: center;
	gap: 15px;
}

.entidades h1,
.entidades p {
	color: #fff;
}

.entidades .cardList {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 20px;
	width: 100%;
	padding: 20px 0;
}

.entidades .cardList .card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	max-width: 250px;
	padding: 50px;
	border-radius: var(--border-radius-rounded);
	gap: 10px;
	background: #fff;
	box-shadow: var(--box-shadow-darker);
	transition: var(--transition-smooth);
	text-align: start;
}

.entidades .cardList .card img {
	width: 100%;
	max-width: 100px;
}

.entidades .cardList .card p {
	color: #000;
}

.entidades .cardList .card a {
	display: flex;
	align-items: center;
	font-size: 1.2em;
	font-weight: 600;
	text-decoration: none;
}

.entidades .cardList .card a * {
	color: var(--primary-color);
}

.entidades .cardList .card a iconify-icon {
	font-size: 1.5em;
	transition: var(--transition-smooth);
}
.entidades .cardList .card a:hover iconify-icon {
	margin-left: 10px;
}

.academicos {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	text-align: center;
	gap: 15px;
}

.missao {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}

@media (min-width: 1100px) {
	.mainContent p {
		width: 80%;
	}
	.mainWrapper .mainContentPhoto {
		display: block;
	}

	.modalRedes {
		padding: 20px 0;
		margin-top: 50px;
	}

	.redesSociais {
		bottom: -10px;
		flex-direction: row;
		align-items: stretch;
		transform: translateY(calc(-50% - 20px));
	}
	.redesSociais .list {
		flex-direction: row;
		flex: 1;
		justify-content: center;
		align-items: stretch;
		width: auto;
		gap: 0; 
    	padding: 0;

	}
	.redesSociais .title {
		padding: 10px 20px;
		display: flex;
		align-items: center;
		min-width: max-content;
	}

	.redesSociais .title span {
		bottom: unset;
		left: unset;
		right: 0;
		top: 50%;
		transform: translateX(50%) translateY(-50%) rotate(-90deg);
	}

	.missao {
		margin-left: 80px;
	}
}
