@charset "UTF-8";
/* ==========================================================================
   1. SETTINGS - Variáveis (Tokens de Design)
   ========================================================================== */
/* ==========================================================================
   2. BASE - Estilos de tags (body, h1, p), etc.
   ========================================================================== */
@font-face {
  font-family: "SF-Pro";
  src: url(assets/font/SF-Pro.ttf);
}
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "SF-Pro", sans-serif;
  color: #1f2937;
  background-color: #f9fafb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   3. LAYOUT - Estrutura principal da página
   ========================================================================== */
main {
  display: flex;
  height: 100dvh;
}

.side_container {
  width: 300px;
  flex-shrink: 0;
  height: 100%;
  background-color: #ffffff;
  padding: 24px 0;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow-y: auto;
}

.dash_container {
  flex-grow: 1;
  height: 100%;
  overflow-y: auto;
  padding: 32px;
}

/* ==========================================================================
   4. COMPONENTS - Estilos dos elementos da UI (usando as classes originais)
   ========================================================================== */
.side_container .actions_box .download_button, .side_container .actions_box .upload_button {
  width: 230px;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.side_container .history_box .archive_active, .side_container .history_box .archive {
  width: 230px;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.side_container h1 {
  font-size: 18px;
  font-weight: 600;
  width: 230px;
  margin-bottom: 12px;
}
.side_container .user_info_box {
  width: 230px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.side_container .user_info_box .user_display {
  display: flex;
  align-items: center;
  gap: 10px;
}
.side_container .user_info_box .user_display img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.side_container .user_info_box .user_display p {
  font-size: 16px;
}
.side_container .user_info_box .exit_button {
  color: #6b7280;
  cursor: pointer;
}
.side_container .actions_box .upload_button {
  background-color: #3b82f6;
  color: transparent;
  border-radius: 25px;
  text-align: center;
}
.side_container .actions_box .download_button {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  color: #1f2937;
  margin-top: 12px;
  border-radius: 25px;
}
.side_container .history_box .history_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.side_container .history_box .archive {
  border: 1px solid #e5e7eb;
}
.side_container .history_box .archive_active {
  background-color: #f3f4f6;
}

.content-example h1 {
  font-size: 32px;
  margin-bottom: 24px;
}
.content-example p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 1000px;
}

/* ==========================================================================
   5. DASHBOARD COMPONENTS - Ajustado Fielmente à Imagem Final
   ========================================================================== */
.dash_container > h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 24px 0;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.kpi-card {
  text-align: center;
}
.kpi-card .kpi-title {
  font-size: 16px;
  color: #1f2937;
  margin: 0 0 8px 0;
  font-weight: normal;
}
.kpi-card .kpi-value {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.card-row.three-cols {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.dashboard-section {
  margin-bottom: 24px;
}
.dashboard-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.info-card h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px 0;
}
.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-card ul li {
  font-size: 16px;
  color: #1f2937;
  font-weight: normal;
}

.champion-card {
  text-align: center;
}
.champion-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px 0;
}
.champion-card p {
  font-size: 16px;
  font-weight: normal;
  margin: 4px 0;
  color: #6b7280;
}

.feed-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1f2937;
  font-size: 16px;
}
.feed-list li::before {
  content: "🛒";
  font-size: 16px;
}

.content-example {
  display: none;
}

.top_dec {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: -1;
  pointer-events: none;
}

.upload_button::-webkit-file-upload-button {
    visibility: hidden;
}
.upload_button::before {
  content: 'Carregar Arquivo';
  display: inline-block;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: white;
  width: 100%;
}

.upload_button.uploading::before {
    content: 'Enviando...';
}

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