main {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

#buscarPodsFrom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 16px;
  background-color: #fff;
}

#buscarPodsFrom > div {
  display: flex;
  flex-direction: row;
  max-width: 860px;
  width: 100%;
}

#buscarPodsFrom > div > input {
  padding: 14px 20px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border: 2px solid var(--azul-4-slate);
  font-size: 1.375rem;
  width: 100%;
}

#buscarPodsFrom > div > input::placeholder {
  color: #adaebc;
  font-size: 1.375rem;
}

#buscarPodsFrom > div > button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 58px;
  background-color: var(--azul-4-slate);
  border: 2px solid var(--azul-4-slate);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

#pesquisaSection {
  margin-top: 2%;
}

.maisVendidos {
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: center;
  align-items: center;
  padding: 54px 100px;
  background-color: #eef2f5;
}

.headerMaisVendidos {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.headerMaisVendidos > h1 {
  font-size: 1.875rem;
  font-weight: 800;
}

.headerMaisVendidos > p {
  color: #6b7280;
}

.card {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 20px;
  background-color: #fff;
  border: 1px solid #f3f4f6;
  box-shadow: rgb(0, 0, 0, 0.05) 0px 1px 2px;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

.cardImg {
  width: 100%;
  height: 165px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.card button {
  background: var(--azul-4-slate);
  color: #fff;
  border-radius: 8px;
  padding: 16px 40px;
  border: 1px solid var(--azul-4-slate);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.125rem;
  font-weight: 800;
  cursor: pointer;
}

.card a {
  text-decoration: none;
  pointer-events: auto;
}

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

.cardText > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
  justify-content: center;
  align-items: center;
}

.cardText > div > span {
  padding: 4px 10px;
  border-radius: 18px;
  color: #fff;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 800;
  position: absolute;
  top: 12px;
  left: 8px;
}

.cardText > div > span.new {
  background-color: #ffffff;
  padding: 0px;
  top: 0px;
}

.cardText > div > span.new > svg > g > g > g > path {
  fill: #22c55e;
}

.cardText > div > span.fire {
  background-color: #c52222;
}
.cardText > div > span.gold {
  background-color: #bac522;
}
.cardText > div > span.gold svg {
  width: 17px;
  height: 17px;
}
.cardText > div > span.gold svg path {
  stroke: #fff;
}

.cardProdutoNome {
  font-size: 1.125rem;
  font-weight: 800;
  text-align: center;
}

.cardProdutoSabor {
  font-size: 0.875rem;
}

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

.catalagoSection {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0px 100px;
  padding-bottom: 80px;
}

.catalagoSection > header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.catalagoSection > header > p {
  font-size: 1.5rem;
}

.catalagoSection > header > p.fonte-lost {
  font-size: 1.3rem;
  width: 18.5%;
}

.catalagoSection > header > p.fonte-blacksheep {
  font-size: 1.7rem;
  width: 15%;
}

.catalagoSection > header > p.fonte-geekbar {
  width: 12%;
}

.catalagoSection > header > p.fonte-dinnerlady {
  width: 15%;
}

.first-word {
  font-family: "Bebas Neue";
  font-size: 1.8rem;
  color: #f5b3c5;
  text-shadow: 3px 3px 0 #357899;
}

.second-word {
  font-family: "Playwrite IE", cursive;
  font-size: 1.25rem;
  color: #3a7d9e;
  font-weight: bold;
}

.catalagoSection > header > .divider {
  height: 1px;
  background: black;
  width: 100%;
}

@media (max-width: 1000px) {
  .catalagoSection {
    padding: 0 16px;
    padding-bottom: 30px;
  }
  .maisVendidos {
    padding: 16px;
  }
  .card button svg,
  .card button span {
    display: none;
  }

  .catalagoSection > header > p.fonte-blacksheep {
    text-align: center;
  }
}

@media (max-width: 500px) {
  .catalagoSection > header {
    flex-direction: column-reverse;
  }
  #buscarPodsFrom {
    background: none;
  }

  #pesquisaSection {
    margin-top: 5%;
  }

  .headerMaisVendidos {
    justify-content: center;
    text-align: center;
  }

  .card {
    width: min-content;
  }

  .catalagoSection > header > p.fonte-lost {
    width: 50%;
  }

  .catalagoSection > header > p.fonte-geekbar,
  .catalagoSection > header > p.fonte-dinnerlady {
    width: 50%;
    text-align: center;
  }
}
