/* Importa a fonte Montserrat */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.6;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Cabeçalho compacto */
header {
  background-color: #004080;
  color: #fff;
  padding: 0.5rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Layout interno do cabeçalho */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Logotipo */
.logo {
  height: 100px;
  width: auto;
}

/* Menu de navegação */
header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

header nav a:hover {
  text-decoration: underline;
}

/* Seção Hero */
.hero {
  background: url('banner.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  background-color: #0074D9;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero .btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.hero .btn:hover {
  background-color: #e6b800;
}

/* Seções gerais */
.section {
  padding: 3rem 0;
}

.section.alt {
  background-color: #f0f0f0;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Lista de serviços */
.servicos-lista {
  list-style: none;
  padding: 0;
}

.servicos-lista li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

/* Galeria de projetos */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.projeto img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.projeto p {
  margin-top: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
}

/* Rodapé */
footer {
  text-align: center;
  color: #444;
}

/* Responsivo */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    height: 60px;
  }

  header nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }
}
.redes-sociais {
  margin: 2rem 0 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.redes-sociais img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.redes-sociais img:hover {
  transform: scale(1.2);
}

