@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Galada&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Silkscreen:wght@400;700&display=swap');

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #003366;
    color: white;
    padding: 10px;
}

.logo img {
  max-height: 100px; 
  width:100px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}



#searchBox {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  width: 200px;
  margin-right: 10px;
}
#searchBox:focus {
  border-color: #007bff;
}


.btn-header {
    color: white;
    text-decoration: none;
    background: #66727a00;
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 20px;
}

.btn-header:hover {
    background: #005999;
}


#catalogo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.produto {
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 10px;
    width: 280px;
    text-align: center;
}

.produto img {
    max-width: 150px;
    height: auto;
    border-radius: 5px;
}

.produto h3 {
    font-size: 18px;
    margin: 10px 0;
}

.produto p {
    font-size: 14px;
    color: #666;
}

button {
    background: #004a99;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #003366;
}




.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px;
  align-items: flex-start;
  background-color: #f8f8f8;
}

.institutional,
.menu,
.contact {
  width: 30%;
  box-sizing: border-box;
}

.institutional h3,
.menu h3,
.contact h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #003366;
}

.institutional p,
.menu ul li,
.contact p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

.institutional p img {
  width: 30px;
  margin-right: 12px;
  vertical-align: middle;
}

.menu ul {
  list-style: none;
  padding: 0;
}

.menu ul li {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
  position: relative;
  transition: color 0.3s ease-in-out;
  display: block;
  width: max-content;
}

.menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #003366;
  transition: width 0.3s ease-in-out;
}

.menu ul li:hover {
  color: #003366;
}

.menu ul li:hover::after {
  width: 100%;
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact p {
  color: #333;
  font-size: 16px;
}

.contact .button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #003366;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.contact .button:hover {
  background-color: #002244;
}

.footer-bottom-line {
  width: 100%;
  height: 5px;
  background-color: #003366;
}

.footer-bottom {
  background-color: #002855;
  padding: 10px 0;
  text-align: center;
  color: white;
  font-size: 14px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .institutional,
  .menu,
  .contact {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-content {
    padding: 20px;
  }
}
