html, body {
	scroll-behavior: smooth !important;
}

html #header.header-transparent {
	position: inherit !important;
}

p {
	font-size: 19px !important;
	text-align: justify !important;
}

#tabs-section p {
	font-size: 16px !important;
}

.card-body h4 {
    text-align: justify !important;
}

h1, h2, h3, h4, h5, h6, html .text-color-dark, html .text-dark {
	color: #777 !important;
}

.float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color:#25d366;
    color:#FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    padding: 8px !important;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.float i {
    line-height: 1.5;
}

a.float:hover {
    color: #fff;
}

.cookie-container {
    position: fixed;
    display: flex;
    z-index: 9999999999;
    bottom: -100%;
    left: 0;
    right: 0;
    width: 100%;
    align-content: center;
    align-items: center;
    padding: 1.5rem;
    background: #f7f7f7;
    color: #333;
    font-size: 19px;
    gap: 2rem;
    flex-wrap: wrap;
    color: #121212;
    box-shadow: 0 0 10px 0 #ededed;
    transition: 600ms;
}
div.agree {
    flex: 1 150px;
    text-align: center;
}
p.cookie-text {
    flex: 8 768px;
    margin-bottom: 0;
}
.cookie-container.active {
    bottom: 0;
}
.cookie-container a {
    color: #5e737f;
}
.cookie-btn {
    background: #5e737f;
    color: #fff;
    border: none;
    padding: 0.4rem 19px;
    cursor: pointer;
    border-radius: 20px;
    font-size: 19px;
}

.main, .body {
    background-color: #f1f1f1 !important;
}

/**
 * Tabs Container
 */
 .tabs-container {
	padding: 2rem;
}

/**
 * Tabs Block
 */
.tabs-block {
	display: flex;
	align-items: center;
	justify-content: center;
}

/**
 * Tabs
 */
.tabs {
	display: flex;
}
.tabs > ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 35%;
}
.tabs > ul li {
	display: block;
}
.tabs > ul li:not(:last-child) {
	border-bottom: 1px solid #EFEFEF;
}
.tabs > ul li a,
.tabs > ul li a:visited {
	display: flex;
	border-bottom: none;
	text-decoration: none;
	background-color: #5d7380;
	color: #fff;
	padding: 1rem 1.5rem;
	transition: all 0.2s ease-in-out;
	word-wrap: break-word;
}
.tabs > ul li a:hover,
.tabs > ul li a:focus,
.tabs > ul li a:active {
	border-bottom: none;
	outline: 0;
}
.tabs > ul li a.active {
	background-color: #fff;
	color: #5d7380;
}
.tabs > ul li a:hover:not(.active) {
    color: #bdbdbd;
}
.tabs > ul li a > span {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.tabs section {
	width: 85%;
	background-color: #fff;
	padding: 1rem;
	display: none;
	word-wrap: break-word;
	border-bottom: 6px solid #5d7380;
}
.tabs section > * {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.2s, transform 0.2s;
}
.tabs section > *:nth-child(1) {
	transition-delay: 0.2s;
}
.tabs section > *:nth-child(2) {
	transition-delay: 0.3s;
}
.tabs section > *:nth-child(3) {
	transition-delay: 0.4s;
}
.tabs section > *:nth-child(4) {
	transition-delay: 0.5s;
}
.tabs section > *:nth-child(5) {
	transition-delay: 0.6s;
}
.tabs section > *:nth-child(6) {
	transition-delay: 0.7s;
}
.tabs section > *:nth-child(7) {
	transition-delay: 0.8s;
}
.tabs section > *:nth-child(8) {
	transition-delay: 0.9s;
}
.tabs section > *:nth-child(9) {
	transition-delay: 1s;
}
.tabs section > *:nth-child(10) {
	transition-delay: 1.1s;
}
.tabs section > *:nth-child(11) {
	transition-delay: 1.2s;
}
.tabs section > *:nth-child(12) {
	transition-delay: 1.3s;
}
.tabs section > *:nth-child(13) {
	transition-delay: 1.4s;
}
.tabs section > *:nth-child(14) {
	transition-delay: 1.5s;
}
.tabs section > *:nth-child(15) {
	transition-delay: 1.6s;
}
.tabs section > *:nth-child(16) {
	transition-delay: 1.7s;
}
.tabs section > *:nth-child(17) {
	transition-delay: 1.8s;
}
.tabs section > *:nth-child(18) {
	transition-delay: 1.9s;
}
.tabs section > *:nth-child(19) {
	transition-delay: 2s;
}
.tabs section > *:nth-child(20) {
	transition-delay: 2.1s;
}
.tabs section.active {
	display: block;
}
.tabs section.active-content > * {
	opacity: 1;
	transform: translateY(0);
}
@media (min-width: 576px) {
	.tabs > ul {
		width: 25%;
	}
	.tabs > ul li a {
		flex-wrap: wrap;
	}
	.tabs > ul li a > span {
		width: 100%;
	}
	.tabs > ul li a > span.tab-label {
		width: 100%;
		display: block;
		margin-top: 0.2rem;
		font-size: 16px;
	}
	.tabs section {
		width: calc(100% - 150px);
		padding: 2rem 2rem;
	}
}
@media (min-width: 768px) {
	.tabs-container {
		padding: 4rem 4rem;
	}
}
@media (min-width: 992px) {
	.tabs {
		width: 100%;
	}
}

html .scroll-to-top.visible {
	opacity: 1;
    bottom: 20px;
    right: 20px;
    background: #5E737F;
	box-shadow: 0px 0px 3px 0px #212529;
}

a.scroll-to-top:hover {
    color: #b7e4ff;
}

.overlay:before {
	background: #5d7380;
}

.overlay.overlay-op-8.overlay-show:before {
	opacity: 1;
}

html.sticky-header-active div.header-body {
	box-shadow: 0px 0px 5px 0px #5e737f !important;
}

.section-perfil-home p {
	font-size: 19px;
}

.text-align-left {
	text-align: left;
}

#contact-form h3 {
	margin-bottom: 10px;
}

