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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f8f9fa;
  font-size: smaller;
  font-style: normal;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  background: white;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

h1 {
  margin-bottom: 30px;
  font-size: 26px;
  color: #594e2d;
  text-align: center;
}

h2 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #594e2d;
  text-align: center;
}

h3 {
  font-family: 'Roboto', sans-serif;
  color: #594e2d;
  font-size: 16px;
  font-style: normal;
}

label {
  color: #333;
  font-size: 16px;
}

p {
  color: #333;
  font-size: 16px;
  text-align: center;
  margin: 20px 0;

}

/* Select global padrão */
select {
  background-color: #ffffff;
  /* fundo */
  color: #000000;
  /* cor do texto */
  border: 1px solid #3a5c59;
  /* borda */
  padding: 6px 10px;
  /* espaçamento interno */
  border-radius: 5px;
  /* cantos arredondados */
  font-size: 14px;
  /* tamanho do texto */
  cursor: pointer;
  /* cursor de mão */
  outline: none;
  /* remove contorno ao focar */
}

/* Se quiser mudar ao passar o mouse */
select:hover {
  background-color: #e3f8f6;
}

input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  font-size: 16px;
}

button {
  padding: 8px;
  border: 1px solid #3a5c59;
  border-radius: 6px;
  background-color: #3a5c59;
  color: #dab452;
  cursor: pointer;
  min-width: 100px;
  font-size: 14px;
}

button:hover {
  background-color: #2b4442;
}

.botao-container {
  text-align: center;
  margin-top: 20px;
}

.botao-acao {
  background-color: #3a5c59;
  color: #dab452;
  cursor: pointer;
}

.botao-acao:hover {
  background-color: #2b4442;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #ccc;
  color: #666;
  box-shadow: none;
}


/*Botões da paginação*/
.btn-paginacao {
  all: unset;
  display: inline-block;
  background-color: #ffffff;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  user-select: none;
  transition: background-color 0.3s ease;
}

.btn-paginacao:hover:not(:disabled) {
  background-color: #dadada;
}

.btn-paginacao:disabled {
  background-color: white;
  cursor: default;
  border: 1px solid black;
  color: black;
}

.imagem-container {
  width: 100%;  
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagem-container img {
  max-width: 200px;
  max-height: 200px;
  object-fit: contain; 
}

.container ul {
    list-style: none; 
    padding: 0;
    margin: 20px auto; 
    text-align: center; 
    max-width: 600px; 
}

.container ul li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
    display: inline-block; 
    text-align: left; 
    width: 100%; 
}

.container ul li::before {
    content: "✔"; 
    color: #004080;
    font-weight: bold;
    position: absolute;
    left: 0;
}
