
* {
  margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif;
}
body {
  color: #333; line-height: 1.6; background-color: #f9f9f9;
}
header {
  background: #002b55; color: #fff; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
header nav a {
  color: #fff; margin-left: 20px; text-decoration: none; font-weight: 500; transition: 0.3s;
}
header nav a:hover {
  color: #00bfff;
}
.hero {
  background: linear-gradient(to right, #004080, #0066cc); padding: 100px 40px; text-align: center; color: white;
}
.hero h1 {
  font-size: 2.8rem; margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem; margin-bottom: 30px;
}
.cta-button {
  background: #00bfff; color: #fff; padding: 15px 30px; border: none; font-size: 1rem; border-radius: 5px; cursor: pointer; transition: 0.3s;
}
.cta-button:hover {
  background: #0099cc;
}
section {
  padding: 80px 40px;
}
.sobre, .servicos, .contato, .cliente {
  max-width: 1100px; margin: auto;
}
.servico-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px;
}
.servico-box {
  border: 1px solid #ddd; padding: 20px; border-radius: 12px; background: #fff; box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.servico-box h3 {
  color: #003366;
}
.cliente p {
	margin-bottom: 5px;
	padding: 6px 10px;
  
}
form input, form textarea {
  width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 8px;
}
form button {
  width: 100%;
}
footer {
  background: #002b55; color: #fff; text-align: center; padding: 20px;
}


.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-container img {
  border-radius: 100%;
  height: 80px;
  width: 160px;
}
.cliente-logo-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.cliente-logo-imagem {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
