:root {
  --font-primary: 'Sansation', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  font-family: var(--font-secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
}

.navbar-brand,
.navbar,
.side-nav-bar {
  font-family: var(--font-primary);
}

.btn {
  font-family: var(--font-primary);
  font-weight: 500;
}

/* =========================
   Navbar principal
   ========================= */
   .main-navbar {

    background-color: #0A3D2D !important;
    --bs-navbar-bg: #0A3D2D;
    --bs-navbar-color: #ffffff;
    --bs-navbar-hover-color: #00D084;
    --bs-navbar-active-color: #00D084;
  }
  
  /* =========================
     Sidebar
     ========================= */
  .side-nav-bar {
    background-color: #0A3D2D;
  }
  
  .side-nav-bar .nav-link,
  .side-nav-bar .btn {
    color: #ffffff;
  }
  
  .side-nav-bar .nav-link:hover,
  .side-nav-bar .btn:hover {
    color: #00D084;
  }
  
  /* =========================
     Restante do layout
     ========================= */

    
  .group {
    position: relative;
  }

.submenu-flyout {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  display: none;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.group:hover .submenu-flyout {
  display: block;
}

.menu-label {
  display: none;
  opacity: 0;
}

#sidebar.expanded {
  width: 250px;
}

#sidebar.expanded .menu-label {
  display: inline;
  opacity: 1;
}

.menu-container {
  position: relative;
}
#sidebar.expanded .submenu-flyout {
  display: none !important;
}

.navbar-user-info .navbar-user-info-text {
  font-size: 0.7rem;
  line-height: 0.3rem;
}

#sidebar .btn a.nav-link {
  color: #fff;
}

#sidebar .btn a.nav-link:hover {
  color: #000;
}

#sidebar #megaMenu .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
/* Fim CSS para barra de navegção lateral */

/* FOOTER */

.footer {
  background-color: #0A3D2D; /* secondary */
  color: #F2EADE;
  font-family: var(--font-secondary);
}

.footer-brand {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-text {
  font-size: 0.9rem;
  color: rgba(242, 234, 222, 0.8);
}

.footer-title {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: #00D084; /* primary */
}

.footer-links li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(242, 234, 222, 0.9);
  text-decoration: none;
}

.footer-links a:hover {
  color: #00D084;
  text-decoration: underline;
}

.footer-bottom {
  background-color: #082f23; /* tom intermediário */
  color: rgba(242, 234, 222, 0.7);
  font-size: 0.8rem;
}

