/* Esconde a música no header shrink */
.profile-header.shrink .music {
  display: none !important;
}


  .action-buttons .btn-nudge i {
    display: none;
  }

.navbar-top {
  display: none;
}


/*new*/
.full-profile-container {
  width: 1050px;
  height: 520px; /* Altura da tela */
  margin: 0 auto;
  background: rgba(20, 20, 20, 0.247);
  backdrop-filter: blur(8px);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-left: 250px;
  margin-top: 80px;
  z-index: 1001;
}

/* Topo do perfil fixo */
.profile-header {
  display: flex;
  padding: 30px;
  gap: 20px;
  background: rgba(20, 20, 20, 0.61);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 99;
  flex-shrink: 0;
  flex-direction: column;
  margin: 0px;
  padding: 0px;
}

.full-header {
  display: flex;
  flex-direction: row; 
}

.info-icon{
  color: #4A90E2;
  padding-right: 5px;
}

.info-details {
  padding: 5px;
}

.about-contant {
  margin-bottom: 5px;
}


/* Foto de perfil */
.profile-pic-block {
  flex-shrink: 0;
  position: relative;
  width: 120px;
  height: 120px;
}

.profile-pic-block::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  background: inherit;
  filter: blur(3px);
  z-index: -1;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
/* Info do perfil */
.profile-info-block {
  display: flex;
  flex-direction: column;
  padding: 0px 20px;
}

.name-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-name {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px black;
}

.pronouns {
  font-size: 14px;
  color: #aaa;
  padding: 2px 8px;
  border-radius: 6px;
  text-shadow: 2px 2px 4px black;
}


.handle {
  margin-top: 6px;
  font-size: 14px;
  color: #aaa;
  text-shadow: 2px 2px 4px black;
}

.profile-stats {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  font-size: 14px;
  color: #ccc;
  text-shadow: 2px 2px 4px black;
}

.profile-stats strong {
  color: #4A90E2;
}


.action-buttons {
  margin-top: 0px;
  display: flex;
  gap: 12px;
}

.action-buttons button {
  background: transparent;
  color: #4A90E2;
  border: 1px solid #4A90E2;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  font-size: 16px;
  backdrop-filter: blur(8px);
}

.action-buttons button:hover {
  background-color: #4A90E2;
  color: #fff;
}

/* Corpo do perfil */
.profile-body {
  flex: 1;
  display: flex;
  overflow: hidden; /* Impede que o mural ultrapasse */
}

/* Sidebar (menu à esquerda) */
.profile-menu {
  width: 180px;
  height: 880px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #333;
  background: #141414a1;
  backdrop-filter: blur(8px);
  top: 140px; /* Alinha abaixo do header */
  align-self: flex-start;
}


.menu-item {
  background: transparent;
  border-bottom: 1px solid #2b2b2b;
  border-top: none;
  border-left: none;
  border-right: none;
  color: #ffffff;
  padding: 8px;
  cursor: pointer;
  text-align: left;
  transition: 0.3s;
  font-size: 21px;
  display: flex;
}

.menu-item i {
  display: none;
}

.menu-item:hover {
  background-color: #4A90E2;
  color: #fff;
}

/* Conteúdo principal que rola */
.mural-tab {
  flex: 1;
  background: rgba(20, 20, 20, 0.582);
  backdrop-filter: blur(8px);
  overflow-y: auto; /* Scroll só nos posts */
  padding-right: 10px;
  padding-left: 10px;
  height: 100%;
  
}
/* Scroll estilizado */
.mural-tab::-webkit-scrollbar {
  width: 12px;
}

.mural-tab::-webkit-scrollbar-track {
  background: transparent; /* trilho invisível */
}

.mural-tab::-webkit-scrollbar-thumb {
  background: rgba(74, 144, 226, 0.6); /* azul suave */
  border-radius: 10px;
  border: 3px solid transparent;
  background-clip: content-box;
}

.mural-tab::-webkit-scrollbar-thumb:hover {
  background: rgba(74, 144, 226, 0.9);
    background-clip: content-box;
}

.mural-tab h3 {
  text-align: center;
  background-color: #00000000;
  padding: 20px;
  border-bottom: 1px solid #2c2c2c;
  margin-bottom: 10px;
}






