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

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #222;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background: #000;
  color: #fff;
  padding: 15px 0;
}

header .logo {
  height: 40px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.hero {
  background: #fdd835;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.servicos {
  padding: 40px 20px;
  background: #f7f7f7;
}

.servicos h2,
.localizacao h2,
.sobre-empresa h2,
.missao-visao-valores h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.servicos ul {
  list-style: disc;
  padding-left: 20px;
}

.sobre-empresa {
  padding: 40px 20px;
  background: #fffbea;
  border-top: 2px solid #fdd835;
}

.sobre-empresa p {
  font-size: 1rem;
  line-height: 1.6;
}

.missao-visao-valores {
  padding: 40px 20px;
  background: #fffbea;
  border-top: 2px solid #fdd835;
}

.missao-visao-valores h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #000;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mvv-item p {
  font-size: 1rem;
  line-height: 1.6;
}

.mvv-item ul {
  list-style: disc;
  padding-left: 20px;
}

.localizacao {
  padding: 40px 20px;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Responsivo */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  header .container {
    flex-direction: column;
    gap: 10px;
  }

  .whatsapp-btn {
    width: 100%;
    text-align: center;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }
}

.precos {
  padding: 40px 20px;
  background: #fffbea;
}

.lista-valores {
  list-style: none;
  padding-left: 0;
}

.lista-valores li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 1rem;
}

.parcerias {
  margin-top: 30px;
  background: #fdd835;
  padding: 20px;
  border-radius: 8px;
  color: #222;
}

.parcerias h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* Animação fade-up */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estado inicial: invisível */
.missao-visao-valores {
  padding: 40px 20px;
  background: #fffbea;
  border-top: 2px solid #fdd835;
  opacity: 0;
  transform: translateY(40px);
}

/* Quando visível: dispara a animação */
.missao-visao-valores.visible {
  animation: fadeUp 1s ease forwards;
}

.missao-visao-valores h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #000;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mvv-item p {
  font-size: 1rem;
  line-height: 1.6;
}

.mvv-item ul {
  list-style: disc;
  padding-left: 20px;
}

/* Responsivo */
@media (max-width: 600px) {
  .mvv-grid {
    grid-template-columns: 1fr;
  }
}