:root {
    /* --app-bg-dark: #01081f; */
    --app-bg-dark: #e4e9f7;;
    /* --body-background-color: #e4e9f7; */
    --body-background-color: #FFFFFF;
    --sidebar-background-color: #11101d;
    --logout-background-color: #25223f;
    --text-color: #fff;
  }
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  body {
    background: var(--body-background-color);
  }
  .cursoir-pointer {
    cursor: pointer;
  }
  .sidebar {
    width: 250px;
    color: var(--text-color);
    background: var(--sidebar-background-color);
  }
  .sidebar .logo-box {
    padding: 20px 0 50px 20px;
    /* margin-bottom: 40px; */
  }
  .sidebar .logo-box img {
    width: 40px;
    margin-right: 10px;
  }
  .sidebar .link-list ul {
    list-style: none;
  }
  .sidebar .link-list ul li {
    width: 100%;
    padding: 20px;
    border-radius: 10px 0 0 10px;
  }
  .sidebar .link-list ul li i {
    margin-right: 10px;
  }
  .sidebar .link-list ul li a {
    color: var(--text-color);
    text-decoration: none;
  }
  .sidebar .link-list ul li::before,
  .sidebar .link-list ul li::after {
    position: absolute;
    content: "";
    right: 0;
    width: 40px;
    aspect-ratio: 1/1;
    background: transparent;
  }
  .sidebar .link-list ul li::before {
    border-radius: 0 0 100% 0;
    transform: translateY(-150%);
  }
  .sidebar .link-list ul li::after {
    border-radius: 0 100% 0 0;
    transform: translateY(110%);
  }
  .sidebar .link-list ul li.active {
    color: var(--sidebar-background-color);
    background: var(--body-background-color);
  }
  .sidebar .link-list ul li.active a {
    color: var(--sidebar-background-color);
  }
  .sidebar .link-list ul li.active::before {
    box-shadow: 10px 10px 0px 10px var(--body-background-color);
  }
  .sidebar .link-list ul li.active::after {
    box-shadow: 10px -10px 0px 10px var(--body-background-color);
  }
  .sidebar .link-list ul li:hover {
    color: var(--sidebar-background-color);
    background: var(--body-background-color);
  }
  .sidebar .link-list ul li:hover a {
    color: var(--sidebar-background-color);
  }
  .sidebar .link-list ul li:hover::before {
    box-shadow: 10px 10px 0px 10px var(--body-background-color);
  }
  .sidebar .link-list ul li:hover::after {
    box-shadow: 10px -10px 0px 10px var(--body-background-color);
  }
  .sidebar .logout {
    width: 100%;
    height: 80px;
    padding: 0 20px;
    background: var(--logout-background-color);
  }