.amigos-tab {
  flex: 1;
  background: rgba(20, 20, 20, 0.582);
  backdrop-filter: blur(8px);
  overflow-y: auto; /* Scroll só nos posts */
  padding-right: 10px;
  padding-left: 10px;
  height: 100%;
  
}
/* Scroll estilizado */
.amigos-tab::-webkit-scrollbar {
  width: 12px;
}

.amigos-tab::-webkit-scrollbar-track {
  background: transparent; /* trilho invisível */
}

.amigos-tab::-webkit-scrollbar-thumb {
  background: rgba(74, 144, 226, 0.6); /* azul suave */
  border-radius: 10px;
  border: 3px solid transparent;
  background-clip: content-box;
}

.amigos-tab::-webkit-scrollbar-thumb:hover {
  background: rgba(74, 144, 226, 0.9);
    background-clip: content-box;
}

.amigos-tab h3 {
  text-align: center;
  background-color: #00000000;
  padding: 20px;
  border-bottom: 1px solid #2c2c2c;
  margin-bottom: 10px;
}

/* Status box */
.status-box {
  background: #2c2c2c;
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  border-left: 5px solid #4A90E2;
  margin: 20px;
}

.status-text {
  font-size: 15px;
  color: #eee;
  margin-top: 4px;
}

/* Grid dos posts */
.mural-masonry {
  column-count: 3; /* quantas colunas no desktop */
  column-gap: 20px;
  padding: 20px;
}

.post-card {
  display: inline-block; /* importante para colunas */
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid; /* impede quebra do card entre colunas */
}

/* Responsivo */
@media (max-width: 900px) {
  .mural-masonry {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .mural-masonry {
    column-count: 1;
  }
}
.mural-masonry {
  column-count: 2; /* sempre 2 colunas */
  column-gap: 20px;
  padding: 20px;
}

.post-card {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid; /* evita quebra entre colunas */
}


.post-card {
  border-radius: 10px;
  min-height: 130px;
  background: rgba(20, 20, 20, 0.582);
  backdrop-filter: blur(8px);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  padding: 20px;
}

.post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.profile-post-info {
  display: flex;
  align-items: center;
}

.user-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 8px;
}

.username {
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
}

.dots {
  font-size: 20px;
  color: #cacaca;
  cursor: pointer;
}

.post-content p {
  margin: 12px 0;
  color: #cacaca;
  font-size: 15px;
}

.post-image {
  width: 100%;
  height: 300px; /* você pode ajustar */
  border-radius: 10px;
  object-fit: cover;
}

.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-actions button {
  background: none;
  border: none;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  margin-right: 10px;
}

.post-actions button:hover {
  color: #e91e40;
}

.post-date {
  font-size: 12px;
  color: #999;
}


/* Tabs */
.tab {
  display: none;
}

.tab.active {
  display: block;
}


.visao-tab {
  flex: 1;
  background: rgba(20, 20, 20, 0.582);
  backdrop-filter: blur(8px);
  overflow-y: auto; /* Scroll só nos posts */
  padding-right: 10px;
  padding-left: 10px;
  height: 100%;
  
}
/* Scroll estilizado */
.visao-tab::-webkit-scrollbar {
  width: 12px;
}

.visao-tab::-webkit-scrollbar-track {
  background: transparent; /* trilho invisível */
}

.visao-tab::-webkit-scrollbar-thumb {
  background: rgba(74, 144, 226, 0.6); /* azul suave */
  border-radius: 10px;
  border: 3px solid transparent;
  background-clip: content-box;
}

.visao-tab::-webkit-scrollbar-thumb:hover {
  background: rgba(74, 144, 226, 0.9);
    background-clip: content-box;
}

.visao-tab h3 {
  text-align: center;
  background-color: #00000000;
  padding: 20px;
  border-bottom: 1px solid #2c2c2c;
  margin-bottom: 10px;
}

.gostos-tab {
  flex: 1;
  background: rgba(20, 20, 20, 0.582);
  backdrop-filter: blur(8px);
  overflow-y: auto; /* Scroll só nos posts */
  padding-right: 10px;
  padding-left: 10px;
  height: 100%;
  
}
/* Scroll estilizado */
.gostos-tab::-webkit-scrollbar {
  width: 12px;
}

