/* ================================== BANNER ================================== */
.aviso {
  background: var(--azul-8);
  color: #ffff;
  text-align: center;
  width: 100%;
  padding: 12px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 15%,
    var(--azul-8) 15%
  );
}

.bannerHero {
  display: flex;
  flex-direction: row;
  /* background-color: var(--azul-8); */
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 26px;
  color: #ffff;
  gap: 100px;
}

.bannerInfo {
  display: flex;
  flex-direction: row;
  padding: 40px 48px;
  gap: 32px;
  border-radius: 1rem;
  background-color: #ffff;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
}

.bannerBeneficioInfo {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.iconBeneficio {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: rgb(0, 132, 214, 0.1);
  border-radius: 100%;
}

.beneficioTextos {
  max-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.beneficioTextos p {
  font-size: 0.875;
  color: var(--dark-gray);
  line-height: 120%;
}

p.beneficioTitulo {
  color: black;
  font-size: 1.125rem;
  font-weight: 800;
}

.imgBannerHero {
  height: 499px;
}

.imgBannerHero img {
  height: 100%;
}

.esquerdaBannerHero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bannerTag {
  background: rgb(0, 132, 214, 0.2);
  border: 1px solid rgb(0, 132, 214, 0.2);
  border-radius: 16px;
  padding: 6px 18px;
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 700;
}

.esquerdaBannerHero h1 {
  display: flex;
  flex-direction: column;
  font-size: 3.75rem;
  font-weight: 800;
}

.esquerdaBannerHero h1 span {
  color: var(--azul-4-slate);
}

.esquerdaBannerHero .bannerDescription {
  font-size: 1.063rem;
  color: #d1d5db;
  width: 500px;
  margin-bottom: 16px;
}

.bannerBtns {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.bannerBtns button {
  border-radius: 8px;
  padding: 16px 40px;
  cursor: pointer;
  color: #ffff;
  font-weight: 700;
  font-size: 1.125rem;
}

.bannerBtns button.comprar {
  background: var(--azul-4-slate);
  border: 1px solid var(--azul-4-slate);
  box-shadow: rgba(0, 132, 214) 0 4px 6px 0;
}

.bannerBtns button.catalago {
  background: none;
  border: 1px solid rgb(255, 255, 255, 0.2);
}

.esquerdaBannerHero .imgBannerHero {
  display: none;
}

@media (max-width: 880px) {
  .esquerdaBannerHero,
  h1 {
    justify-content: center;
    align-items: center;
  }

  .esquerdaBannerHero .imgBannerHero {
    display: flex;
  }
  .esquerdaBannerHero .bannerDescription {
    text-align: center;
  }

  .imgBannerHero {
    display: none;
  }

  .bannerBtns {
    flex-direction: column;
    width: 100%;
  }

  .bannerBtns button {
    width: 100%;
  }

  .imgBannerHero {
    height: 194px;
  }

  .esquerdaBannerHero .bannerDescription {
    width: 90%;
  }
  .esquerdaBannerHero h1 {
    font-size: 2.25rem;
    gap: 10px;
  }

  .itemsDesejadasList .itemsDesejadasCard:nth-child(4) {
    display: none;
  }
}

@media (max-width: 1107px) {
  .imgBannerHero {
    height: 300px;
  }
}

@media (max-width: 1368px) {
  .bannerHero {
    gap: 8px;
  }
  .bannerInfo {
    width: 100%;
    align-items: center;
  }
}

/* ================================== itemsDesejadas ================================== */
.itemsDesejadas {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 48px;
  padding: 80px;
  width: 100%;
}

.itemsDesejadasHeader {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}

.itemsDesejadasText {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.itemsDesejadasTitulo {
  font-weight: 800;
  font-size: 1.875rem;
}

.itemsDesejadasSubtitulo {
  color: var(--dark-gray);
  font-size: 1rem;
}

.itemsDesejadasLink a {
  color: var(--azul-4);
  font-weight: 700;
  cursor: pointer;
}

.itemsDesejadasList {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.itemsDesejadasCard {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.itemsDesejadasFoot {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.itemsDesejadasFoot p {
  font-size: 1.25rem;
  color: var(--azul-4);
  font-weight: 800;
}

.itemsDesejadasFoot button {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: var(--azul-4);
  border: 1px solid var(--azul-4);
  cursor: pointer;
}

.itemsDesejadaHead {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.itemsDesejadaInfo {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 16px;
}

.itemsDesejadasImg {
  height: 83px;
  width: 94px;
  border: 1px solid #e5e7eb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.itemsDesejadasImg img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.itemsDesejadaTag {
  color: #fff;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 18px;
}

.itemsDesejadaTag.tagNew {
  background-color: #ffffff;
  padding: 0px;
}
.itemsDesejadaTag.tagNew > svg {
  width: 60px;
  height: 48px;
}

.itemsDesejadaTag.tagNew > svg > g > g > g > path {
  fill: #22c55e;
}

.itemsDesejadaTag.tagGold {
  background-color: #bac522;
}
.itemsDesejadaTag.tagGold svg {
  width: 24px;
  height: 24px;
}
.itemsDesejadaTag.tagGold svg path {
  stroke: #fff;
}
.itemsDesejadaTag.tagFire {
  background-color: #c52222;
}

.itemsDesejadaNome {
  font-weight: 800;
  font-size: 1.125rem;
  max-width: 136px;
}

.itemsDesejadaSabor {
  color: var(--dark-gray);
  font-size: 0.875rem;
}

.itemsDesejadas > a {
  width: 100%;
  text-decoration: none;
}
.itemsDesejadas > a > button {
  display: none;
}

@media (max-width: 750px) {
  .itemsDesejadas {
    padding: 24px;
    gap: 18px;
  }
  .itemsDesejadasLink {
    display: none;
  }

  .itemsDesejadasLink > a {
    text-decoration: none;
  }
  .itemsDesejadas > a > button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 8px;
    padding: 14px;

    background: linear-gradient(135deg, #005a94, #0084d8);
    border: none;
    font-size: 1.3rem;
    font-family: "Bebas Neue", sans-serif;
    font-weight: normal;
    letter-spacing: 0.1rem;

    transition: all 0.25s ease;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    border-bottom: none;
  }

  .itemsDesejadasCard {
    width: 100%;
  }

  .itemsDesejadaHead {
    justify-content: space-between;
  }
}

/* ================================== hero Sobrenos e dicas================================== */
.heroSobrenos,
.heroDicas {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 45px 20px;
}

.heroSobrenosImg {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: end;
  gap: 20px;
}

.heroSobrenosImg img {
  border-radius: 18px;
}

.vitrini_1 {
  width: 264px;
  height: 470px;
}

.vitrini_2 {
  width: 353px;
  height: 628px;
}

.heroTexto {
  display: flex;
  flex-direction: column;
  gap: 45px;
  max-width: 590px;
}

.heroTexto button {
  background: linear-gradient(135deg, #14b8a6, #0ea5a4);
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 1rem 70px;
  width: fit-content;
  cursor: pointer;
  font-size: 1.3rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: normal;
  letter-spacing: 0.1rem;

  transition: all 0.25s ease;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.heroTexto button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  filter: brightness(1.05);
}

.heroTexto button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.heroTexto > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.heroTexto > div > span {
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--azul-4);
}

.heroTitulo {
  font-weight: 800;
  font-size: 2.25rem;
}

.heroTitulo > span {
  color: #22c55e;
}

.heroTexto > div > div {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.heroTexto > div > div > p:nth-child(2) {
  color: var(--dark-gray);
}

.heroTexto > div > div > ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.heroTexto > div > div > ul > li {
  display: flex;
  flex-direction: row;
  gap: 12px;
  color: #374151;
}

.heroDicas img {
  border-radius: 12px;
}

@media (max-width: 1000px) {
  .heroSobrenos {
    flex-direction: column-reverse;
  }
  .heroDicas {
    flex-direction: column;
  }
  .heroTexto button {
    width: 100%;
    font-size: 1.5rem;
    font-family: "Bebas Neue", sans-serif;
    font-weight: normal;
    letter-spacing: 0.1rem;
  }
  .heroTexto > div > div > p:nth-child(2),
  .heroTexto > div > div > ul {
    font-weight: 700;
  }
}

@media (max-width: 750px) {
  .heroDicas img {
    width: 331px;
    height: 240px;
  }

  .vitrini_1 {
    width: 9rem;
    height: 16rem;
  }

  .vitrini_2 {
    width: 12rem;
    height: 21.33rem;
  }

  /* .vitrini_2 {
    width: 125.73px;
    height: 223.51px;
  } */
}

/* ================================== parceiros ================================== */
.parceiros {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 60px 20px;
}

.parceirosContainer {
  padding: 0px 50px;
}

.parceirosContainer img {
  height: 87px;
  width: auto;
}

.parceirosText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.parceirosText > p:nth-child(1) {
  font-weight: 800;
  font-size: 1.25rem;
}
.parceirosText > p:nth-child(2) {
  font-weight: 400;
  color: var(--dark-gray);
  text-align: center;
}

@media (max-width: 575px) {
  .parceiros {
    padding: 20px;
  }
  .parceirosContainer {
    padding: 12px 24px;
  }
  .parceirosContainer img {
    height: 51px;
    width: auto;
  }
}

/* ================================== heroParalax ================================== */
.heroParalax {
  padding-top: 93px;
  padding-bottom: 30px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.heroParalax div {
  background-image: url("/assets/img/index/pods_descartaveis_ignite.webp");
  width: 100%;
  max-width: 1260px;
  height: 559px;
  object-fit: cover;
  border-radius: 24px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 750px) {
  .heroParalax {
    padding-top: 40px;
  }
  .heroParalax div {
    height: 376px;
    background-attachment: local;
  }
}
/* ================================== beneficios ================================== */

.beneficios {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
  padding-left: 48px;
  padding-right: 48px;
}

.beneficioContainer {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.beneficioContainer p {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

@media (max-width: 830px) {
  .beneficioContainer p {
    width: 250px;
  }
}
