@charset "utf-8";
/* CSS Document */
:root {
  --main-radius: 5px;
  --main-padding: 0px;
}
body{
	background:#fff;

	/*background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);*/
	
/*	background-color:#EFEFEF;
	background-color:#000;*/
	/*background-image:url(/www/Imagens/DEP%20BGp.png);*/
}


body, h1, h2, h3, h4, h5, h6{
/*  font-family: "Inter", sans-serif;*/
  font-family:Verdana, Geneva, sans-serif;
/*  FONT-SIZE: 12px;*/
  FONT-SIZE: 15px;
/*  line-height: 14.4px;*/
  line-height: 1.5;
}
img{
	border-radius: var(--main-radius);
}

H1 {
	MARGIN-TOP: 0px; FONT-SIZE: 210%; FONT-WEIGHT: normal
}
H2 {
	MARGIN-TOP: 10px; MARGIN-BOTTOM: 10px; FONT-SIZE: 180%; FONT-WEIGHT: normal
}
H3 {
	FONT-SIZE: 120%; FONT-WEIGHT: normal
}
H4 {
	FONT-SIZE: 100%
}
H5 {
	FONT-SIZE: 90%
}
H6 {
	FONT-SIZE: 80%
}
H2.left {
	PADDING-BOTTOM: 0px; BACKGROUND-COLOR: #ffffff; MARGIN-TOP: 0px; MARGIN-BOTTOM: 4px; COLOR: #404040; FONT-SIZE: 120%; FONT-WEIGHT: bold; PADDING-TOP: 0px
}

.gradient {
  font-size: 1em;
  font-weight: bold;
  /*text-align: center;*/
  text-transform: uppercase;
  /* fundo gradiente */
  background-image: linear-gradient(130deg,#ff7a18,#af002d 41.07%,#319197 76.05%);
  /* agora colocamos o fundo gradiente dentro do texto com essa propriedade */
  background-clip: text;
  -webkit-background-clip: text;
  /* a cor do texto deve estar como transparent */
  color: transparent;
}

/*Slideshow*/

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  height:auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
#prev, #next {
  cursor: pointer;
  position: absolute;
  /*top: 20%;*/
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  padding-top:30px;
  padding-bottom:30px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  text-shadow: 0px 0px 4px #000000;

}

/* Position the "next button" to the right */
#next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
#prev:hover, #next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
/*fim slideshow*/


.container {
  display:-ms-grid;
  display: grid;
  height: 100vh;
 
/*  width:880px;*/
  width:80vw;
  margin:auto;
  -ms-grid-columns:1.5fr 1fr 1fr 1fr;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
/*  grid-template-rows: 0.2fr 0.5fr 0.5fr 1fr 1fr 0.8fr;*/
  grid-template-rows: 0.2fr auto auto auto auto auto 0.8fr;
  grid-template-areas:
    "nav nav nav nav"
	"banner banner banner banner"
    "boxE content1 content2 content3"
    "boxE main main main"
	"boxE cias cias cias"
	"blog cias cias cias"
    "footer footer footer footer";
	
  grid-gap: 0.2rem;
  /*font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  color: #004d40;
  text-align: center;*/
  	


}

nav {
  -ms-grid-row:1; 
  -ms-grid-column:1; 
  -ms-grid-column-span:4;
  background: #FFF;
  grid-area: nav;
  border-radius: var(--main-radius);
  padding-top: var(--main-padding);
}

main {
  -ms-grid-row:4; 
  -ms-grid-column:2; 
  -ms-grid-column-span:3;

  background: #FFF;
  grid-area: main;
  border-radius: var(--main-radius);
  padding-top: var(--main-padding);
}

main img{
  border-radius: var(--main-radius);
}

#sidebar {
  -ms-grid-row:1; 
  -ms-grid-column:1; 
  -ms-grid-column-span:3;

  background: #FFF;
  grid-area: sidebar;
  border-radius: var(--main-radius);
  padding-top: var(--main-padding);
}

/*#sidebar {
  background: #FFF;
  grid-area: sidebar;
  border-radius: var(--main-radius);
  padding-top: var(--main-padding);
}*/