.gostos-tab::-webkit-scrollbar-track {
  background: transparent; /* trilho invisível */
}

.gostos-tab::-webkit-scrollbar-thumb {
  background: rgba(74, 144, 226, 0.6); /* azul suave */
  border-radius: 10px;
  border: 3px solid transparent;
  background-clip: content-box;
}

.gostos-tab::-webkit-scrollbar-thumb:hover {
  background: rgba(74, 144, 226, 0.9);
    background-clip: content-box;
}

.gostos-tab h3 {
  text-align: center;
  background-color: #00000000;
  padding: 20px;
  border-bottom: 1px solid #2c2c2c;
  margin-bottom: 10px;
}

.deps-tab {
  flex: 1;
  background: rgba(20, 20, 20, 0.582);
  backdrop-filter: blur(8px);
  overflow-y: auto; /* Scroll só nos posts */
  padding-right: 10px;
  padding-left: 10px;
  height: 100%;
    position: relative; /* Importante para que o botão se posicione dentro desta área */
  
}
/* Scroll estilizado */
.deps-tab::-webkit-scrollbar {
  width: 12px;
}

.deps-tab::-webkit-scrollbar-track {
  background: transparent; /* trilho invisível */
}

.deps-tab::-webkit-scrollbar-thumb {
  background: rgba(74, 144, 226, 0.6); /* azul suave */
  border-radius: 10px;
  border: 3px solid transparent;
  background-clip: content-box;
}

.deps-tab::-webkit-scrollbar-thumb:hover {
  background: rgba(74, 144, 226, 0.9);
    background-clip: content-box;
}

.deps-tab h3 {
  text-align: center;
  background-color: #00000000;
  padding: 20px;
  border-bottom: 1px solid #2c2c2c;
  margin-bottom: 10px;
}

.links-tab {
  flex: 1;
  background: rgba(20, 20, 20, 0.582);
  backdrop-filter: blur(8px);
  overflow-y: auto; /* Scroll só nos posts */
  padding-right: 10px;
  padding-left: 10px;
  height: 100%;
  
}
/* Scroll estilizado */
.links-tab::-webkit-scrollbar {
  width: 12px;
}

.links-tab::-webkit-scrollbar-track {
  background: transparent; /* trilho invisível */
}

.links-tab::-webkit-scrollbar-thumb {
  background: rgba(74, 144, 226, 0.6); /* azul suave */
  border-radius: 10px;
  border: 3px solid transparent;
  background-clip: content-box;
}

.links-tab::-webkit-scrollbar-thumb:hover {
  background: rgba(74, 144, 226, 0.9);
    background-clip: content-box;
}

.links-tab h3 {
  text-align: center;
  background-color: #00000000;
  padding: 20px;
  border-bottom: 1px solid #2c2c2c;
  margin-bottom: 10px;
}

.about-box {
  padding: 20px 10px;
  margin-bottom: 10px;
  background: rgba(20, 20, 20, 0.582);
  backdrop-filter: blur(8px);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.about-container {
  padding: 5px;
}

.link-box {
  background-color: #4A90E2;
  padding: 20px 10px;
  margin-bottom: 10px;
  background: rgba(20, 20, 20, 0.582);
  backdrop-filter: blur(8px);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  
}

.link-box a {
  color: #aaa;
  text-decoration: none;
  padding: 20px;
  display: block;  
}
.link-box a:hover {
  color: #aaa;
  text-decoration: underline;
  transition: 0.3s;
}


#searchResults {
  position: fixed;
  top: 60px; /* ajuste baseado na altura da sua navbar */
  left: 33%;
  transform: translateX(-50%);
  width: 320px;
  background: rgba(20, 20, 20, 0.61);
  backdrop-filter: blur(8px);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  z-index: 9999;
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 250px;
  overflow-y: auto;
  display: none;
}
#searchResults::-webkit-scrollbar {
        display: none;
  }

#searchResults.visible {
  display: block;
}

#searchResults li {
  padding: 12px 16px;
  border: 1px solid #2a2a2a;
  cursor: pointer;
  transition: background 0.2s ease;
}

#searchResults li:hover {
  background: rgba(20, 20, 20, 0.747);
  color: #007bff;
  backdrop-filter: blur(22px);
}



