@charset "UTF-8";
/* RESET SIMPLES */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* TIPOGRAFIA BASE */
body {
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #203146;
}

/* PARÁGRAFOS */
p {
  margin-bottom: 1em;
}

/* LINKS */
a {
  color: #203146;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* LISTAS */
ul, ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}

/* IMAGENS */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* BOTÕES */
button {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
}

/* CONTAINER GERAL */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* GRID FLEXÍVEL */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

.col {
  flex: 1;
  padding: 1rem;
}

/* HEADER */
header {
  padding: 1rem 0;
  background-color: #203146;
  color: white;
  text-align: center;
}
header h1 {
  font-size: 1.8rem;
  margin: 0;
}

/* FOOTER */
footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

/* MAIN */
main {
  padding: 2rem 0;
}

body {
  background-color: #f8f9fa;
  font-family: "Segoe UI", sans-serif;
}

.login-box {
  max-width: 400px;
  margin: 100px auto;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.login-box h4 {
  margin-bottom: 1.5rem;
  color: #203146;
}
.login-box input[type=password] {
  margin-bottom: 1rem;
}
.login-box button {
  background-color: #203146;
  border: none;
}
.login-box button:hover {
  background-color: #101923;
}

.topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: white;
  border-bottom: 1px solid #ddd;
}
.topo .logo {
  height: 50px;
}
.topo .logo svg {
  height: 100%;
  width: auto;
  display: block;
}
.topo .titulo h1 {
  font-size: 1.5rem;
  color: #203146;
}
.topo .titulo h1 span {
  font-weight: normal;
  font-size: 1rem;
  color: #777;
  margin-left: 0.5rem;
}
.topo .logout a.btn-logout {
  background-color: #203146;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.topo .logout a.btn-logout:hover {
  background-color: #101923;
}

#download-options a {
  text-decoration: none;
}
#download-options a:hover {
  text-decoration: none;
}

.btn-primary {
  background-color: #203146;
  border-color: #203146;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #15202e;
  border-color: #15202e;
  color: #fff;
}

.btn-outline-djb {
  background-color: transparent;
  border: 2px solid #203146;
  color: #203146;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-outline-djb:hover, .btn-outline-djb:focus {
  background-color: #203146;
  color: #fff;
  text-decoration: none;
}

.admin-foto .col {
  max-width: 280px;
  flex: 1 1 auto;
}

.admin-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  /* sombrinha subtil */
  z-index: 1000;
}

/*# sourceMappingURL=style.css.map */