#mainNav .btn.dropdown-toggle:after {
	display: none;
}

.dropdown-menu {
	--bs-dropdown-min-width: 4rem;
}

#header .header-nav-main nav>ul>li {
	align-self: baseline;
}

@media screen and (min-width: 991px) {
	html:not(.sticky-header-active) #header.header-semi-transparent-dark .header-body {
		background-color: #5e737f !important;
	}
}

@media screen and (max-width: 991px) {
	.header-body {
		height: auto;
	}
	
	#header .header-nav-main.header-nav-main-mobile-dark nav>ul li {
		padding: 7px 0;
	}

	#header.header-transparent .header-nav-main:before {
    	width: 100% !important;
		background-color: rgb(94 115 127) !important;
	}

	html #header.header-transparent .header-nav-main nav {
		padding: 0 10px !important;
	}

	html .scroll-to-top.hidden-mobile {
		display: block !important;
	}

	#header .header-nav-main.header-nav-main-mobile-dark nav>ul li a:hover {
		background-color: #5e737f;
	}

	#header .header-body {
		background: #5e737f !important;
	}

	.padding-top-mobile {
		padding-top: 6rem !important;
	}

	.padding-top-mobile-contato {
		padding-top: 8rem !important;
	}

	.padding-top-metade-mobile-contato {
		padding-top: 4rem !important;
	}

	#valores {
		padding: 10rem 0px 4rem 0px !important;
	}
}

#valores {
	padding: 6rem 0;
}

@media screen and (max-width: 575px) {
	#header.header-effect-shrink .header-container {
		background-color: rgb(94 115 127);
	}
	.main .container {
		padding-right: 1.8rem;
		padding-left: 1.8rem;
	}
	#footer .container {
		padding-right: 1.8rem;
		padding-left: 1.8rem;
	}
	.featured-boxes .contact-form-box {
		padding: 1.8rem !important;
	}
	.featured-boxes .box-content {
		padding: 0 !important;
	}
	.dropdown-menu {
		--bs-dropdown-min-width: 4.5rem;
	}
	#header .header-nav-main.header-nav-main-mobile-dark nav>ul>li .dropdown-menu>li a {
		font-weight: 600;
		font-size: 16px;
	}
	#col-logo-footer {
		display: none;
	}
}

.dropdown-item:active {
	background-color: #5d7380;
}

#politica-de-privacidade {
	margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}

#termos-de-uso {
	margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}

.card-header.bg-dark {
	background-color: #5d7380 !important;
	padding: 3% 3% 0;
}

#politica-de-privacidade h3, #politica-de-privacidade h4 {
	color: #5d7380 !important;
}

#termos-de-uso h3, #termos-de-uso h4 {
	color: #5d7380 !important;
}

.header-body {
	position: fixed;
    top: 0px;
}

.dropdown-menu.show {
	padding: 0px;
}

.dropdown-menu.show a {
	line-height: 2rem;
}

html.sticky-header-active div.header-body {
	background-color: rgb(94 115 127) !important;
}

.pt-6 {
	padding-top: 90px !important;
}

#header .header-nav-main.header-nav-main-font-md nav>ul>li>a {
	font-weight: 400 !important;
	font-size: 15px !important;
}

#header .header-logo {
	margin: 0 !important;
}

.header-container.container {
	height: auto !important;
}

#header .header-nav.header-nav-links nav > ul li:hover > a {
	color: #b7e4ff7a !important;
}

.dropdown-item:not(.btn):hover {
	background: #5D7380 !important;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 19px;
}

#footer h5 {
	text-transform: none !important;
}

.bg-footer-logo {
	background: #5D7380 !important;
}

#footer .footer-copyright {
	background: #44535c !important
}

#footer .footer-copyright.footer-copyright-border-grey {
    border-top: 1px solid #b7e4ff7a;
}

.bg-footer-logo h5, .bg-footer-logo p, .bg-footer-logo a, .bg-footer-logo a:hover, .bg-footer-logo i {
	color: #fff !important;
}

.btn {
	font-size: 16px !important;
}

.featured-box h4 {
	font-size: 19px !important;
}

.btn+.dropdown-menu .dropdown-item {
	font-size: 19px;
    padding: 0.2rem 1.45rem;
}

.form-control:not(.form-control-sm):not(.form-control-lg) {
	font-size: 16px !important;
}

a.card-link {
    font-size: 16px !important;
}

#h1-blog {
	margin: 0 !important;
}