body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
}

.background-overlay {
  background-image: url('fundo.png'); /* Substituir por imagem da empresa */
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100vw;
  position: relative;
}

.background-overlay::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.content-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  max-width: 900px;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  color: #333;
  z-index: 1;
  text-align: center;
}

h1 {
  color: #eca700;
  font-size: 2em;
  margin-bottom: 10px;
}

h2 {
  margin-top: 30px;
  color: #eca700;
  font-size: 1.4em;
}

.services {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.services li {
  font-size: 1em;
  margin: 10px 0;
}

.services i {
  color: #eca700;
  margin-right: 8px;
}

a {
  color: #eca700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


.logo {
  width: 150px;
  margin-bottom: 20px;
}