@media (max-width: 768px) {
  body {
    margin-bottom: 70px; /* Espaço para navbar bottom */
  }
  
.full-profile-container {
  display: grid;
  grid-template-columns: 180px 1fr; /* barra lateral 180px, conteúdo principal o resto */
  grid-template-rows: auto 1fr;    /* header tem altura automática, o resto ocupa */
  grid-template-areas:
    "header header"
    "menu content";
  width: 1050px;
  height: 520px;
  margin: 80px auto 0 auto;
  background: rgba(20, 20, 20, 0.247);
  backdrop-filter: blur(8px);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
}

/* Header ocupa topo, estica nas 2 colunas */
.profile-header {
  grid-area: header;
  display: flex;
  padding: 30px;
  gap: 20px;
  background: rgba(20, 20, 20, 0.61);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-shrink: 0;
}

/* Menu fica embaixo do header, à esquerda */
.profile-menu {
  grid-area: menu;
  width: 180px;
  background: rgba(20, 20, 20, 0.63);
  backdrop-filter: blur(8px);
  border-right: 1px solid #333;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

/* Conteúdo principal à direita */
.profile-body {
  grid-area: content;
  display: flex;
  overflow: hidden;
  flex-direction: column;
}

  #searchResults {
    left: 50%;             /* centraliza horizontalmente */
    top: 50px;             /* um pouco mais perto do topo */
    width: 60vw;           /* ocupa 90% da largura da viewport */
    max-height: 200px;     /* altura menor pra caber melhor */
    transform: translateX(-50%);
    font-size: 14px;       /* texto um pouco menor */
    border-radius: 10px;
    padding: 0;
    font-size: 18px;
    background-color: #2b2b2b;
  }

  #searchResults li {
    padding: 10px 14px;
  }
}


















































.profile-header::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05); /* dá algo pra sombra "segurar" */
  mask: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  z-index: 0;
}


.profile-header.shrink::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 18px;
  background: #141414;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 1) 100%);
  z-index: 0;
}

.profile-header > * {
  position: relative;
  z-index: 1;
}


/* Full Profile Container with Glassmorphism */
.full-profile-container {
  width: 1050px;
  height: 520px;
  margin: 0 auto;
  background: rgba(20, 20, 20, 0.247);
  backdrop-filter: blur(8px);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-left: 250px;
  margin-top: 80px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Profile Header - Fixed Top */
.profile-header {
  display: flex;
  padding: 30px 30px 20px 30px;
  gap: 20px;
  background: rgba(20, 20, 20, 0.61);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-shrink: 0;
}

/* Status Indicators */
.status-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 8px;
}

.status-indicator.online {
  background-color: #28a745;
  animation: pulse-green 2s infinite;
}

.status-indicator.away {
  background-color: #ffc107;
}

.status-indicator.offline {
  background-color: #dc3545;
}

