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

*, *::before, *::after {
  box-sizing: border-box;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}
.loading-overlay.fade-out {
  opacity: 0;
}

.loading-balloon {
  background: #5D96BE;      
  border: 3px solid #357CAE;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: spin 2s linear infinite;
}


.loading-balloon::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}


.loading-balloon .loading-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2em;
  color: white;
  animation: spinReverse 2s linear infinite;
}


@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}


.content-wrapper {
  opacity: 0;
  transition: opacity 1s ease-in;
}
.loaded .content-wrapper {
  opacity: 1;
}

.body-resultados #titulo-pegada {
  display: none;
}

.textoinicial {
  text-align: center !important;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  color: #357CAE;
}

.logo-container {
  text-align: center; 
  margin: 20px auto; 
}

.logo {
  max-width: 300px; 
  height: auto;
}


.bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.bg-image.visible {
  opacity: 1;
}

.gradiente {
    width: 100%;
    height: 400px;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(21 46 85 / 85%) 100%);
    position: absolute;
    z-index: 2;
}

.rodape {
    font-size: 10px;
}

.rodape div {
    display: flex;
    justify-content: center;
}

.rodape img {
    width: 100px;
    object-fit: contain;
}

h2#titulo-pegada {
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}


form#formulario {
  background-color: white;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);

}


.adminform2 .table-container {
  width: 100%;
 
  
}


.adminform2 table {
  width: 100%;
  table-layout: fixed; 
}


.adminform2 table th, .adminform2 table td {
  padding: 8px;
  text-align: left;
  border: 1px solid #ddd;
}

.adminform2 table th {
  background-color: #f4f4f4;
}

.adminform2 table td {
  background-color: #fff;
}


.results-container button {
  display: inline-block;
  margin: 5px;
}

.content-container {
  background-color: white;
  width: 90%;
  margin: 40px auto 20px auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;       
}

.adminform {
  background-color: white;
  width: 90%;
  max-width: 600px;
  margin: 40px auto 20px auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}


#columns_table input[type="text"],
#rows_table input[type="text"] {
    min-width: 180px;
}

textarea.expand-textarea {
  width: 100%;
  min-height: 50px;
  resize: vertical;
  overflow-y: hidden;
  padding: 8px;
  box-sizing: border-box;
}

textarea.expand-textarea:focus {
  height: auto; 
}


#columns_table, #rows_table {
    width: 100%; 
    min-width: 600px;
    border-collapse: collapse;
  
}

#columns_table th, #rows_table th, #columns_table td, #rows_table td {
    min-width: 150px;
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
    white-space: nowrap;
}

#columns_table th, #rows_table th {
    background-color: #f4f4f4;
}


#columns_table, #rows_table {
    display: block;
}

.table-container {
  overflow-x: scroll;
  max-width: 100%;
  margin-bottom: 20px;
  scrollbar-width: thin; 
  scrollbar-color: #888 #f1f1f1;
}

.tabela-responsiva {
  width: 100%;
  border-collapse: collapse;
}

.tabela-responsiva th {
  color: #000;  
  font-weight: bold; 
}

.tabela-responsiva {
  border-collapse: collapse; 
}

.tabela-responsiva th,
.tabela-responsiva td {
  background-color: #F9F9F9;
  border: 1px solid #214E85;
  padding: 8px; 
}


@media screen and (max-width: 768px) {
  .tabela-responsiva,
  .tabela-responsiva thead,
  .tabela-responsiva tbody,
  .tabela-responsiva th,
  .tabela-responsiva td,
  .tabela-responsiva tr {
    display: block;
  }

  .tabela-responsiva thead {
    display: none;
  }

  
  .tabela-responsiva tr {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    padding: 10px;
    background: #f9f9f9;
  }
  
  .tabela-responsiva td {
    position: relative;
    padding-left: 50%;
    border: none;
    border-bottom: 1px solid #eee;
  }

  .tabela-responsiva td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    width: 45%;
    padding-right: 10px;
    font-weight: bold;
    white-space: nowrap;
  }

  .esconder-mobile {
    display: none !important;
  }

  td[data-label]::before {
    content: attr(data-label) ": ";
    color: #000;
    font-weight: bold; 
  }

  #rows_table td[data-label]::before {
    content: "";
    display: none;
}
  
}

