.m-top-container{
  margin-top: 100px;
}

.post {
  padding: 24px;
  border: none;
  border-radius: 16px;
  margin-bottom: 28px;
  transition: all 0.3s ease;
  position: relative;
  background-color: #1e1e1e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mb-1 {
    margin-bottom: .25rem !important;
    color: #fff !important;
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgb(255 255 255) !important;
}

.post:hover {
  background: #252525;
  transform: translateY(-2px);
}
.post-link {
  color: inherit;
  text-decoration: none;
}
.post-header {
  font-weight: 600;
  margin-bottom: 16px;
  display: contents;
  align-items: center;
}

/* Estilos para curtidas e interações */
.curtidas {
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-right: 12px;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
}

.curtidas:hover {
  color: #ff0000 !important;
  background-color: rgba(255, 77, 141, 0.1);
  transform: scale(1.05);
}

.curtidas.curtido {
  color: #ff0000 !important;
  font-weight: bold;
  background-color: rgba(255, 77, 141, 0.15);
}

/* Estilos para formulários de login/cadastro */
.auth-container {
  max-width: 500px;
  margin: 2rem auto;
}

.social-login-divider {
  text-align: center;
  margin: 1rem 0;
  position: relative;
}

.social-login-divider:before,
.social-login-divider:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background-color: #dee2e6;
}

.social-login-divider:before {
  left: 0;
}

.social-login-divider:after {
  right: 0;
}

.post-description {
  margin-top:  16px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #ffffff;
}

/* Estilos para as prévias de conteúdo */
.content-preview {
  margin: 20px 0;
  border-radius: 14px;
  overflow: hidden;
  max-height: 800px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
}

/* Estilos para a seção de Tendências */
.trending-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff0000, #ff3a7f);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(255, 77, 141, 0.3);
  animation: pulse-fire 2s infinite;
}

@keyframes pulse-fire {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.trending-title {
  color: #ff0000;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #ff0000, #ff3a7f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trending-badge {
  background: linear-gradient(135deg, #ff0000, #ff3a7f);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(255, 77, 141, 0.3);
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-width: fit-content;
}

.trending-container {
  background: linear-gradient(135deg, rgba(255, 77, 141, 0.05), rgba(255, 58, 127, 0.05));
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 77, 141, 0.1);
  position: relative;
  overflow: hidden;
}

.trending-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff0000, #ff3a7f, #ff0000);
  background-size: 200% 100%;
  animation: gradient-flow 3s ease-in-out infinite;
}

@keyframes gradient-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .trending-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .m-top-container{
    margin-top: 150px;
  }
}

@media (min-width: 1200px) {
  .trending-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trending-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: #ff0000;
}

.trending-loading .spinner-border {
  color: #ff0000;
  width: 3rem;
  height: 3rem;
}

.trending-card {
  background: linear-gradient(135deg, #1e1e1e, #252525);
  border-radius: 24px;
  padding: 0;
  border: 1px solid rgba(255, 77, 141, 0.15);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  min-height: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.trending-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 77, 141, 0.2);
  border-color: rgba(255, 77, 141, 0.3);
}

.trending-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff0000, #ff3a7f);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trending-card:hover::before {
  opacity: 1;
}

.trending-card-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255, 77, 141, 0.12);
}

