@charset "utf-8";
/* CSS Document */
/* -------------------------------------------------HEADER-------*/

h3 {
  color: red;
}
h1 {
  color: gray;
}
/*---------------------------------------HEADER----*/
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid darkblue;
}
header > img {
  margin-left: 10px;
}
#icoMenu {
  min-width: 30px;
  min-height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10%;
  transition:0.6;
}
/* -------------------------------------------------NAV-------*/
#menu {
display:none;
height:auto;
}
nav ul {
  margin: 0;
  padding: 0;
  width: 100%;
}
nav > ul > li {
  width: 100%;
  height: 50px;
  margin: 0;
  list-style: none;
  background-color: darkblue;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid blue;
}
nav > ul > li:hover {
  background-color: lightblue;
}
nav > ul > li > a {
  text-decoration: none;
  color: white;
  font-size: 30px;
  padding: 10px;
}
/* -------------------------------------------------MAIN-------*/
main {
  
  height: auto;
}
/* -------------------------------------------------NOTICIAS-------*/
main > section > .noticias {
  background-color: aliceblue;
  height: auto;
  min-height: 400px;
  max-height: 400px;
  padding-bottom: 1%;
  border-bottom: 5px solid darkblue;
  border-radius: 0px 0px 10px 10px;
  margin-bottom: 5%;
  margin-left: 1%;
  word-wrap:break-word;
}
main > section > .noticias > h2 {
  color: darkblue;
}
main > section > .noticias > p {
  margin: 0 5% 10% 5%;
  color: gray;
  text-align: justify;
}
main > section > .noticias > img {
  width: 100%;
  max-width: 100%;
  max-height: 200px;
  min-height: 200px;
}
main > section > h1 {
  color: gray;
}
/* -------------------------------------------------AVISOS-------*/

.avisos > p {
  margin: 0px 5px 0px 5px;
}
/* -------------------------------------------------FOTOS-------*/
#fotos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#fotos img {
  width: 100%;
  margin-top: 3%;
  border:1px solid lightgray;
}
/* -------------------------------------------------CONTATOS-------*/
#entrarcontato {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background-color: lightblue;
  border-radius: 10px 10px 10px;
}
#entrarcontato > img {
  width: 1000px;
}
/* -------------------------------------------------footer-------*/
footer{
	    height:auto;
	    text-align:left;
	    color:white;
	    background-color:lightgray;
	    display:flex;
	    flex-direction:row;
	    align-items:flex-start;
	    justify-content:flex-start;
	    
	    
	}
	
	footer li{
	    list-style:none;
	    color:white;
	    font-size:1px;
	}
	footer div{
	    width:45%;
	}
/*--------------------------------------------------------------------------------------------------------MEDIAS*/
@media screen and (min-width:400px) {
    footer{
			    flex-direction:column;
			}
			footer>h1{
			    font-size:20px;
			}
	 .noticias > img {
      max-height: 600px;
	  min-height: 200px;
	}
  #fotos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  #fotos > img {
    width: 30%;
    max-height: 100px;
    min-height: 100px;
  }
}
@media screen and (min-width:800px) {
  #header {
    border-bottom: 1px solid white;
  }
  #icoMenu {
    display: none;
  }
  #menu {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  nav > ul {
    width: 20%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:center;
  }
  nav > ul > li {
    float: left;
    background-color: white;
    border: 1px solid white;
  }
  nav > ul > li > a {
    color: blue;
    float: left;
  }
  .noticias {
    background-color: aliceblue;
    width: 49%;
    margin-bottom: 0;
    padding-bottom: 0;
    max-height: 400px;
  }
  .noticias > img {
    max-height: 200px;
	 min-height: 200px;
  }
  #conteinerNoticias {
	height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
	  flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
  }
  #fotos > img {
    width: 30%;
    max-height: 200px;
    min-height: 200px;
  }
}
@media screen and (min-width:1000px) {
  .noticias {
    background-color: aliceblue;
    width: 24%;
    margin-bottom: 0;
    padding-bottom: 0;
    max-height: 350px;
  }
  .noticias > img {
    max-height: 200px;
  }
  #fotos > img {
    width: 30%;
    max-height: 250px;
    min-height: 250px;
  }
 }