*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif
}

.container{
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

header{
   background-color:white;
    width: 100%;
    padding: 5px;
}

.logo,.sociais{
width:25%;
}

.logo img{
    width: 120px;
    cursor: pointer;
}

.menu{
    width:50%;   
}

.menu nav a{
    color: green;
    text-decoration: none;
    padding-right: 50px;
    font-size: 18px;
    position: relative;
}

.menu nav a::after{
    color: "";
    width: 30px;
    height: 4px;
    background-image:linear-gradient(45deg,black);
    position: absolute;
    top: 30px;
    left: 0;
}

.sociais button{
    width: 40px;
    height: 40px;
    background-image: linear-gradient(45deg,green);
    border: none;
    border-radius: 8px;
    cursor:pointer;
    margin-right: 10px;
}

.sociais button i{
    font-size: 20px;
}

.contato img{
 width: 40%;
 display: inline-block;
 float: left;
 text-align: left;
 position: relative;
 top: 100px;
 left: 30px;
}

.logoinicio img{
    width: 100%;
    height: 100%;
}

p,h1{
    color:black;
}

body{
	background-image: url("3262016.jpg");
}

.fotohomem{
	max-width: 50%;
	max-height: 50%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 30px;
}

footer{
	text-align: center;
	background-color: white;
    position: relative;
    top: 300px;
	padding-bottom: 10px;
	padding-top: 10px;
}

.textoinicio{
    position: absolute;
    top: 800px;
    margin: 15px;
    text-align: center;
    font-size: larger;
}

h2, h1{
    text-align: center;
    padding: 20px;
}

p{
    margin-right: 15px;
    margin-left: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.textocontato{
    text-align: center;
    position: relative;
    top: 110px;
}

.homempaginainicial{
    display: flex;
    justify-content: center;
    position: relative;
    top: 100px;
}

.atuacao, figcaption{
    text-align: center;
}

.galeria{
    margin: 400px auto;
    margin-bottom: 0px;
    width: 494px;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.foto{
   width: 494px;
   height: 350px;
}

.foto{
   position: absolute;
   opacity: 0;
   animation-name: animacao;
   animation-duration: 20s;
   animation-iteration-count: infinite;
}

@keyframes animacao{
   25%{
       opacity: 1;
       transform:scale(1.1,1.1);
   }
   50%{
       opacity: 0;
   }
}

.foto:nth-child(1){

}
.foto:nth-child(2){
   animation-delay: 5s;
}
.foto:nth-child(3){
   animation-delay: 10s;
}
.foto:nth-child(4){
   animation-delay: 15s;
}
.foto:nth-child(5){
   animation-delay: 20s;
}
.foto:nth-child(6){
   animation-delay: 25s;
}

.objetivo, .valores{
	text-align: center;
}

.fotoproduto{
    height: 300px;
    width: 300px;
    position: relative;
    top: 5px;
    margin: 10px;
}


.alinhado{
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: center;  
}