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

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.logo {
  text-decoration: none;
  margin-right: 400px;
}

header {
  background-color: #F43135;
  padding: 25px 0;
  z-index: 1;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

header h1 {
  color: #000000;
  margin: 0;
  margin-bottom: 20px;
  font-size: 24px;
  display: inline;
  font-family: Arial, sans-serif;
}

.search-container {
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 350px;
  background-color: #f8f8f8;
}

.search-input {
  width: calc(100% - 40px);
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  margin-left: 10px;
}

.search-button {
  height: 40px;
  background-color: #f8f8f8;
  color: #848484;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.bi::before, [class*=" bi-"]::before, [class^=bi-]::before {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  margin-left: 10px;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
}

header input[type="text"] {
  padding: 5px;
  width: 400px;
  border: none;
  background-color: transparent;
  color: #070606;
  font-family: Arial, sans-serif;
}

header button {
  padding: 10px 15px;
  background-color: #f8f8f8;
  border: none;
  cursor: pointer;
  color: #fff;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 78px);
}

nav.menu-lateral {
  width: 78px;
  height: 100%;
  background-color: #222;
  padding: 40px 0 40px 1%;
  box-shadow: 3px 0 0 #F53234;
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  transition: .5s;
}

nav.menu-lateral.expandir {
  width: 300px;
}

.btn-expandir {
  width: 100%;
  padding-left: 10px;
}

.btn-expandir > i {
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

ul {
  height: 100%;
  list-style-type: none;
}

ul li.item-menu {
  transition: 0.2s;
}

ul li.ativo {
  background-color: #f00000;
}

ul li.item-menu:hover {
  background-color: #f00000;
}

ul li.item-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  padding: 20px 4%;
  display: flex;
  margin-bottom: 20px;
  line-height: 40px;
  margin-top: 10px;
}

ul li.item-menu a .txt-link {
  margin-left: 60px;
  transition: .5s;
  opacity: 0;
  font-family: "Open Sans", sans-serif;
}

nav.menu-lateral.expandir .txt-link {
  margin-left: 30px;
  opacity: 1;
}

ul li.item-menu a .icon > i {
  font-size: 30px;
  margin-left: 5px;
}

.historia-empresa {
  background-color: #f8f8f8;
  padding: 40px 0;
  width: 100%;
}

.historia-empresa h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
  color: #F43135;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

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

.historia-content img.historia-img {
  width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.historia-content p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  max-width: 600px;
}

.missao-visao-valores {
  background-color: #f9f9f9;
  padding: 40px 0;
  width: 100%;
}

.missao-visao-valores h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
  color: #F43135;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

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

.mv-content img.mv-img {
  width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mv-content .mv-text {
  max-width: 600px;
}

.mv-content .mv-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #F43135;
}

.mv-content .mv-text p,
.mv-content .mv-text ul {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
}

.mv-content .mv-text ul {
  padding-left: 20px;
}

.mv-content .mv-text ul li {
  margin-bottom: 10px;
}

/* Seção Final */
.footer-section {
  background-color: #333; 
  color: #fff;
  padding: 40px 20px;
  text-align: left;
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-products, .footer-contact {
  flex: 1;
  min-width: 200px;
  margin: 20px;
}

.footer-products h2, .footer-contact h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.footer-products ul, .footer-contact ul {
  list-style-type: none;
  padding: 0;
}

.footer-products li, .footer-contact li {
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-products a , .footer-contact a {
  color: #fff;
  text-decoration: none; 
  transition: color 0.3s;
}

.footer-products a:hover {
  color: #F43135;
}

.footer-contact a:hover {
  color: #F43135;
}

.footer-text {
  text-align: center;
  font-size: 1em;
  border-top: 1px solid #555;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-products, .footer-contact {
    margin: 20px 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-products, .footer-contact {
    margin: 20px 0;
    text-align: center;
  }
}