@charset "utf-8";

/* CABECALHO DO SITE */

	.header {
		width: 100%;
		height: 106px;
		background-image: linear-gradient(#00529b 10%, #3b7cb4);
	}

	.logo {
		position: relative;
		background-image: url(/imagens/logo.png);
		background-repeat: no-repeat;
		width: 900px;
		height: 106px;
		margin: 0 auto;
	}

	.publicidade {
		position: absolute;
		width: 600px;
		height: 86px;
		top: 10px;
		right: 0;
	}

/* FIM CABECALHO DO SITE

/* WRAPPER LOGIN */

	.wp-login {
		background-color:#fff;
		border:1px solid #b8d6fb;
		color:#000000;
		padding:10px;
		margin-bottom:10px;
		text-align:left;
		line-height:170%;
		border-radius:5px;
	}

	.wp-login a {
		color:#000000;
	}

	.wp-login a:hover {
		text-decoration:underline;
	}

	.wp-login .wp-erro {
		display: flex;
		color: #FF0000;
		background-color: #FFEAEA;
		border: 1px solid #ffc4c4;
		padding: 10px;
		margin-bottom: 10px;
		text-align: left;
		border-radius: 5px;
		justify-content: start;
		align-items: center;
		line-height: normal;
	}

	.wp-login .wp-erro img {
		margin-right: 5px;
	}
	
/* FIM WRAPPER LOGIN */

/* WRAPPER USUÁRIO */

	.wp-user {
		background-color: #ffffff;
		border:1px solid #b8d6fb;
		color: #00529b;
		line-height: 170%;
		margin-bottom: 10px;
		padding: 10px 10px 5px 10px;
		text-align: center;
		border-radius: 5px;
		-webkit-border-radius: 5px;
	}

	.wp-user img {
		width: 125px;
		height: 125px;
		margin: 5px auto 10px auto;
		cursor: pointer;
	}

	.wp-user a {
		color: #00529b;
	}

	.wp-user a:hover {
		text-decoration: underline;
	}

	.wp-user a.icon {
		font-size: 20px;
		margin: 0 5px 0 5px;
		-webkit-transition: all 0.2s ease;
	}

	.wp-user a.icon:hover {
		color: #b8d6fb;
		-webkit-transition: all 0.2s ease;
		text-decoration: none;
	}

/* FIM WRAPPER USUÁRIO */
	
/* WRAPPER MÍDIAS SOCIAIS */

	.wrapper-sociais {
		display: flex;
		justify-content: space-evenly;
	}
	
	.wrapper-sociais img {
		width: 35px;
		border-radius: 50%;
	}

/* FIM WRAPPER MÍDIAS SOCIAIS */
	
/* BOTÃO WHATSAPP */

	.btn-whatsapp {
		position: fixed;
		bottom: 70px;
		right: 30px;
	}

	.btn-whatsapp .icon-whatsapp {
		color: #fff;
		font-size: 40px;
		width: 60px;
		height: 60px;
		background-color: #4dc247;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
	}

	.btn-whatsapp .tooltip {
		color: #fff;
		font-size: 14px;
		width: 95px;
		height: 30px;
		background-color: #0e7100;
		display: none;
		align-items: center;
		justify-content: center;
		border-radius: 6px;
		position: absolute;
		top: 30px;
		right: 70px;
		margin-top: -15px;
	}

	.btn-whatsapp .tooltip::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 100%;
		margin-top: -5px;
		border-width: 5px;
		border-style: solid;
		border-color: transparent transparent transparent #0e7100;
	}

	.btn-whatsapp:hover .tooltip {
	  display: flex;
	}
	
/*  FIM BOTÃO WHATSAPP */

/* BOTÃO SCROLLUP */

	.scrollup {
		position: fixed;
		bottom: 70px;
		left: 50%;
		margin-left: -450px;
		visibility: hidden;
		opacity: 0;
		-webkit-transition: opacity .3s 0s, visibility 0s .3s;
		-moz-transition: opacity .3s 0s, visibility 0s .3s;
		transition: opacity .3s 0s, visibility 0s .3s;
	}

	.scrollup span {
		color: #fff;
		font-size: 25px;
		width: 50px;
		height: 50px;
		background-color: #000;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 5px;
	}

	.fade-in {
		visibility: visible;
		opacity: 0.4;
		-webkit-transition: opacity .3s 0s, visibility 0s 0s;
		-moz-transition: opacity .3s 0s, visibility 0s 0s;
		transition: opacity .3s 0s, visibility 0s 0s;
	}
	
/* FIM BOTÃO SCROLLUP */