@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');


body {
	font-family: "Quicksand", sans-serif;
	font-size: 16px;
	background-color: #eee;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
}


h1 {
	font-family: "Quicksand", sans-serif;
	font-size: 42px;
	letter-spacing: -0.5px;
	font-weight: bold;
}

h2 {
	font-family: "Quicksand", sans-serif;
	font-size: 36px;
	letter-spacing: -1px;
	font-weight: 800;
}

h3 {
	font-family: "Quicksand", sans-serif;
	font-size: 28px;
	letter-spacing: -0.5px;
	font-weight: bold;

}

h4 {
	font-family: "Quicksand", sans-serif;
	font-size: 24px;
	letter-spacing: -0.5px;
	font-weight: bold;
}

h5 {
	font-family: "Quicksand", sans-serif;
	font-size: 20px;
	letter-spacing: 0px;
	font-weight: bold;
}

h6 {
	font-family: "Quicksand", sans-serif;
	font-size: 18px;
	letter-spacing: 0px;
	color: #666;
	font-weight: bold;
}

p {
	font-family: "Quicksand", sans-serif;
	font-size: 16px
	letter-spacing: 0px;
}


.header {
	padding: 40px 0px 30px 0px;
	position: relative;
	width: 100%;
	background-image: url(https://setebarras.sp.gov.br/contaspublicas/imagens/banner-1.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.header-menu {
	background-color: #406c9b;
	padding: 8px 0px;
	border-bottom: none;
	color: #ccc;
}

.header-menu a {
	font-size: 14px;
	text-decoration: none;
	color: #fff;
	transition: 0.3s;
}

.header-menu a:hover {
	text-decoration: none;
	color: yellow;
}

.section-default {
	padding: 35px 0px;
	background: linear-gradient(to bottom, #f1f1f1, #fff);
}

form.menu-busca {
  padding-top: 0px;
  width: 100%;
}

form.menu-busca input[type=search] {
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  float: left;
  color: #666;
  max-width: 85%;
  background: #fff;
  border-top-left-radius: 5px; 
  border-bottom-left-radius: 5px; 
}

form.menu-busca button {
  float: left;
  width: 15%;
  padding: 4px 8px;
  background: #fff;
  color: #666;
  font-size: 14px;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: none;
  cursor: pointer;
  border-top-right-radius: 5px; 
  border-bottom-right-radius: 5px; 
}

form.menu-busca button:hover {
  background: #00a517;
  color: #fff;
}

form.menu-busca::after {
  content: "";
  clear: both;
  display: table;
}

.bgImage-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: linear-gradient(45deg, rgba(0,142, 51, 0.95), rgba(255,204,0, 0.85));
	
}

.bgImage-content {
	position: relative;
	width: 100%;
	height: 100%;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	/*z-index: 2;*/
}

.bgImage-content h3 {
	font-size: 32px;
	color: #fff;
	font-weight: 900;
	letter-spacing: -1px;
	line-height: 30px;
}

.bgImage-content p {
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	line-height: 20px;
}

.logo-header-desktop {
	width: 250px;
}

.vinheta-contas {
	padding-bottom: 5px; 
	border-bottom: 1px solid #ddd; 
	margin-bottom: 20px;
}

.vinheta-contas h3 {
	font-size: 18px;
	color: #666;
	font-weight: normal;
}

.categoria-item {	
	background-color: #fff;
	padding: 0px 12px;
	width: 100%;
	height: 85px;
	border-radius: 0px;
	color: #406c9b;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	transition: 0.2s;
	text-decoration: none;
	margin-bottom: 20px;
	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);
  	border: 1px solid #ddd;
  	text-transform: uppercase;
}

.categoria-item:hover {
	background-color: #406c9b;
	color: #fff;
	transform: scale(1.05);
	text-decoration: none;
}

.categoria-item-titulo {
	display: -webkit-box;
  	-webkit-line-clamp: 3;
  	-webkit-box-orient: vertical;
  	overflow: hidden;
  	text-overflow: ellipsis;
}


footer {
	width: 100%;
	/*background: linear-gradient(45deg, rgba(1, 43, 103, 0.9), rgba(0, 128, 40, 0.9));*/
	background-color: #f7f7f7;
	border-top: 1px solid #d9d9d9;
	color: #666;
	font-size: 12px;
	padding: 20px 0px 10px 0px;
}

@media screen and (max-width: 780px) {

	header {
		padding: 35px  0px 20px 0px;
		text-align: center;
	}

	

}

