/*
Theme Name:		Assessoria de Política para Mulheres 2.0
Theme URI:		https://mulher.jundiai.sp.gov.br/
Author:			CIJUN
Author URI:		https://cijun.sp.gov.br/
Description:	Site da Assessoria de Política para Mulheres da Prefeitura de Jundiaí.
Template:		jundiai-tema-base
Version:		2.0
*/

/* ----- CABEÇALHO ------------------------------------------------------------------- */

#barra-plataforma {
	background: var(--turquesa);
}

#site-titulo .subtitulo {
	font-size: 16px;
}

@media only screen and (min-width: 1024px) {

	#site-titulo .subtitulo {
		font-size: 18px;
	}

	#site-titulo .subtitulo:after {
		content: 'vinculado à Secretaria Municipal da Casa Civil';
		display: block;
	}

}

/* ----- LINKS DA PÁGINA INICIAL ----------------------------------------------------- */

#links-home {
	margin-top: 60px;
	padding: 40px 0;
}

#links-home .container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	align-items: center;
	justify-content: stretch;
}

#links-home .link {
	background-color: #eee;
	color: #666;
    padding: 10px;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	flex-basis: 100%;
	justify-self: stretch;
	align-self: stretch;
}

#links-home img {
	width: 100%;
	max-width: 150px;
	height: auto;
	margin: 0 auto 10px;
	display: block;
}

@media only screen and (min-width: 480px) {

	#links-home .container {
		grid-template-columns: repeat(4, 1fr);
	}

}

@media only screen and (min-width: 600px) {

	#links-home .container {
		grid-template-columns: repeat(6, 1fr);
	}

}

@media only screen and (min-width: 1024px) {
	
	#links-home {
		margin-top: 100px;
	}

	#links-home .container {
		width: fit-content;
		display: flex;
		flex-flow: row wrap;
		align-items: flex-start;
		justify-content: flex-start;
	}

	#links-home .link {
		max-width: 150px;
		flex: 1 0 20%;
		font-size: 14px;
	}

	#links-home img:hover {
		filter: none;
	}

}