* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.fd-column {
  display: flex;
  flex-direction: column;
}

.header {
  background-color: #E9E9E9;
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  width: 100%;


}

body {

  background-color: #E9E9E9;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  margin: 0 auto;
  padding: 20px;
  overflow-y: auto;

}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  width: 100%;
}

.img-rh {
  margin-top: 20px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1000px;
  aspect-ratio: auto 1041 / 150;
  background-image: url(https://www.fecaf.com.br/ti/avali-desempenho-rh.png);
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 100;
  border-radius: 10px;
}

.m30-auto {
  margin: 30px auto !important;
}


.login-box,
.validation-box {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 400px;
  text-align: center;
  justify-content: center;
  margin: 20% auto;
}

.login-box h1,
.validation-box h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #122444;
}

.validation-box h2 {
  font-size: 15px;
  margin-bottom: 20px;
  color: #122444;
  text-align: left;
}

.login-form .form-group,
.validation-box .form-group {
  margin-bottom: 15px;
  text-align: left;
}

.login-form label,
.validation-box label {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
  color: #122444;
}

.login-form input,
.validation-box input,
.dropdown {
  font-weight: lighter;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  outline: none;
  background-color: transparent;
  border-color: transparent;
  border-bottom: 0.1px solid #C0C0C0;
}

.dropdown:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: #f5f5f5;
  border-bottom: 0.1px solid #C0C0C0;
  color: #122444;
  font-weight: normal;
}

.dropdown:focus {
  border-bottom: 0.1px solid #122444;
}

.login-button,
.validation-button,
.option-button {
  background-color: transparent;
  color: #122444;
  color: bold;
  border: #122444;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  width: 100%;
  margin-top: 20px;
}

.login-button:hover {
  background-color: #3d7e5e;
  color: #fff;
}

.option-button {
  padding: 10px 15px;
  flex: 1;
  margin: 5px;
  border-radius: 5px;
  text-align: center;
  transition: transform 0.2s ease-in-out, background-color 0.3s ease-in-out;
}

.options {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.options .option-button:hover {
  transform: scale(1.05);
  background-color: #004080;
}

.section {
  margin-bottom: 30px;
}

.section option:disabled {
  color: #C0C0C0;
}

.legend {
  margin-top: 20px;
  position: fixed;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 1);
  color: #3d7e5e;
  padding: 10px;
  text-align: center;
  max-width: 1000px;
  width: 95%;
  font-size: 14px;
  font-weight: bold;
  z-index: 100;
}

.legend h2 {
  text-align: center;
  color: #122444;
}

.main {
  margin-top: 280px;
  width: 95%;
  max-width: 1000px;
  padding: 20px 0;

}


.popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 60vh;
  max-width: 1000px;
  background-color: #fff;
  color: #122444;
  padding: 50px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease-in-out, visibility 0.5s ease-in-out;
  z-index: 9999;
  display: block;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Quando o pop-up é exibido */
.popup-container.show {
  opacity: 1;
  visibility: visible;
}

/* Estilização do botão fechar */
.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  color: #122444;
  border: none;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  display: none;
  /* Inicialmente oculto */
  transition: background 0.3s ease, color 0.3s ease;
}

.popup-close:hover {
  background: #122444;
  color: #fff;
}


.welcome {
  margin-top: 100px;
  display: none;
  max-width: 1000px;
  width: 95%;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.welcome h2 span {
  color: #3d7e5e;
}

.welcome strong {
  color: #3d7e5e;
}

.jc-fe {
  display: flex;
  justify-content: flex-end;
}

.btn-prosseguir {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px !important;
  padding: 16px 36px;
  border: 4px solid transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #122444;
  box-shadow: 0 0 0 2px #000;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  margin-top: 50px;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.btn-prosseguir .arr-1 {
  right: 16px;
}

.btn-prosseguir .arr-2 {
  left: -25%;
}

.btn-prosseguir .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #3d7e5e;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-prosseguir .text {
  position: relative;
  z-index: 1;
  transform: translateX(0);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  text-align: center;
  width: 100%;
}

