/* titles border */

.after-border:after {
  content: "";
  display: block;
  height: 8px;
  width: 160px;
  background-color: #f15d36;
  border-radius: 100px;
  margin-top: 10px;
}

.after-border.after-center:after {
  margin: 10px auto 0 auto !important;
}

.footer-wrapper {
  display: flex;
  align-items: start;
  gap: 4rem;
}

.logo-footer {
  width: 200px;
}

.address-footer {
  color: #fff;
  max-width: 300px;
  flex: 1;
}

.menu-footer nav ul {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.contact-footer {
  flex: 1;
  max-width: 200px;
}

.menu-footer {
  flex: 1;
  max-width: 200px;
}

footer .social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  align-items: end;
}

/* representatives page */

.representatives {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 100px 0;
}

.representatives h1 {
  text-align: center;
}

.representatives-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.representatives-content > div {
  flex: 1;
}

/*==================================================Quem Somos==================================================*/

.banner-about {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #031b2b;
  padding: 50px 0;
  min-height: 300px;
  margin-bottom: 50px;
}

.mvv {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 4rem;
}

.mvv-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.mvv-item h3 {
  font-size: 24px;
  color: #111;
}

.mvv-item p,
.mvv-item ul > li {
  font-size: 16px;
  text-align: center;
}

.mvv-icon {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 200px;
  padding: 24px;
  background-color: #fe5600;
  color: white;
}

.mvv-icon img {
  width: 64px;
  height: 64px;
}

/*==================================================Header==================================================*/

.topofixo {
  position: fixed;
  width: 100%;
  z-index: 10;
  top: 0px;
}

.topofixo .logo img {
  width: 180px;
  transition: 0.3s;
}

.topofixo #menu2 {
  font-size: 15px;
  margin: 29px 0;
  margin-right: 10px;
}

.topofixo .topo {
  display: none;
}

.main-header {
  /* display: flex;
  padding: 20px 0;
  justify-content: space-between;
  align-items: center; */
}

header {
  margin: 0 auto;
  box-shadow: 2px -1px 14px 0px #666;
  background: white;
  border-bottom: 2px solid #cacaca;
}

header .logo {
  float: left;
  /* margin: 20px 0; */
}

header .logo img {
  width: 180px;
  transition: 0.3s;
}

header .right {
  float: right;
  text-align: right;
  color: #666;
  font-size: 12px;
  margin: 17px 0px;
}

header .right strong {
  font-size: 20px;
}

.blue {
  color: #18a6cb;
}

.logo > a {
  display: flex;
}

/*==================================================Footer==================================================*/

footer {
  clear: both;
  margin-top: 15px;
  padding: 50px 0;
  background: #031b2b;
}

.contact-footer {
  float: left;
  color: #eee;
}

.contact-footer strong {
  /* font-size: 18px; */
  /* letter-spacing: -1px; */
}

.contact-footer a {
  text-decoration: none;
  color: #fff;
}

footer address {
  margin: 0 0 10px 0;
  /* font-size: 12px; */
  font-style: normal;
  line-height: 1.5;
}

footer address span {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: bold;
  display: block;
}

footer .menu-footer {
  text-align: right;
}

footer .menu-footer nav {
  margin: 3px 0;
}

footer .menu-footer nav li {
  display: inline;
  /* padding: 0 10px 0 0; */
}

footer .menu-footer nav li a {
  color: #eee;
  /* font-size: 11px; */
  text-decoration: none;
}

footer .menu-footer nav li a:hover {
  color: #bbb;
}

footer .social {
  margin: 15px 0 0 0;
  float: right;
}

footer .social .social-icons:hover {
  opacity: 1;
  background: #fff;
  color: #171717;
}

footer .social .social-icons {
  width: auto;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #fe5600;
  color: #fff;
  min-width: 25px;
  min-height: 20px;
  text-align: center;
  /* box-shadow: 2px 2px 2px #ccc; */
}

.copyright-footer {
  text-align: left;
  font-size: 10px;
  color: #eee;
  padding: 20px 0;
  background: #333;
}

.copyright-footer .selos {
  float: right;
}

.copyright-footer .selos strong {
  background: #fff;
  color: #363b36;
  padding: 0px 5px;
}

.copyright-footer .selos a {
  margin: 0 0 0 5px;
  color: #b7b7b7;
  text-decoration: none;
  opacity: 0.8;
  transition-property: all;
  transition-duration: 0.3s;
}

.copyright-footer .selos a:hover {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .address-footer {
    text-align: center;
  }

  address {
    text-align: center;
  }

  .contact-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer .menu-footer nav li {
    text-align: center;
  }

  footer .social {
    flex-direction: row;
    justify-content: center;
  }

  .mvv {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .representatives-content {
    flex-direction: column-reverse;
    padding: 0 20px;
  }
}
