/* 🔧 Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* styles.css */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #1c1c1c, #2a2a2a);
  color: #f5f7fa;
  /* cinza neve */
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f5f7fa;
  /* cinza neve */
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  color: #1c1c1c;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.2em;
  margin: 0;
  color: #000;
}

.subtitle {
  font-size: 1em;
  color: #555;
}

.recent-projects h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.recent-projects ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.recent-projects li {
  background-color: #e9ecef;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-radius: 6px;
  font-weight: 500;
}

.btn {
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-all {
  background-color: #333;
  color: #f5f7fa;
}

.view-all:hover {
  background-color: #555;
}

.create-new {
  background-color: #007bff;
  color: #fff;
  display: block;
  width: 100%;
  margin-top: 20px;
}

.create-new:hover {
  background-color: #0056b3;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background-color: #f5f7fa;
  /* cinza neve */
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  color: #1c1c1c;
}

.modal-content h2 {
  margin-bottom: 20px;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.vozes-list label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 500;
  justify-content: flex-start;
  flex-direction: row;
  gap: 10px;
}

.vozes-list label input {
  width: max-content;
  margin: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.modal-conteudo {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.fechar-modal {
  float: right;
  font-size: 24px;
  cursor: pointer;
}