@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400&display=swap');

/************ TIPOGRAFIA - INÍCIO ***********/

html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

body {
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	background-color: #F7F7F7;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}


h1 {
  font-size: 3rem;
  letter-spacing: 0.5px;
  line-height: 48px;
}

h2 {
  font-size: 2rem;
  line-height: 48px;
}

h3 {
  font-size: 1.5rem;
  line-height: 32px;
}

.link {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 1px;
}

p, .paragraph {
	font-size: 1rem;
	font-weight: normal;
	text-transform: none;
	line-height: 1.8;
	letter-spacing: 0.32px;
}

.paragraph li {
	list-style-type: disc!important;
	margin-left: 2.5rem;
	color: #3D3D3D;
}

.paragraph p {
	color: #3D3D3D;
}

.paragraph h2 {
	color: #212121;
}

em {
  font-style: italic;
}

small {
	font-size: 14px;
	font-style: italic;
	line-height: 1.8;
	letter-spacing: 0.5px;
}

strong {
	font-weight: bold;
}

a {
  color: unset;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

/* This is needed for some mobile phones to display the Google Icon font properly */
.material-icons {
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: 'liga';
     -moz-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
}

/************ TIPOGRAFIA - FIM ***********/

/************ ÍCONES - INÍCIO ***********/

i {
  line-height: inherit!important;
}


i.tiny {
  font-size: 1rem;
}

i.small {
  font-size: 2rem;
}

i.medium {
  font-size: 4rem;
}

i.large {
  font-size: 6rem;
}

/************ ÍCONES - FIM ***********/

/************ CORES - INÍCIO ***********/

.red-1 {
	color: #ED3B40;
}

.red-2 {
	color: #D43539;
}

.red-3 {
	color: #BB2F32;
}

.red-4 {
	color: #A1282B;
}

.white {
	color: #F7F7F7;
}


.light-gray {
	color: #EEEEEE;
}

.gray {
	color: #3D3D3D;
}

.dark-gray {
	color: #212121;
}

/* 2dp elevation modified*/
.z-depth-1, .card-panel, .card, .dropdown-content, .collapsible, .sidenav, .equipe-card, .tabcontent, .btn-floating {
  -webkit-box-shadow:0 3px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}

.z-depth-2 {
	-webkit-box-shadow:0 6px 12px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.15);
}


/************ CORES - FIM ***********/

/************ BOTÕES - INÍCIO ***********/

.btn {
  	border: none;
  	display: flex;
	align-items: center;
	width: fit-content;
	height: inherit;
	line-height: 2;
	text-transform: uppercase;
	-webkit-tap-highlight-color: transparent;
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: 0.5px;
	cursor: pointer;
}


.btn i, .btn-large i {
	font-size: 1.3rem;
	padding-left: 8px;
}


.btn-large {
	background-color: #D43539;
	color: #f7f7f7;
	text-decoration: none;
	text-align: center;
	-webkit-transition: all .3s ease-out;
  	transition: all .3s ease-out;
	padding: 12px;
	overflow: hidden;
	border-radius: 4px;
	justify-content:center; 
	box-shadow: 0px 0px 0px 4px #D43539, 0px 3px 6px #21212180;
}


.btn-large:hover {
  	background-color: #BB2F32;
	-webkit-box-shadow:0 2px 5px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 0px 0px #D43539, 0px 1px 3px #2121214d;
}

.btn-floating {
	background-color: #FF7231;
	color: #f7f7f7;
	text-decoration: none;
	position: fixed;
	right: 0;
	top: 25%;
	display: flex;
	flex-direction: column;
	padding: 16px 32px;
	border-radius: 50px;
	z-index: 999;
}

.btn-floating svg {
	fill: #F7F7F7;
	-webkit-transition: transform .2s ease-out;
  	transition: transform .2s ease-out;
	margin: 28px 0;
}

.btn-floating svg:hover {
	transform: scale(1.5);
}

.btn-flat {
	color: #D43539;
	overflow: hidden;
	box-shadow: none;
	transition: .5s ease-in;
	background-color: unset;
	justify-content: left;
	width: 100%;
	padding: 16px 0 16px;
}

.btn-flat i {
	padding-left: 8px; 
}

.btn-flat:hover {
	background-color: #D43539;
	color: #f7f7f7;
	justify-content: center;
}


.dropdown-content {
  background-color: #fff;
  margin: 0;
  display: none;
  min-width: 100px;
  overflow-y: visible;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

.dropdown-content:focus {
  outline: 0;
}

.dropdown-content li {
  clear: both;
  color: rgba(0, 0, 0, 0.87);
  cursor: pointer;
  min-height: 50px;
  line-height: 1.5rem;
  width: 100%;
  text-align: left;
	margin: 0px;
}

.dropdown-content li:hover, .dropdown-content li.active {
  background-color: #eee;
  min-width: 100%;
  white-space: nowrap;
}

.dropdown-content li:focus {
  outline: none;
}

.dropdown-content li.divider, .artigos-relacionados span.divider{
  min-height: 0;
  height: 1px;
}

.dropdown-content li > a, .dropdown-content li > span {
  font-size: 16px;
  color: #212121;
  display: block;
  line-height: 22px;
  padding: 14px 16px;
  text-transform: none;
  font-weight: 400;
}

.dropdown-content li > span > label {
  top: 1px;
  left: 0;
  height: 18px;
}

.dropdown-content li > a > i {
  height: inherit;
  line-height: inherit;
  float: left;
  margin: 0 24px 0 0;
  width: 24px;
}

body.keyboard-focused .dropdown-content li:focus {
  background-color: #dadada;
}

.input-field.col .dropdown-content [type="checkbox"] + label {
  top: 1px;
  left: 0;
  height: 18px;
  -webkit-transform: none;
          transform: none;
}

.dropdown-trigger {
  cursor: pointer;
}

/************ BOTÕES - FIM ***********/

/************ CARDS - INÍCIO ***********/


.card {
  position: relative;
  margin: 48px 0px;
  background-color: #F7F7F7;
  -webkit-transition: -webkit-box-shadow .25s;
  transition: -webkit-box-shadow .25s;
  transition: box-shadow .25s;
  transition: box-shadow .25s, -webkit-box-shadow .25s;
	cursor: pointer;
	bottom: 0;
  left: 0;
  right: 0;
}

.card:hover, .equipe-card:hover {
	box-shadow: 0 1px 3px 0 rgb(0 0 0 / 30%);	
}

.card .card-title {
	color:#212121;
	transition: color .3s ease-out;
}

.card .card-title:hover {
	color: #D43539;
}

.card-content {
	color:#3D3D3D;
	margin: 0;
}

.card-action {
  position: relative;
  color: #D43539;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: inherit;
  border-top: 1px solid #707070;
  padding: 16px 24px;
  transition: .5s ease-in;
}

.card-action:hover {
	background-color: #D43539;
	color: #f7f7f7;
}

.card .card-action i {
	line-height: 32px;
	vertical-align: middle;
}


.card.horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.card.horizontal.small .card-image, .card.horizontal.medium .card-image, .card.horizontal.large .card-image {
  height: 100%;
  max-height: none;
  overflow: visible;
}

.card.horizontal.small .card-image img, .card.horizontal.medium .card-image img, .card.horizontal.large .card-image img {
  height: 100%;
}

.card.horizontal .card-image {
  max-width: 50%;
}

.card.horizontal .card-image img {
  border-radius: 2px 0 0 2px;
  max-width: 100%;
  width: auto;
}

.card.horizontal .card-stacked {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}


.card .card-image {
  position: relative;
}

.card .card-image img {
  display: block;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

.card .card-image .card-title {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 100%;
  padding: 24px;
}

.card .card-content {
  padding: 24px;
  border-radius: 0 0 2px 2px;
}


.card .card-content .card-title {
  display: block;
  line-height: 32px;
  margin-bottom: 8px;
}

.card .card-content .card-title i {
  line-height: 32px;
}

.card .card-title {
  cursor: pointer;
  display: block;
}

.equipe-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	min-height: 300px;
	background-color: #F7F7F7;
	margin: 48px 0;
}

.equipe-card-content {
	padding: 24px;
	border-radius: 0 0 2px 2px;
	color: #3D3D3D;
}
	
.equipe-card img {
	max-height: 100%;
	margin-right: 1rem;
 	width: auto;
	display: block;
}

/************ CARDS - FIM ***********/

/************ SIDENAV - INÍCIO ***********/

.sidenav {
  position: fixed;
  width: 300px;
  left: 0;
  top: 0;
  margin: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  height: 100%;
  height: calc(100% + 60px);
  height: -moz-calc(100%);
  padding: 48px 0 96px;
  background-color: #f7f7f7;
  z-index: 999;
  overflow-y: auto;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateX(-105%);
          transform: translateX(-105%);
}

.sidenav.right-aligned {
  right: 0;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  left: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.sidenav .collapsible {
  margin: 0;
}


.sidenav li {
  float: none;
  line-height: 28px;
  margin: 14px 0;
}

.sidenav li:first-child {
  	max-width: 48px;
}

.sidenav li.active {
  color: #FF621A;
}

.sidenav li > a {
  padding: 16px;
  color: #212121;
  display: block;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sidenav li > a:hover {
  color: #f7f7f7;
  background-color: #D43539;
}

.sidenav li > a > i,
.sidenav li > a > [class^="mdi-"], .sidenav li > a li > a > [class*="mdi-"],
.sidenav li > a > i.material-icons {
  float: left;
  height: 48px;
  line-height: 48px;
  margin: 0 32px 0 0;
  width: 24px;
  color: rgba(0, 0, 0, 0.54);
}

.sidenav .divider {
  margin: 8px 0 0 0;
}

.drag-target {
  height: 100%;
  width: 10px;
  position: fixed;
  top: 0;
  z-index: 998;
}

.drag-target.right-aligned {
  right: 0;
}

.sidenav.sidenav-fixed {
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  position: fixed;
}

.sidenav.sidenav-fixed.right-aligned {
  right: 0;
  left: auto;
}


.sidenav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  height: 120vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 997;
  display: none;
}

.sidenav-icons {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: nowrap;
	align-content: center;
	align-items: center;
}

.sidenav-icons i {
	color: #D43539;
}

.sidenav-icons span {
	padding: 16px;
	transition: ease-in 0.5s;
}


.sidenav-icons span:hover {
	color: #f7f7f7;
	background-color: #D43539;
}

/************ SIDENAV - FIM ***********/


/************ ARTIGOS - INÍCIO ***********/
.artigos .m6 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 5% 0;
}

.artigos .m8 {
	padding-right: 16px!important;
}

.artigos .row {
	margin: 48px 0;
}

.artigos .m6 h3, .artigos-relacionados h3  {
	color: #212121;
	transition: color .3s ease-out;
}

.artigos .m6 h3:hover, .artigos-relacionados h3:hover {
	color: #D43539;
}

.artigos p {
	color: #3D3D3D;
	line-height: 2;
}


.artigos-relacionados {
	background-color: #eee;
	padding: 96px 0;
}

.artigos .col ul {
	margin-left: 2.5em;

}

.artigos .col ul>li {
	list-style: disc!important;
}



/* REGIÕES DE ATENDIMENTO -> INÍCIO */
 
.regioesDeAtendimento {
  margin: 48px 0;
  clear: both;
}

.regioesDeAtendimento p {
  padding-bottom: 36px;
  color: #3D3D3D;
}

.flexis-regioesDeAtendimento {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flex-regioesDeAtendimento-div1 {
  height: 465px; width: 80%; margin-bottom: 30px;
}

.flex-regioesDeAtendimento-div2 {
  height: 465px; width: 20%; margin-bottom: 30px; background-color: #000;
  background-image: url(../images/regioes-de-atendimento-background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.container-floater {
  width: 80%;
  float: right;
  padding-right: 15px;
}

.flex-tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.tab-width-flex {
 width: 25%;
 height: 350px;
	align-self: flex-start;
}

.content-width-flex {
  width: 55%;
  margin-left: 5%;
	align-self: flex-start;
}

/* Style the tab */
.tab {
  float: left;
  width: 100%;
  height: 300px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  display: block;
  color: #212121;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  background-color: #E9E9EB;
  border: none;
  border-right: 2px solid #EEEEEE;
  border-left: 2px solid #212121;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #EEEEEE;
  color: #D43539;
  font-weight: 700;
  border-right: 2px solid #D43539;
  border-left: 2px solid #eeeeee;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #eeeeee;
  font-weight: 700;
  border-left: 2px solid #eeeeee;
  color: #D43539;
  border-right: 2px solid #D43539;
}

/* Style the tab content */
.tabcontent {
  width: 100%;
  height: auto;
  padding: 16px 30px;
  background: #F7F7F7;
}

.tabContentFlex {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}

.divTabContent {
  width: 50%;
}

.tabcontent li {
  color: #3D3D3D;
  font-size: 1.1rem;
  font-weight: normal;
  line-height: 32px;
}

#outrasCidades .tabContentFlex {
	justify-content: flex-start;
}

/* REGIÕES DE ATENDIMENTO -> FIM */


/************ ARTIGOS - FIM ***********/


/************  MAPA DO SITE - INÍCIO ************/
.sitemap li {
	padding: 8px 0px;
	
}
.sitemap a {
	-webkit-transition: color .4s;
	transition: color .4s;	
}

.sitemap a:hover {
	color: #3D3D3D;
}
.sub-menu {
	margin-left: 1rem;
}

/************  MAPA DO SITE - FIM ************/



/************ UTILITÁRIOS - INÍCIO ***********/

.divider {
  height: 1px;
  overflow: hidden;
  background-color: #f8ddde;
	display: block;
}

blockquote {
  margin: 20px 0;
  padding-left: 1.5rem;
  border-left: 5px solid #ee6e73;
}


.container-fluid {
	width: 100%;
	padding: 0;
}


.clearfix {
  clear: both;
}


img.responsive-img,
video.responsive-video {
  max-width: 100%;
  height: auto;
}

.gallery-001 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.gallery-001 img {
	width: 352px;
	margin: 16px 0px;
}

.more-images-articles-div .col {
	padding: 0px!important;
}

.hide {
  display: none !important;
}

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

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

.center, .center-align {
  text-align: center;
}

.left {
  	float: left !important;
}

.right {
  	float: right !important;
}

.no-select, input[type=range],
input[type=range] + .thumb {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.no-padding {
  padding: 0 !important;
}


.materialboxed {
  display: block;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  position: relative;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  -webkit-backface-visibility: hidden;
}

.materialboxed:hover:not(.active) {
  opacity: .8;
}

.materialboxed.active {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

#materialbox-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #292929;
  z-index: 1000;
  will-change: opacity;
}

.materialbox-caption {
  position: fixed;
  display: none;
  color: #fff;
  line-height: 50px;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0% 15%;
  height: 50px;
  z-index: 1000;
  -webkit-font-smoothing: antialiased;
}

.section-espaco {
	margin: 96px 0;
}

::-moz-selection { /* Code for Firefox */
  color: #f7f7f7;
  background: #D43539;
}

::selection {
  color: #f7f7f7;
  background: #D43539;

}



/************ UTILITÁRIOS - FIM ***********/



/************ HEADER - INÍCIO ***********/


#nav-mobile {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	margin: 0 auto;
}

nav {
  	color: #212121;
  	background-color: #f7f7f7;
  	width: 100%;
  	height: 100px;
 	line-height: 56px;
	margin-bottom: 1rem;
}

.nav-wrapper .hide-on-med-and-down {
	transform: translate(0, 50%);
}

.nav-content {
	position: absolute;
	width: 100%;
	background-color: #f7f7f7;
	padding: 0px 16px;
}

nav.nav-extended {
  height: auto;
}

nav.nav-extended .nav-wrapper {
  min-height: 56px;
  height: auto;
}

nav.nav-extended .nav-content {
  position: relative;
  line-height: normal;
}

nav a {
  color: #fff;
}

nav i,
nav [class^="mdi-"], nav [class*="mdi-"],
nav i.material-icons {
  display: block;
  font-size: 24px;
  height: 56px;
}

nav .nav-wrapper {
  position: relative;
  height: 100%;
}

nav .sidenav-trigger {
  float: left;
  position: relative;
  z-index: 1;
  height: 56px;
  margin: 28px 18px 0;
  color: #BB2F32;
}

nav .sidenav-trigger i {
  height: 56px;
  line-height: 56px;
}

nav .brand-logo {
  position: absolute;
  color: #fff;
  display: inline-block;
  font-size: 2.1rem;
  padding: 0;
}

nav .brand-logo.center {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

nav .brand-logo.right {
  right: 0.5rem;
  padding: 0;
}

nav .brand-logo i,
nav .brand-logo [class^="mdi-"], nav .brand-logo [class*="mdi-"],
nav .brand-logo i.material-icons {
  float: left;
  margin-right: 15px;
}

nav .nav-title {
  display: inline-block;
  font-size: 32px;
  padding: 28px 0;
}

nav ul {
  margin: 0;
}

nav ul li {
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  float: left;
  padding: 0;
	margin: 0 1rem;
}

nav ul li.active {
  background-color: rgba(0, 0, 0, 0.1);
}

nav ul a {
  	-webkit-transition: background-color .3s;
  	-webkit-transition: background-color .3s;
  	transition: background-color .3s;
  	color: #212121;
  	display: block;
  	padding: 0 16px;
  	cursor: pointer;
  	font-size: 1.2rem;
  	font-weight: bold;
  	letter-spacing: 1px;
  	text-transform: uppercase;
	-webkit-transition: background-color .2s ease-out;
  	transition: background-color .2s ease-out;
}

nav ul a.btn, nav ul a.btn-large, nav ul a.btn-small, nav ul a.btn-large, nav ul a.btn-flat, nav ul a.btn-floating {
  margin-top: -2px;
  margin-left: 15px;
  margin-right: 15px;
}

nav ul a.btn > .material-icons, nav ul a.btn-large > .material-icons, nav ul a.btn-small > .material-icons, nav ul a.btn-large > .material-icons, nav ul a.btn-flat > .material-icons, nav ul a.btn-floating > .material-icons {
  height: inherit;
  line-height: inherit;
}

.nav-wrapper ul a:first-child:hover, .nav-wrapper ul a:nth-child(2n):hover, .nav-wrapper ul a:nth-child(4n):hover {
	color: #f7f7f7;
	background-color: #D43539;
}

nav ul.left {
  float: left;
}

nav form {
  height: 100%;
}

nav .input-field {
  margin: 0;
  height: 100%;
}

nav .input-field input {
  height: 100%;
  font-size: 1.2rem;
  border: none;
  padding-left: 2rem;
}

nav .input-field input:focus, nav .input-field input[type=text]:valid, nav .input-field input[type=password]:valid, nav .input-field input[type=email]:valid, nav .input-field input[type=url]:valid, nav .input-field input[type=date]:valid {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

nav .input-field label {
  top: 0;
  left: 0;
}

nav .input-field label i {
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: color .3s;
  transition: color .3s;
}

nav .input-field label.active i {
  color: #fff;
}

.navbar-fixed {
  position: relative;
  height: 56px;
  z-index: 997;
}

nav ul a:focus-visible {
	outline: none;
}

.navbar-fixed nav {
  position: fixed;
}

.top-nav {
	border-bottom: 1px solid #ED3B40;
	margin-bottom: 28px;
	height: 68px;
	color: #D43539;
}

.top-nav a {
	transition: 0.3s linear 0.3s;
	padding: 16px;
}

.top-nav a:hover {
	color: #f7f7f7;
	background-color: #D43539;
} 

.top-nav span {
	vertical-align: text-top;
}

.top-nav a:nth-child(1) {
	float: left;
}

.top-nav a:nth-child(2) {
	float: right;
}



/* PESQUISA -> INÍCIO */

.pesquisa-form {
  display:  none;
}

.button-search-navbar {
  position: relative;
  float: right;
  bottom: 50px;
  border: none;
  background: transparent;
} 

.button-search-navbar:focus {
  background-color: unset!important;
}

.busquinha {
  position: fixed;
  top: 200px;
  width: 70%;
  max-width: 100%;
  margin: 0 auto;
}

.busquinha input[type=search]:not(.browser-default) {
  font-weight: bold;
  z-index: 999;
  box-shadow: none;
  background: #eaeaea63;
  padding: 2px 8px;
  border: 2px solid #212121;
  border-radius: 50px;
}

.busquinha input[type=search]:not(.browser-default):focus:not([readonly]) {
  box-shadow: unset!important;
}

input[type=search]:not(.browser-default):focus:not([readonly]) {
  border-bottom: 2px solid #b01c1c;
}

.botao-de-pesquisa {
  color: #FFF;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #cc2a28;
  width: 280px;
  height: 55px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
  font-size: 18px;
  letter-spacing: 0.8px;
  border: none;
  transition: .3s ease-in-out;
}

.botao-de-pesquisa:hover {
  background: #780404;
  transition: .3s ease-in-out;
}

.inputBuscaPaginaBusca {
  color: #171717;
  font-weight: 500;
  margin-bottom: 36px!important;
  border-bottom: 2px solid #cb2a28!important;
}

input:not([type]):focus:not([readonly]) {
  box-shadow: none;
}

.tituloSectionPesquisa {
  color: #093a3e;
  font-weight: bold;
  font-size: 2em;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.button-search-mobile {
  background-color: unset;
  border: none;
}

.button-search-mobile i {
  color: #2e4f52;
}

.button-search-mobile:focus {
  background-color: unset!important;
}

.search-navbar-esquerda {
  color: #2e4f52!important;
}


.pesquisa .btn {
	margin: 0 auto;
}

/* PESQUISA -> FIM */

/************ HEADER - FIM ***********/


/***************************** WHATSAPP FLUTUANTE - INÍCIO *********************************/

.whatsapp-btn {
	position: fixed;
	bottom: 0;
	right: 0;
	text-align: center;
	z-index: 910;
	margin: 48px;
	display: flex;
	align-content: center;
	align-items: center;
}

.whatsapp-btn i {
	font-size: 36px;
	color: #f7f7f7;
}

.whatsapp-btn-text {
	background-color: #25D366;
	color: #f7f7f7;
	margin-right: 16px;
	padding: 16px;
	text-transform: uppercase;
	transform: translate(300px, 0px);
	visibility: hidden;
	transition: opacity 0.3s;
	opacity: 0;
	border-radius: 4px;
}

.whatsapp-btn:hover .whatsapp-btn-text {
	transform: translate(0px, 0px);
	visibility: visible;
	opacity: 1;
}


/***************************** WHATSAPP FLUTUANTE - FIM *********************************/

/************ FOOTER - INÍCIO ***********/

footer {
	background-color: #212121;
	padding-top: 48px;
	margin-top: 96px;
	z-index: 901;
	position: absolute;
	width: 100%;
  word-wrap: break-word !important;
}

footer h3 {
	color: #f7f7f7;
	text-transform: uppercase;
}

footer ul {
	margin-bottom: 48px;
}

footer li, footer a {
	color: #F7F7F7;
	font-size: 1.1rem;
	font-weight: normal;
	line-height: 1.8;
	letter-spacing: 0.5px;
	text-transform: none;
	margin: 28px 0;
	transition: all .3s ease-in-out;
}

footer a:hover {
	color: #ED3B40;
}

footer svg {
	fill: #f7f7f7;
	transition: all .3s ease-in-out;
}

footer svg:hover {
	fill: #ED3B40;
}

footer .l4 li:nth-child(6){
	word-break: break-all;
}

footer .link {
	text-transform: uppercase;
}


.copyright {
	border-top:2px solid #f7f7f7;
	display: flex;
	align-items: center;
	margin-bottom: 0px!important;
	flex-direction: row;
}

.copyright strong {
	color: #ED3B40;
}


.copyright p {
	color: #F7F7F7;
}

.copyright a:first-child {
	margin: 28px;
}

.copyright div:first-child {
	flex-grow: 1;
}

/************ FOOTER - FIM ***********/

/************ CONTATO - INÍCIO ***********/

.contato h3 {
	color: #D43539;
}

.contato li, .contato a {
	color: #3D3D3D;
	font-size: 1.1rem;
	font-weight: normal;
	line-height: 1.8;
	letter-spacing: 0.5px;
	text-transform: none;
	margin: 28px 0;
	transition: all .3s ease-in-out;
}

.contato a:hover {
	color: #ED3B40;
}


.contato .m6 {
	padding-right: 16px;
}

.contato li:last-child {
	word-break: break-all;
}

.contato i {
	vertical-align: middle;
	padding-right: 8px;
}

.contato svg {
	margin-right: 8px;
	vertical-align: middle;
}

.contato button {
		float: right;
}


.contato .divider {
	margin-right: 16px;
}

.mapa {
	border: none;
}

.mapa iframe {
	width: 100%;
	height: 450px;
}


/************ CONTATO - FIM ***********/


/*********** SLIDER - INÍCIO ***********/

.hero-image {
  background-image: url(../images/slider-1.jpg);
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.hero-content {
	display: flex;
	align-items: center;
	flex-direction: row;
	margin: 0 auto;
}

.hero-text {
  text-align: left;
  transform: translate(0%, 0%);
  color: #f7f7f7;
  width: 80%;
  padding: 16px;
}

.hero-center {
	align-self: flex-end;
}

.hero-text h1, .hero-text p {
	color: #F7F7F7;
	margin-bottom: 28px;
}

.alignment-buttons-hero-image {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 620px;
}

  
.hero-product-content {
  height: 175px;
  background: #FFF;
  margin-bottom: 30px;
  box-shadow: 1px 1px 7px 4px #d0d0d0;
  transition: all .3s ease-in-out;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.hero-product-content:hover {
  transition: all .3s ease-in-out;
  box-shadow: 0px 0px 14px 2px #949494;
}



.hero-dots {
  
  text-align: center;
  margin: 48px auto;
}


.hero-dot {
  display: inline-block;
  background-color: transparent;
  width: 80px;
  height: 16px;
  transform: translateY(0px);
  bottom: 0px;
  border: 1px solid #FFF;
  transition: .3s ease-in-out;
}

.hero-dot:hover {
  background-color: #FFF;
  border: 1px solid #FFF;
  transition: .3s ease-in-out;
}

.hero-dot-active {
  background-color: #FFF;
  border: 1px solid #FFF;
  position: relative;
  transition: .3s ease-in-out;
}

.hero-dots-content span {
	margin: 8px;
}

.hero-navigation {
  text-align: center;
	align-self: center;

}

.hero-navigation-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
}
    
.hero-navigation-button {
  text-align: center;
  display: inline-block;
  transition: .3s ease-in-out;
}

.hero-navigation-button svg {
  height: 96px;
  width: 96px;
  fill: #FFF;
  transition: .3s ease-in-out;
}

.hero-navigation-button:hover svg {
  fill: #D43539;
  transition: .3s ease-in-out;
}


/*********** SLIDER - FIM ***********/


/*********** CTA - INÍCIO ***********/

.cta-horizontal, .cta-vertical {
	background-color: #EEEEEE;
	display: flex;
}


.cta-horizontal {
	flex-direction: row;
	height: auto;
}

.cta-text {
	margin: 48px 0;
	width: 80%;
}

.cta-text h2 {
	color:#212121;
}

.cta-text p {
	color:#3D3D3D;
}

.cta-horizontal .cta-text p {
	width: 80%;
}

.cta-img {
	width: auto;
	height: 500px;
}

.cta-img {
	align-self: flex-end;
}


.cta-links {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	width: 80%;
	flex-wrap: wrap;
	margin-top: 48px;
}

.cta-links i {
	padding-right: 1rem;
}

.cta-links span {
	margin: 0px 48px;
}


/*********** CTA - FIM ***********/


/*********** BREADCRUMB - INÍCIO ***********/

.breadcrumb-bg {
	background-image: url('../images/breadcrumb-fundo.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	height: 600px;
	display: flex;
	align-items: flex-end;
	margin-bottom: 96px;
}

.breadcrumb-bg h1 {
	color: #f7f7f7;
}

.breadcrumb {
  font-size: 1.2rem;
  color: #f7f7f7;
}

.breadcrumb-bg .container {
	margin-bottom: 48px;
}

.breadcrumb i,
.breadcrumb [class^="mdi-"], .breadcrumb [class*="mdi-"],
.breadcrumb i.material-icons {
  display: inline-block;
  float: left;
  font-size: 24px;
}

.breadcrumb:before {
  content: '\E5CC';
  color: rgb(255, 255, 255);
  vertical-align: top;
  display: inline-block;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  margin: 0 8px 0 8px;
  -webkit-font-smoothing: antialiased;
}

.breadcrumb:first-child:before {
  display: none;
}

.breadcrumb:last-child {
  color: rgb(255 255 255 / 50%);
}

.breadcrumb-bg a {
	transition: color ease .3s;
}


.breadcrumb-bg a:hover {
	color: rgb(255 255 255 / 50%);
}

.breadcrumb:last-child:hover {
  color: rgb(255 255 255 / 100%);
}

/*********** BREADCRUMB - FIM ***********/


/**************** SERVIÇOS - INÍCIO *****************/


.section-espaco .l4 .btn-large {
	margin-top: 48px;
	float: right;
}

.section-espaco .l10 img {
	width: 100%;
}

/**************** SERVIÇOS - FIM *****************/


/**************** DIFERENCIAIS - INÍCIO *****************/

.diferenciais {
	display: flex;
	flex-direction: row;
	color: #F7F7F7;
	max-height: 400px;
}

.diferenciais span {
	display: inline-block;
	width: 48px;
	height: 2px;
	background-color:#f7f7f7;
}

.seguranca {
	width: 50%;
	background: linear-gradient(rgb(237, 59, 64), rgb(212, 53, 57));
	background: -webkit-linear-gradient(rgb(237, 59, 64), rgb(212, 53, 57));
	background: -o-linear-gradient(rgb(237, 59, 64), rgb(212, 53, 57));
	height: auto;
	
}

.eficiencia {
	width: 50%;
	background: url("../images/eficiencia.jpg") no-repeat left top;
	background-size: cover;
	height: auto;
}

.info {
	margin: 48px auto;
	width: 70%;
}


/**************** DIFERENCIAIS - FIM *****************/

/**************** POLÍTICA E PRIVACIDADE - INÍCIO *****************/

.politica-e-privacidade h1, .politica-e-privacidade h2, .politica-e-privacidade h3 {
	color: #212121;
}

.politica-e-privacidade p, .politica-e-privacidade li {
	color: #3d3d3d;
}

/**************** POLÍTICA E PRIVACIDADE - FIM *****************/

/* ALTERAÇÃO RETROFIT 09/06/2022 */

.retrofit-flex-container {
  display: flex;
  flex-direction: column;
}

.retrofit-flex-container div {
  margin-bottom: 16px;
}

@media only screen and (min-width: 768px) {
  .retrofit-flex-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .retrofit-flex-container div {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .retrofit-flex-container h2 {
    margin-bottom: 8px;
  }
}

/* ALTERAÇÃO RETROFIT 09/06/2022 */

/****** MEDIA  ********/

@media only screen and (min-width: 1920px) {

h1 {
  font-size: 48px;
	}

.hero-text {
	width: 60%;
	}
	
	
}

@media only screen and (max-width: 1920px) {
	.cta-img {
		position: absolute;
		right: 0;
	}
}


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


  .hero-dots {
		top: 120%;
	}
	
	.hero-navigation {
		top: 80%;
	}
	.equipe-card {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.equipe-card-image {
		width: 100%;
	}
	.equipe-card img {
		width: 100%;
		max-height: inherit;
		margin: 0 auto;
		
	}
	
  .hero-text {
 	  transform: translate(10%, 0%);
	}

  h1 {
    font-size: 2rem;
  }
	
}

@media only screen and (max-width: 1380px) {
  .hero-image {
    min-height: 800px;
  }
}

@media only screen and (max-width: 1280px) {
  h1 {
    font-size: 1.1rem;
    line-height: 28px;
  }

  .hero-image {
    height: 700px;
  }
}

@media only screen and (max-width: 1024px) {
	
	.hero-navigation {
		top: 80%;
	}
	
	.cta-links {
		flex-direction: column;
		align-items: baseline;
	}
	
	.cta-links span {
		margin: 16px 0;
	}
	
}


@media only screen and (max-width: 992px) {
 
	.sidenav.sidenav-fixed {
    -webkit-transform: translateX(-105%);
            transform: translateX(-105%);
  }
  .sidenav.sidenav-fixed.right-aligned {
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
  }
  .sidenav > a {
    padding: 0 16px;
  }
  .sidenav .user-view {
    padding: 16px 16px 0;
  }
	.modal {
    width: 80%;
  }
	.section-espaco .m12 .btn-large {
	float: left;
	}
	
	.cta-horizontal {
		flex-direction: column;
		height: auto;
		align-items: center;
	}
	.cta-img {
		align-self: center;
		position: relative;
		right: inherit;
		height: auto;
	}	
	.cta-text {
		align-self: center;
		text-align: center;
		margin: 48px 0;
	}
	.cta-horizontal .cta-text p {
		width: 100%;
	}
	
	.cta-links {
		width: 100%;
		align-items: center;
		justify-content: center;
	}

  .hero-image {
    height: 100vh;
  }
}

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

  .container-floater {
    float: none;
    margin: 0px auto;
    width: 80%;
  }

  .flexis-regioesDeAtendimento {
    flex-direction: column;
  }

  .flex-regioesDeAtendimento-div1 {
    height: unset;
    width: 100%;
  }

  .flex-regioesDeAtendimento-div2 {
    height: unset;
    display: none;
  }

  .tabContentFlex {
    justify-content: space-between;
  }

  .flex-tabs {
    flex-direction: column;
  }


  .tab-width-flex {
    width: 100%;
  }

  .content-width-flex {
    width: 100%;
    margin: 48px 0px;
  }

  .tabcontent {
    width: 100%;
    height: unset;
  }

  .divTabContent {
    width: 45%;
  }
	.hero-dots {
		top: 100%;
	}
	.brand-logo {
		width: 80%;
	}
	.section-espaco {
	margin: 48px 0;
}
	.diferenciais {
		flex-direction: column;
		max-height: 100%;
	}
	.eficiencia {
		width: 100%;
	}
	.seguranca {
		width: 100%;
	}
	.whatsapp-btn {
		margin: 28px;
	}

}

@media only screen and (max-width: 600px) {
		
	.hero-image {
		height: auto;
	}
	
	.hero-content {
		margin: 96px 0 48px 0;
	}
	
	.hero-text {
  		width: 90%;
		top:0%;
		transform: translate(0%, 0%);
	}
		
	.nav-wrapper .btn {
		float: right;
		margin-right: 1rem;
	}
	nav.nav-extended .nav-wrapper {
    min-height: 64px;
  	}
	
	.compartilhe {
		flex-direction: column;
		padding: 16px;
	}
	.galeria-img-artigos {
		flex-direction: column;
	}
	.galeria-img-artigos img {
		margin: 28px 0;
		padding: 0;
	}
		
	.contato button {
		margin: 48px auto;
		float: none;
	}
	
	.btn-floating {
		right: 0;
		display: flex;
		flex-direction: row;
		padding: 16px;
		border-radius: 0px;
		width: 100%;
		justify-content: space-around;
		bottom: 0;
		top: auto;
	}
	.btn-floating svg {
		margin: 16px 0;
	}
	footer {
		padding-bottom: 96px;
	}
	.copyright {
		flex-direction: column;
		text-align: center;
	}
	.cta-img img {
		max-width: 300px;
	}
	.whatsapp-btn {
		margin: 16px;
	}
	.gallery-001 img {
	width: 100%;
	margin: 16px 0;
	}
	.artigos .row, .artigos-relacionados{
	margin: 48px 0;
	}
}

@media only screen and (max-width: 320px) {
	.nav-wrapper .btn {
		margin-right: 0;
	}
	
	h1, h2 {
		font-size: 1.8rem;
	}
	
	h3 {
		font-size: 1.5rem;
	}
	
	p {
		font-size: 1rem;
	}
}

.hero__content {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.hero__content-content {
  margin-top: 64px;
}

.hero__content h2 {
  color: #000;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 900;
}

.hero__content h1 {
  color: #D43539;
  font-family: "Open Sans";
  font-weight: 900;
  margin: 0;
  font-size: 48px;
  text-transform: uppercase;
}

.hero__content p {
  color: #3D3D3D;
  line-height: 2;
  margin-bottom: 24px;
}

.main-btn {
  background-color: #D43539;
  color: white;
  padding: 8px 35px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: .3s ease-in-out;
  display: inline-flex;
}

.main-btn.zap {
  background-color: #25d366 !important;
}

.main-btn:hover {
  background-color: #BB2F32;
	-webkit-box-shadow:0 2px 5px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 0px 0px #D43539, 0px 1px 3px #2121214d;
}

.hero__content-image {
  width: 100%;
}

.hero__content-image img {
  max-width: 500px;
}

@media screen and (max-width: 600px) {
  .hero__content-image img {
    max-width: 90%;
  }
}

@media screen and (max-width: 425px) {
  .hero__content h1 {
    font-size: 36px;
    line-height: 36px;
  }
}

/* FAQ INICIO */

.faq {
  background-color: #EEEEEE;
}

.faq .container{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.faq-items{
  width: 55%;
  display: flex;
  flex-direction: column;
}

.faq-items-content{
  width: 90%;
  display: flex;    
  margin-top: 32px;
  margin-bottom: 32px;
  flex-direction: column;
}

.faq-title{
  color: #000;
  font-family: 'Open Sans';
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

.faq-separator{
  background-color: #D43539;
  height: 2px;
  width: 90%;
  margin-top: 8px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}

.faq-paragraph{
  color: #000;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 18px;
  font-weight: 700;
}

.collapsible{
  margin-bottom: 32px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.collapsible__button{
  margin-top: 40px;
}

.faq-image{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
}

.faq-image img {
  width: 100%;
}

@media screen and (max-width: 600px) {
  .hero__content-image img, .faq-image img {
    max-width: 90%;
  }
}

.faq-section__button{
  color: #FFF;
  font-weight: bold;
  background-color: #D43539;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: 250px;
  text-transform: uppercase;
  transition: .3s ease-in-out;
  margin: auto;
}

.faq-section__button:hover{
  background-color: #BB2F32;
  transition: .3s ease-in-out;
}

.hero__content-image, .artigo__content-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.artigo__content-image img {
  max-width: 90%;
}

@media screen and (max-width: 1280px) {
  .hero__content {
    flex-direction: column-reverse;
    gap: 0;
  }
  .hero__content h1 {
    line-height: 48px;
  }
}


@media only screen and (max-width: 1000px) {
  
  .faq-image-background{
      display: none;
  }

  .faq-items, .faq-items-content, .faq-image{
      width: 100%;
  }

  .faq .container {
    flex-direction: column;
  }

  .faq-image img{
    max-width: 500px;
  }
  
}

.collapsible__button {
  background-color: #D43539;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  border-radius: 50px;
  outline: none;
  font-weight: bold;
  display: flex;
  flex-direction: initial;
  align-items: center;
  min-height: 46px;
}

.collapsible__button svg {
  transform: rotate(-90deg);
  position: relative;
  right: 8px;
  transition: 0.3s ease-in-out;
}

.collapsible__svg-rotate {
  transform: rotate(0deg) !important;
  transition: 0.3s ease-in-out;
}

.collapsible__button--margin {
  margin-top: 24px;
}

.collapsible__button-alignment {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.collapsible__button-alignment span {
  width: 80%;
  color: #fff;
  font-family: "Open Sans";
  font-weight: 700;
  padding: 8px 20px;
}

.collapsible__link {
  font-weight: bold;
  text-decoration: underline;
}

/* Style the collapsible content. Note: hidden by default */
.collapsible__content {
  padding: 0 14px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.collapsible__paragraph {
  font-size: 14px;
  margin-top: 16px;
  color: #000;
  font-family: "Open Sans";
  line-height: 22px;
}

@media only screen and (min-width: 1024px) {
  .collapsible__button {
    font-size: 16px;
    min-height: 42px;
  }

  .collapsible__content {
    padding: 0 16px;
  }

  .collapsible__button-alignment {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    width: 100%;
  }

  .collapsible__paragraph {
    font-size: 16px;
  }
}

.collapsible {
  display: flex;
  flex-direction: column;
}


/* FAQ FIM */