.trending-card-body {
  padding: 20px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.trending-card-footer {
  padding: 16px 24px;
  background: rgba(255, 77, 141, 0.08);
  border-top: 1px solid rgba(255, 77, 141, 0.12);
  margin-top: auto;
}

.trending-user-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.trending-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trending-follow-btn {
  background: linear-gradient(135deg, #ff0000, #ff3a7f);
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.trending-follow-btn:hover {
  background: linear-gradient(135deg, #ff3a7f, #ff0000);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 77, 141, 0.4);
}

.trending-follow-btn.following {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.trending-rank {
  display: flex;
  align-items: center;
}

.trending-position {
  background: linear-gradient(135deg, #ff4d8d, #ff3a7f);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

.trending-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-right: 12px;
  border: 2px solid rgba(255, 77, 141, 0.2);
}

.trending-user-name {
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  font-size: 0.95rem;
}

.trending-user-handle {
  color: #888;
  font-size: 0.8rem;
  margin: 0;
}

.trending-content-preview {
  border-radius: 12px;
  overflow: hidden;
  margin: 15px 0;
  position: relative;
  background: #000;
}

.trending-content-preview img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.trending-card:hover .trending-content-preview img {
  transform: scale(1.05);
}

.trending-type-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
}

.trending-description {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trending-stats {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.8rem;
  color: #888;
  flex-shrink: 0;
  min-width: fit-content;
}

/* Responsividade para seção de tendências */
@media (max-width: 768px) {
  .d-flex.justify-content-between.align-items-center {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 15px;
    overflow: auto;
  }
  
  .trending-stats {
    align-self: flex-end;
  }
  
  .trending-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

.trending-stat {
  display: flex;
  align-items: center;
  gap: 4px;
}

.trending-view-btn {
  background: linear-gradient(135deg, #dc3545, #dc3545);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(255, 77, 141, 0.3);
  text-decoration: none;
}

.trending-view-btn:hover {
  background: linear-gradient(135deg, #dc3545, #dc3545);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 77, 141, 0.5);
  letter-spacing: 0.8px;
}

.trending-view-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 77, 141, 0.4);
}

.content-preview:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.content-preview img {
  max-height: 350px;
  object-fit: contain;
  width: 100%;
  max-width: 100%;
  height: auto;
  transition: all 0.5s ease;
  background-color: #121212;
}

/* Removido - duplicação desnecessária */

.content-preview img:hover {
  transform: scale(1.03);
}

.content-preview-page {
  border-radius: 15px;
  padding: 0!important;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.page-preview-loading {
  text-align: center;
  padding: 40px;
  color: white;
  font-size: 1.1rem;
}

.page-preview-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-preview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.page-preview-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.page-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.page-preview-card:hover .page-preview-image img {
  transform: scale(1.05);
}

.page-preview-content {
  padding: 20px;
}

.page-preview-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-preview-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-preview-url {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
  word-break: break-all;
  display: none;
}

.page-preview-link {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-preview-link:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.page-preview-simple {
  text-align: center;
  padding: 40px;
}

.preview-overlay {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 20px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.content-preview-video{
  height: 315px;
}

.preview-overlay:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
}

/* Estilos para avatares e fotos de perfil */
.avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ff0000;
  color: white;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255, 77, 141, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.rounded-circle {
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  width: auto !important;
}

.rounded-circle:hover {
  transform: scale(1.05);
  border: 2px solid rgba(255, 77, 141, 0.5);
}

/* Estilos para a página de detalhes do post */
.card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background-color: #1e1e1e;
  border: none;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.post-loading {
  padding: 25px;
  text-align: center;
  color: #ffffff;
  background-color: #1e1e1e;
  border-radius: 16px;
  margin: 20px 0;
}

/* Estilo para centralizar o feed de posts */
#feedPosts {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  padding: 0 15px;
}

/* Ajustes básicos de responsividade */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Garantir que imagens não excedam a tela */
img {
  max-width: 100%;
  height: auto;
}

/* Corrigir overflow em iframes */
iframe {
  max-width: 100%;
  width: 100%;
}

.dados-posts-analytics{
  display: flex;
  flex-direction: column;
}

/* Responsividade básica para móveis */
@media (max-width: 768px) {

  .content-h5-analytics{
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .insight-badge {
      font-weight: 500;
      margin: 10px;
  }

  .text-info::before{
    margin: 5px;
  }

  .dados-posts-analytics-bts{
    display: flex;
    flex-direction: column;
  }

  .dados-posts-analytics .badge{
    width: 100%;
    padding: 10px;
    margin: 20px 0;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  /* Botões pill - ajustes para mobile */
  .btn-pill {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 6px 12px;
    font-size: 0.8rem;
    margin: 2px;
  }
  
  /* Container dos botões de filtro */
  .d-flex.flex-wrap.gap-2 {
    justify-content: center;
    gap: 8px !important;
  }
  
  /* Barra de busca em mobile */
  .search-container .input-group {
    margin-bottom: 15px;
  }
  
  .search-container .form-control {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
  
  .btn-search {
    padding: 0 15px;
  }
  
  /* Ajustes para botões em mobile */
  .btn-primary, .btn-outline-primary, .btn-outline-secondary {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .btn-sm {
    padding: 4px 12px;
    font-size: 0.75rem;
  }
  
  /* Cards e posts */
  .card, .post {
    margin-bottom: 15px;
    padding: 12px;
  }
  
  /* Formulários */
  .form-control, .form-select {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  
  textarea.form-control {
    height: 70px;
    min-height: 70px;
    max-height: 70px;
  }
  
  /* Navegação */
  .navbar {
    padding: 8px 0;
  }
  
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  /* Modais */
  .modal-dialog {
    margin: 10px;
  }
  
  /* Botões de ação em comentários */
  .btn-group-sm .btn {
    padding: 1px 3px;
    font-size: 0.6rem;
  }
  
  /* Ajustes para imagens */
  .content-preview img {
    max-height: 250px;
  }
  
  /* Espaçamento entre elementos */
  .mb-3 {
    margin-bottom: 1rem !important;
  }
  
  .mt-3 {
    margin-top: 1rem !important;
  }
  
  /* Ajustes para avatares */
  .rounded-circle {
    width: 60px !important;
    height: 60px !important;
  }
  
  /* Ajustes para texto */
  h5 {
    font-size: 1.1rem;
  }
  
  h6 {
    font-size: 0.9rem;
  }
  
  /* Ajustes para estatísticas de posts */
  .trending-stats {
    font-size: 0.75rem;
    gap: 10px;
  }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 480px) {

  .navbar-collapse {
      align-items: center;
      width: 100%;
      padding: 15px;
  }

  .navbar .container{
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .navbar-brand {
    margin: 10px 0;
  }

  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .btn-primary, .btn-outline-primary, .btn-outline-secondary {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  /* Botões pill ainda menores */
  .btn-pill {
    padding: 4px 8px;
    font-size: 0.75rem;
    margin: 1px;
  }
  
  /* Barra de busca em telas muito pequenas */
  .search-container .form-control {
    font-size: 0.85rem;
    padding: 8px 10px;
  }
  
  .btn-search {
    padding: 0 12px;
    font-size: 0.85rem;
  }
  
  /* Container dos filtros */
  .d-flex.flex-wrap.gap-2 {
    gap: 4px !important;
  }
  
  .card, .post {
    padding: 10px;
  }
  
  .modal-dialog {
    margin: 5px;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .content-preview img {
    max-height: 200px;
  }
  
  textarea.form-control {
    height: 60px;
    min-height: 60px;
    max-height: 60px;
  }
}

/* Estilos para cards de usuários */
.usuario-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.usuario-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3) !important;
}

.usuario-card .card-body {
  position: relative;
  overflow: hidden;
}

.usuario-card .card-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff0000, #ff4444);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.usuario-card:hover .card-body::before {
  opacity: 1;
}

/* Responsividade para cards de usuários */
@media (max-width: 768px) {
  .usuario-card {
    margin-bottom: 1rem;
  }
  
  .usuario-card .card-body {
    padding: 1.5rem;
  }
  
  .usuario-card img {
    width: 80px !important;
    height: 80px !important;
  }
}

@media (max-width: 480px) {
  .usuario-card .card-body {
    padding: 1rem;
  }
  
  .usuario-card img {
    width: 70px !important;
    height: 70px !important;
  }
  
  .usuario-card .btn {
    min-width: 100px !important;
    font-size: 0.8rem;
  }

  .navbar-brand {
    margin-right: 0!important;
  }
}

/* Estilos para a navegação */
.navbar {
  background-color: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 12px 0;
  z-index: 1030 !important;
}

/* Logo styling */
.navbar-brand-logo {
  height: 32px;
  width: auto;
  max-width: 120px;
  filter: brightness(1);
  transition: filter 0.3s ease;
}

.navbar-brand-logo:hover {
  filter: brightness(1.1);
}

.navbar-brand {
  font-weight: 700;
  color: #ff0000 !important;
  font-size: 1.5rem;
  padding: 0;
  margin-right: 1rem;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Estilos para botões */
.btn-primary {
  background: linear-gradient(135deg, #ff0000, #ff3a7f);
  border: none;
  border-radius: 25px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff3a7f, #ff6b9d);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
  color: white;
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-outline-primary {
  color: #ff0000;
  border: 2px solid #ff0000;
  background: transparent;
  border-radius: 25px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-outline-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #ff0000, #ff3a7f);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-outline-primary:hover::before {
  width: 100%;
}

.btn-outline-primary:hover {
  color: white;
  border-color: #ff3a7f;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.btn-outline-primary:active {
  transform: translateY(-1px) scale(1.01);
}

/* Estilos específicos para botões de seguir */
.follow-btn, .btn-seguir {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.follow-btn:disabled, .btn-seguir:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.follow-btn small, .btn-seguir small {
  font-weight: 600;
  font-size: 0.8rem;
}

.follow-btn i, .btn-seguir i {
  transition: transform 0.2s ease;
}

.follow-btn:hover i, .btn-seguir:hover i {
  transform: scale(1.1);
}

/* Botão seguindo (outline-secondary) */
.btn-outline-secondary {
  color: #28a745;
  border: 2px solid #28a745;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 25px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-outline-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #dc3545, #c82333);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-outline-secondary:hover::before {
  width: 100%;
}

.btn-outline-secondary:hover {
  color: white;
  border-color: #dc3545;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.btn-outline-secondary:active {
  transform: translateY(-1px) scale(1.01);
}

/* Animação de pulso para botões ativos */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.btn-primary:focus {
  animation: pulse 1.5s infinite;
}

/* Estilos para botões pequenos */
.btn-sm {
  padding: 6px 16px;
  font-size: 0.8rem;
  border-radius: 20px;
}

/* Estilo para botão responder */
.btn-responder {
  background: linear-gradient(135deg, #6c757d, #5a6268);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 6px 16px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.btn-responder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-responder:hover::before {
  left: 100%;
}

.btn-responder:hover {
  background: linear-gradient(135deg, #5a6268, #495057);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 16px rgba(108, 117, 125, 0.4);
  color: white;
}

.btn-responder:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 3px 10px rgba(108, 117, 125, 0.3);
}

.btn-responder i {
  transition: transform 0.2s ease;
}

.btn-responder:hover i {
  transform: scale(1.1);
}

/* Botões de filtro estilo pílula */
.btn-pill {
  border-radius: 25px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-pill:hover {
  background-color: rgba(255, 77, 141, 0.15);
  color: #ff0000;
  transform: translateY(-2px);
}

.btn-pill.active {
  background-color: rgba(255, 77, 141, 0.2);
  color: #ff4d8d;
  font-weight: 600;
}

/* Estilo para a barra de busca */
.search-container .input-group {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background-color: #2a2a2a;
  transition: all 0.3s ease;
}

.search-container .input-group:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.search-container .input-group-text,
.search-container .form-control {
  background-color: #2a2a2a;
  border-color: #333;
  color: #fff;
  font-size: 1.05rem;
  padding: 12px 15px;
}

.search-container .form-control:focus {
  box-shadow: none;
  border-color: #ff0000;
  background-color: #2a2a2a;
}

.search-container .form-control::placeholder {
  color: #aaa;
  font-style: italic;
}

.btn-search {
  background-color: #ff0000;
  color: white;
  border: none;
  border-radius: 0 25px 25px 0;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.btn-search:hover {
  background-color: #ff4d8d;
  color: white;
  transform: translateX(2px);
}

/* Estilos modernos inspirados no favee */
body {
  background-color: #121212;
  color: #ffffff;
  font-family: 'Poppins', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 0.2px;
}

.post, .card {
  background-color: #1e1e1e;
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  padding: 16px;
  max-width: 700px;
  margin: 25px auto;
}

.post:hover {
  background-color: #252525;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.form-control, .form-select {
  background-color: #2a2a2a;
  border-color: #333;
  color: #fff;
  border-radius: 12px;
  padding: 10px 15px;
}

/* Altura fixa para textarea */
textarea.form-control {
  height: 80px;
  resize: none;
  min-height: 80px;
  max-height: 80px;
}

.form-control:focus, .form-select:focus {
  background-color: #2a2a2a;
  border-color: #ff0000;
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(255, 77, 141, 0.25);
}

.modal-content {
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 16px;
  border: none;
}

.alert-info {
  background-color: #2a2a2a;
  color: #ffffff;
  border: 1px solid #3a3a3a;
  border-radius: 12px;
}

/* Estilo para o botão de criar post */
.btn-create-post {
  background-color: #ff0000;
  color: white;
  border-radius: 20px;
  padding: 8px 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 2px 5px rgba(255, 77, 141, 0.3);
}

.btn-create-post:hover {
  background-color: #ff4d8d;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 77, 141, 0.4);
  color: white;
}

.btn-create-post:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(255, 77, 141, 0.3);
}

/* Melhorias de visibilidade para textos */
.list-group-item {
  color: #ffffff !important;
}

/* Estilo para dropdown menu */
.dropdown-menu {
  background-color: #1e1e1e !important;
  color: #ffffff !important;
  border: 1px solid #333 !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  padding: 10px !important;
  z-index: 10000 !important;
  position: absolute !important;
  display: none;
}

.dropdown-menu.show {
  display: block !important;
}

/* Garantir que o dropdown toggle funcione */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-item {
  color: #ffffff !important;
  padding: 8px 15px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.dropdown-item:hover {
  background-color: #2a2a2a !important;
  color: #ff0000 !important;
}

.dropdown-item:active, .dropdown-item:focus {
  background-color: rgba(255, 77, 141, 0.2) !important;
  color: #ff4d8d !important;
}

.dropdown-divider {
  border-top: 1px solid #333 !important;
  margin: 8px 0 !important;
}

.text-muted {
  color: #ffffff !important;
}

.small {
  color: #ffffff !important;
}

.card-text {
  color: #ffffff !important;
}

.nav-link {
  color: #ffffff !important;
}

.form-text {
  color: #ffffff !important;
}
