body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: linear-gradient(135deg, #1656a0 0%, #16b6a0 100%);
  color: #fff;
}

.container {
  max-width: 100vw;
  padding: 18px 8vw 0 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* LOGO E NOME LADO A LADO */
.logo-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; /* CENTRALIZADO */
  margin-bottom: 18px;
  gap: 16px;
}
.logo-img {
  width: 100px;
  height: 100px;
  display: block;
}
.logo-title {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: -1px;
  text-align: center; /* CENTRALIZADO */
  color: #fff;
}

/* TÍTULO E SUBTÍTULO - CENTRALIZADOS */
.main-title {
  font-size: 1.45rem;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.22;
  text-align: center; /* CENTRALIZADO */
  width: 100%;
}
.subtitle {
  font-size: 1.08rem;
  margin-bottom: 26px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center; /* CENTRALIZADO */
  width: 100%;
}

/* BOTÃO WHATSAPP */
.whatsapp-btn {
  background: #19c37d;
  color: #fff;
  font-weight: bold;
  border-radius: 16px;
  padding: 18px 0;
  text-decoration: none;
  font-size: 1.16rem;
  text-align: center;
  width: 100%;
  margin-bottom: 36px;
  box-shadow: 0 2px 12px rgba(15,175,123,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  display: block;
  border: none;
  cursor: pointer;
}
.whatsapp-btn:hover {
  background: #13a05d;
  box-shadow: 0 6px 26px rgba(15,175,123,0.13);
  transform: scale(1.03);
}

/* CARDS */
.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-bottom: 32px;
  margin-top: 10px;
}

.service-card {
  background: rgba(255,255,255,0.07);
  border-radius: 18px;
  border: 2px solid #25d366;
  padding: 16px 8px 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  min-height: 90px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  cursor: pointer;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, border-color 0.18s;
}
.service-card:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  background: rgba(255,255,255,0.13);
  border-color: #19c37d;
}

/* ÍCONES PNG MAIORES */
.icon-img {
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
  object-fit: contain;
}

.service-title {
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 0;
  color: #fff;
}

/* Texto explicativo dentro do card - ESCONDIDO por padrão */
.service-desc {
  margin-top: 10px;
  font-size: 1rem;
  color: #d3fbe3;
  background: rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 8px 6px;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  opacity: 0;
  max-height: 0;
  transition: opacity 0.3s, max-height 0.3s;
  overflow: hidden;
  pointer-events: none;
}

/* Quando card está ativo, mostra o texto */
.service-card.active .service-desc {
  opacity: 1;
  max-height: 200px;
  pointer-events: auto;
  transition: opacity 0.3s, max-height 0.3s;
}

/* FRASE FINAL */
.cta {
  font-size: 1.22rem;
  font-weight: bold;
  text-align: center; /* CENTRALIZADO */
  color: #fff;
  margin-top: 30px;
  margin-bottom: 36px;
  line-height: 1.25;
  width: 100%;
}
.cta-interrogacao {
  color: #fff;
  font-weight: 700;
}

/* RODAPÉ */
.footer {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 0.95rem;
  padding: 18px 0 8px 0;
  opacity: 0.85;
  letter-spacing: 0.5px;
  background: none;
  border: none;
}