/* CORPO DASHBOARD */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

  * {
	 box-sizing: border-box;
}

 .app-container {
	 width: auto;
	 height: 100%;
	 display: flex;
	 position: relative;
	 /* max-width: 1680px; */
}
 .app-left {
	 flex-basis: 240px;
	 background-color: var(--app-bg-dark);
	 height: 100%;
	 overflow-y: auto;
	 overflow-x: hidden;
	 padding: 24px 0;
	 transition: all 0.4s ease-in;
}
 .app-left.show {
	 right: 0;
	 opacity: 1;
}
 .app-main {
	 flex: 1;
	 height: 100%;
	 overflow-y: auto;
	 overflow-x: hidden;
	 background-color: var(--app-bg-light);
	 padding: 5rem;
	 /* background: radial-gradient(circle, rgba(5, 19, 64, 1) 1%, rgba(4, 15, 50, 1) 100%); */
}
 .app-right {
	 flex-basis: 320px;
	 width: 320px;
	 background-color: var(--app-bg-dark);
	 height: 100%;
	 padding: 64px 0 0 0;
	 display: flex;
	 flex-direction: column;
	 position: relative;
	 transition: all 0.4s ease-in;
}
 .app-right:before {
	 content: '';
	 position: absolute;
	 bottom: 0;
	 height: 48px;
	 width: 100%;
	 background-image: var(--app-bg-before);
	 z-index: 1;
}
 .app-right.show {
	 right: 0;
	 opacity: 1;
}
 .app-right .close-right {
	 display: none;
}
 .app-right-content {
	 flex: 1;
	 height: 100%;
	 overflow-y: auto;
	 overflow-x: hidden;
}
 .app-logo {
	 display: flex;
	 align-items: center;
	 color: var(--app-logo);
	 margin-right: 16px;
	 padding: 0 24px;
}
 .app-logo span {
	 color: #fff;
	 display: inline-block;
	 line-height: 24px;
	 font-size: 16px;
	 margin-left: 16px;
}
 ul {
	 list-style-type: none;
	 padding: 0;
}
 a {
	 text-decoration: none;
	 cursor: pointer;
}
 button {
	 cursor: pointer;
}
 .nav-list {
	 margin-top: 40px;
}
 .nav-list-item {
	 margin-bottom: 12px;
}
 .nav-list-item:not(.active):hover {
	 background-color: var(--list-item-hover);
}
 .nav-list-item.active .nav-list-link {
	 color: var(--nav-link-active);
}
 .nav-list-item.active .nav-list-link:after {
	 height: 100%;
	 opacity: 1;
}
 .nav-list-item.active svg {
	 stroke: var(--app-logo);
}
 .nav-list-link {
	 font-weight: 300;
	 font-size: 14px;
	 line-height: 24px;
	 padding: 8px 24px;
	 color: var(--nav-link);
	 display: flex;
	 align-items: center;
	 position: relative;
}
 .nav-list-link svg {
	 margin-right: 12px;
}
 .nav-list-link:after {
	 content: '';
	 height: 100%;
	 width: 2px;
	 background-color: var(--app-logo);
	 right: 0;
	 top: 0;
	 position: absolute;
	 border-radius: 2px;
	 opacity: 0;
	 height: 0;
}
 .open-right-area {
	 display: none;
	 justify-content: center;
	 align-items: center;
	 border: none;
	 background-color: var(--app-bg-dark);
	 border-radius: 4px;
	 height: 40px;
	 width: 40px;
	 padding: 0;
}
 .main-header-line {
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 margin-bottom: 16px;
}
 .main-header-line h1 {
	 color: var(--main-color);
	 margin: 0;
	 font-size: 24px;
	 line-height: 32px;
}
 .main-header-line input {
	 border-radius: 4px;
	 background-color: var(--color-light);
	 border: none;
	 border: 1px solid var(--color-light);
	 color: var(--main-color);
	 height: 32px;
	 padding: 0 8px 0 32px;
	 font-size: 14px;
	 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233481d2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-search'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
	 background-position: center left 10px;
	 background-repeat: no-repeat;
	 background-size: 16px;
	 outline: none;
	 transition: 0.2s;
	 width: 100%;
	 max-width: 400px;
	 margin-left: 16px;
}
 .main-header-line input:placeholder {
	 font-size: 14px;
	 color: rgba(255, 255, 255, 0.6);
}
 .main-header-line input:hover, .main-header-line input:focus {
	 border: 1px solid #3481d2;
	 box-shadow: 0 0 0 3px var(--color-light);
}
 .chart-row {
	 display: flex;
	 justify-content: space-between;
	 margin: 0 -8px;
   color: #212529;
}
 .chart-row.three .chart-container-wrapper {
	 width: 33.3%;
   color: #212529;
}
 .chart-row.three .chart-container-wrapper .chart-container {
	 justify-content: space-between;
}
 .chart-row.two .big {
	 flex: 1;
	 max-width: 77.7%;
}
 .chart-row.two .big .chart-container {
	 flex-direction: column;
}
 .chart-row.two .small {
	 width: 33.3%;
}
 .chart-row.two .small .chart-container {
	 flex-direction: column;
}
 .chart-row.two .small .chart-container + .chart-container {
	 margin-top: 16px;
}
 .line-chart {
	 width: 100%;
	 margin-top: 24px;
}
 .chart-container {
	 width: 100%;
	 border-radius: 10px;
	 background-color: var(--app-bg-dark);
	 padding: 16px;
	 display: flex;
	 align-items: center;
}
 .chart-container.applicants {
	 max-height: 336px;
	 overflow-y: auto;
}
 .chart-container-wrapper {
	 padding: 8px;
}
 .chart-info-wrapper {
	 flex-shrink: 0;
	 flex-basis: 120px;
}
 .chart-info-wrapper h2 {
	 color: var(--secondary-color);
	 font-size: 12px;
	 line-height: 16px;
	 font-weight: 600;
	 text-transform: uppercase;
	 margin: 0 0 8px 0;
}
 .chart-info-wrapper span {
	 color: var(--main-color);
	 font-size: 24px;
	 line-height: 32px;
	 font-weight: 500;
}
 .chart-svg {
	 position: relative;
	 max-width: 90px;
	 min-width: 40px;
	 flex: 1;
}
 .circle-bg {
	 fill: none;
	 stroke: #eee;
	 stroke-width: 1.2;
}
 .circle {
	 fill: none;
	 stroke-width: 1.6;
	 stroke-linecap: round;
	 animation: progress 1s ease-out forwards;
}
 .circular-chart.orange .circle {
	 stroke: #ff9f00;
}
 .circular-chart.orange .circle-bg {
	 stroke: #776547;
}
 .circular-chart.blue .circle {
	 stroke: #00cfde;
}
 .circular-chart.blue .circle-bg {
	 stroke: #557b88;
}
 .circular-chart.pink .circle {
	 stroke: #ff7dcb;
}
 .circular-chart.pink .circle-bg {
	 stroke: #6f5684;
}
 .percentage {
	 /* fill: #fff; */
	 font-size: 0.5em;
	 text-anchor: middle;
	 font-weight: 400;
}
 @keyframes progress {
	 0% {
		 stroke-dasharray: 0 100;
	}
}
 .chart-container-header {
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 width: 100%;
	 margin-bottom: 12px;
}
 .chart-container-header h2 {
	 margin: 0;
	 color: var(--main-color);
	 font-size: 12px;
	 line-height: 16px;
	 opacity: 0.8;
}
 .chart-container-header span {
	 color: var(--app-logo);
	 font-size: 12px;
	 line-height: 16px;
}
 .acquisitions-bar {
	 width: 100%;
	 height: 4px;
	 border-radius: 4px;
	 margin-top: 16px;
	 margin-bottom: 8px;
	 display: flex;
}
 .bar-progress {
	 height: 4px;
	 display: inline-block;
}
 .bar-progress.applications {
	 background-color: rgba(255, 125, 203, 1);
}
 .bar-progress.shortlisted {
	 background-color: rgba(0, 207, 222, 1);
}
 .bar-progress.on-hold {
	 background-color: rgba(253, 172, 66, 1);
}
 .bar-progress.rejected {
	 background-color: rgba(255, 92, 92, 1);
}
 .progress-bar-info {
	 display: flex;
	 align-items: center;
	 margin-top: 8px;
	 width: 100%;
}
 .progress-color {
	 width: 10px;
	 height: 10px;
	 border-radius: 50%;
	 margin-right: 8px;
}
 .progress-color.applications {
	 background-color: rgba(255, 125, 203, 1);
}
 .progress-color.shortlisted {
	 background-color: rgba(0, 207, 222, 1);
}
 .progress-color.on-hold {
	 background-color: rgba(253, 172, 66, 1);
}
 .progress-color.rejected {
	 background-color: rgba(255, 92, 92, 1);
}
 .progress-type {
	 color: var(--secondary-color);
	 font-size: 12px;
	 line-height: 16px;
}
 .progress-amount {
	 color: var(--secondary-color);
	 font-size: 12px;
	 line-height: 16px;
	 margin-left: auto;
}
 .applicant-line {
	 display: flex;
	 align-items: center;
	 width: 100%;
	 margin-top: 12px;
}
 .applicant-line img {
	 width: 32px;
	 height: 32px;
	 border-radius: 50%;
	 object-fit: cover;
	 margin-right: 10px;
	 flex-shrink: 0;
}
 .applicant-info span {
	 color: var(--main-color);
	 font-size: 14px;
	 line-height: 16px;
}
 .applicant-info p {
	 margin: 4px 0;
	 font-size: 12px;
	 line-height: 16px;
	 color: var(--secondary-color);
}
 .profile-box {
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 position: relative;
}
 .profile-box:before {
	 content: '';
	 position: absolute;
	 top: 100%;
	 height: 48px;
	 width: 100%;
	 background-image: var(--app-bg-before-2);
	 z-index: 1;
}
 .profile-photo-wrapper {
	 width: 80px;
	 height: 80px;
	 overflow: hidden;
	 border-radius: 50%;
	 margin-bottom: 16px;
}
 .profile-photo-wrapper img {
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
}
 .profile-text, .profile-subtext {
	 font-size: 12px;
	 line-height: 16px;
	 color: var(--secondary-color);
	 margin: 0 0 8px 0;
}
 .profile-text {
	 font-weight: 600;
}
 .app-right-section-header {
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 padding: 0 16px;
	 margin-top: 16px;
}
 .app-right-section-header h2 {
	 font-size: 14px;
	 line-height: 24px;
	 color: var(--secondary-color);
}
 .app-right-section-header span {
	 display: inline-block;
	 color: var(--secondary-color);
	 position: relative;
}
 .app-right-section-header span.notification-active:before {
	 content: '';
	 position: absolute;
	 width: 6px;
	 height: 6px;
	 border-radius: 50%;
	 background-color: var(--app-logo);
	 top: -1px;
	 right: -1px;
	 box-shadow: 0 0 0 2px var(--app-bg-dark);
}
 .message-line {
	 display: flex;
	 align-items: center;
	 padding: 8px 16px;
	 margin-bottom: 8px;
}
 .message-line:hover {
	 background-color: var(--list-item-hover);
}
 .message-line img {
	 width: 32px;
	 height: 32px;
	 border-radius: 50%;
	 object-fit: cover;
	 margin-right: 8px;
}
 .message-text-wrapper {
	 max-width: calc(100% - 48px);
}
 .message-text {
	 font-size: 14px;
	 line-height: 16px;
	 color: var(--main-color);
	 margin: 0;
	 opacity: 0.8;
	 width: 100%;
}
 .message-subtext {
	 font-size: 12px;
	 line-height: 16px;
	 color: var(--secondary-color);
	 margin: 4px 0 0 0;
	 white-space: nowrap;
	 overflow: hidden;
	 text-overflow: ellipsis;
	 width: 100%;
}
 .activity-line {
	 padding: 8px 16px;
	 display: flex;
	 align-items: flex-start;
	 margin-bottom: 8px;
}
 .activity-link {
	 font-size: 12px;
	 line-height: 16px;
	 color: var(--app-logo);
	 text-decoration: underline;
}
 .activity-text {
	 font-size: 12px;
	 line-height: 16px;
	 color: var(--secondary-color);
	 width: 100%;
	 margin: 0;
}
 .activity-text strong {
	 color: #fff;
	 opacity: 0.4;
	 font-weight: 500;
}
 .activity-icon {
	 border-radius: 8px;
	 width: 32px;
	 height: 32px;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 flex-shrink: 0;
	 margin-right: 8px;
}
 .activity-icon.warning {
	 background-color: var(--warning-bg);
	 color: var(--warning-icon);
}
 .activity-icon.applicant {
	 background-color: var(--applicant-bg);
	 color: var(--applicant-icon);
}
 .activity-icon.close {
	 background-color: var(--close-bg);
	 color: var(--close-icon);
}
 .activity-icon.draft {
	 background-color: var(--draft-bg);
	 color: var(--draft-icon);
}
 .action-buttons {
	 display: flex;
	 align-items: center;
}
 .menu-button {
	 width: 40px;
	 height: 40px;
	 margin-left: 8px;
	 display: none;
	 justify-content: center;
	 align-items: center;
	 padding: 0;
	 background-color: var(--app-bg-dark);
	 border: none;
	 color: var(--main-color);
	 border-radius: 4px;
}
 .close-menu {
	 position: absolute;
	 top: 16px;
	 right: 16px;
	 display: none;
	 align-items: center;
	 justify-content: center;
	 border: none;
	 background-color: transparent;
	 padding: 0;
	 color: var(--main-color);
	 cursor: pointer;
}
 @media screen and (max-width: 1350px) {
	 .app-right {
		 flex-basis: 240px;
		 width: 240px;
	}
	 .app-left {
		 flex-basis: 260px;
	}
}
 @media screen and (max-width: 1200px) {
	 .app-right {
		 position: absolute;
		 opacity: 0;
		 top: 0;
		 z-index: 2;
		 height: 100%;
		 width: 320px;
		 right: -100%;
		 box-shadow: 0 0 10px 5px rgba(1, 8, 31, .4);
	}
	 .app-right .close-right {
		 position: absolute;
		 top: 16px;
		 right: 16px;
		 display: flex;
		 align-items: center;
		 justify-content: center;
		 border: none;
		 background-color: transparent;
		 padding: 0;
		 color: var(--main-color);
		 cursor: pointer;
	}
	 .app-main .open-right-area {
		 display: flex;
		 color: var(--main-color);
	}
}
 @media screen and (max-width: 1180px) {
	 .chart-row.two {
		 flex-direction: column;
	}
	 .chart-row.two .big {
		 max-width: 100%;
	}
	 .chart-row.two .small {
		 display: flex;
		 justify-content: space-between;
		 width: 100%;
	}
	 .chart-row.two .small .chart-container {
		 width: calc(50% - 8px);
	}
	 .chart-row.two .small .chart-container.applicants {
		 margin-top: 0;
	}
}
 @media screen and (max-width: 720px) {
	 .menu-button {
		 display: flex;
	}
	 /* .app-left {
		 position: absolute;
		 opacity: 0;
		 top: 0;
		 z-index: 2;
		 height: 100%;
		 width: 320px;
		 right: -100%;
		 box-shadow: 0 0 10px 5px rgba(1, 8, 31, .4);
	} */
	 .close-menu {
		 display: flex;
	}
}

