/* Geral */
body {
  font-family: 'Inter', sans-serif;
  background-color: #181818;
  padding: 0;
  margin: 0;
}

/* Centralização */
.center {
  justify-content: center;
  align-items: center;
}

/* Container principal */
.container {
  margin: 0px auto 80px;
  padding: 40px 80px;
  padding-bottom: 0px;
  max-width: 55%;
  background-color: #181818;
  border-radius: 8px;
  height: auto; 
  display: flex;
  flex-direction: column; 
  border: solid 1px #292929;
}
@media (max-width: 500px) {
  .container {
    max-width: 90%;
    padding: 16px;
  }
}


/* Títulos */
.title-form {
  font-size: 26px;
  font-weight: 400;
  padding: 32px 0 0px;
  line-height: 1;
  color: #FFFFFF;
}
@media (max-width: 500px) {
  .title-form {
    font-size: 18px;
  }
}
.subtitle-form {
  font-size: 16px;
  font-weight: 300;
  color: #c2c2c2;
  padding: 0px;
  padding-bottom: 24px;
}
@media (max-width: 500px) {
  .subtitle-form {
    font-size: 12px;
  }
}
.form-label {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #EFF0F6;
}
@media (max-width: 500px) {
  .form-label {
    padding: 0px;
    font-size: 16px;
  }
}
.form-label-container {
  display: flex;
  margin: 0;
}
.form-label-container .required {
  font-size: 14px; 
  color: rgb(197, 43, 43);
}
/*Observations*/
.observation-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  padding: 16px;
  border: solid 1px;
  border-radius: 12px;
}

.remove-icon {
  cursor: pointer;
  margin-left: 10px;
  color: #4A3AFF; /* Cor do ícone de remoção */
  font-size: 18px;
}

#observation {
  font-size: 16px;
}

.observation {
  margin: 8px 0px 8px 0px;
  padding-bottom: 8px;
  font-size: 13px;
  padding: 0px;
  color:  #c2c2c2;
}
@media (max-width: 400px) {
  #observation {
    font-size: 14px;
  }
}

/* Formulário */
.form-control {
  background-color: #292929;
  color: #EFF0F6;
  border: solid 1px #181818;
  font-size: 16px;
  transition: border-color 0.3s ease;
  height: 45px;
  margin-bottom: 5%;
}
@media (max-width: 500px) {
  .form-control {
    height: 36px;
    font-size: 12px;
  }
}

.form-control::placeholder {
  color: #aaaaaa;
  background-color: #292929;
}

.form-control:focus {
  color: #FFFFFF;
  outline: none;
  background-color: #292929;
  border: none;
}

.input-container {
  padding-bottom: 12px;
}

.form-check-label {
  margin-top: 2%;
  margin-bottom: 2%;
  padding-left: 5%;
}
.form-check-label label {
  color: #c2c2c2;
  font-size: 15px;
}


/* Botões */
.btn-container {
  display: flex;
  justify-content: center;
  padding: 0;
}

.btn-service {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #181818;
  width: 100%;
  color: #007bff;
  border-radius: 8px;
  padding: 16px 16px 16px 32px;
  font-size: 20px;
  height: 65px;
  margin: 24px 0px 80px 0px;
  cursor: pointer;
  border: solid 1px #4d4d4d;
}
@media (max-width: 500px) {
  .btn-service {
    margin: 24px 0px 60px 0px;
    font-size: 16px;
    height: 55px;
  }
}

.btn-service:hover {
  background-color: #444;
}

.fa-circle-plus {
  color: #007bff;
  font-size: 20px;
  margin-right: 8px;
}


.btn-table-container {
  display: flex;
  justify-content: center;
}

.btn-table {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 8px 40px;
  width: 200px;
  height: 45px;
  cursor: pointer;
}

.btn-table:hover {
  background-color: #444;
}

/* Tabela de serviços */
.title-table {
  font-size: 22px;
  font-weight: 700;
  margin: 60px 0 8px;
  color: #212121;
}

.service-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border: none;
  border-radius: 8px;
  overflow: hidden; 
  margin-bottom: 40px;
}

.service-table th,
.service-table td {
  padding: 12px;
  text-align: left;
  width: 100%;
  background-color: #eff0f6;
}
.service-table th:nth-child(1), .service-table td:nth-child(1) {
  width: 15%; /* Ajusta a largura da primeira coluna */
}
.service-table th:nth-child(3), .service-table td:nth-child(3) {
  width: 15%; /* Ajusta a largura da primeira coluna */
}
@media (max-width: 500px) {
  .service-table td {
    word-break: break-word;
    font-size: 10px;
  }
  .service-table th:nth-child(1), .service-table td:nth-child(1) {
    width: 10%; 
  }
  .service-table th:nth-child(3), .service-table td:nth-child(3) {
    width: 10%; 
  }
  .service-table th {
    font-size: 12px;
    width: 30%;
  }
  .service-description {
    width: 30%;
  }
}
.service-description {
  white-space: normal; 
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.6em; 
  line-height: 1.2em; 
  width: 100%;
}
@media (max-width: 500px) {
  .service-description {
    white-space: normal; 
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3.6em; 
    line-height: 1.2em; 
    width: 100%;
  }
}
.service-table th {
  background-color: #292929;
  color: #eff0f6;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
}

.service-table tr:nth-child(even) {
  background-color: #ffffff; /* Alterna as cores das linhas */
}

.service-table tr:hover {
  background-color: #e9e9e9; /* Cor ao passar o mouse */
}

.service-table td {
  font-size: 14px;
  color: #333;
}

.service-table td:last-child {
  text-align: right;
}

/* Sections */
section {
  margin-bottom: 80px;
}
@media (max-width: 500px) {
  section {
    margin-bottom: 32px;
  }
}
section button {
  margin-top: 60px;
  width: 49%;
  border: none;
  height: 55px;
  color: #181818;
  font-size: 20px;
  font-weight: 500;
  background-color: #EFF0F6;
  border-radius: 5px;
}
@media (max-width: 500px) {
  section button {
    margin-top: 10px;
    font-size: 16px;
    height: 40px;
  }
}
button.next {
  background-color: #4A3AFF;
  color: #FFFFFF;
}
.cnb-1{
  display: flex;
  justify-content: flex-end;
}

