.pagina-servico {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.container-pagina {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.texto-servico {
  flex: 1 1 500px;
  padding-right: 30px;
}

.texto-servico h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.texto-servico p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.imagem-servico {
  flex: 1 1 500px;
  text-align: center;
}

.imagem-servico img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.beneficios-servico {
  background: #fff;
  padding: 60px 20px;
}

.container-beneficios {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.container-beneficios h3 {
  font-size: 28px;
  margin-bottom: 30px;
}

.container-beneficios ul {
  list-style: none;
  padding: 0;
}

.container-beneficios ul li {
  background: #ffe600;
  margin-bottom: 15px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.6s ease;
}

.container-beneficios ul li.aos-animate {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 0 20px rgba(255, 230, 0, 0.5);
}

.chamada-contato {
  background: linear-gradient(to right, #000, #333);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.container-chamada h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.container-chamada p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn-hero {
  background-color: #ffe600;
  padding: 12px 28px;
  border-radius: 25px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-hero:hover {
  background-color: #ffdb00;
}