/* Blog: estilos compartilhados pelos posts */

.blog-wrap {
  max-width: 850px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  position: relative;
  z-index: 2;
}

.blog-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb347;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
}

.blog-hero p.lede {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

.blog-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

.blog-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.blog-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
}

.blog-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 1.8rem 0 0.7rem;
}

.blog-content p {
  margin-bottom: 1rem;
}

.blog-content ul,
.blog-content ol {
  margin: 0.5rem 0 1.5rem 1.5rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.blog-content strong {
  color: #ffb347;
}

.blog-content a {
  color: #ffb347;
  text-decoration: underline;
  text-decoration-color: rgba(255, 179, 71, 0.4);
  transition: text-decoration-color 0.15s;
}

.blog-content a:hover {
  text-decoration-color: #ffb347;
}

.blog-callout {
  background: rgba(255, 138, 61, 0.06);
  border-left: 3px solid #ffb347;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin: 1.8rem 0;
}

.blog-callout p:last-child {
  margin-bottom: 0;
}

.blog-cta {
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.12), rgba(255, 94, 58, 0.06));
  border: 1px solid rgba(255, 179, 71, 0.2);
  border-radius: 18px;
  padding: 2rem;
  margin: 3rem 0 2rem;
  text-align: center;
}

.blog-cta h3 {
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
}

.blog-cta a.btn {
  display: inline-block;
  margin-top: 1rem;
  background: linear-gradient(135deg, #ff8a3d, #ff5e3a);
  color: #0a0e1f;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s;
}

.blog-cta a.btn:hover {
  transform: translateY(-2px);
}

.blog-related {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-related h3 {
  margin-bottom: 1.2rem;
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.blog-related-grid a {
  display: block;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.blog-related-grid a:hover {
  border-color: #ffb347;
  background: rgba(255, 138, 61, 0.06);
}

.blog-related-grid a small {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.3rem;
  text-decoration: none;
}

/* Blog index list */
.blog-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.blog-list-item {
  display: block;
  padding: 1.5rem 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.blog-list-item:hover {
  border-color: #ffb347;
  transform: translateY(-2px);
}

.blog-list-item h2 {
  color: #fff;
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}

.blog-list-item p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.blog-list-item__meta {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: #ffb347;
  letter-spacing: 0.05em;
}
