
/* Estilos otimizados para mobile */
.mobile-optimized {
  line-height: 1.5;

}

.content-section {
  margin-bottom: 2rem;
}

.highlight-box {
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Melhorias para botões em mobile */
.mobile-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-weight: 600;
}



.mobile-heading {
  font-size: 1.75rem;
  line-height: 1.3;
}

/* Estilo para o botão flutuante */
.floating-action-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-radius: 50px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 15px;
}

/* Melhorias de espaçamento para mobile */
@media (max-width: 640px) {
  .mobile-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .mobile-text {
    font-size: 16px;
  }
  
  .mobile-heading {
    font-size: 1.75rem;
  }
  
  .highlight-box {
    padding: 1.25rem;
  }
}

/* Melhorias de acessibilidade - CORRIGIDO */
@media (prefers-reduced-motion: reduce) {
  .mobile-optimized,
  .content-section,
  .highlight-box {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Destaque para links importantes */
.content-link {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 500;
}

/* Estilização geral dos botões */
.social-btn {
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  font-size: 14px;
}

/* MOBILE — Deixar tudo organizado e simétrico */
@media (max-width: 640px) {
  .share-container {
    display: flex;
    flex-direction: column;
    gap: 10px !important;
  }

  .social-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px;
  }
}

/* Utilitários para limitar linhas de texto */
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
/* Leia Também — versão ultra compacta e sem animações */
.leia-tambem-section {
  border-left: 2px solid #d1d5db;
  background: #ffffff;
  padding: 4px !important;
  margin-top: 10px !important;
  margin-bottom: 6px !important;
}

.leia-tambem-section h2 {
  font-size: 0.85rem;
  font-weight: 400 !important;
  color: #475569;
  margin-bottom: 2px !important;
}

/* Contêiner */
#leia-tambem-container {
  background: #f8fafc !important;
  padding: 4px !important;
}

/*botan*/
.menu-btn {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: none;      /* sem fundo */
border: none;       /* remove a borda */
  cursor: pointer;
  transition: 0.3s ease;
}

.menu-btn span {
  width: 28px;                          /* barras um pouco maiores pra ficar bonito */
  height: 3px;
  background: #111827;                  /* 👈 blue-600 */
  border-radius: 2px;
  position: absolute;
  transition: 0.3s ease;
}

.menu-btn span:nth-child(1) {
  transform: translateY(-8px);
}

.menu-btn span:nth-child(2) {
  transform: translateY(0);
}

.menu-btn span:nth-child(3) {
  transform: translateY(8px);
}

/* Animação para virar X */
.menu-btn.open span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