@media screen and (max-width: 720px) {
	.app-left {
	  position: absolute;
	  opacity: 0;
	  top: 0;
	  left: 0;
	  z-index: 2;
	  height: 100%;
	  width: 320px;
	  right: -100%;
	  transition: all 0.3s ease-in-out;
	  box-shadow: 0 0 10px 5px rgba(1, 8, 31, .4);
	}
  
	.app-left.sidebar-visivel {
	  background: #FFFFFF;
      width: 70%;
	  opacity: 1;
	}
  
	#abrir-sidebar.sidebar-visivel {
	  left: 320px; /* 320px width + 15px margin */
	  transition: left 0.3s ease-in-out;
	  
	}
  }
  /* .active-mobile-menu{
	left: 201px !important;
  }   */

 @media screen and (max-width: 650px) {
	 .chart-row.three {
		 flex-direction: column;
	}
	 .chart-row.three .chart-container-wrapper {
		 width: 100%;
	}
	 .chart-svg {
		 min-height: 60px;
		 min-width: 40px;
	}
}
 @media screen and (max-width: 520px) {
	 .chart-row.two .small {
		 flex-direction: column;
	}
	 .chart-row.two .small .chart-container {
		 width: 100%;
	}
	 .chart-row.two .small .chart-container.applicants {
		 margin-top: 16px;
	}
	 .main-header-line h1 {
		 font-size: 14px;
	}
}
 

