p {
  text-align: justify;
}

main ul li a {
  color: #0279a5;
  text-decoration: underline;
}

main ul li a:hover {
  color: #0279a5;
  text-decoration: none;
}

.img-redonda {
  max-width: 420px;
  max-height: 420px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  top: 20px;
}

.img-redonda::after {
  content: "";
  top: 10px;
  left: -10px;
  bottom: -10px;
  right: 10px;
  background-color: #00e881;
  position: absolute;
  border-radius: 50%;
}

.img-redonda img {
  border-radius: 50%;
  position: relative;
  z-index: 2;
  width: 420px;
  height: 420px;
  object-fit: cover;
}

.produtos {
  padding-top: 0;
}

.texto.azul {
  background-color: #00314e;
}

.texto.azul h1 {
  color: #00e881;
  text-align: left;
}

.texto.azul h3 {
  color: #fff;
  font-weight: 400;
  line-height: 130%;
}

.texto .banner-novo {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  place-items: center;
  gap: 4rem;
}

.lista-icones {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 75px 20px;
  margin: 80px 0 60px 0;
  align-items: stretch;
}

.lista-icones li {
  border-radius: 1.5rem;
  background-color: #fff;
  padding: 2rem 2rem 2rem 2rem;
  grid-column: 2 span;
}

.lista-icones li .img {
  margin: -80px auto 20px auto;
  width: 140px;
  height: 140px;
  background-color: #00e881;
  border-radius: 50%;
  transition: 0.7s;
}

.lista-icones li .img img {
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
}

.lista-icones li:hover .img {
  transform: scale(1.3);
}

.lista-icones li h3 {
  font-weight: 700;
  font-size: 1.25rem;
  font-family: "Noto Sans", sans-serif;
  text-align: center;
}

.lista-icones li p {
  text-align: center;
}

.lista-icones li:last-child {
  grid-column: 4 span;
}

.lista-icones.extra li {
  grid-column: 6 span;
}
.lista-icones.dois {
  grid-template-columns: repeat(4, 1fr);
}
.lista-icones.dois li:last-child {
  grid-column: 2 span;
}

.lista-icones.quatro {
  grid-template-columns: repeat(8, 1fr);
}
.lista-icones.quatro li:last-child {
  grid-column: 2 span;
}
.lista-icones.borda {
  margin: 40px 0 40px 0;
  gap: 20px;
}
.lista-padrao {
  margin: 20px 0;
}
.lista-padrao li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  line-height: 130%;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
}
.lista-padrao li::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: -5px;
  left: 0;
  margin-right: 10px;
  background-image: url("../img/icones/check.png");
  border-radius: 3px;
  background-size: contain;
  background-repeat: no-repeat;
}

.caixa-branca {
  border-radius: 1.5rem;
  background-color: #fff;
  padding: 2rem 2rem 2rem 2rem;
  margin-bottom: 2rem;
}
.caixa-branca h3 {
  margin-bottom: 1rem;
}
.sticky-enquiry {
  position: fixed;
  bottom: -90px;
  opacity: 0;
  z-index: 999;
  transition: 0.7s;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sticky-enquiry.revealed {
  bottom: 0;
  opacity: 1;
}
.centralizado h3 {
  text-align: center;
  line-height: 130%;
  margin-bottom: 4rem;
  padding: 0 2rem;
}
.centralizado h3 span {
  color: #00bf6a;
}

@media screen and (max-width: 479px) {
  .caixa-branca {
    padding: 2rem 1rem;
  }
  .img-redonda {
    max-width: 100%;
    max-height: 100%;
  }

  .lista-icones li {
    grid-column: 4 span !important;
  }

  .texto.azul h1 {
    line-height: 100%;
  }

  .texto .banner-novo {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .img-redonda img {
    width: 320px;
    height: 320px;
  }

  .lista-icones li {
    padding: 2rem 0rem 2rem 0rem;
  }

  .lista-icones {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 65px 10px;
    margin: 80px 0 30px 0;
  }

  .lista-icones > div {
    display: none;
  }
}
