.card-content small a {
  color: var(--primary-color);
  text-decoration: underline;
  word-break: break-all;
  transition: color 0.2s;
}
.card-content small a:hover {
  color: var(--secondary-color);
  text-decoration: underline wavy;
}
.card-content small {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-color);
  opacity: 0.85;
  font-size: 0.95em;
  line-height: 1.5;
}
/* ===========================
   BLOG STYLES
   Arquivo: blog.css
   Descrição: Estilos específicos para a página de blog
   Associação PIPA (e rabiola)
   =========================== */

/* ==== HEADER DO BLOG ==== */
#blog-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.1);
  }
  
  .blog-title {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .blog-title h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
  }
  
  .blog-title h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 5px;
  }
  
  .blog-title p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 800px;
    margin: 1.5rem auto 0;
  }
  
  /* Categorias do blog */
  .blog-categories {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
  }
  
  .blog-categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .blog-categories ul li {
    position: relative;
  }
  
  .blog-categories ul li a {
    padding: 0.5rem 1.2rem;
    color: var(--text-color);
    font-weight: 500;
    border-radius: 2rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  
  .blog-categories ul li:hover a {
    color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .blog-categories ul li.active a {
    background-color: var(--primary-color);
    color: #fff;
  }
  
  /* Busca do blog */
  .blog-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    position: relative;
  }
  
  .blog-search input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--disabled-color);
    border-radius: 2rem;
    outline: none;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .blog-search input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.1);
  }
  
  .blog-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .blog-search button:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.05);
  }
  
  .blog-search button span {
    font-size: 1.2rem;
    color: white;
  }
  
  /* ==== DESTAQUE DO BLOG ==== */
  #blog-highlight {
    margin: 2rem 0 4rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: var(--background-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
    position: relative;
  }
  
  #blog-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  .highlight-content {
    display: flex;
    flex-direction: row;
    height: 100%;
  }
  
  .highlight-image {
    flex: 1;
    overflow: hidden;
  }
  
  .highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  #blog-highlight:hover .highlight-image img {
    transform: scale(1.05);
  }
  
  .highlight-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .highlight-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .highlight-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .highlight-text .button {
    align-self: flex-start;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    background-color: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
  }
  
  .highlight-text .button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Tags de categoria */
  .category-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
  }
  
  .category-tag:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  /* Metadados do artigo */
  .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1rem 0;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
  }
  
  .article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
  }
  
  .article-meta .material-icons {
    font-size: 1.1rem;
  }
  
  /* ==== ARTIGO PRINCIPAL ==== */
  .blog-article {
    max-width: 900px;
    margin: 4rem auto;
    background-color: var(--background-color);
    border-radius: 16px;
    padding: 3rem;
    /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(var(--primary-color-rgb), 0.05); */
  }
  
  /* Cabeçalho do artigo */
  .article-header {
    margin-bottom: 2rem;
  }
  
  .article-title {
    margin-bottom: 2rem;
  }
  
  .article-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 1rem 0;
    color: var(--text-color);
  }
  
  .article-featured-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .article-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
  }
  
  .image-caption {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    text-align: center;
    padding: 0.5rem 1rem;
    background-color: rgba(var(--primary-color-rgb), 0.05);
  }
  
  /* Corpo do artigo */
  .article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
  }
  
  .article-intro {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
    color: var(--text-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    font-style: italic;
  }
  
  .article-body h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .article-body h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 5px;
  }
  
  .article-body p {
    margin-bottom: 1.5rem;
  }
  
  /* Citação no artigo */
  .article-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 12px;
    position: relative;
  }
  
  .article-quote blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
    color: var(--text-color);
  }
  
  .article-quote blockquote::before {
    content: "";
    position: absolute;
    left: -10px;
    top: -20px;
    font-size: 5rem;
    opacity: 0.1;
    color: var(--primary-color);
  }
  
  .article-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    text-align: right;
    color: var(--primary-color);
  }
  
  /* Imagens dentro do artigo */
  .article-image-right,
  .article-image-left {
    max-width: 50%;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .article-image-right {
    float: right;
    margin-left: 2rem;
  }
  
  .article-image-left {
    float: left;
    margin-right: 2rem;
  }
  
  .article-image-right img,
  .article-image-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  /* Limpeza de floats */
  .article-body::after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Listas no artigo */
  .article-list {
    margin: 1.5rem 0 2rem 1.5rem;
    list-style-type: circle;
  }
  
  .article-list li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    list-style-type: disc;
  }
  
  .article-list li strong {
    font-weight: 600;
    color: var(--primary-color);
  }
  
  /* Componente de Podcast */
  .article-podcast {
    margin: 3rem 0;
    padding: 2rem;
    background-color: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 12px;
    position: relative;
  }
  
  .article-podcast h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .podcast-player {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .podcast-player audio {
    width: 100%;
    height: 40px;
    border-radius: 8px;
  }
  
  .podcast-info {
    margin-top: 1rem;
  }
  
  .podcast-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  
  .podcast-time {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
  }
  
  /* Componente de Vídeo */
  .article-video {
    margin: 3rem 0;
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .video-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.8;
  }
  
  /* CTA (Call to Action) */
  .article-cta {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: var(--primary-color);
    border-radius: 12px;
    color: white;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .article-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
  }
  
  .article-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .article-cta .button {
    background-color: white;
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }
  
  .article-cta .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: var(--background-color);
  }
  
  /* Rodapé do artigo */
  .article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(var(--primary-color-rgb), 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  /* Tags do artigo */
  .article-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .article-tags span {
    color: var(--primary-color);
  }
  
  .article-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .article-tags ul li a {
    display: inline-block;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
  }
  
  .article-tags ul li a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
  }
  
  /* Botões de compartilhamento */
  .article-share {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  
  .article-share span {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .share-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
  }
  
  .share-button.facebook {
    background-color: #3b5998;
  }
  
  .share-button.twitter {
    background-color: #1da1f2;
  }
  
  .share-button.whatsapp {
    background-color: #25d366;
  }
  
  .share-button.email {
    background-color: #848484;
  }
  
  .share-button:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* ==== BIO DO AUTOR ==== */
  .author-bio {
    max-width: 900px;
    margin: 4rem auto;
    background-color: var(--background-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 2rem;
    align-items: center;
    border: 1px solid rgba(var(--primary-color-rgb), 0.05);
  }
  
  .author-image {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-info {
    flex: 1;
  }
  
  .author-info h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
  }
  
  .author-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
  }
  
  .author-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.9;
  }
  
  .author-social {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* ==== ARTIGOS RELACIONADOS ==== */
  #related-articles {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 1rem;
  }
  
  #related-articles h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
  }
  
  #related-articles h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 5px;
  }
  
