/* faixa info */
.section-info {
  background: var(--color-04);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-info {
  max-width: var(--width-size);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0;
  flex-wrap: wrap;
}

.icon-info {
  font-size: 4rem;
  width: 8rem;
  height: 8rem;
  color: black;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.info {
  font-size: 2rem;
  font-weight: 400;
  color: white;
}

.text-info-line__2 {
  font-weight: bold;
}

.btn-info {
  background-color: var(--color-01);
  padding: 1rem 5rem;
  color: white;
  font-size: 2rem;
  border: none;
  cursor: pointer;
}

.btn-info:hover {
  background-color: var(--color-02);
}

.btn-padrao-info {
  /* background: var(--color-04) !important; */
  /* width: 100%; */
}

/* fim */

.footer {
  position: static;
  bottom: 0;
  width: 100%;
  /* padding: 5rem 0; */
  background: var(--color-03);
  display: flex;
  flex-direction: column;
  color: var(--color-04);
  align-items: center;
  gap: 2rem;
  background: linear-gradient(#f3eaea, #c0c3ddf0);
}

.container-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.div-footer-imagem {
  width: 30rem;
  max-width: 100%;
}

.logo-footer {
  /* width: 30rem; */
  max-width: 100%;
  max-height: 20rem;
}

.footer-informacoes {
  font-size: 1.5rem;
}

.footer-informacoes>div~div {
  margin-bottom: 2rem;
}

.p1 {
  font-size: 2rem;
}

.p1,
.p2,
.p3,
.p4 {
  padding: 1rem 0;
}

.titulo-footer {
  font-size: 2rem;
  font-weight: bold;
}

.imagem-footer,
.text-footer {
  padding: 0 0 3rem 0;
}

.imagem-footer {
  margin: auto 0;
  text-align: center;
}

.text-footer {
  font-size: 1.5rem;
  line-height: 2.2rem;
}

.footer-redes-sociais {
  display: flex;
  gap: 1rem;
}

.icon-footer-redes {
  border: solid 1px var(--color-01);
  /* padding: 1rem; */
  /* margin: 0 1rem 0 0; */
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: var(--color-02);
  color: #fff;
}

.icon-footer-redes a {
  text-decoration: none;
  color: var(--color-01);
  font-size: 1.5rem;
}

.icon-footer-redes:hover {
  background-color: var(--color-04);
}

.developer {
  display: flex;
  /* flex-direction: column; */
  justify-content: space-evenly;
  align-items: center;
  font-size: 1.5rem;
  width: var(--width-size);
  padding: 1rem;
}

.footer-oversee {
  display: flex;
  text-align: center;
  justify-content: center;
}

.footer-logo-over {
  text-align: center;
  text-decoration: none;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-04);
}

.footer-social {
  display: flex;
  justify-content: space-between;
}

.footer-social-icon {
  padding: 1rem;
  margin: 0 1rem;
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  color: black;
  cursor: pointer;
  transition: all 0.5s;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icon:hover {
  transform: scale(1.2);
  backface-visibility: hidden;
  /* fixa o bug de blur em texto on hover */
}

.ul-footer-menu {
  list-style-type: none;
  margin: 0;
  /* width: max-content; */
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.ul-footer-menu li::before {
  content: "\203A";
  padding: 0 10px 0 0;
  font-weight: bold;
}

[class^="titulo-footer"] {
  color: var(--color-01);
  font-weight: bold;
  font-size: 2rem;
  line-height: 4rem;
  display: flex;
  flex-direction: column;
  padding: 0 0 3rem;
  gap: 1rem !important;
  text-align: center;
}

[class^="titulo-footer"]::after {
  content: "";
  width: 50px;
  border-bottom: 3px solid;
  color: var(--color-01);
}

.li-footer-menu {
  font-size: 1.5rem;
  cursor: pointer;
}

.li-footer-menu a {
  text-decoration: none;
  color: var(--color-04);
}

/* endereco */
.endereco,
.contato,
.email,
.horario {
  display: flex;
  gap: 1rem;
}

.icon-endereco,
.icon-contato,
.icon-email,
.icon-horario {
  width: 3rem;
  color: var(--color-01);
  font-size: 2rem;
  text-align: center;
}

.nome-endereco,
.rua-endereco,
.numero-endereco,
.bairro-endereco {
  padding: 0 0 1rem;
}

.copyright {
  text-align: center;
}

@media (max-width: 800px) {
  .container-footer {
    flex-direction: column;
  }

  .container-info {
    width: 90vw;
  }
}