* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  padding: 20px;
  color: #333;
}

/* Fundo azul claro */
.azul-claro {
  background-color: #b7daf7;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

header h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1em;
}

/* Descrição */
.descricao {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.descricao-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #add8e6;
  padding: 20px;
  border-radius: 10px;
  flex-wrap: wrap; /* Para ajustar em telas pequenas */
}

.descricao-texto {
  flex: 1;
  min-width: 250px;
}

.imagem-mate {
  width: 210px;
  height: auto;
  margin-left: 30px;
}


.descricao h2 {
  margin-bottom: 10px;
}

/* Destaque com fundo azul escuro */
.destaque {
  background-color: #006bb3;
  color: white;
  padding: 15px;
  margin: 20px 0;
  border-radius: 10px;
  text-align: center;
  font-size: 1.1em;
}

/* Botão do WhatsApp */
.botao-wpp {
  text-align: center;
  margin-bottom: 30px;
}

.botao-wpp a {
  background-color: #25D366;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.botao-wpp a:hover {
  background-color: #1da851;
}

/* Seção de serviços */
.servicos-container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-top: 20px;
}

.servico-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 30%;
}

.servico-card h3 {
  font-size: 1.2em;
  color: #333;
}
.servico-card img {
  width: 100%;
  max-width: 80px;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
  object-fit: contain;
}

section {
  margin-bottom: 20px;
}

section h2 {
  margin-bottom: 15px;
}

/* Lista */
ul {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.6;
}

/* Links */
a {
  color: #006bb3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Rodapé */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #777;
  margin-top: 40px;
}
