/* Reset básico */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Topo */
.topo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  height: 100px;
  background-color: black;
  color: white;
}

.logo {
  height: 80px;
}

.nome-empresa {
  font-size: 1.8em;
  margin: 0;
}

/* Menu */
.menu a {
  color: white; 
/*  color: linear-gradient(to right, silver, gold); */
  text-decoration: linear-gradient(to right, silver, gold);
  margin-left: 25px;
  font-weight: bold;
  font-size: 1.1em;
}

.menu a:hover {
  color: silver;
}

/* Home */
.home-body {
  background-color: black;
  color: white;
  padding: 40px 0;
}

.home-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.home-coluna {
  width: 30%;
}

.home-imagem {
  width: 100%;
/*  border-radius: 6px;
  margin-bottom: 10px; */
  border-radius: 8px;
  margin-top: 10px;
}

/* Contato */
form input {
  font-size: 1em;
  background-color: #333;
  color: white;
}

form input::placeholder {
  color: #aaa;
}

.contato-whatsapp a:hover {
  text-decoration: underline;
  color: #1ed760;
}
