*,
*:after, 
*:before {
	box-sizing: border-box;
	/*outline: 1px solid red !important;*/
	margin: 0;
	padding: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

img {
  max-width: 100%;
  /* display: block; */
}

h2 {
	font-weight: 500;
	font-size: 26px;
}

.container--1 {
	width: 98%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
}

/*SCROLLBAR*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
}

/*END SCROLLBAR*/

/*MENUTOP*/
.menutop {
	padding: 15px 0;
	border-bottom: 1px solid #e5e5e5;
}

.menutop .container--1 {
	flex-wrap: wrap;
}

.menutop__item {
	margin-right: 60px;
	word-break: break-all;
}

.menutop__item:last-child {
	margin-right: 0;
}

.menutop__item i {
	color: #006efd;
}
/*END MENUTOP*/

/*MENU*/
.menu {
	border-bottom: 1px solid #e5e5e5;
	background-color: #fff;
}

.menu .container--1 {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

.menu__logo img{
	display: block;
}

.menu__navigation {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

.menu__navigation__link {
	text-decoration: none;
	color: #000;
	margin-right: 20px;
	position: relative;
	height: 115px;
	display: flex;
	align-items: center;
	cursor: pointer;
	font-weight: 500;
}

.menu__navigation__link:hover {
	color: #006efd;
}

.menu__navigation__link:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0%;
	height: 2px;
	background-color: #006efd;
	opacity: 0;
	transition: .5s ease;
}

.menu__navigation__link:hover:before {
	opacity: 1;
	width: 100%;
	left: 0;
}

.menu__navigation__dropdown__content {
	display: none;
	flex-flow: column wrap;
	justify-content: flex-start;
	align-items: flex-start;
	position: absolute;
	top: 100%;
	left: calc(50% - 125px);
	width: 250px;
	box-shadow: 0 6px 12px rgba(0,0,0,0.175);
	border: 1px solid rgba(0,0,0,0.15);
	background-color: #fff;
	z-index: 1;
}

.menu__navigation__dropdown__content a {
	padding: 5px;
	text-decoration: none;
	color: #000;
	width: 100%;
	transition: .1s ease;
	text-align: center;
	height:auto;
}

.menu__navigation__dropdown__content a:hover {
	/* color: #006efd; */
	background-color: #f5f5f5;
}

.menu__navigation__link:hover .menu__navigation__dropdown__content {
	display: flex;
}

.menu__telefone {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	padding-left: 40px;
	border-left: 1px solid #e5e5e5;
}

.menu__telefone i {
	font-size: 40px;
	color: #006efd;
	margin-right: 10px;

}

.menu__telefone__text {
	line-height: 1.1;
}

.menu__telefone__text span {
	font-weight: bold;
	font-size: 20px;
}

/*MENUMOBILE*/
.menumobile {
	display: none;
}

@media (max-width: 720px) {
	.menu {
		display: none;
	}

	.menumobile {
		display: inline-flex;
		padding: 20px 0;
	}

	.menumobile .container--1 {
		justify-content: space-between;
	}

	.menumobile__logo img{
		display: block;
	}

	.menumobile__togglebtn {
		font-size: 30px;
		background-color: transparent;
		border: 2px solid #e5e5e5;
		padding: 5px 15px;
		outline: none;
		color: #000;
		margin-left: 40px;
		cursor:pointer;
		cursor:hand;
		height: fit-content;
	}

	.menumobile__modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.9);
    display: none;
    z-index: 4;
    left: 0;
    top: 0;
	}

	.menumobile__modal__container {
	    width: 100%;
	    height: 100%;
	    padding: 20px;
	    position: relative;
	    display: flex;
	    flex-flow: column wrap;
	    justify-content: center;
	    align-items: center;
	}

	.menumobile__modal__close {
	    color: #fff;
	    border:none;
	    background-color: transparent;
	    font-size: 30px;
	    position: absolute;
	    top: 14%;
	    right: 9%;
	    cursor: pointer;
	    outline: none;
	}

	.menumobile__modal__close i {
	    font-size: inherit;
	}

	.menumobile__modal__link__content {
	    display: flex;
	    flex-flow: column wrap;
	    justify-content: center;
	    align-items: center;
	}

	.menumobile__modal__link {
	    color: #fff;
	    text-decoration: none;
	    font-size: 18px;
	    margin-bottom: 5px;
	    outline: none;
	    text-align: center;
	    cursor: pointer;
	}

	.menumobile__modal__link:last-child {
	    margin-bottom: 0;
	}

	.menumobile__modal__link .menumobile__modal__link{
	    margin-bottom: 0;
	}
	
	.equipe__item{ margin-bottom:35px;  }
	.menutop__item{text-align:center; width:100%; margin:0;word-break: normal;}
}
/*END MENUMOBILE*/
/*END MENU*/

