
  /* orçamento */
 * {
    box-sizing: border-box;
  }

  body {
    background-image: url("https://www.transparenttextures.com/patterns/brick-wall.png");
    margin: 0;
    font-family: 'Inter', sans-serif;
     background-color: #aaaaaa;
     color: #333;
  }

  header {
    background-color: #031388;
    color: #e4e59a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
  }

   header div {
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

header img {
    height: 40px;
    width: auto;
  }

menu li {
  
  font-size: 1rem;
  display: inline-block;
  margin: 5px;
}
menu a {
  color: #e4e59a;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

menu a::before,
menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #A6A6A6;
  transition: all 0.5s;
}

menu a::before {
  top: 0;
  left: 0;
}

menu a::after {
  bottom: 0;
  right: 0;
}

menu a:hover::before {
  width: 100%;
  transition: width 0.25s ease-in-out;
}

menu a:hover::after {
  width: 100%;
  transition: width 0.25s ease-in-out 0.25s;
}


  h1 {
    text-align: center;
    color: #031388;
    margin-top: 2rem;
    font-size: 2.5rem;
  }

  p {
    text-align: center;
    max-width: 800px;
    margin: 1rem auto;
    font-size: 1.1rem;
  }
  
  .orcamento {
  max-width: 600px;
  margin: 3rem auto;
  background-color: #e4e59a;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.orcamento h2 {
  color: #031388;
  text-align: center;
  margin-bottom: 1rem;
}

.orcamento form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.orcamento label {
  font-weight: bold;
  color: #031388;
}

.orcamento input,
.orcamento textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.orcamento button {
  background-color: #031388;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.orcamento button:hover {
  background-color: #031388;
}

.whatsapp{
  display:block;
  width: 70px;
  height: 100px;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 30px;
  text-align: center;
  line-height: 60px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

 footer {
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .services {
      flex-direction: column;
      align-items: center;
    }
  }
