.elementor-108 .elementor-element.elementor-element-81f88d3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-108 .elementor-element.elementor-element-05aae35{z-index:999;}.elementor-108{margin:0px 0px 0px 260px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-05aae35 *//* ===================== */
/* 🎨 SIDEBAR */
/* ===================== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%); /* gradiente */
  color: #E2E8F0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0;
  box-shadow: 2px 0 12px rgba(0,0,0,0.3);
  font-family: "Inter", sans-serif;
  z-index: 1500;
}

/* Logo + título */
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  margin-bottom: 30px;
  margin-top: 20px;
}
.sidebar-logo img {
  border-radius: 50%;
}
.sidebar-logo span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

/* Links do menu */
.sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}
.sidebar-nav a:hover {
  background: #1E293B;
  color: #0EA5E9;
  border-left: 3px solid #0EA5E9;
}
.sidebar-nav a.active {
  background: #1E293B;
  color: #0EA5E9;
  border-left: 3px solid #0EA5E9;
}

/* Footer da sidebar */
.sidebar-footer {
  padding: 10px 20px;
}
.sidebar-footer a {
  color: #94A3B8;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.sidebar-footer a:hover {
  color: #F87171;
}

/* ===================== */
/* 🎨 BOTÃO HAMBÚRGUER */
/* ===================== */
.menu-toggle {
  display: none;
  position: fixed;
  top: 15px;
  right: 15px; /* aparece no canto direito */
  font-size: 20px;
  cursor: pointer;
  z-index: 2000;
  color: #fff;
  background: #0F172A;
  padding: 6px 10px;
  border-radius: 6px;
}

/* ===================== */
/* 🎨 RESPONSIVIDADE */
/* ===================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* mostra hambúrguer no mobile */
  }
  .sidebar {
    width: 100%;              /* ocupa 100% no mobile */
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  body.menu-open .sidebar {
    transform: translateX(0); /* abre o menu */
  }
  .sidebar-nav {
    margin-top: 60px;
    align-items: flex-start;
  }
  .sidebar-nav a {
    width: 100%;
    text-align: left;
    padding: 15px 25px;
    font-size: 18px;
  }
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.sidebar-user span {
  font-weight: 600;
}/* End custom CSS */