@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css?family=Chivo:300,300i,400,400i,700,700i,900,900i|Saira+Extra+Condensed:100,200,300,400,500,600,700,800|Saira:100,200,300,400,500,600,700,800');
@import url("https://fonts.googleapis.com/css?family=Rubik:500,700|Roboto:400,600");
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap');


/*****************************
*	Estilos Gerais
******************************/
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-xl-3,
.col-sm-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.mb-xl-0,
.mb-4 {
  margin-bottom: 1.5rem !important;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.text-sm {
  font-size: 1.1rem !important;
}

.text-capitalize {
  text-transform: uppercase !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
}

.icon-md {
  font-size: 1.5rem;
}

.bg-gradient-dark {
  background: linear-gradient(195deg, #42424a, #191919) !important;
  color: #fff;
}

.shadow-dark {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5) !important;
}

.border-radius-lg {
  border-radius: 0.5rem !important;
}

.opacity-10 {
  opacity: 0.2 !important;
}

.hr {
  border-top: 1px solid #dee2e6 !important;
}

/*****************************
*	Fim Estilos Gerais
******************************/

/*****************************
*	Estilos title page
******************************/
/* Estilo para a página de título */
.title-page {
  position: relative;
  height: 100vh;
  /* Tela inteira */
  background-image: url('../img/corpoDocente.jpg');
  /* Foto do corpo docente */
  background-size: cover;
  /* Cobrir todo o espaço */
  background-position: center;
  /* Centralizar a imagem */
  background-repeat: no-repeat;
  /* Não repetir */
  display: flex;
  justify-content: center;
  /* Centralizar horizontalmente */
  align-items: center;
  /* Centralizar verticalmente */
  color: #fff;
  /* Texto branco */
  text-align: center;
}

/* Sobreposição para melhorar a legibilidade do texto */
.title-page .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Sobreposição semitransparente */
  z-index: 1;
}

/* Conteúdo do texto */
.title-page .content {
  position: relative;
  z-index: 2;
  /* Acima da sobreposição */
  max-width: 800px;
  /* Limitar largura do texto */
  padding: 20px;
}

.title-page h1 {
  font-size: 60px;
  /* Tamanho grande para o título */
  margin-bottom: 20px;
}

.title-page p {
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
}


/*****************************
*	Fim Estilos title page
******************************/

/*****************************
*	Cards da DashBord
******************************/
/* Container principal */
.row-t {
  margin-bottom: 20px;
}

/* Estilo do card */
.card-t {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header-t {
  padding: 16px;
  border-bottom: 1px solid #dee2e6;
  background-color: #f8f9fa;
}

.card-header-t h6 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.card-header-t p {
  margin: 8px 0 0;
  color: #6c757d;
  font-size: 0.875rem;
}

/* Tabela */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
  color: #6c757d;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0.8;
}

.table tbody td {
  padding: 0.75rem;
  vertical-align: middle;
  border-top: 1px solid #dee2e6;
}

.table tbody tr:hover {
  background-color: #f1f1f1;
}

.linha {
  width: 20px;
  height: 20px;
  font-size: 1rem;
  margin-top: -18px;
  display: inline-flex;

}


/* start: Avatar */
.avatar-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.avatar {
  position: relative;
  transition: .2s;
}

.avatar:not(:first-child) {
  margin-left: -1.5rem;
}

.avatar:hover {
  z-index: 1;
  transform: translateY(-.5rem);
}

.avatar-name {
  position: absolute;
  bottom: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  padding: .5rem .75rem;
  border-radius: .25rem;
  background-color: rgba(0, 0, 0, .7);
  color: #fff;
  font-size: .875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: .2s;
}

.avatar-name::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: .5rem solid;
  border-color: rgba(0, 0, 0, .7) transparent transparent;
}

.avatar:hover .avatar-name {
  opacity: 1;
  visibility: visible;
}

.avatar img {
  width: 3rem;
  height: 3rem;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 .25rem 1rem rgba(0, 0, 0, .1);
}

/* end: Avatar */




/* Barra de progresso */
.progress-wrapper {
  position: relative;
  width: 100%;
}

.progress {
  height: 6px;
  background-color: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: #007bff;
  border-radius: 10px;
  transition: width 0.4s ease;
}

.bg-gradient-info {
  background: linear-gradient(90deg, #17a2b8, #007bff);
}

/* Texto das células */
.text-xs {
  font-size: 1.1rem;
}

.font-weight-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-sm {
  font-size: 1rem;
}

.w-80 {
  width: 65% !important;
}

.w-50 {
  width: 60% !important;
}

/* Gauge  */

.gauge {
  width: 100%;
  max-width: 250px;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  color: #004033;
}

.gauge__body {
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  background: #b4c0be;
  position: relative;
  border-top-left-radius: 100% 200%;
  border-top-right-radius: 100% 200%;
  overflow: hidden;
}

.gauge__fill {
  position: absolute;
  top: 100%;
  left: 0;
  width: inherit;
  height: 100%;
  background: #009578;
  transform-origin: center top;
  transform: rotate(0.25turn);
  transition: transform 0.2s ease-out;
}

.gauge__cover {
  width: 75%;
  height: 150%;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);

  /* Text */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 25%;
  box-sizing: border-box;
}
