/* Cabeçalho padrão aplicado nas páginas internas */
.section-shell{
  margin:0 0 20px;
}
.section-shell-header{
  background:rgba(0,97,175,.28);
  color:#ffffff;
  padding:20px 30px;
  border-radius:16px;
  margin-bottom:20px;
  box-shadow:0 10px 25px rgba(0,0,0,.22);
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  flex-wrap:wrap;
  border:1px solid rgba(44,62,80,.9);
}
.section-shell-left{
  flex:1 1 720px;
  min-width:280px;
}
.section-shell-right{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.section-shell-header .back-btn.section-shell-back-btn{
  background:transparent;
  color:#ffffff;
  border:1px solid rgba(255,255,255,.2);
  padding:8px 15px;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  transition:.25s;
}
.section-shell-header .back-btn.section-shell-back-btn:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.4);
}
.section-shell-header h1{
  font-size:30px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 6px;
  color:#ffffff;
}
.section-shell-header p{
  font-size:15px;
  color:#d8e2ef;
  max-width:920px;
  line-height:1.55;
  margin:0;
}
.section-shell-user-info{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  text-align:right;
}
.section-shell-header #userDisplay{
  display:block;
  font-size:18px;
  font-weight:700;
  color:#ffffff;
}
.section-shell-header #loginTime{
  display:block;
  font-size:13px;
  color:#d8e2ef;
  margin-top:6px;
}
.section-shell-header .logout-btn.section-shell-logout-btn{
  background:#F44336;
  color:#ffffff;
  border:none;
  padding:10px 15px;
  border-radius:10px;
  cursor:pointer;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.section-shell-header .header-logo.section-shell-logo{
  height:52px;
  width:auto;
  border-radius:8px;
  background:#ffffff;
  padding:4px;
}
.section-shell-menu{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  background:rgba(26,58,95,.7);
  border:1px solid rgba(44,62,80,.9);
  border-radius:12px;
  padding:14px;
}
.section-shell-menu-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:8px;
  min-width:125px;
  flex:1;
  padding:15px 12px;
  border-radius:10px;
  color:#d8e2ef;
  cursor:pointer;
  transition:.25s;
}
.section-shell-menu-item:hover{
  background:rgba(0,97,175,.28);
  transform:translateY(-2px);
  color:#ffffff;
}
.section-shell-menu-item.active{
  background:#0061AF;
  color:#ffffff;
  border:1px solid rgba(44,62,80,.9);
}
.section-shell-menu-item i{
  font-size:1.4rem;
  color:#42a5f5;
}
.section-shell-menu-item.active i{
  color:#ffffff;
}
.section-shell-hidden{
  display:none !important;
}
.section-shell-toolbar{
  margin-bottom:18px !important;
}
.section-shell-toolbar .title h1{
  font-size:1.08rem !important;
}
.section-shell-toolbar .title p{
  font-size:.92rem !important;
  color:rgba(255,255,255,.72) !important;
}
.section-shell-toolbar .tabs{
  margin-top:12px !important;
}
.section-shell-toolbar #btnHome{
  display:none !important;
}
@media (max-width:1320px){
  .section-shell-menu-item{
    min-width:calc(33.333% - 10px);
  }
}
@media (max-width:960px){
  .section-shell-header{
    padding:18px 20px;
  }
  .section-shell-left,
  .section-shell-right{
    flex:1 1 100%;
  }
  .section-shell-right{
    justify-content:space-between;
  }
}
@media (max-width:640px){
  .section-shell-header h1{
    font-size:24px;
  }
  .section-shell-menu-item{
    min-width:calc(50% - 10px);
  }
  .section-shell-header{
    padding:16px;
  }
  .section-shell-right{
    gap:12px;
  }
}
