body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background-color: #FBDDBB;
  color: #71421E;
  font-size: 20px;
  padding: 0 20px;
  padding: 0;
}

/* Formatação do Menu */

#icone {
  display: inline-block;
  width: 3%;
  margin-left: 3px;
  margin-right: 5px;
}

nav#menu {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-bottom: 20px;
}

#icone {
  margin-right: -10px;
}

nav#menu ul {
  font-size: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  text-transform: uppercase;
  font-weight: bold;
}

nav#menu li {
  margin: 0 10px;
}

nav#menu h1 {
  display: none;
}

nav#menu a{
  color: #71421E;
  text-decoration: none;
  padding: 10px;
  transition: color 0.3s ease;
}

nav#menu a:hover {
  color: #FF8C00;
}

.search-container {
  display: flex;
  align-items: center;
  margin-bottom: 5px; 
}

#search-form {
  position: relative;
}

#search-input {
  padding: 8px;
  border: none;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  width: 200px;
  transition: box-shadow 0.3s ease;
}

#search-input:focus {
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#search-input:placeholder {
  color: #aaa;
}

#lupa {
  position: absolute;
  top: 40%;
  left: 180px;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
}

#lupa i {
  color: #71421e;
  font-size: 16px;
}

/*Fim da Formatação do Menu*/
#branco{
  background-color: #ffffff;
  width: 100%;
  height: 500px;
  flex-wrap: wrap;
  justify-content: center;
}

h1{
  position: absolute;
  top: 10%;
  left: 26%;
  transform: translate(-50%, -50%);
  margin-bottom: -1px;
  margin-left: 30px;
  font-size: 30px;
}

h2{
  margin-bottom: -1px;
  margin-left: 29%;
  font-size: 30px;
}

.separador {
  border-bottom: 1px solid #71421e;
  max-width: 80%; 
  margin: 0 auto;
  padding-bottom: 70px;
}

.image-container {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tamanho {
  padding-right: 15px;
  width: 250px; 
  height: 350px;
  text-align: center;
}

.tamanho img{
  display: inline-block;
  vertical-align: middle;  
}

.centralizar {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

table {
  margin-top: 20px 0 40px;
}

thead {
  background: #71421e;
  color: white;
  font-weight: bold;
}

tbody{
  background-color: white;
}

td, th{
  border: 1px solid #000000;
  padding: 8px 10px;
}
/*Rodapé*/

footer {
  margin-top: 40px;
  background-color: #f5f5f5;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

footer p {
  margin-bottom: 10px;
}

footer a {
  color: #71421E;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-social-icons {
  margin-top: 20px;
}

.footer-social-icons i {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #71421E;
  border-radius: 50%;
  margin: 0 5px;
  text-align: center;
  line-height: 30px;
}

.fa-facebook-f {
  color: #ffffff;
}

.fa-twitter {
  color: #ffffff;
}

.fa-instagram {
  color: #ffffff;
}