/* === Blog Articles Grid & Cards === */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.blog-card {
  background-color: var(--background-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--primary-color-rgb), 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .card-image img {
  transform: scale(1.05);
}
.card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.4;
  font-weight: 600;
}
.card-content p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
  flex: 1;
  color: var(--text-color);
  opacity: 0.92;
}
.card-content .button {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.5rem 1.2rem;
  font-size: 0.95rem;
}
.card-content .button:hover {
  background: var(--secondary-color);
  color: #fff;
}
  
  .read-more:hover {
    gap: 0.8rem;
    color: var(--secondary-color);
  }
  
  .read-more .material-icons {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }
  
  .read-more:hover .material-icons {
    transform: translateX(3px);
  }
  
  /* ==== COMENTÁRIOS ==== */
  #comments {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 1rem;
  }
  
  #comments h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.1);
  }
  
  .comments-list {
    margin-top: 2rem;
  }
  
  .comment {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.05);
  }
  
  .comment.reply {
    margin-left: 4rem;
    background-color: rgba(var(--primary-color-rgb), 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border-bottom: none;
  }
  
  .comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .comment-content {
    flex: 1;
  }
  
  .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
  }
  
  .comment-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .author-badge {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
  }
  
  .comment-date {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
  }
  
  .comment-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-color);
  }
  
  .comment-actions {
    display: flex;
    gap: 1rem;
  }
  
  .reply-button,
  .like-button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  
  .reply-button:hover,
  .like-button:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  .like-button .material-icons {
    font-size: 1.1rem;
  }
  
  .more-comments {
    text-align: center;
    margin-top: 2rem;
  }
  
  .more-comments .button {
    background-color: var(--background-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.7rem 2rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .more-comments .button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Formulário de comentários */
  .comment-form {
    margin-top: 4rem;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(var(--primary-color-rgb), 0.05);
  }
  
  .comment-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .comment-form h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 5px;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--disabled-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--background-color);
    color: var(--text-color);
  }
  
  .form-group textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.1);
  }
  
  .comment-form .button {
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .comment-form .button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* ==== NEWSLETTER ==== */
  .blog-newsletter {
    background-color: var(--primary-color);
    padding: 4rem 2rem;
    margin: 5rem 0 0;
    position: relative;
    overflow: hidden;
  }
  
  .blog-newsletter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="rgba(255, 255, 255, 0.03)" d="M32 132.8C32 89.5 67.5 54 110.8 54c25.3-.1 49.1 11.4 64.7 31.3l51.1 65.7 40.4-28.3c2.3-1.6 5-2.5 7.8-2.5 7.7 0 13.9 6.2 13.9 13.9 0 3.1-1 5.9-2.8 8.2L261.7 175l32.2 41.5c20.4 26.2 59.1 30 83.8 7.9l.5-.4c5.3-4.8 13.6-4.3 18.4 1s4.3 13.6-1 18.4l-.5.4c-38.9 35-97.7 29.8-130-14L248 202.6l-25.3 33.1c-16.7 21.8-48.3 25.5-69.2 7.1L98.1 185c-6.2-7.9-15.3-12.5-25-12.5-17.8 0-32.3 14.5-32.3 32.3 0 1.8.1 3.5.4 5.2 1.4 8.1-4 15.9-12.1 17.2s-15.9-4-17.2-12.1c-.6-3.5-.9-7-. 9-10.2zM512 429.8c0 44.2-35.8 80-80 80-26.2 0-50.4-12.8-65.3-34.3l-56.1-81.5-40.4 32.3c-2.4 1.9-5.4 3.1-8.7 3.1-7.7 0-13.9-6.2-13.9-13.9 0-3.5 1.3-6.9 3.7-9.5l23.2-26.6-32.2-46.7c-20.4-29.7-12.5-70 16.7-88.6l18.4-11.7c5.6-3.6 13.1-1.9 16.6 3.7s1.9 13.1-3.7 16.6l-18.4 11.7c-16.8 10.7-21.2 33.7-9.3 50.8l31.2 45.3 25.7-29.5c15.6-18 43.4-18.8 60-1l56.1 82.5c4.6 8.5 13.5 14 23.6 14 14.7 0 26.7-12 26.7-26.7 0-3.7-.7-7.3-2.2-10.6-2.8-6.1-.2-13.4 5.9-16.2s13.4-.2 16.2 5.9c3.3 7.3 5.1 15.2 5.1 23.5z"/></svg>');
    background-repeat: repeat;
    background-size: 100px 100px;
    opacity: 0.2;
    z-index: 1;
  }
  
  .newsletter-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
  }
  
  .newsletter-text {
    flex: 1;
  }
  
  .newsletter-text h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .newsletter-form {
    flex: 1;
    display: flex;
    gap: 1rem;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    outline: none;
  }
  
  .newsletter-form .button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 2rem;
    padding: 1rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .newsletter-form .button:hover {
    background-color: var(--background-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* ==== MEDIA QUERIES ==== */
  @media (max-width: 1200px) {
    .articles-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .newsletter-content {
      padding: 0 2rem;
    }
  }
  
  @media (max-width: 992px) {
    .highlight-content {
      flex-direction: column;
    }
    
    .highlight-image {
      height: 300px;
    }
    
    .highlight-text {
      padding: 2rem;
    }
    
    .article-image-right,
    .article-image-left {
      max-width: 100%;
      float: none;
      margin: 2rem 0;
    }
    
    .articles-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-content {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
    }
    
    .blog-article {
      padding: 2rem;
    }
    
    .author-bio {
      flex-direction: column;
      text-align: center;
    }
    
    .author-image {
      margin: 0 auto;
    }
    
    .author-social {
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .blog-title h1 {
      font-size: 2rem;
    }
    
    .blog-categories ul {
      gap: 0.5rem;
    }
    
    .blog-categories ul li a {
      padding: 0.4rem 0.8rem;
      font-size: 0.9rem;
    }
    
    .highlight-text h2 {
      font-size: 1.8rem;
    }
    
    .article-title h1 {
      font-size: 2rem;
    }
    
    .articles-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .article-footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    
    .article-share {
      width: 100%;
      justify-content: flex-start;
    }
    
    .comment {
      flex-direction: column;
      gap: 1rem;
    }
    
    .comment-avatar {
      margin: 0 auto;
    }
    
    .comment-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    
    .comment.reply {
      margin-left: 1.5rem;
    }
    
    .newsletter-form {
      flex-direction: column;
      width: 100%;
    }
    
    .newsletter-form input {
      width: 100%;
    }
    
    .newsletter-form .button {
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .blog-title h1 {
      font-size: 1.8rem;
    }
    
    .blog-title p {
      font-size: 1rem;
    }
    
    .blog-article {
      padding: 1.5rem;
      border-radius: 12px;
    }
    
    .article-intro {
      font-size: 1.1rem;
      padding-left: 1rem;
    }
    
    .article-body h2 {
      font-size: 1.5rem;
    }
    
    .article-quote blockquote {
      font-size: 1.1rem;
      padding-left: 1rem;
    }
    
    .article-podcast {
      padding: 1.5rem;
    }
    
    .article-podcast h3 {
      font-size: 1.1rem;
    }
    
    .comment-form {
      padding: 1.5rem;
    }
    
    .blog-newsletter {
      padding: 3rem 1rem;
    }
    
    .newsletter-text h2 {
      font-size: 1.8rem;
    }
  }
  
  /* Ajustes para tema escuro */
  @media (prefers-color-scheme: dark) {
    .article-card {
      /* background-color: rgba(0, 0, 0, 0.2); */
    }
    
    .blog-article {
      /* background-color: rgba(0, 0, 0, 0.2); */
    }
    
    .article-podcast {
      background-color: rgba(var(--primary-color-rgb), 0.1);
    }
    
    .article-quote {
      background-color: rgba(var(--primary-color-rgb), 0.1);
    }
    
    .form-group input,
    .form-group textarea {
      background-color: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.1);
    }
    
    .comment-form {
      background-color: rgba(0, 0, 0, 0.2);
    }
    
    .author-bio {
      background-color: rgba(0, 0, 0, 0.2);
    }
  }
  
  /* Variáveis para as cores RGB para uso em rgba */
  :root {
    --primary-color-rgb: 173, 32, 138;
    --secondary-color-rgb: 79, 168, 224;
  }
  
  /* Dark theme */
  body.dark-theme {
    --primary-color-rgb: 35, 98, 167;
    --secondary-color-rgb: 173, 32, 138;
  }