@charset "utf-8";
/* CSS Document */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #333333;
}

header {
    background-color: #ffffff;
    color: #333333;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #eaeaea;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 80px;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #134078;
    text-decoration: none;
}

nav ul li a:hover {
    font-weight: bold;
}

main {
    padding-top: 80px; /* Espaço para o header fixo */
}

section {
    padding: 20px;
}

#sobre, #produtos {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

#contato {
    background-color: #134078;
    border-bottom: 1px solid #EAEAEA;
    display: flex;
    gap: 10px;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
	flex-direction: column
}

#sobre h2, #produtos h2 {
    color: #134078;
	text-align: center;

}

#produtos h3 {
	color: #134078;
}

#contato h2 {
	color: #EAEAEA;
	
}

#sobre p, #produtos p {
    color: #134078;
	
}

#sobre p {
	text-align: justify;

}

#sobre a {
	color: #134078;
	
}
#sobre a:hover {
	font-weight: bold;
	color: #134078;
	
}

#contato p {
	color: #EAEAEA;
	margin: 0;
}

#contato a {
    color: #e6e9ed;
    text-decoration: none;
}

#contato a:hover {
    font-weight: bold;
	text-decoration: inherit;
}

.gallery {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.image {
  margin: 30px;
  width: calc(33.33% - 20px);
  overflow: hidden;
}

.image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}

.image:hover img {
  transform: scale(1.1);
}
