@font-face {
  font-family: "Via Appia";
  src: url("/assets/fonts/ViaAppia.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: #000;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-box {
  background-color: #1a1a1a;
  border: 3px solid #b8945a;
  border-radius: 12px;
  padding: 40px 30px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.auth-title {
  color: #b8945a;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: bold;
}

.form-control {
  border: 2px solid #b8945a;
  color: #fff;
  border-radius: 8px;
}

.form-control:focus {
  background-color: #111;
  color: #fff;
  border-color: #c9a76d;
  box-shadow: 0 0 5px #c9a76d;
}

.form-control::placeholder {
  color: rgb(255, 255, 255);
}

.btn-test {
  background-image: url("/assets/btn-test.png");
  background-repeat: no-repeat;
  background-size: 100% 100%; /* estica só na largura */
  background-position: center;
  background-color: transparent;

  font-family: "Via Appia", serif;
  font-weight: bolder; /*All options are: normal, bold, bolder, lighter, 100, 200, 300, 400, 500, 600, 700, 800, 900 */
  font-size: 1.5rem;
  color: #000;
  width: 300px;
  height: 100px;
  padding: 12px;
  border-radius: 8px;
  margin-top: 15px;
  transition: 0.3s;
}

.btn-test:hover {
  color: #c9a76d;
  transform: translateY(-2px);
}

.btn-gold {
  font-family: "Via Appia", serif;
  font-weight: bolder; /*All options are: normal, bold, bolder, lighter, 100, 200, 300, 400, 500, 600, 700, 800, 900 */
  font-size: 1.5rem;
  background-color: #b8945a;
  color: #000;
  border: 2px solid #f5deb3;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  margin-top: 15px;
  transition: 0.3s;
}

.btn-gold:hover {
  background-color: #c9a76d;
  transform: translateY(-2px);
}

/* Modal estilo premium */
.modal-content {
  background-color: #1a1a1a;
  border: 2px solid #b8945a;
  border-radius: 12px;
  color: #fff;
}

.modal-header {
  border-bottom: 1px solid #b8945a;
  color: #b8945a;
}

.modal-footer {
  border-top: 1px solid #b8945a;
}

/* Chat box */
.chat-box {
  background-color: #000;
  border: 2px solid #b8945a;
  border-radius: 10px;
  height: 300px;
  overflow-y: auto;
  padding: 10px;
  font-size: 0.9rem;
}

.chat-message {
  margin-bottom: 10px;
}

.chat-user {
  color: #c9a76d;
  font-weight: bold;
}

.chat-bot {
  color: #b8945a;
  font-style: italic;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1; /* fica atrás de tudo */
}

/* AGENDA */
.focus-container {
  background: linear-gradient(135deg, #b8945a 0%, rgba(118, 75, 162, 0.1) 100%);
  border: 3px solid #b8945a;
  border-radius: 12px;
  padding: 5px;
  margin: 10px;
}

.todo-container {
  background: linear-gradient(135deg, #b8945a 0%, rgba(118, 75, 162, 0.1) 100%);
  border: 3px solid #b8945a;
  border-radius: 12px;
  padding: 5px;
  margin: 10px;
}

.agenda-container {
  background: linear-gradient(135deg, #b8945a 0%, rgba(118, 75, 162, 0.1) 100%);
  border: 3px solid #b8945a;
  border-radius: 12px;
  padding: 5px;
  margin: 10px;
}