#boxE {
  -ms-grid-row:3;
  -ms-grid-row-span:2; 
  -ms-grid-column:1; 
  -ms-grid-column-span:1;

/*  background: #18ffff;*/
  background:#FFF;
  grid-area: boxE;
  border-radius: var(--main-radius);
  padding-top: var(--main-padding);
}

#banner {
  -ms-grid-row:2; 
  -ms-grid-column:1; 
  -ms-grid-column-span:4;
  
  display:block;
  background:#FFF;
  grid-area: banner;
  border-radius: var(--main-radius);
  padding-top: var(--main-padding);
}
/*#banner > img {
}
*/
.autoimg {
    width: 100%;
	height:auto;
}


#cias {
  -ms-grid-row:5; 
  -ms-grid-column:2; 
  -ms-grid-column-span:3;

 /* background: #6fffd2;*/
  background:#FFF;
  grid-area: cias;
  height:100%;
  color:#000;
  border-radius: var(--main-radius);
  padding-top: var(--main-padding);
}

#blog {
  -ms-grid-row:5; 
  -ms-grid-column:1; 
  -ms-grid-column-span:1;

 /* background:#FF8000;*/
  background:#FFF;
  grid-area: blog;
  border-radius: var(--main-radius);
  padding-top: var(--main-padding);
}
#blog img{
	border-radius:0px !important;
	padding:10%;
	padding-bottom: 3%;
}

#content1 {
  -ms-grid-row:3; 
  -ms-grid-column:2; 
  -ms-grid-column-span:1;

  background: #FFF;
  grid-area: content1;
  border-radius: var(--main-radius);
  padding-top: var(--main-padding);
}

#content2 {
  -ms-grid-row:3; 
  -ms-grid-column:3; 
  -ms-grid-column-span:1;

  background: #FFF;
  grid-area: content2;
  border-radius: var(--main-radius);
  padding-top: var(--main-padding);
}

#content2 img {
/*	border-radius: var(--main-radius);
*/}

#content3 {
  -ms-grid-row:3; 
  -ms-grid-column:4; 
  -ms-grid-column-span:1;

  background: #FFF;
  grid-area: content3;
  border-radius: var(--main-radius);
  padding-top: var(--main-padding);
}

footer {
  -ms-grid-row:6; 
  -ms-grid-column:1; 
  -ms-grid-column-span:4;

  background: #FFF;
  grid-area: footer;
  border-radius: var(--main-radius);
  padding-top: var(--main-padding);
}

/*a {
  text-align: center;
  display: block;
  font-family: inherit;
  text-decoration: none;
  font-weight: bold;
  margin: 0rem;
}*/

#boxCaixinhas{
	display:flex;
	flex-wrap: wrap;
}

#boxCias{
	content:"";
	clear:both;
	display:flex;
	width:auto;
	flex-wrap:wrap;
	margin:auto;
}

.boxCia{
	display: -ms-flexbox;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	display:flex;
	height: 130px;
	width: 160px;
	margin:auto;
	margin-top:10px;
	text-align:center;
	justify-content: center;
}

.boxCia > a{
	padding:0;
	margin-top:auto;
	margin-bottom:auto;
}


/* MENU*/
#menu{
	content:"";
	clear:both;
	/*text-align:left;*/
    BACKGROUND-COLOR: #ffffff;
    MARGIN-TOP: 0px;
	MARGIN-LEFT: 1px;
	MARGIN-RIGHT: 1px;
	PADDING-TOP: 0px;
	font-family:Verdana, Geneva, sans-serif;
	color:#000;
}

