@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

@font-face {
  font-family: Kelson;
  src: url('./assets/font/KelsonSans-Bold.woff') format('woff'),
      url('./assets/font/KelsonSans-Bold.eot') format('embedded-opentype');
  font-weight: bold;
}

@font-face {
  font-family: Kelson;
  src: url('./assets/font/KelsonSans-Normal.woff') format('woff'),
      url('./assets/font/KelsonSans-Normal.eot') format('embedded-opentype');
  font-weight: normal;
}

.separador{
  background-color: #e4e4e4; 
  width: 200px; 
  height: 4px; 
  border-radius: 20px;
}

span{
  text-decoration: none;
}

html, body {
  margin: 0px;
  padding: 0px;
  width: 100%;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-image: url(https://jf134373.fluig.cloudtotvs.com.br:1500/volume/stream/Rmx1aWc=/P3Q9MSZ2b2w9RGVmYXVsdCZpZD05MDgxNiZ2ZXI9MTAwMCZmaWxlPTA4Yi5qcGcmY3JjPTMyOTQwMjA5NTQmc2l6ZT0wLjE3NDEzOSZ1SWQ9MTg0JmZTSWQ9MSZ1U0lkPTEmZD1mYWxzZSZ0a249JnB1YmxpY1VybD10cnVlJmF0dGFjaD1mYWxzZQ==.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

body::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: -1;
}

.app {
  padding: 1vh 2vw 2vh 2vw;
}

.content {
  max-width: 1040px;
  margin: auto;
}

/* Cabecalho */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 2vw;
  padding-right: 2vw;
}
.header h1 {
  font-family: 'Kelson', Arial, sans-serif;
  font-size: 40px;
  font-weight: bold;
  margin: 0;
}

.header p{
  font-family: 'Kelson', Arial, sans-serif;
  font-size: 24px;
  font-weight: normal;
  margin-top: 4px;
  color: #fff;
}

h4{
  font-family: 'Kelson', Arial, sans-serif;
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 4px;
  display: flex;
  justify-content: center;
  color: #fff;
}

/* Formulario */

.forms {
  margin-top: 10px;
  margin-bottom: 10px;
  align-items: center;
}
.forms form {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.form-input {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 1vh 1vw 1vh 1vw;
  text-align: right;
}
.form-input p {
  margin: 2px;
  font-weight: bolder;
  color: #fff;
}
label {
  color: rgb(83, 83, 83);
}
input,
select {
  outline: none;
  box-sizing: border-box;
  border: 1px solid #b1b1b1;
  border-radius: 10px;
  height: 40px;
  background-color: white;
  color:  black;
  font-family: inherit;
  width: 78%;
  text-align: center;
}
input:focus,
select:focus {
  outline: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}

option{
  text-align: start;
}

optgroup:before {
  content: "\00a0"; /* Adiciona um espaço não quebrável */
  display: block; /* Mostra o espaço como um bloco separado */
  margin-top: 10px; /* Ajusta a margem superior para o espaçamento desejado */
}

.cargos{
  border-radius: 0px 0px 0px 0px;
}

button {
  font-family: inherit;
  border-radius: 10px;
  border: 0;
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 500ms;
}

.form-group {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b1b1b1;
  border-radius: 10px;
  overflow: hidden;
  width: 78%;
  height: 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

.form-group select, .form-group input{
  border: none;
  outline: none;
  font-size: 13px;
  padding: 10px;
  flex: 1px;
}

.form-group select{
  background-color: #ececec;
  border-radius: 0px 0px 0px 0px;
}

.form-group input{
  background-color: #ffffff;
  border-radius: 0px 10px 10px 0px;
}

.form-group .divider {
  width: 0px;
  background-color: #000;
}


/* Botao estilos gerais*/

.center-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  gap: 20px;
}
button {
  cursor: pointer;
  padding: 0 0px;
}

/* Botao copiar assinatura*/
.Btn {
  width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: none;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: rgb(2, 153, 153);
}

.svgIcon {
  width: 35%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: teal;
}

.Btn:hover .text {
  background-color: rgb(0, 133, 133);
}

.Btn:hover .svgIcon {
  background-color: rgb(0, 105, 105);
}

/* Botao ajuda*/
.Btn2{
  width: 250px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: none;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.text2 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: rgb(150, 150, 150);
}

.svgIcon2 {
  width: 35%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: rgb(135, 135, 135);
}

.Btn2:hover .text2 {
  background-color: rgb(110, 110, 110);
}

.Btn2:hover .svgIcon2 {
  background-color: rgb(120, 120, 120);

} 


/* Assinatura */
.assinatura-wrapper {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.assinatura-div {
  margin-top: 10px;
  padding: 12px;
  display: inline-block;
  /*background-color: rgba(0, 0, 0, 0.5);*/
  background-color: #fff;
  border-radius: 10px;
  min-width: 450px;
}

#nome-assinatura{
  font-weight: bolder;
  font-size: 22px;
  color: #0a5853;
}

#setor-cargo-assinatura, 
#celular-assinatura{
  font-size: 14px;
  color: #5b5959;
  text-decoration: none;
}

