@import url(variaveis.css);

#loading-page{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	background-color: var(--azul-principal);
	z-index: 99;
	display: flex;
}

#loading-page .spinner-border{
	width: 3rem;
	height: 3rem;
}

#logo-site {
	width: 100%;
	max-width: 450px;
}

#menu-principal{
	background-color: var(--azul-principal);
	border-bottom: solid 15px var(--amarelo);
}

#menu-principal .navbar-toggler {
	color: white;
	border-color: white;
}

#menu-principal .nav-link {
	color: white;
	padding: 0px 15px;
}

#menu-principal a.active,  #menu-principal a.nav-link:hover{
	color: var(--amarelo);
}

.header-info ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-info .social-icons a {
	font-size: 2rem;
	margin-right: 10px;
	color: black;
}

a#cta-menu {
	background-color: var(--amarelo);
	color: var(--azul-principal);
}

/* Main do site */
#principal {
	padding-top: 15px;
	padding-bottom: 25px;
	background-color: var(--azul-secundario);
}

#banner-principal {
	width: 100%;
	height: 150px;
	background-color: #efefef;
}

.destaque {
	position: relative;
	min-height: 380px;
	background-size: cover;
	background-repeat: no-repeat;
}

.titulo-destaque {
	position: absolute;
	bottom: 0;
	margin: 15px;
	line-height: 1.5;
}

.titulo-destaque mark {
	padding:0;
	background-color: white;
}

.link_np{
	text-decoration: none;
	color: #3c3a3a
}

#noticias-principais {
	margin-top: 41px;
}

.tag-noticia {
	background-color: var(--azul-principal);
	color: white;
	padding: 0px 10px 3px;
	font-size: 0.8rem;
	border-radius: 5px;
}

.titulo-noticia {
	font-size: 1.25rem;
	margin-top: 1.4rem;	
}

.galeria-carrosel .img-container {
	height: 200px;
	margin: 10px;
}

.galeria-carrosel .img-container .img {
	display: block;
	width: 100%;
	height: 200px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
}

.card-link-home{
	display: block;
	background-color: var(--azul-principal);
	color: white !important;
	text-decoration: none;
	height: 100%;
	width: 100%;
	text-align: center;
	padding: 10px 20px;
}

.card-link-home i {
	font-size: 5rem;
}

#principal-footer {
	width: 100%;
	box-sizing: border-box;
	background-color: var(--azul-principal);
	
}

#principal-footer > * {
	color: white !important;
}

#principal-footer a {
	color: white;
}

.page {
	min-height: 70vh;
}

.page-title{
	color: var(--azul-principal);
	padding-bottom: 5px;
	border-bottom: solid 4px var(--amarelo);
	margin-bottom: 25px;
}

.card-servicos {
	width: 100%;
	background-color: var(--azul-secundario);
	min-height: 150px;
	color: var(--azul-principal);
	padding: 15px;
	text-align: center;
	transition: 300ms;
}

.card-servicos:hover {
	box-shadow: 0px 1px 5px 1px var(--azul-principal);
}

.card-servicos h3 {
	font-size: 1.4rem;
}

.card-servicos i {
	font-size: 2.6rem;
}

ul.no-list-style{
	padding: 0;
	list-style: none;
}

fieldset legend{
	border-bottom: solid 1px var(--azul-principal);
}

.form-label{
	font-weight: 600;
}

.full-loading {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.5);
	color: white;
	display: none;
}