/*HOME*/
.home__carousel {
	position: relative;
}

.home {
	position: relative;
	height: 800px;
}

.home .container--1 {
	flex-flow: column wrap;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
}

.home__background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	filter: brightness(0.5);
    object-fit: cover;
    z-index: -1;
}

.home__title--1 {
	color: #fff;
	font-weight: normal;
	font-size: 33px;
}
.home__title--1 b{font-size: 100px;line-height: 1.2;font-weight: bold;}

.home__title--2 {
	color: #fff;
	font-size: 100px;
	line-height: 1.2;
	font-weight: bold;
	word-break: break-all;
}

.home__title--3 {
	color: #fff;
	font-weight: normal;
}

.home__btn {
	text-transform: uppercase;
	color: #fff;
	padding: 15px 50px;
	background-color: #006efd;
	text-decoration: none;
	font-weight: 500;
	font-size: 20px;
	margin-top: 40px;
	transition: .2s ease;
}

.home__btn:hover {
	filter: brightness(1.3);
}

.carousel__nav {
	position: absolute;
	top: calc(50% - 40px);
	width: 100%;
	left: 0;
	display: flex;
	justify-content: space-between;
	padding: 0 2%;
	opacity: 0;
	pointer-events: none;
	transition: .5s ease;
}

.home__carousel:hover .carousel__nav{
	opacity: 1;
}

.carousel__nav__left, .carousel__nav__right {
	border: none;
	color: #fff;
	background-color: transparent;
	font-size: 80px;
	cursor: pointer;
	outline: none;
	pointer-events: all;
}

@media (max-width: 720px) {
	.home {
		height: 550px;
	}

	.home .container--1 {
		align-items: center;
	}

	.home__title--1 {
		font-size: 22px;
		text-align: center;
	}
	.home__title--1 b{ font-size:36px;}

	.home__title--2 {
		font-size: 50px;
		text-align: center;
	}

	.home__title--3 {
		font-size: 22px;
		text-align: center;
	}
}
/*END HOME*/

/* ARTICLES */

.articles .container--1	{
	justify-content: space-between;
	min-height: 360px;
	margin-top: -80px;
}

.articles__item {
	width: 30%;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	align-items: center;
	padding: 50px 40px;
	text-decoration: unset;
	box-shadow: 0 6px 12px rgba(0,0,0,0.175);
	transition: .2s ease;
	z-index: 2;
}

.articles__item:hover {
	filter: brightness(1.2);
	transform: scale(1.1);
}

.articles__azul {
	color: #FFF;
	background-color: #006efd;
}

.articles__cinza {
	color: #006efd;
	background-color: #e6e6e6;
}