.btn-prosseguir:hover {
  box-shadow: 0 0 0 12px transparent;
  background-color: #3d7e5e;
  color: #fff;
  border-radius: 12px;
}

.btn-prosseguir:hover .arr-1 {
  right: -25%;
}

.btn-prosseguir:hover .arr-2 {
  left: 16px;
}

.btn-prosseguir:hover .text {
  transform: translateX(0);
  color: #fff;
}

.btn-prosseguir:hover svg {
  fill: #fff;
}

.btn-prosseguir:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #122444;
}

.btn-prosseguir:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

.form-adm {
  position: relative;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.5);
  color: #122444;
  padding: 20px;
  text-align: justify;
  max-width: 1000px;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  margin: 1px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.conhecimento,
.planejamento,
.quali-prod,
.urgencia,
.gestao,
.comprometimento,
.socioemocional-doc,
.profissional,
.analiticos {
  border-bottom: 2px solid #122444;
  padding-bottom: 20px;
  margin-bottom: 20px;

}

.socioemocional,
.colaborativa {
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.conhecimento label,
.planejamento label .quali-prod label,
.urgencia label,
.gestao label,
.comprometimento label,
.socioemocional label,
.profissional label,
.analiticos label,
.colaborativa label {
  font-size: 15PX;
}

.conhecimento h2,
.planejamento h2,
.quali-prod h2,
.urgencia h2,
.gestao h2,
.comprometimento h2,
.socioemocional h2,
.profissional h2,
.analiticos h2,
.colaborativa h2 {
  text-align: center;
  font-size: 20px;
  color: #122444;
}

.conhecimento p,
.planejamento p,
.quali-prod p,
.urgencia p,
.gestao p,
.comprometimento p,
.socioemocional p,
.profissional p,
.analiticos p,
.colaborativa p {
  font-size: 16px;
  color: #3d7e5e;
  margin-bottom: 20px;
}



.fs13 {
  font-size: 13px !important;
}

.radio-group {
  display: grid;
  grid-template-columns: 82% auto;
  justify-content: end -5px;
  align-items: end;
  gap: 10px;
  margin: 10px 0;
}

.rating {
  text-align: center;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 5px;
  margin-right: auto;
}

.rating input {
  display: none;
}

.rating label {
  float: right;
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s;
  font-size: 30px;
}

.rating label:before {
  content: '\2605';
}

.rating input:checked~label,
.rating label:hover,
.rating label:hover~label {
  color: #3d7e5e;
  transition: color 0.3s;
}

.conhecimento .button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;

}


.button-container
{
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  justify-content: space-between;
}