.cell-content {
  min-height: 50px;  
}
 
label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

input[type="number"] {
  font-weight: bold;
}

input[type="text"],
input[type="password"],
input[type="number"],
select,
textarea {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


textarea {
  resize: none;
  overflow: hidden;
}

input:focus,
select:focus,
textarea:focus {
  border: 2px solid #357CAE;
  box-shadow: 0 5px 16px rgba(42, 99, 139, 0.5);
  outline: none;
}


.suggestionsdiv {
  position: relative;
}

.suggestionsdiv input[type="text"] {
  padding-right: 50px;
}

#suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: none;
  display: none;
  z-index: 9999;
  background: #ffffff;
}


#suggestions.active {
  display: block;
  border: 1px solid #357CAE;
  border-top: none;
}

#suggestions div {
  padding: 8px 10px;
  cursor: pointer;
}

#suggestions div:hover {
  background-color: #7DABCB;
}

button, input, select, textarea {
  font-family: 'Montserrat', sans-serif;
}

button {
  display: block;
  background-color: #357CAE;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #5D96BE;
}

input[type="submit"] {
  display: block;
  background-color: #357CAE;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #5D96BE;
}


.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.button-container button {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
}


@media (max-width: 480px) {
  .button-container {
      flex-direction: column;
      align-items: center;
  }

  .button-container button {
      width: 100%;
  }
}


@media (max-width: 600px) {
  form#formulario, .adminform {
    width: 95%;
    padding: 15px;
    margin-bottom: 20px;
  }
  
  input[type="text"],
  input[type="password"],
  input[type="number"],
  select,
  button {
    font-size: 14px;
    padding: 12px;
    width: 100%;
  }
 
  .menu {
    flex-direction: column;
    align-items: center;
    display: flex;
    gap: 10px;
  }
  
  .menu a {
    margin: 5px 0;
  }
}


ul { 
  list-style: none; 
}


.input-number {
  display: inline-flex;
  align-items: center;
}


.input-number input[type="number"] {
  width: 35px !important;
  height: 35px !important;
  font-size: 20px !important;
  line-height: 35px !important;
  text-align: center;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  appearance: none !important;
}


.input-number input[type="number"]::-webkit-inner-spin-button,
.input-number input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}


@-moz-document url-prefix() {
  .input-number input[type="number"] {
    appearance: textfield !important;
    -moz-appearance: textfield !important;
  }
}

.input-number button {
  width: 35px !important;  
  height: 35px !important; 
  font-size: 20px !important;
  line-height: 35px !important;
  margin: 0 !important;
  border: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #357CAE !important;
  color: white !important;
  border-radius: 4px; 
}

.input-number button:hover {
  background-color: #5D96BE;
}


.inputs-container {
  flex: 1;
  display: flex;
  justify-content: center; 
  gap: 20%;
  transition: gap 0.5s ease;
}

.input-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.input-group label {
  display: block;
  text-align: center;
  width: 100%; 
}

.input-group input[type="number"],
.input-group button {
  height: 40px;
  line-height: 40px;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.input-group input[type="number"] {
  width: 60%;
  text-align: center;
  border: 1px solid #ccc;
}

.input-group button {
  width: 20%;
  background-color: #357CAE;
  color: white;
  border: 1px solid #357CAE;
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-group2 {
  display: flex;
  margin-top: 20px;
  width: 100%;
  align-items: center;
  justify-content: center;
}


.input-group2 input[type="number"],
.input-group2 button {
  width: 35px;
  height: 35px;
  line-height: 35px;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-align: center;
}


.input-group2 button {
  background-color: #357CAE;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 20px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.input-group2 button:hover {
  background-color: #5D96BE;
}

.input-group2 input[type="number"] {
  border: none; 
}


.input-group2 input[type="number"]::-webkit-inner-spin-button,
.input-group2 input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.input-group2 input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}


#warningOverlay {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}


#warningBalloon {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  text-align: center;
  border-radius: 8px;
}

