* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

header {
  background-color: #1e90ff;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

nav ul {
  list-style: none;
  display: flex;
}

nav li {
  margin-right: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

nav a:hover {
  color: #87cefa;
}

button {
  background-color: white;
  border: none;
  color: #1e90ff;
  font-size: 18px;
  cursor: pointer;
}

button:hover {
  color: #87cefa;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.servicos {
  display: flex;
  flex-wrap: wrap;
}

.servico {
  flex-basis: 96%;
  margin: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.servico img {
  width: 30%;
  float: left;
  margin-right: 10px;
}

.servico h2 {
  font-size: 24px;
  margin: 10px;
}

.servico p {
  margin: 10px;
}

.trabalhos-anteriores {
  display: flex;
  flex-wrap: wrap;
}

.trabalho-anterior {
  flex-basis: 30%;
  margin: 10px;
}

.trabalho-anterior img {
  width: 100%;
}

#map {
  height: 400px;
  margin-bottom: 20px;
}

footer {
  background-color: #1e90ff;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

footer ul {
  list-style: none;
  display: flex;
}

footer li {
  margin-right: 20px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  color: #87cefa;
}

.servico button {
  background-color: white;
  border: none;
  color: black;
  font-size: 1.5rem;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out,
  box-shadow 0.3s ease-in-out;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.servico button:hover {
  background-color: #1e90ff;
  color: white;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
}

.servico button a {
   color: black;
   text-decoration: none;
   font-size: 1.5rem;
}

.servico button a:hover {
   color: white;
   text-decoration: none;
}