/* -------------------- Global -------------------- */

main {
  width: 100%;
  background: #F7F9FA;
}

/* -------------------- Banner Principal -------------------- */

/* -------------------- Banner Principal -------------------- */

.banner-principal {
    width: 100%;
    margin-top: 110px;
    overflow: hidden;
}

.banner-principal .content {
    display: flex;
    flex-direction: column;
    width: 90%;
    min-height: 456px;
    justify-content: space-between;
    margin: auto;
    max-width: 1206px;
    background: var(--cor-principal);
    border-radius: 30px;
}

.banner-principal .content .content-bottom {
    display: flex;
    flex-direction: row;
    margin: 17px auto;
    padding: 30px 20px;
    border-radius: 20px;
    width: calc(97% - 40px);
    gap: 40px;
    background: var(--cor-fundo-principal);
}

.banner-principal .info-banner{
    display: flex;
    flex-direction: row;
    margin: 0 auto 17px;
    padding: 5px 20px;
    height: 50px;
    border-radius: 15px;
    width: calc(97% - 40px);
    gap: 40px;
    background: var(--cor-fundo-principal);
}

.banner-principal .info-banner .info{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}
.banner-principal .info-banner .info span{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.banner-principal .info-banner .info span strong{
  margin-right: 10px;
}
.banner-principal .info-banner .info span img{
    width: 35px;
}

.banner-principal .compartilhar{
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-principal .content .content-bottom .banner {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.banner-principal .content .content-bottom img {
    width: 50%;
    height: auto;
}

.banner-principal .content .content-bottom .banner h1 {
    font-size: 40px;
    width: 85%;
}
.banner-principal .content .content-bottom .banner h1 span {
    color: #1C8FBD;
}
.banner-principal .content .content-bottom .banner p {
    color: #333333;
    font-size: 16px;
    font-weight: 300;
    margin-top: 21px;
    line-height: 24px;
}
/* -------------------- SeÃƒÂ§ÃƒÂ£o de ConteÃƒÂºdo -------------------- */

main .secao_conteudo {
  width: 100%;
  margin-top: 40px;
  background: var(--cor-fundo-principal);
}

main .secao_conteudo .text {
  width: 90%;
  margin: auto;
  max-width: 1206px;
  margin-bottom: 40px;
}

.text p,
.text a,
.text label,
.text span {
  color: #333333;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.text h1,
.text h2,
.text h3,
.text h4 {
  margin: 20px 0;
}

/* -------------------- Postagens -------------------- */

.secao-posts{
  width: 100%;
  background: var(--cor-fundo-secundaria);
  margin-bottom: 2px;
}

.secao-posts .cards-produto{
  width: 90%;
  max-width: 1206px;
  display: flex;
  flex-direction: column;
  min-height: 450px;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 auto;
  padding: 40px 0;
  justify-content: center;
}

.secao-posts .cards-produto .title-produto{
  
}

.secao-posts .cards-produto .cards{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 35px;
  margin: 0 auto;
  justify-content: center;
}

.secao-posts .cards-produto .cards a{
  max-width: 271.5px;
  min-width: 271.5px;
  display: block;
  text-decoration: none;
}

.secao-posts .cards-produto .cards a .card{
  width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.secao-posts .cards-produto .cards a .card img{
  width: 100%;
  border-radius: 18px;
}

.secao-posts .cards-produto .cards a .card h3{
  font-size: 18px;
    color: black;
    margin-bottom: 16px;
    line-height: 25px;
}

.secao-posts .cards-produto .cards a .card p{
  color: #333333;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}

/* -------------------- Responsividade -------------------- */

@media only screen and (max-width: 800px) {
  .banner-principal .content .content-bottom {
    margin: 13px auto;
    flex-direction: column-reverse;
  }

  .banner-principal .content .content-bottom .banner h1 {
    font-size: 24px;
    width: 100%;
  }

  .banner-principal .content .content-bottom img {
    min-height: 50vw;
    width: 100%;
  }

  .banner-principal .content .content-bottom .banner p,
  .text p,
  .text a,
  .text label,
  .text span {
    font-size: 15px;
  }
  .banner-principal .info-banner{
    height: auto;
  }
  .secao-posts .cards-produto .cards{
      overflow: scroll;
      flex-wrap: nowrap;
      justify-content: flex-start;
  }
}

@media only screen and (max-width: 600px) {
  .banner-principal {
  max-height: fit-content;
  }
}
