﻿@charset "utf-8";
.postBfaq {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* CabeÃ§alho do item do Accordion */
.postBfaq .accordion-header .accordion-button {
  font-size: 1rem;
  color: #2c3e50;
  background-color: #f8f9fa;
  border-bottom: 1px solid #ddd;
  padding: 1rem 1.5rem;
  position: relative;
  transition: background-color 0.3s ease;
}

/* Ãcone opcional usando Font Awesome ou Bootstrap Icons */
.postBfaq .accordion-button::after {
  content: "\f107"; /* FontAwesome - seta para baixo */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

/* Quando aberto */
.postBfaq .accordion-button:not(.collapsed)::after {
  content: "\f106"; /* seta para cima */
  transform: translateY(-50%) rotate(180deg);
}

/* Corpo da resposta */
.postBfaq .accordion-body {
  font-size: 0.95rem;
  color: #555;
  background-color: #fff;
  padding: 1rem 1.5rem;
}

/* AnimaÃ§Ã£o suave */
.postBfaq .collapse {
  transition: height 0.3s ease;
}

body.blog-post {
  background: #f4f6f8;
}

.blog-post__hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--site-header-height, 72px) + 2.5rem) 0 2.5rem;
  background: #0f172a center/cover no-repeat;
  background-image: var(--post-hero-image, none);
  color: #fff;
}

.blog-post__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 14, 24, 0.78) 0%,
    rgba(8, 14, 24, 0.86) 50%,
    rgba(6, 10, 18, 0.96) 100%
  );
}

.blog-post__hero-inner {
  position: relative;
  z-index: 1;
}

/* Sobrescreve cores globais de style.css (h1/p/li) dentro da hero */
.blog-post__hero h1,
.blog-post__hero p,
.blog-post__hero li,
.blog-post__hero time,
.blog-post__hero span {
  color: #fff;
}

.blog-post__hero .blog-hub__breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.blog-post__hero .blog-hub__breadcrumb a:hover {
  color: #e8f4fc;
  text-decoration: underline;
}

.blog-post__hero .blog-hub__breadcrumb li[aria-current="page"] {
  color: rgba(255, 255, 255, 0.94);
}

.blog-post__hero .blog-hub__breadcrumb li + li::before {
  color: rgba(255, 255, 255, 0.72);
}

.blog-post__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #eef8c8;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-post__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 48rem;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.blog-post__lead {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.94);
}

.blog-post__content-wrap {
  padding: 2.5rem 0 4rem;
}

.blog-post__layout {
  align-items: start;
}

.blog-post__main {
  min-width: 0;
}

.blog-post__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.blog-post__share-label {
  font-weight: 600;
  color: #2c3e50;
}

.blog-post__share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-post__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.blog-post__share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  color: #fff;
}

.blog-post__share-btn--facebook { background: #1877f2; }
.blog-post__share-btn--linkedin { background: #0077b5; }
.blog-post__share-btn--whatsapp { background: #25d366; }
.blog-post__share-btn--copy { background: #64748b; }

.blog-post__article.textBlog {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  color: #1a1a1a;
  line-height: 1.75;
  font-size: 1.05rem;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.blog-post__article.textBlog h2 {
  font-size: 1.65rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1071a1;
  font-weight: 600;
  border-left: 4px solid #96c322;
  padding-left: 0.6rem;
}

.blog-post__article.textBlog h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #333;
  font-weight: 500;
}

.blog-post__article.textBlog p {
  margin-bottom: 1.2rem;
}

.blog-post__article.textBlog img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  display: block;
}

.blog-post__article.textBlog table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.blog-post__article.textBlog table th,
.blog-post__article.textBlog table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
}

.blog-post__article.textBlog table th {
  background: #f5f5f5;
  font-weight: 600;
}

.blog-post__article.textBlog a {
  color: #1071a1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-post__article.textBlog a:hover {
  color: #96c322;
}

.blog-post__section-title {
  margin: 2.5rem 0 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
}

.blog-post__faq {
  margin-top: 2rem;
}

.blog-post__author {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.blog-post__author-avatar img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-post__author-label {
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-post__author-name {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.blog-post__author-bio {
  margin: 0 0 0.75rem;
  color: #475569;
  line-height: 1.6;
}

.blog-post__author-links {
  display: flex;
  gap: 0.75rem;
}

.blog-post__author-links a {
  color: #1071a1;
  font-size: 1.1rem;
}

.blog-post__tags {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 12px;
}

.blog-post__tags-label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #2c3e50;
}

.blog-post__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-post__tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #e9ecef;
  color: #334155;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-post__tag:hover {
  background: #96c322;
  color: #fff;
}

.blog-post__related-grid {
  margin-top: 0.5rem;
}

.blog-post__recent-list a {
  font-size: 0.95rem;
  line-height: 1.45;
}

@media (max-width: 767.98px) {
  .blog-post__hero {
    min-height: 280px;
    padding-bottom: 2rem;
  }

  .blog-post__article.textBlog {
    padding: 1rem 1.1rem;
    font-size: 1rem;
  }

  .blog-post__author {
    flex-direction: column;
    text-align: center;
  }

  .blog-post__author-links {
    justify-content: center;
  }
}