#warningMessage {
  font-size: 16px;
  margin-bottom: 10px;
}


#closeBalloon {
  background-color: #357CAE;
  border: 1px solid #357CAE;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  width: auto;
}

#closeBalloon:hover {
  background-color: #5D96BE;
  border: 1px solid #5D96BE;
}



.image-container {
  display: flex;              
  justify-content: center;  
  align-items: center;    
  gap: 10px;            
}


.image-container img {
  max-width: 150px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}


.checkbox-group { 
  display: flex; 
  flex-direction: column; 
  gap: 5px; 
}


.checkbox-item {
  display: block;
  width: 90%;
  margin: 10px auto;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-item .custom-checkbox {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #357CAE;
  padding: 10px;
  border-radius: 8px;
  transition: color 0.3s ease;
  z-index: 1;
  box-sizing: border-box;
}


.custom-checkbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: background-color 0.2s; 
}


.checkbox-item:hover .custom-checkbox::before {
  background-color: #5D96BE;
}

.checkbox-item:hover .custom-checkbox {
  color: #fff;
}


.checkbox-item input[type="checkbox"]:checked ~ .custom-checkbox::before {
  background-color: #357CAE;
}

.checkbox-item input[type="checkbox"]:checked ~ .custom-checkbox {
  color: #fff; 
}



.checkbox-item .ilha-dias {
  font-size: 14px;
  color: black;
  margin-top: 5px;
}

.checkbox-item input[type="checkbox"]:focus ~ .custom-checkbox {
  outline: 2px solid #357CAE;
}

.checkbox-item input[type="checkbox"]:disabled ~ .custom-checkbox,
.checkbox-item input[type="checkbox"]:disabled ~ .ilha-dias {
  opacity: 0.5;
  cursor: not-allowed;
}



.ilha-dias {
  font-weight: normal;
}

.ilha-ordem {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 10px;
}


.ilha-ordem:not(:empty) {
  background-color: #357CAE; 
  color: #fff; 
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.custom-checkbox {
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #357CAE;
  position: relative;
  z-index: 1;
}
.result-section {
  background-color: white;
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 10px;
  position: relative;
  

  display: flex;
  flex-direction: column; 
  align-items: center;
}


.result-header {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  background-color: #ffffff;
  color: #357CAE;  
  padding: 10px;
  border: 2px solid #357CAE;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.result-header:hover {
  background-color: #5D96BF;
  color: #ffffff;
}


.result-section.expanded .result-header {
  background-color: #357CAE;
  color: #ffffff;
}


.result-content {
  max-height: 0;    
  opacity: 0;      
  overflow: hidden;   
  padding-top: 10px; 
  transition: max-height 0.5s ease, opacity 0.5s ease;
}


.result-section.expanded .result-content {
  max-height: 1000px;  
  opacity: 1;
}


.static-info {
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
  color: #357CAE;
}

.cortextos, .cortexto {
  color: black;
}


.cortexto:link,
.cortexto:visited {
  color: inherit; 
}


.cortexto:hover,
.cortexto:active {
  color: #555;
}

.tabela-dinamica th:first-child,
.tabela-dinamica td:first-child {
  font-weight: bold;
}


.conteudo-atividade {
  background-color: #FFFFFF;
}


#container-centralizado {
  text-align: center;
  margin: 0 auto;
}

.btn-container {
  width: fit-content;
  margin: 10px auto;
  display: flex;
}

#sugestoes_atividades {
  color: black !important;
}



.button-custom {
  padding: 10px;
  cursor: pointer;
  border: 1px solid #357CAE;
  background-color: #357CAE;
  color: white;
  font-family: inherit;
  font-size: inherit;
}


.button-left {
  border-radius: 5px 0 0 5px;
}


