* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f6f8;
  color: #333;
}

.topo {
  background: #061c3a;
  color: #fff;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: bold;
}
.logo span {
  color: #1ec9ff;
}

.hero {
  background: linear-gradient(135deg, #0b3c7a, #031d3c);
  color: white;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-texto h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.btn {
  background: #1ec9ff;
  color: #000;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.servicos {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  background: #fff;
}

.card {
  background: #f0f3f7;
  padding: 25px;
  width: 200px;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
}

.chamada {
  background: #0b3c7a;
  color: white;
  text-align: center;
  padding: 50px;
}

.chamada ul {
  list-style: none;
  margin: 20px 0;
}

.rodape {
  background: #061c3a;
  color: #fff;
  text-align: center;
  padding: 15px;
}

.hero-img img {
  width: 420px;
  max-width: 100%;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
}

.card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}

.card {
  background: #f0f3f7;
  padding: 20px;
  width: 220px;
  text-align: center;
  border-radius: 12px;
  font-weight: bold;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.servicos-oferecidos {
  background: #f9fafc;
  padding: 60px 20px;
}

.servicos-oferecidos h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #0b3c7a;
  font-size: 28px;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.servico-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.servico-box:hover {
  transform: translateY(-8px);
}

.servico-box h3 {
  margin-bottom: 15px;
  color: #061c3a;
}

.servico-box ul {
  list-style: none;
  padding-left: 0;
}

.servico-box ul li {
  margin-bottom: 8px;
}

.preco {
  margin-top: 15px;
  font-weight: bold;
  color: #0b3c7a;
}