#local-assinatura{
  font-size: 14px;
  color: #0a5853;
}

#setor-cargo-assinatura{
  font-weight: bolder;
}

#site-assinatura{
  font-size: 12px;
  color: #0a5853;
  /*text-decoration: underline;*/
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #333; /* Cor de fundo do rodapé */
  color: #fff; /* Cor do texto */
  padding: 10px; /* Espaçamento interno */
  text-align: center; /* Centraliza o texto */
}

footer a{
  color: white;
  font-size: 12px;
  text-decoration: none;
}

footer img{
  max-width: 6px;
  margin-bottom: 5px;
}


/* Estilos para o modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); 
  overflow: auto; 
}

.modal-content {
  align-items: center;
  justify-content: center;
  background-color: #fefefe;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 70%;
  height: 80%;
  overflow-y: auto;
  border-radius: 4px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-content h5{
  font-size: 16px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.lista-etapas li{
  list-style-type: none;
  font-size: 14px;
}

.fechar-modal{
  display: flex;
  justify-content: end;
  margin-top: 20px;
  margin-bottom: 2px;
}

.botao-close{
  padding: 10px 40px;
  background-color: #b1b1b1;
}

.botao-close:hover{
  background-color: #888;
}

.separador-modal{
  display: flex;
  justify-content: center;
  background-color: #e4e4e4;
  width: 100%;
  height: 2px;
  border-radius: 20px;
}

.modal-content img{
  max-width: 65%;
}

@media(max-width: 1700px) {
  html, body {
    margin: 0; /* Remove margens */
    padding: 0; /* Remove preenchimento */
    height: 100%; /* Garante que o body ocupe toda a altura da tela */
  }

  body {
    background-image: url(https://jf134373.fluig.cloudtotvs.com.br:1500/volume/stream/Rmx1aWc=/P3Q9MSZ2b2w9RGVmYXVsdCZpZD05MDgxNiZ2ZXI9MTAwMCZmaWxlPTA4Yi5qcGcmY3JjPTMyOTQwMjA5NTQmc2l6ZT0wLjE3NDEzOSZ1SWQ9MTg0JmZTSWQ9MSZ1U0lkPTEmZD1mYWxzZSZ0a249JnB1YmxpY1VybD10cnVlJmF0dGFjaD1mYWxzZQ==.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}

@media (max-width: 800px) {
  .app {
    width: 100vw;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .header {
    width: 100%;
  }
  .header h1 {
    font-size: 32px;
    text-align: center;
  }
  .header p {
    font-size: 16px;
    text-align: center;
  }
  .forms form {
    display: grid;
    grid-template-columns: 1fr;
  }
  input,
  select {
    width: 100%;
  }
  .form-input{
    display: block;
  }
  .form-input p {
    display: block;
    width: auto;
    text-align: start;
  }
  .assinatura-div {
    overflow: hidden;
  }
  .form-group{
    margin: 0px;
    width: 100%;
  }
}
