@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;800;900&display=swap";
* {
  margin: 0;
  padding: 0;
}
.topo {
  display: none;
}
:root {
  --primary: #f3911d;
  --secondary: #5b5b5f;
}
body {
  font-family: "Montserrat", sans-serif;
}
p {
  margin-bottom: unset;
}
.banner-container {
  width: 100%;
  background-color: #f2f2f2;
}
.banner-container img {
  margin: 0 auto;
  width: 100%;
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
section {
  width: 100%;
}

main .title {
  text-align: center;
  margin-top: 54px;
  font-size: 20px;
  width: 78%;
  color: var(--secondary);
  line-height: 24px;
}
main .title .title--bold {
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 40px;
  color: var(--primary);
}
@media (max-width: 780px) {
  main .title .title--bold {
    font-size: 20px;
  }
}
main .title .title--info {
  line-height: 24px;
  line-break: auto;
  margin-bottom: 30px;
}
@media (max-width: 780px) {
  main .title .title--info {
    font-size: 20px;
  }
}
main .icons--container {
  width: 100%;
  background-color: var(--primary);
  margin: 48px;
}
main .icons {
  width: 79%;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 780px) {
  main .icons {
    flex-direction: column;
    width: 100vw;
    align-items: center;
  }
  .title .fix {
    font-size: 18px;
  }
}
main .icons .icons--content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 205px;
  height: 191px;
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 15px 5px #f07643;
  box-shadow: 5px 5px 15px 5px #f07643;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.icons--content:hover {
  transform: translateY(-8px) scale(1.02);
}
@media (max-width: 780px) {
  main .icons .icons--content {
    margin: 20px;
  }
}
main .icons .icons--content img {
  width: 28%;
  margin: 16px auto 12px;
}
main .icons .icons--content .content--title {
  color: var(--primary);
  font: normal bold 23px Montserrat;
}
main .icons .icons--content .content--text {
  color: var(--primary);
  font: normal normal 17px Montserrat;
  width: 160px;
}
main .icons .icons--content:first-child img {
  width: 44%;
}
main .icons .icons--content:nth-child(3) img {
  width: 32%;
}