.bt-prox,
.bt-sair {
  display: block;
  margin: auto;
  background-color: transparent;
  color: #122444;
  width: 8.5em;
  height: 2.9em;
  border: 2px solid #122444;
  border-radius: 11px;
  text-align: right;
  transition: all 0.05s ease;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.bt-prox {
  width: 250px;
  font-size: 16px;
}

.bt-prox:hover,
.bt-voltar:hover,
.bt-sair:hover {
  background-color: #3d7e5e;
  color: white;
  border-color: #3d7e5e;

}

.bt-prox svg,
.bt-voltar svg,
.bt-sair svg {
  width: 1.6em;
  transition: all 0.05s ease;
}

.agradecer {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centraliza o conteúdo verticalmente */
  align-items: center; /* Centraliza os elementos filhos */
  max-width: 1000px;
  width: 95%;
  height: auto;
  background-color: #122444;
  color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  padding-bottom: 50px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



.agradecer h2 {
  text-align: center;
  margin: 20px;
}

.agradecer span {
  text-align: start;
  display: block;
  font-size: large;
  font-weight: bold;
}

.agradecer p {
  display: block;
  margin-left: 20px;
}

.button-container-sair {
  display: flex;
  justify-content: flex-end !important;
  width: 100%;
  margin-top: 20px;
}

.bt-sair {
  color: #ffffff;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}


.legend span {
  color: #122444;
}

.welcome .section-liderado .dropdown-lid {
  font-weight: lighter;
  width: 50%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  outline: none;
  background-color: transparent;
  border-color: transparent;
  border-bottom: 0.1px solid #C0C0C0;
  

}

.section-liderado p {
  font-weight: bold;
}
.section-liderado

.welcome .section-liderado .dropdown-lid:focus {
  border-bottom: 0.1px solid #122444;
}

/* Efeito de blur */
.blurred {
  filter: blur(5px);
  transition: filter 1s ease-in-out;
}

/* Media Queries para Responsividade */
@media screen and (max-width: 768px) {
  .header {
    height: 150px;
  }

  .img-rh {
    position: relative;
    margin-top: 20px;
    top: auto;
    left: auto;
    transform: none;
    width: 95%;
    margin-bottom: 15px;
  }

  .legend {
    margin-bottom: 30px;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 30px;
  }

  .main {
    margin-top: 220px;
  }

  .form-adm {
    margin-top: 20px;
  }

  .radio-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    margin-top: 5px;
  }

  .rating input {
    order: 1;
  }

  .rating label {
    order: 2;
    float: none;
    font-size: 24px;
  }

  .rating input:checked ~ label,
  .rating label:hover,
  .rating label:hover ~ label {
    color: #3d7e5e;
  }

  .login-box,
  .validation-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    margin: 0;
  }

  .login-box h1,
  .validation-box h1 {
    font-size: 20px;
  }

  .login-form label,
  .validation-box label {
    font-size: 14px;
  }

  .login-form input,
  .validation-box input,
  .dropdown {
    font-size: 13px;
    padding: 8px;
  }

  .login-button,
  .validation-button,
  .option-button {
    font-size: 14px;
    padding: 8px 16px;
  }

  .popup-container {
    width: 95%;
    padding: 20px;
    height: auto;
    max-height: 80vh;
  }

  .options {
    flex-direction: column;
    gap: 5px;
  }

  .option-button {
    width: 100%;
    margin: 2px 0;
  }
}

@media screen and (max-width: 480px) {
  body {
    padding: 10px;
  }

  .header {
    height: 120px;
  }

  .img-rh {
    margin-top: 15px;
    margin-bottom: 10px;
    margin-left: 10px;
    width: 95%;
  }

  .legend {
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 8px;
    margin-left: 10px;
  }

  .main {
    margin-top: 200px;
  }

  .form-adm {
    margin-top: 15px;
  }

  .rating label {
    font-size: 20px;
  }

  .login-box,
  .validation-box {
    width: 95%;
  }

  .login-box h1,
  .validation-box h1 {
    font-size: 18px;
  }

  .login-form label,
  .validation-box label {
    font-size: 13px;
  }

  .login-form input,
  .validation-box input,
  .dropdown {
    font-size: 12px;
    padding: 6px;
  }

  .login-button,
  .validation-button,
  .option-button {
    font-size: 13px;
    padding: 6px 12px;
  }

  .popup-container {
    width: 98%;
    padding: 15px;
  }

  .bt-prox,
  .bt-sair {
    margin-top: 15px;
    width: 50%;
    height: 2.5em;
    font-size: 14px;

  }
}

/* Ajustes para telas muito pequenas */
@media screen and (max-width: 320px) {
  .header {
    height: 100px;
  }

  .img-rh {
    margin-top: 10px;
    margin-bottom: 8px;
    width: 98%;
  }

  .legend {
    margin-bottom: 15px;
    margin-top: 15px;
    padding: 5px;
  }

  .main {
    margin-top: 180px;
  }

  .form-adm {
    margin-top: 10px;
  }

  .rating label {
    font-size: 18px;
  }

  .login-box,
  .validation-box {
    width: 98%;
  }
}