.articles__preto {
	color: #e6e6e6;
	background-color: #252525;
}
.articles__preto:hover{color: #e6e6e6 !important;}

.articles__item i {
	font-size: 60px;
}

.articles__item h2 {
	font-size: 26px;
	margin: 20px 0;
	font-weight: 500;
}

.articles__item p {
	text-align: center;
}

.articles__item span {
	margin-top: 40px;
	text-transform: uppercase;
	text-decoration: none;
	display: flex;
	align-items: center;
	color: unset;
}

.articles__item span i {
	font-size: 16px;
	margin-left: 20px;
}

@media (max-width: 720px) {
	.articles .container--1 {
		flex-wrap: wrap;
		justify-content: center;
	}

	.articles__item {
		width: 90%;
	}

	.articles__preto {
		margin: 40px 0;
	}
}

/* END ARTICLES */

/*ABOUT*/
.about {
	padding: 80px 0;
}

.about .container--1 {
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	align-items: flex-start;
}

.about h2 {
	padding: 15px 0;
	margin-bottom: 12px;
	position: relative;
}

.about h2:before {
	content: '';
	position: absolute;
	width: 25%;
	height: 3px;
	background-color: #006efd;
	left: 0;
	bottom: 0;
}

.about p{
	font-weight: 500;
	padding:10px;
	text-align:justify;
}

.about a {
	text-transform: uppercase;
	color: #006efd;
	padding: 15px 30px;
	background-color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	margin-top: 15px;
	transition: .2s ease;
	border:1px solid #006efd;
	transition: .2s ease;
}

.about a:hover {
	background-color: #006efd;
	color: #fff;
}

.about a i {
	margin-left: 10px;
}

.about-col{display: contents;     flex-flow: column wrap;     justify-content: center;     align-items: center;}
.about-col img{ max-height: 250px;}

@media (max-width: 720px) {
	.about .container--1 {
		align-items: center;
	}

	.about p {
		text-align: justify;
	}
}

/*END ABOUT*/

/*ACOMPANHAMENTO*/
.acompanhamento {
	background-color: #252525;
	padding: 50px 0;
}

.acompanhamento .container--1 {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}

.acompanhamento__text__title {
	color: #fff;
	font-weight: bold;
}

.acompanhamento__text__title i{
	color: #FFF;
}

.acompanhamento__text__description {
	color: #fff;
}

.acompanhamento__btn {
	text-transform: uppercase;
	color: #fff;
	padding: 15px 50px;
	background-color: #006efd;
	text-decoration: none;
	font-weight: 500;
	font-size: 20px;
	transition: .2s ease;
	cursor: pointer;
}

.acompanhamento__btn:hover {
	filter: brightness(1.2);
}

@media (max-width: 720px) {
	.acompanhamento .container--1 {
		justify-content: center;
	}

	.acompanhamento__text {
		margin-bottom: 20px;
		text-align: center;
	}
}
/*END ACOMPANHAMENTO*/

/*EQUIPE*/
.equipe .container--1 {
	flex-flow: column wrap;
	padding: 60px 0;
}

.equipe__title {
	padding: 15px 0;
	margin-bottom: 30px;
	position: relative;
}

.equipe__title:before {
	content: '';
	position: absolute;
	height: 3px;
	background-color: #006efd;
	left: 0;
	bottom: 0;
	min-width: 80px;
}

.equipe__lista {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.equipe__item {
	text-decoration: none;
	color: #000;
	width:250px; 
	margin-bottom: 50px;
}

.equipe__item__img {
	width: 250px;
	height: 291px;
}

.equipe__item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .2s ease;
}
.equipe__item__img img:hover{	filter: brightness(1.1);	transform: scale(1.1); transition: .2s ease;}

.equipe__item__nome {
	margin-top: 10px;
}

@media (max-width: 720px) {

	.equipe .container--1 {
		align-items: center;
	}

	.equipe__lista {
		justify-content: space-evenly;
	}
}
/*END EQUIPE*/

/*RODAPE*/
.rodape {
	background-color: #252525;
	color: #fff;
	padding: 40px 0;
}

.rodape .container--1 {
	justify-content: space-between;
}

.rodape__col__lista {
	display: flex;
	flex-flow: column wrap;
	/* max-height: 220px; */
}

.rodape__title {
	position: relative;
	padding: 5px 0;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-size: 16px;
}

.rodape__title:before {
	position: absolute;
	content: '';
	height: 3px;
	width: 80px;
	background-color: #006efd;
	left: 0;
	bottom: 0;
}

.rodape__link {
	text-decoration: unset;
	color: unset;
	padding: 3px 20px 3px 0;
	transition: .2s ease;
	font-size: 13px;
}

.rodape__link:hover {
	padding: 3px 0 3px 15px;
	color:#FFF;
}

@media (max-width: 720px) {
	.rodape .container--1 {
		flex-wrap: wrap;
	}

	.rodape__col {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}

	.rodape__title:before {
		width: 50%;
		left: 25%;
	}

	.rodape__col__lista {
		max-height: unset;
	}
}
/*END RODAPE*/

/*ASSINATURA*/
.assinatura .container--1 {
	padding: 20px 0;
	justify-content: space-between;
	font-size: 12px;
}

.assinatura img {
	/* display: block; */
}

@media (max-width: 720px) {
	.assinatura .container--1 {
		flex-flow: column wrap;
		justify-content: center;
		align-items: center;
	}

	.assinatura p {
		margin-bottom: 10px;
	}
}
/*END ASSINATURA*/

/**/