body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1f1f1f;
  line-height: 1.7;
}

.blog-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-hero {
  margin-bottom: 40px;
}

.blog-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #b38b59;
  letter-spacing: 1px;
}

.blog-hero h1 {
  font-size: 25px;
  margin: 10px 0;
}

.blog-subtitle {
  font-size: 1.2rem;
  color: #555;
}


.blog-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Caixa */
.topic-card {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 28px 26px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.topic-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* Título da caixa */
.topic-card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1f1f1f;
}

/* Texto */
.topic-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}


/* FAQ */
.faq-section {
  margin-top: 80px;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

details {
  border: 1px solid #e5e5e5;
  padding: 18px 20px;
  border-radius: 8px;
  margin-bottom: 12px;
}

summary {
  font-weight: 600;
  cursor: pointer;
}

/* CTA */
.blog-cta {
  margin-top: 80px;
  padding: 50px;
  background: #f9f9f9;
  border-radius: 12px;
  text-align: center;
}

.blog-cta h3 {
  font-size: 1.6rem;
}

.blog-cta p {
  margin: 15px 0 25px;
  color: #555;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-align: center;

  padding: 14px 28px;
  border-radius: 8px;

  max-width: 100%;
  width: fit-content;

  white-space: normal;
  line-height: 1.3;

  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}
@media (max-width: 480px) {
  .cta-button {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
  }
}