/* albuns */
main .albuns,
.albuns-premium,
.fotolivros {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  margin: 50px;
}
main .albuns .albuns--title,
.albuns-premium .albuns--title,
.fotolivros .albuns--title {
  color: var(--primary);
  font: normal 800 35px Montserrat;
  margin-bottom: 40px;
}
.albuns--content {
  display: grid;
  justify-items: center;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 19px;
  width: 95%;
}
@media (min-width: 1500px) {
  
  .albuns--content {
    width: 91%;
  }
}
.albuns--content .div-1 img,
.albuns--content .div-2 img,
.albuns--content .div-3 img {
  width: 100%;
}
.div-1 {
  grid-area: 1 / 1 / 3 / 2;
  width: 535px;
  height: 605px;
  position: relative;
  -webkit-box-shadow: 5px 7px 13px 3px rgba(0, 0, 0, 0.24);
  box-shadow: 5px 7px 13px 3px rgba(0, 0, 0, 0.24);
  border-radius: 17px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.div-2 {
  grid-area: 1 / 2 / 2 / 3;
  width: 536px;
  position: relative;
  height: 292px;
  -webkit-box-shadow: 5px 7px 13px 3px rgba(0, 0, 0, 0.24);
  box-shadow: 5px 7px 13px 3px rgba(0, 0, 0, 0.24);
  border-radius: 17px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.div-3 {
  grid-area: 2 / 2 / 3 / 3;
  width: 536px;
  position: relative;
  height: 292px;
  -webkit-box-shadow: 5px 7px 13px 3px rgba(0, 0, 0, 0.24);
  box-shadow: 5px 7px 13px 3px rgba(0, 0, 0, 0.24);
  border-radius: 17px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.div-4 {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.div-1:hover,
.div-2:hover,
.div-3:hover,
.div-4:hover {
  transform: translateY(-8px) scale(1.02);
}
.albuns--content .card-prod-text {
  position: absolute;
  text-align: left;
  top: 21px;
  margin-left: 23px;
  color: var(--secondary);
  /* border: red solid; */
}
.card-prod-text .prod-text-title {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 29px;
}
.card-prod-text .prod-text-description {
  font-size: 16px;
  margin-bottom: 8px;
}
.card-prod-text .info--product-price__off {
  font-size: 22px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
}
.card-prod-text .card-prod-cta {
  color: #fff;
  background-color: var(--primary);
  text-transform: uppercase;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 18px;
}
.faixa {
  width: 100%;
  background-image: url(/subhomes/lojas-profissional/landing/2026/mostruario/img/icones/faixa.png);
  height: 27px;
  background-size: cover;
  background-repeat: no-repeat;
}
.faixa img {
  width: 100%;
}
/* albuns premium */

.albuns-premium .albuns--content {
  display: grid;
  justify-items: center;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 19px;
  width: 95%;
}
@media (min-width: 1500px) {
  .albuns-premium .albuns--content {
    width: 91%;
  }
}
.albuns--content img {
  width: 100%;
}
.albuns-premium .albuns--content .div-1 {
  grid-area: 1 / 1 / 2 / 2;
  width: 535px;
  height: 292px;
}

.albuns-premium .albuns--content .div-2 {
  width: 536px;
  height: 292px;
  grid-area: 1 / 2 / 2 / 3;
}
.albuns-premium .albuns--content .div-3 {
  grid-area: 2 / 1 / 3 / 2;
  width: 536px;
  height: 292px;
}
.albuns-premium .albuns--content .div-4 {
  grid-area: 2 / 2 / 3 / 3;
  width: 536px;
  height: 292px;
  position: relative;
  -webkit-box-shadow: 5px 7px 13px 3px rgba(0, 0, 0, 0.24);
  box-shadow: 5px 7px 13px 3px rgba(0, 0, 0, 0.24);
  border-radius: 17px;
}

/* fotolivros */
.fotolivros .albuns--content {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 19px;
  width: 95%;
}

@media (min-width: 1500px) {
  .fotolivros .albuns--content {
    /* width: 84%; */
    width: 91%;
  }
}

.fotolivros .albuns--content .div-1 {
  grid-area: 1 / 1 / 3 / 2;
  width: 535px;
  height: 605px;
}
.fotolivros .albuns--content .div-2 {
  grid-area: 1 / 2 / 2 / 3;
  width: 536px;
  height: 292px;
}
.fotolivros .albuns--content .div-3 {
  grid-area: 2 / 2 / 3 / 3;
  width: 536px;
  height: 292px;
}
.fotolivros .albuns--content .div-4 {
  grid-area: 3 / 1 / 4 / 3;
  width: 1100px;
  height: 292px;
  position: relative;
  -webkit-box-shadow: 5px 7px 13px 3px rgba(0, 0, 0, 0.24);
  box-shadow: 5px 7px 13px 3px rgba(0, 0, 0, 0.24);
  border-radius: 17px;
}
/* dúvidas */
.duvidas-lp--content {
  background-color: var(--primary);
  height: 385px;
  display: flex;
}
.duvidas-lp--content img {
  height: 100%;
}
.duvidas-lp--content .duvidas-lp-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 39px;
  font-weight: bold;
  line-height: 49px;
}
.duvidas-lp--content .duvidas-lp-text .subtitle {
  font-size: 28px;
}
.duvidas-lp--content .duvidas-lp-text a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 22px;
  padding: 6px 20px;
  background-color: #fff;
  color: var(--primary);
  margin-top: 40px;
  border-radius: 5px;
}
main .info-box {
  display: flex;
  width: 77%;
  height: 585px;
  border: solid #707070 1px;
  margin: 40px auto 50px;
  border-radius: 39px;
}
.duvidas-lp--content .duvidas-lp-text p:first-child {
  text-transform: uppercase;
}
.juridico p {
  padding: 10px;
}
@media (min-width: 1500px) {
  main .info-box {
    width: 70%;
  }
}

@media (max-width: 780px) {
  main .info-box {
    flex-direction: column;
    border: none;
    height: auto;
    width: 100%;
  }
}
main .info-box .info-box--container {
  display: flex;
}
@media (max-width: 780px) {
  main .info-box .info-box--container {
    flex-direction: column;
    max-width: 390px;
    margin: 0 auto;
  }
}
main .info-box .info-box--container img {
  width: 371px;
}
@media (max-width: 780px) {
  main .info-box .info-box--container img {
    height: auto;
    width: 100%;
  }
}
main .info-box .info-box--container .info-box--infos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}
main .info-box .info-box--container .info-box--infos .infos {
  display: flex;
  justify-content: center;
  align-items: start;
  margin-left: 30px;
}
@media (max-width: 780px) {
  main .info-box .info-box--container .info-box--infos .infos {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 80%;
    margin: 0 auto;
  }
}
main .info-box .info-box--container .info-box--infos .infos img {
  width: 68px;
  height: 42px;
  margin-right: 30px;
}
@media (max-width: 780px) {
  main .info-box .info-box--container .info-box--infos .infos img {
    width: 59px;
    margin: 0 auto;
  }
}
main .info-box .info-box--container .info-box--infos .infos .infos--texts {
  display: flex;
  flex-direction: column;
}
@media (max-width: 780px) {
  main .info-box .info-box--container .info-box--infos .infos .infos--texts {
    width: 70%;
    margin: 0 auto;
    align-items: center;
  }
}
main
  .info-box
  .info-box--container
  .info-box--infos
  .infos
  .infos--texts
  .text-title {
  color: #ffa300;
  font: normal bold 24px Montserrat;
  width: 333px;
  margin-bottom: 20px;
}

@media (max-width: 780px) {
  main
    .info-box
    .info-box--container
    .info-box--infos
    .infos
    .infos--texts
    .text-title {
    width: 220px;
    font-size: 20px;
  }
}
main .info-box .info-box--container .info-box--infos .infos .infos--texts p {
  color: #000;
  font: normal 300 22px Montserrat;
  width: 532px;
}
@media (max-width: 780px) {
  main .info-box .info-box--container .info-box--infos .infos .infos--texts p {
    font-size: 16px;
    width: 220px;
  }
}
main .info-box .info-box--container .info-box--infos .infos:first-child {
  margin-bottom: 30px;
}
main .info-box .info-box--container .info-box--infos .infos:first-child img {
  width: 61px;
  height: 54px;
}
main .juridico {
  color: #3e3e3e;
  text-align: center;
  font-size: 14px;
  /* padding: 0 19px; */
}
@media (max-width: 780px) {
  main .juridico {
    max-width: 392px;
  }
}
main .doubt {
  margin-top: 40px;
  width: 100%;
  height: 385px;
}

main .doubt .doubt--container {
  background-color: #ffa306;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .doubt .doubt--container h2 {
  font: normal bold 30px Montserrat;
  margin-bottom: 20px;
  color: #fff;
}
@media (max-width: 780px) {
  main .doubt .doubt--container h2 {
    width: 330px;
  }

  main .doubt .doubt--container p {
    width: 323px;
    font-size: 22px;
  }
}

main .doubt .doubt--container p {
  font: normal bold 24px Montserrat;
  margin-bottom: 41px;
}
main .doubt .doubt--container a {
  all: unset;
  cursor: pointer;
  color: #fff;
  background-color: #3e3e3e;
  text-align: center;
  text-transform: uppercase;
  font: normal bold 22px Montserrat;
  padding: 14px 60px;
  border-radius: 5px;
}
.albuns.desk {
  display: flex;
}
.albuns.mobile,
.albuns-premium.mobile,
.fotolivros.mobile {
  display: none;
}
/* albuns e fotolivros - mobile */
@media (max-width: 780px) {
  body {
  }
  .albuns.desk,
  .albuns-premium.desk,
  .fotolivros.desk {
    display: none;
  }
  .albuns.mobile,
  .albuns-premium.mobile,
  .fotolivros.mobile {
    display: block;
  }
  .albuns--content {
    display: block;
  }
  .albuns--content .div-1,
  .albuns--content .div-2,
  .albuns--content .div-3 {
    width: 251px !important;
    height: 451px;
    border-radius: 17px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto 10px;
  }
  .albuns .albuns--content,
  .albuns-premium .albuns--content,
  .fotolivros .albuns--content {
    display: flex;
    flex-direction: column;
  }
  .albuns-premium .albuns--content .div-1,
  .albuns-premium .albuns--content .div-2,
  .albuns-premium .albuns--content .div-3,
  .albuns-premium .albuns--content .div-4 {
    height: 468px;
    width: 251px !important;
  }
  .fotolivros .albuns--content .div-1,
  .fotolivros .albuns--content .div-2,
  .fotolivros .albuns--content .div-3,
  .fotolivros .albuns--content .div-4 {
    height: 468px;
    width: 251px !important;
  }
  .albuns-premium .albuns--content .prod-text-description {
    height: 36px;
  }
  .albuns--content .card-prod-text {
    position: unset;
    margin-left: 10px;
    margin-top: 14px;
    line-height: normal;
  }
  .albuns-premium .albuns--content .card-prod-text {
    position: unset;
    margin-left: 10px;
    margin-top: 14px;
  }

  .albuns--content .prod-text-title {
    font-size: 16px;
  }
  .albuns--content .prod-text-description {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .albuns--content .card-prod-cta {
    display: block;
    width: 70%;
    margin: 0 auto;
    text-align: center;
  }
  .faixa {
    height: 16px;
  }
  .duvidas-lp--content {
    flex-direction: column;
    text-align: center;
  }
  .duvidas-lp--content .duvidas-lp-text {
    width: 90%;
    margin: 10px auto 0;
    font-weight: 600;
    line-height: normal;
  }
  .duvidas-lp--content .duvidas-lp-text p:first-child {
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 20px;
  }
  .duvidas-lp--content .duvidas-lp-text .subtitle {
    font-size: 18px;
  }
  .duvidas-lp--content img {
    width: 98px;
    height: 95px;
    margin-top: 8px;
  }
  .juridico p {
    padding: 10px;
  }
}

@media (min-width: 1600px) {
  .albuns.desk {
    display: flex;
  }
  .albuns--content,
  .albuns-premium .albuns--content,
  .fotolivros .albuns--content {
    width: 77%;
  }
}
@media (min-width: 1900px) {
  main .icons {
    width: 60%;
  }
  .albuns.desk {
    display: flex;
  }
  .albuns--content,
  .albuns-premium .albuns--content,
  .fotolivros .albuns--content {
    width: 73%;
  }

  .duvidas-lp--content .duvidas-lp-text {
    margin-left: 200px;
  }
}

/* ==== slider arrows ====*/
.slick-next {
  background-image: url(/subhomes/lojas-profissional/landing/2026/mostruario/img/next.svg) !important;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  right: -25px;
  z-index: 999;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  outline: none;
  cursor: pointer;
}
.slick-next::before,
.slick-prev::before {
  content: none;
}
.slick-prev {
  background-image: url(/subhomes/lojas-profissional/landing/2026/mostruario/img/next.svg) !important;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  left: -24px;
  z-index: 999;
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  transform: rotate(180deg);
  border: none;
  outline: none;
  cursor: pointer;
}