.button-right {
  border-radius: 0 5px 5px 0;
  border-left: none;
  margin-left: 3px;
}


.botao-adicionar {
  display: block;
  margin: 10px auto;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #357CAE;
  background-color: #357CAE;
  color: white;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.botao-adicionar:hover {
  background-color: #2c6f98;
  border-color: #2c6f98;
}

.link-saibamais {
  display: inline-block;
  margin: 5px;
  padding: 8px 12px;
  background-color: #357CAE;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.link-saibamais:hover {
  background-color: #2c6f98;
  border-color: #2c6f98;
}

.details-box {
  display: none;
  margin: 0 auto 10px auto;
  width: fit-content;
  padding: 10px;
  border: 1px solid #357CAE;
  border-radius: 5px;
  background-color: #fff;
}


.form-step {
  opacity: 0;
  transition: opacity 1s ease-in;
  display: none;
}


.form-step.visible {
  opacity: 1;
  display: block;
}

.detalhes-sugestao {
  background-color: #FFFFFF;
}

.botao-sugestao {
  display: block;
  width: 90%;    
  margin: 10px auto;  
  padding: 10px;
  border: 2px solid #357CAE;
  border-radius: 8px;
  background-color: #fff;
  color: #357CAE;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box; 
}

.botao-sugestao:hover {
  background-color: #5D96BE;
  color: #fff;
}

.botao-sugestao.selecionado {
  background-color: #357CAE;
  color: #fff;
}


.botao-alojamentos {
  display: block;
  width: 90%;    
  margin: 10px auto;  
  padding: 10px;
  border: 2px solid #357CAE;
  border-radius: 8px;
  background-color: #fff;
  color: #357CAE;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box; 
}

.botao-alojamentos:hover {
  background-color: #5D96BE;
  color: #fff;
}

.botao-alojamentos.selecionado {
  background-color: #357CAE;
  color: #fff;
}



.botao-sugestao2 {
  display: block;
  width: 90%;  
  margin: 10px auto;  
  padding: 10px;
  border: 2px solid #357CAE;
  border-radius: 8px;
  background-color: #fff;
  color: #357CAE; 
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box; 
}

.botao-sugestao2:hover {
  background-color: #5D96BE;
  color: #fff;
}

.botao-sugestao2.selecionado {
  background-color: #357CAE;
  color: #fff;
}

.botao-sugestao3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 0;
  padding: 10px 10px 10px 40px;
  border: 2px solid #357CAE;
  border-radius: 8px 0 0 8px;
  background-color: #fff;
  color: #357CAE;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
}

.botao-sugestao3:hover {
  background-color: #5D96BE;
  color: #fff;
}


.icone-botao {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #357CAE;
}


.botao-sugestao3:hover .icone-botao {
  color: #fff;
}

.texto-botao {
  display: inline-block;
  width: 100%;
  text-align: center;
}




.botao-seta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10%;
  padding: 10px;
  cursor: pointer;
  border: 2px solid #357CAE;
  background-color: #fff;
  color: #357CAE;
  border-left: none;
  border-radius: 0 8px 8px 0;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  margin: 0;
}

.botao-seta:hover {
  background-color: #5D96BE;
  color: #fff;
}


.botao-seta.selecionado {
  background-color: #5D96BE;
  color: #fff;
}


.container-botoes {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 10px auto; 
}