@keyframes pulse-green {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.status-text.online { color: #28a745; font-weight: bold; }
.status-text.away { color: #ffc107; font-weight: bold; }
.status-text.offline { color: #dc3545; }

/* Body Background Overlay */
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
  pointer-events: none;
}

/* Follow Button States */


/* Depoimentos Styles - Enhanced with Glassmorphism */
.depoimento-form {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.depoimento-form h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2em;
  font-weight: 600;
}

.depoimento-form textarea {
  width: 100%;
  min-height: 100px;
  padding: 12px;
  border: 1px solid (255, 255, 255, 0.2);
  border-radius: 8px;
  resize: vertical;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  transition: border-color 0.3s ease;
  background: rgba(40, 40, 40, 0.8);
  color: #fff;
  backdrop-filter: blur(4px);
}

.depoimento-form textarea:focus {
  border-color: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.2);
}

.depoimento-form textarea::placeholder {
  color: #aaa;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.char-count {
  font-size: 12px;
  color: #aaa;
  font-weight: 500;
}

.btn-enviar-depoimento {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-enviar-depoimento:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,123,255,0.4);
}

.btn-enviar-depoimento:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.depoimento-card {
  background: rgba(20, 20, 20, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease-out;
}

.depoimento-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.depoimento-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.autor-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.autor-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.autor-pic:hover {
  border-color: #007bff;
}

.autor-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.autor-nome {
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.autor-nome:hover {
  color: #007bff;
}

.depo-time {
  font-size: 12px;
  color: #aaa;
}

.delete-depo-btn {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.delete-depo-btn:hover {
  background: rgba(220, 53, 69, 0.2);
  transform: scale(1.1);
}

.depoimento-content p {
  margin: 0;
  color: #fff;
  line-height: 1.6;
  font-size: 15px;
}

.empty-depoimentos {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
  background-color: transparent;
  border-radius: 16px;
  margin: 20px 0;
}

.empty-depoimentos .empty-icon {
  font-size: 3em;
  color: #555;
  margin-bottom: 20px;
}

.empty-depoimentos h3 {
  margin-bottom: 10px;
  color: #fff;
}

/* Links Styles - Enhanced with Glassmorphism */
.link-box {
  margin-bottom: 12px;
}

.user-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: transparent;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  gap: 12px;
}

.user-link:hover {
  border-color: #007bff;
  color: #007bff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,123,255,0.2);
  background: rgba(0, 123, 255, 0.1);
}

.user-link i:first-child {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.user-link span {
  flex: 1;
  font-weight: 600;
}

.link-arrow {
  font-size: 12px !important;
  opacity: 0.7;
}

.empty-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
  background-color: transparent;
  border-radius: 16px;
  margin: 20px 0;
}

.empty-links .empty-icon {
  font-size: 3em;
  color: #555;
  margin-bottom: 20px;
}

.empty-links h3 {
  margin-bottom: 10px;
  color: #fff;
}

/* Social Media Link Colors - Enhanced for Dark Theme */
.user-link:hover .fa-instagram {
  color: #E4405F;
}

.user-link:hover .fa-twitter {
  color: #1DA1F2;
}

.user-link:hover .fa-tiktok {
  color: #ff0050;
}

.user-link:hover .fa-youtube {
  color: #FF0000;
}

.user-link:hover .fa-github {
  color: #fff;
}

.user-link:hover .fa-linkedin {
  color: #0077B5;
}

.user-link:hover .fa-discord {
  color: #7289DA;
}

.user-link:hover .fa-spotify {
  color: #1DB954;
}

/* Loading States - Dark Theme */
.loading-container, .error-container, .empty-posts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  min-height: 200px;
  background-color: transparent;
  border-radius: 16px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.empty-icon, .error-icon {
  font-size: 3.5em;
  color: #555;
  margin-bottom: 20px;
}

.error-icon {
  color: #dc3545;
}

.empty-posts h3, .error-container h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.3em;
}

.empty-posts p, .error-container p {
  color: #aaa;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-primary, .btn-secondary {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  backdrop-filter: blur(8px);
}

.btn-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,123,255,0.4);
}

.btn-secondary {
  background: rgba(108, 117, 125, 0.8);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(84, 91, 98, 0.9);
  transform: translateY(-2px);
}

/* Post Cards - Enhanced Dark Glassmorphism */
.post-card {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

.post-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Post Header */
.post-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-pic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s ease;
}

.user-pic:hover {
  border-color: #007bff;
}

.user-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.display-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.1em;
  line-height: 1.2;
}

.username-small {
  color: #aaa;
  font-size: 0.9em;
  font-weight: 500;
}

.post-time {
  color: #999;
  font-size: 0.85em;
  font-weight: 400;
}