#menu H2 {
	FONT-SIZE: 18px; FONT-WEIGHT: normal;
	margin-bottom:0px;
}
#menu A{
	font-size:16px;
}
#menu A:link {

}
#menu A:link {
	BORDER-BOTTOM: #e5e5e5 1px solid; BORDER-LEFT: #e5e5e5 1px solid; PADDING-BOTTOM: 2px; BACKGROUND-COLOR: #f6f4f0; MARGIN-TOP: 1px; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; DISPLAY: block; COLOR: #000000; BORDER-TOP: #e5e5e5 1px solid; BORDER-RIGHT: #e5e5e5 1px solid; TEXT-DECORATION: none; PADDING-TOP: 2px; border-radius: 2px
}
#menu A:visited {
	BORDER-BOTTOM: #e5e5e5 1px solid; BORDER-LEFT: #e5e5e5 1px solid; PADDING-BOTTOM: 2px; BACKGROUND-COLOR: #f6f4f0; MARGIN-TOP: 1px; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; DISPLAY: block; COLOR: #000000; BORDER-TOP: #e5e5e5 1px solid; BORDER-RIGHT: #e5e5e5 1px solid; TEXT-DECORATION: none; PADDING-TOP: 2px; border-radius: 2px
}
#menu A:hover {
	BORDER-BOTTOM: #e5e5e5 1px solid; BORDER-LEFT: #e5e5e5 1px solid; PADDING-BOTTOM: 2px; BACKGROUND-COLOR: #f6f4f0; MARGIN-TOP: 1px; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; DISPLAY: block; COLOR: #000000; BORDER-TOP: #e5e5e5 1px solid; BORDER-RIGHT: #e5e5e5 1px solid; TEXT-DECORATION: none; PADDING-TOP: 2px; border-radius: 2px
}
#menu A:active {
	BORDER-BOTTOM: #e5e5e5 1px solid; BORDER-LEFT: #e5e5e5 1px solid; PADDING-BOTTOM: 2px; BACKGROUND-COLOR: #f6f4f0; MARGIN-TOP: 1px; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; DISPLAY: block; COLOR: #000000; BORDER-TOP: #e5e5e5 1px solid; BORDER-RIGHT: #e5e5e5 1px solid; TEXT-DECORATION: none; PADDING-TOP: 2px; border-radius: 2px
}
#menu A:hover {
	BACKGROUND-COLOR: #ffffff
}
#menu A:active {
	BACKGROUND-COLOR: #ffffff
}
SPAN.left_h2 {
	COLOR: #8ac007;
}
.style34 {font-size: 16px; font-weight: bold; COLOR: #404040; 
/*FONT-SIZE: 110%;*/
}

.style26{font-size: 14px}
.style28{font-size: 16px}

#btn-mobile{

	visibility:hidden;
}

@media only screen and (max-width: 550px) {
	.container {
	width:100%;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto auto auto auto auto;
/*	grid-template-rows: 0.4fr 0.4fr 2.2fr 1.2fr 1.2fr 1.2fr 1fr 1fr 1fr 1fr;*/
    grid-template-areas:
      "nav nav nav"
	  "banner banner banner"
      "boxE boxE boxE"
      "content1 content2 content3"
      "main main main"
	  "cias cias cias"
	  "blog blog blog"
      "footer footer footer";
	  
/*	        "nav"
	  "banner"
      "sidebar"
      "main"
      "content1"
      "content2"
      "content3"
	  "cias"
	  "blog"
      "footer";
*/
  }
#banner{
}
  
  
  #menu {
	display: block;
    /*position: absolute;*/
    width: 100%;
    top: 70px;
    right: 0px;
/*    background: #e7e7e7;
*/	background:#FFF;
    transition: 0.6s;
    z-index: 1000;
    height: 0px;
    visibility: hidden;
    overflow-y: hidden;
	font-size: 16px;
  }
  #boxE.active #menu {
    height: calc(100vh - 170px);
    visibility: visible;
    overflow-y: auto;
  }
  #menu a {
	font-size: 16px;
    padding: 1rem 0;
    margin: 0 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  }
  #menu a:link{
	font-size: 16px;
  }
  #btn-mobile {
    visibility:visible;
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
  }
  #hamburger {
    border-top: 2px solid;
    width: 20px;
  }
  #hamburger::after,
  #hamburger::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }
  #boxE.active #hamburger {
    border-top-color: transparent;
  }
  #boxE.active #hamburger::before {
    transform: rotate(135deg);
  }
  #boxE.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }

}