.atividade-item img {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.atividade-item img:hover {
  transform: scale(1.1); 
}


.sugestao-item img {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.sugestao-item img:hover {
  transform: scale(1.1); 
}

.content-container img {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.content-container img:hover {
  transform: scale(1.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
}


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

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

@media only screen and (max-width: 700px) {
  .vertical-table, .vertical-table thead, .vertical-table tbody, .vertical-table th, .vertical-table td, .vertical-table tr {
    display: block;
  }
  

  .vertical-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  

  .vertical-table tr {
    border: 1px solid #ccc;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
  }
  

  .vertical-table td {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 10px;
    display: block;
  }
  
  
  .vertical-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .inputs-container {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: clamp(5%, 10vw, 20%);
  }
}

.resultados {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto 20px;
}


#calcular:disabled {
  background-color: gray;
  cursor: not-allowed;
  opacity: 0.5;
}

select {
  font-size: 16px;
  height: 40px;  
  padding: 8px 12px;
  width: 100%;    
  background-color: white;
  color: #333; 
  border: 1px solid #ccc; 
  border-radius: 4px;  
  appearance: none; 
  -webkit-appearance: none; 
  -moz-appearance: none; 
}

select:focus {
  outline: none; 
  border: 2px solid #357CAE; 
}

select::-ms-expand {
  display: none;
}


.boldstyle {
  font-weight: bold;
  color: black; 
}


.titulo-link {
  text-decoration: none; 
  color: black;  
  transition: text-decoration 0.2s ease-in-out; 
}

.titulo-link:hover {
  text-decoration: underline; 
}


.step-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}


.step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #ccc;
  pointer-events: none; 
}


.step.active {
  background-color: #357CAE;
  border-color: #357CAE;
  color: #fff;
}

#step-2, #step-3, #step-4, #step-5 {
  text-align: center;
}



.help-button {
  background-color: #357CAE;
  border: 2px solid #357CAE;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  font-weight: bold;
}

.help-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border-radius: 50%;
}


.help-button a:link,
.help-button a:visited {
  color: inherit;
  text-decoration: none;
}

.help-button a:hover,
.help-button a:active {
  color: inherit; 
  text-decoration: none; 
}



.bottombuttons-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0; 
  font-weight: bold;
}

.logout a {
  display: inline-block;
  padding: 10px 20px;
  background-color: red;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.logout a:hover {
  background-color: darkred;
}


.menu a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #357CAE;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  margin: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.menu a:hover {
  background-color: #28608C;
  transform: scale(1.05);
}

.green-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.green-button:hover {
  background-color: #218838;
  transform: scale(1.05);
}


.voltar-button {
    display: table;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #357CAE;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
}
.voltar-button:hover {
    background-color: #28608C;
    transform: scale(1.05);
}


.red-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: red;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}
.red-button:hover {
  background-color: darkred;
  transform: scale(1.05);
}


.action-links a.btn {
  display: inline-block;
  width: 150px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  margin: 4px;
  transition: background-color 0.3s, transform 0.3s;
  white-space: nowrap;
}

.action-links a.btn.ver {
  background-color: #28a745;
  color: white;
}


.action-links a.btn.editar {
  background-color: #ffc107;
  color: #212529;
}


.action-links a.btn.eliminar {
  background-color: #dc3545;
  color: white;
}


.action-links a.btn:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .action-links a.btn {
    padding: 8px 16px;
    font-size: 14px; 
    margin: 2px;
  }
}

.language-switcher {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px; 
  display: flex;
  align-items: center;
}


.language-switcher p {
  text-decoration: none;           
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.9rem;               
  padding: 0.3em 0.8em;       
  margin: 0 4px;               
  color: #357CAE;                  
  background-color: transparent;     
  border: 1px solid transparent;  
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}


.language-switcher p:hover {
  border-color: #2a5c7f;             
  background-color: #e8f2fa; 
  cursor: pointer;
}

.language-switcher p.active {
  color: #fff;
  background-color: #357CAE;
  border-color: #357CAE;
  pointer-events: none;
  cursor: default;      
}

.en {
    display: none;
}


@media (max-width: 500px) {
  .language-switcher {
    text-align: center; 
    margin-top: 15px;
    margin-bottom: 15px;  
  }
  
  .language-switcher a {
    font-size: 0.75rem;   
    padding: 0.2em 0.5em;  
    margin: 0 3px;       
  }
}

@media (max-width: 360px) {
  .language-switcher {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .language-switcher a {
    margin: 4px 0;
  }
}

.imagem-maior {
  width: 250px;  
  border-radius: 15px;
  object-fit: cover;
}

#neutralizarsugestoes2 {
  margin-top: 50px;
  margin-bottom: 50px;
}