.post-options {
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.post-options:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Post Content */
.post-content {
  margin-bottom: 15px;
  line-height: 1.6;
}

.post-content p {
  margin: 0;
  color: #fff;
  font-size: 1.05em;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.empty-content {
  color: #999;
  font-style: italic;
}

.hashtag {
  color: #007bff;
  font-weight: 600;
  cursor: pointer;
}

.hashtag:hover {
  text-decoration: underline;
}

.mention {
  color: #007bff;
  font-weight: 600;
  cursor: pointer;
}

.mention:hover {
  text-decoration: underline;
}

.post-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.post-content a:hover {
  text-decoration: underline;
}

/* Post Images */
.post-image-container {
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.post-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.post-image:hover {
  transform: scale(1.02);
}

/* Post Actions */
.post-actions {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 400px;
  margin: 0 auto;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: 0.95em;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.action-btn i {
  font-size: 1.1em;
}

.action-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

.action-btn.loading i {
  animation: spin 1s linear infinite;
}

/* Like Button Specific */
.like-btn:hover {
  color: #e91e63 !important;
  background: rgba(233, 30, 99, 0.2) !important;
}

.like-btn.liked {
  color: #e91e63 !important;
}

.like-btn.has-likes .action-count {
  font-weight: 700;
}

/* Other Action Buttons */
.comment-btn:hover {
  color: #1da1f2 !important;
  background: rgba(29, 161, 242, 0.2) !important;
}

.share-btn:hover {
  color: #17bf63 !important;
  background: rgba(23, 191, 99, 0.2) !important;
}

.bookmark-btn:hover {
  color: #f39c12 !important;
  background: rgba(243, 156, 18, 0.2) !important;
}

.action-count {
  font-size: 0.9em;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

/* Load More Button */
.load-more-container {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
}

.load-more-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.load-more-btn:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,123,255,0.4);
}

.load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.end-posts {
  text-align: center;
  color: #28a745;
  font-weight: 600;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Image Modal - Enhanced for Dark Theme */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 20px;
  box-sizing: border-box;
  backdrop-filter: blur(16px);
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.5);
  max-width:600px;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

/* Success Message Animation */
.success-message {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Hover effects for better UX */
.depoimento-card:hover .autor-pic {
  transform: scale(1.05);
}

.user-link:hover i:first-child {
  transform: scale(1.1);
}

/* Loading spinner for buttons */
.btn-enviar-depoimento i.fa-spinner {
  animation: spin 1s linear infinite;
}

/* Enhanced visual feedback */
.depoimento-form textarea:valid {
  border-color: #4A90E2;
}

.about-title {
  color: #ffffff;
  font-weight: bold;
}

.depoimento-form textarea:invalid:not(:placeholder-shown) {
  border-color: #fff;
}

/* Smooth transitions for all interactive elements */
* {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Pulse animation for important buttons */
.btn-enviar-depoimento:not(:disabled):hover {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 123, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

/* Custom scrollbar for better aesthetics - Dark Theme */
.depoimento-form textarea::-webkit-scrollbar {
  width: 6px;
}

.depoimento-form textarea::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.depoimento-form textarea::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.depoimento-form textarea::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Enhanced focus states for accessibility */
.btn-enviar-depoimento:focus,
.user-link:focus,
.delete-depo-btn:focus,
.modal-close:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* Subtle animations for content loading */
.depoimento-card,
.user-link {
  animation: fadeInUp 0.5s ease-out;
}

.depoimento-card:nth-child(even) {
  animation-delay: 0.1s;
}

.user-link:nth-child(even) {
  animation-delay: 0.1s;
}

/* Improved typography hierarchy */
.depoimento-form h4,
.empty-depoimentos h3,
.empty-links h3,
.empty-posts h3 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.depoimento-content p,
.empty-depoimentos p,
.empty-links p,
.empty-posts p {
  line-height: 1.7;
  font-weight: 400;
}








































/* Mobile First CSS - RealMe Profile */

/* Base styles para mobile */


/* Breakpoint para telas muito pequenas */
@media (max-width: 400px) {
  .profile-name {
    font-size: 20px;
  }
  
  .profile-pic {
    width: 80px;
    height: 80px;
  }
  
  .action-buttons button {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .mural-masonry {
    column-count: 1;
    padding: 12px 0;
  }
  
  .menu-item {
    font-size: 13px;
    padding: 10px 6px;
  }
  .last-update-area {
    display: none !important;
  }
}

.comentario-item {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.comentario-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  margin-bottom: 10px;
}

.comentario-header img.comentario-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.comentario-meta {
  display: flex;
  flex-direction: column;
}

.comentario-username {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.comentario-time {
  font-size: 12px;
  color: #333;
}

.comentario-text {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

.input-comentario {
  width: 100%;
  padding: 10px 15px;
  border-radius: 20px 0px 0px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.comentarios {
  overflow-y: auto;
  max-height: 200px; 
}

.comentarios::-webkit-scrollbar {
  width: 6px;
  margin: 2px;
}
.comentarios::-webkit-scrollbar-track {
  background: transparent;
}
.comentarios::-webkit-scrollbar-thumb {
  background: #4A90E2;
  border-radius: 3px;
}



.btn-enviar-comentario {
  background: #4A90E2;
  color: #fff;
  padding: 10px 20px;
  border-radius: 0px 20px 20px 0px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}


.profile-header::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 38px;
  background: #141414;
background: linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 1) 100%);
  z-index: 0;
}


.profile-header.shrink {
  padding: 12px 16px !important;
  min-height: 0 !important;
  height: 56px !important;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  /* background: rgba(20, 20, 20, 0.92) !important; */
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.profile-header.shrink .profile-pic-block {
  width: 36px !important;
  height: 36px !important;
}
.profile-header.shrink .profile-pic {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
}
.profile-header.shrink .profile-info-block {
  padding: 0 8px !important;
}
.profile-header.shrink .profile-name {
  font-size: 16px !important;
  margin-top: 8px;
  margin-left: 4px;
}
.profile-header.shrink .handle,
.profile-header.shrink .profile-stats,
.profile-header.shrink .action-buttons {
  display: none !important;

}
.full-profile-container.shrink-header {
  margin-top: 20px !important;
  height: calc(100vh - 100px) !important;
  margin-top: 80px !important;
}
.mural-tab.shrink-header {
  padding-top: 0 !important;
}

.profile-header,
.profile-header .profile-pic-block,
.profile-header .profile-pic,
.profile-header .profile-info-block,
.profile-header .profile-name {
  transition: all 0.6s cubic-bezier(.4,0,.2,1);
}




.stats-link {
  color: #ddd;
  text-decoration: none;
}





@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.548);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 20px;
  box-sizing: border-box;
  backdrop-filter: blur(16px);
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-image {
  max-width: 600px !important;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.5);
  max-width:600px;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

/* Success Message Animation */
.success-message {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}




.note-bubble {
  position: fixed;
  top: 70px;
  left: 230px;
  background: #9e9e9e;
  background: linear-gradient(342deg, rgba(158, 158, 158, 1) 0%, rgba(56, 56, 56, 1) 8%, rgba(56, 56, 56, 1) 84%, rgba(171, 171, 171, 1) 100%);
  color: white;
  padding: 14px 20px;
  border-radius: 18px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.726);
  font-size: 14px;
  max-width: 250px;
  animation: fadeInUpNote 0.5s ease-out;
  z-index: 10000000;
}

.note-bubble::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 120px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #383838;
  pointer-events: none;
}

.note-bubble::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 140px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #383838;
  pointer-events: none;
}


.note-bubble {
  transition: opacity 0.4s, transform 0.4s;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.note-bubble.fade-out {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7);
}


.sobre-content {
  display: flex;
  gap: 80px;
}

.iframe-btn {
  margin-top: 1px;
  border: none;
  border-radius: 50px;
  padding: 6px 10px;
  width: fit-content;
  background-color: #33333377;
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
}

.music {
  display: flex;
  padding: 4px;
}

.music span {
  margin-left: 8px;
  margin-top: 5px;
  font-size: 14px;
  color: #ccc;
  text-shadow: 2px 2px 4px black;
}


@media (max-width: 768px) {
.sobre-content {
  display: flex;
  gap: 80px;
}

.iframe-btn {
  margin-top: 1px;
  border: none;
  border-radius: 50px;
  padding: 6px 10px;
  width: fit-content;
  background-color: #33333377;
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
}

.music {
  display: flex;
  padding: 4px;
}

.music span {
  margin-left: 8px;
  margin-top: 5px;
  font-size: 14px;
  color: #ccc;
  text-shadow: 2px 2px 4px black;
}


.navbar-top {
  display: flex;
  justify-content: space-between; /* joga um grupo p/ esquerda e outro p/ direita */
  align-items: center;            /* centraliza na vertical */
}

.tabnav {
    text-align: center;
    padding: 8px 12px;
}

.top-left, .top-right {
  color: white;
  text-decoration: none;
  display: flex;
}

.top-left i, .top-right i {
  margin-right: 8px;
  font-size: 18px;
}
 .navbar-top button {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
 }

.profile-menu-area {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-start;
}

.profile-menu {
    display: flex !important;
}

.profile-menu p {
    display: none;
}

.profile-menu i {
    display: flex;
}

.profile-body {
    display: flex;
    flex-direction: column !important;
}

.full-profile-container {
    display: flex;
    flex-direction: column !important;
}

.profile-menu-area {
    margin-top: 0 !important;
}
}