@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #121212;
  color: #f2f2f2;
}

.dark-mode body {
  background-color: #121212;
  color: #f2f2f2;
}

.login-container {
  width: 100%;
  max-width: 400px;
  margin: 80px auto;
  padding: 30px;
  background-color: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

.login-container .logo {
  text-align: center;
  color: #ffcc00;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-form input {
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  background-color: #2b2b2b;
  color: #f2f2f2;
  font-size: 16px;
}

.login-form input::placeholder {
  color: #aaa;
}

.login-form button {
  padding: 12px;
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.login-form button:hover {
  background-color: #e6b800;
}

.register-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #ffcc00;
  text-decoration: none;
  font-size: 14px;
}

.register-link:hover {
  text-decoration: underline;
}

/* Tema claro (opcional se for usar botão de alternar) */
.light-mode body {
  background-color: #f2f2f2;
  color: #111;
}

.light-mode .login-container {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.light-mode .login-form input {
  background-color: #f1f1f1;
  color: #111;
}

.light-mode .login-form button {
  background-color: #ffcc00;
  color: #000;
}

.light-mode .register-link {
  color: #ffcc00;
}
.curtida-container {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.curtir-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #888;
  transition: 0.3s;
}

.curtir-btn.curtido {
  color: var(--amarelo);
}
.foto-perfil-pequena {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 8px;
  border: 2px solid #FFD700; /* Borda amarelinha */
}

.foto-perfil-grande {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFD700;
  margin-bottom: 10px;
}
/* Importa Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.perfil {
  text-align: center;
  margin-bottom: 30px;
}

.foto-perfil-grande {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffc107;
  margin-bottom: 10px;
}

.bio {
  color: #ccc;
  margin-top: 10px;
}

.btn-editar {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffc107;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.btn-editar:hover {
  background-color: #e0a800;
}

.postagens {
  margin-top: 40px;
}

.card-postagem {
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  color: #000;
  background-color: #fff;
  transition: transform 0.2s;
}

.card-postagem:hover {
  transform: scale(1.02);
}

.info-usuario {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.foto-perfil-mini {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  border: 2px solid #ffc107;
}

textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  margin-bottom: 10px;
}

input[type="file"] {
  margin: 10px 0;
  color: #fff;
}

form.form-editar button {
  padding: 10px 20px;
  background-color: #ffc107;
  border: none;
  color: #000;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form.form-editar button:hover {
  background-color: #e0a800;
}
.mensagem {
  max-width: 70%;
  padding: 10px;
  border-radius: 12px;
  margin: 6px 0;
}

.enviada {
  background-color: #ffde59;
  align-self: flex-end;
  color: black;
}

.recebida {
  background-color: #2a2a2a;
  align-self: flex-start;
  color: white;
}
.notificacoes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.notificacao {
  display: flex;
  align-items: center;
  background: #1e1e1e;
  padding: 12px;
  border-radius: 12px;
  color: white;
  font-size: 14px;
}

.foto-perfil-mini {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.hora {
  margin-left: auto;
  font-size: 12px;
  color: #aaa;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #f0f0f0;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 70px;
  height: 100vh;
  background-color: #1c1c1c;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.sidebar a {
  color: #f0f0f0;
  font-size: 22px;
  margin: 20px 0;
  text-decoration: none;
}

.main-content {
  margin-left: 80px; /* espaço para o menu */
  padding: 20px;
  width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.dark-theme {
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  padding-left: 80px; /* Espaço para o menu lateral */
}

/* MENU LATERAL */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 70px;
  height: 100vh;
  background-color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  gap: 25px;
  z-index: 1000;
  border-right: 1px solid #222;
}

.sidebar a {
  color: #FFD700;
  font-size: 22px;
  transition: transform 0.2s;
}

.sidebar a:hover {
  transform: scale(1.2);
}

/* CONTEÚDO PRINCIPAL */
.main-content {
  max-width: 600px;
  margin: 20px auto;
  padding: 0 15px;
}

/* BOTÃO DE STORY */
.botao-story {
  display: inline-block;
  background-color: #FFD700;
  color: #000;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}
.botao-story:hover {
  background-color: #e6c200;
}

/* CAIXA DE NOVA POSTAGEM */
.post-box {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 15px;
  margin: 25px 0;
  box-shadow: 0 0 10px #00000060;
}

.post-box textarea {
  width: 100%;
  height: 80px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  resize: vertical;
  background: #111;
  color: #fff;
  font-size: 14px;
}

.post-box input[type="color"] {
  margin-top: 10px;
  border: none;
  background: none;
  cursor: pointer;
}

.post-box button {
  margin-top: 10px;
  background: #FFD700;
  color: #000;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}
.post-box button:hover {
  background: #e6c200;
}

/* CARD DE POSTAGEM */
.post-card {
  border-radius: 10px;
  padding: 15px;
  margin: 20px 0;
  color: #fff;
  box-shadow: 0 0 10px #00000070;
  transition: transform 0.2s;
}
.post-card:hover {
  transform: scale(1.01);
}

.post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.post-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFD700;
}

.post-actions {
  margin-top: 10px;
}

.post-actions i {
  color: #FFD700;
  font-size: 18px;
  margin-right: 10px;
  cursor: pointer;
}

.curtir {
  background: none;
  border: none;
  cursor: pointer;
}

.comentario {
  background: #111;
  padding: 6px 10px;
  border-radius: 6px;
  margin-top: 8px;
  font-size: 14px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .main-content {
    margin: 20px 10px;
    padding: 0 5px;
  }

  .sidebar {
    width: 55px;
  }

  body.dark-theme {
    padding-left: 65px;
  }
}
.foto-perfil-circulo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
}

.foto-com-story {
  border: 2px solid #00ff66; /* verde neon para quem tem story */
}
.painel-secretaria {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.botao-secretaria {
  padding: 12px 20px;
  background-color: #222;
  border: 1px solid #ffcc00;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.botao-secretaria:hover {
  background-color: #ffcc00;
  color: black;
}