/*esferas das etiquetas*/

#etiquetasGrid {
  display: flex;
  gap: 12px; /* espaço entre as bolas */
  overflow-x: auto; /* ativa rolagem horizontal */
  padding: 8px 0;
  scrollbar-width: thin; /* Firefox */
}

#etiquetasGrid::-webkit-scrollbar {
  height: 6px; /* altura da barra no Chrome */
}

#etiquetasGrid::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  border-radius: 4px;
}

.tag {
  flex: 0 0 auto; /* impede que estiquem */
  display: flex;
  flex-direction: column;
  align-items: center;
}


.tag-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(90px,1fr));
  gap:14px;
}

.tag{
  display:flex;
  flex-direction:column;
  align-items:center;
  user-select:none;
}

.tag .bubble{
  width:78px; height:78px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:18px;
  border:2px solid rgba(0,0,0,.08);
  box-shadow:0 4px 14px rgba(0,0,0,.08) inset, 0 2px 6px rgba(0,0,0,.05);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(240,240,240,.9));
}

.tag .name{
  margin-top:6px;
  font-size:12px; line-height:1.2;
  text-align:center;
  color:#555;
  max-width:86px;
  word-break:break-word;
}

/* cores dinâmicas na borda/halo */
.tag[data-color] .bubble{
  border-color: var(--ring, #e5e7eb);
  box-shadow:
    0 0 0 6px color-mix(in oklab, var(--ring) 15%, transparent),
    0 4px 14px rgba(0,0,0,.08) inset,
    0 2px 6px rgba(0,0,0,.05);
}

.tag:hover .bubble{ transform:translateY(-1px); }
