 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

:root {
  --bg-primary: #27272a;
  --bg-main: #ffffff;
  --bg-secondary: #f4f4f5;
  --bg-main-border: #E4E4E7;
  --bg-secondary-border: #e4e4e7;
  --bg-sidebar: white;
  --bg-skeleton: rgb(24 24 27 / 30%);
  --bg-nav-mobile: #ffffff;
  --text-sidebar: #081021;
  --text-secondary: #64748B;
}

.dark {
  --bg-primary: #3c83f6;
  --bg-main: #131313;
  --bg-secondary: #27272a;
  --bg-main-border: #1D1D1D;
  --bg-secondary-border: #333;
  --bg-sidebar: #0F0F0F;
  --bg-skeleton: #333;
  --bg-nav-mobile: #131313;
  --text-sidebar: #FFFFFF;
  --text-secondary: #A3A7AC;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-y: hidden;
 }

 .skeleton {
  background-color: var(--bg-skeleton);
  border-radius: 6px;
  animation: pulse 1.5s infinite;
}

/* Container principal */
.app-container {
  display: flex;
  min-height: 100vh;
  background-color: var(--bg-main);
}

/* Sidebar */
.sidebar {
  width: 280px;
  height: 100vh;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--bg-main-border);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
}

.sidebar-header-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-sidebar);
}

.sidebar-header-team {
  width: 100px;
  height: 8px;
  margin-top: 6px;
}

.sidebar-header-dot {
  position: relative;
  background: var(--bg-main);
  border: 1px solid var(--bg-main-border);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 62px;

  svg path {
    fill: var(--text-sidebar);
  }
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px;
}
.sidebar-content-item {
  width: 100%;
  height: 44px;
  border-radius: 99px; 
}

.sidebar-separator {
  width: 100%;
  height: 1px;
  background: var(--bg-main-border);
}

.sidebar-footer {
  padding: 24px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end; 
  justify-content: flex-start;
  align-self: self-end;
}

.sidebar-footer-user {
  display: flex;
  align-items: center;
  width: 100%;
}

.sidebar-footer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.sidebar-footer-name {
  width: 100px;
  height: 12px;
  margin-left: 12px;
}

.nav-mobile {
  display: none;
}

/* Conteúdo principal */
.main-content {
  flex: 1;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease-in-out;
}

.main-content-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.main-content-text-initial {
  display: flex;
  align-items: end;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary);
}

.main-content-text-second {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-sidebar) 
}

.loading-dots {
  display: inline-flex;
  margin-left: 2px;
  margin-bottom: 6px;
}

.dot {
  width: 3px;
  height: 3px;
  background-color: #6c757d;
  border-radius: 50%;
  margin: 0 2px;
  animation: loadingDots 1.5s infinite;
}

@media screen and (max-width: 1024px) {
  .sidebar {
      display: none;
  }
  .app-container {
      justify-content: center;
  }

  .main-content-text-second {
  font-size: 16px;
}

 .main-content-text-initial {
  font-size: 16px;
}

  .nav-mobile {
    width: 100%;
    padding: 12px 16px;
    border-radius: 16px;
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    background: var(--bg-nav-mobile);
    border-top: 1px solid var(--bg-main-border);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  }

  .nav-mobile-item {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    display: inline-block;
  }
}




@keyframes pulse {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0.5;
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes loadingDots {
  0%, 20% {
      opacity: 0.3;
      transform: scale(1);
  }
  50% {
      opacity: 1;
      transform: scale(1.2);
  }
  80%, 100% {
      opacity: 0.3;
      transform: scale(1);
  }
}



 /* loader inicial */
 .loader-container {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #FD593D 36.55%, #FD7A64 83.69%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 9999;
}

.loader-content {
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 12px;
}

.loader-text {
  color: white;
  font-size: 2rem;
  font-weight: 600;
}