/* ====inico=== */
main {
  padding: 50px 0;
  flex: 1;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

html,
body {
  height: 100%;
}

body {
  background-color: #fff7fa;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

.container {
  width: 90%;
  margin: 0 auto;
}

header {
  background-color: #ffafcc;
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50px;
}

header h1 {
  font-size: 30px;
  margin-left: 105px;
  color: #fff;
}

.topo ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.topo a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.topo a:hover {
  color: #6a1b9a;
}

main {
  padding: 50px 0;
}

.produtos h2 {
  text-align: center;
  color: #e91e63;
  font-size: 2rem;
  margin-bottom: 40px;
}

.grade-produtos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.produto {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  width: 250px;
}

.produto img {
  width: 100%;
  height: 230px;
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 15px;
}

.produto h3 {
  color: #6a1b9a;
  font-size: 20px;
  margin-bottom: 5px;
}

.produto p {
  color: #333;
  font-size: 17px;
  margin-bottom: 10px;
}

.produto a {
  background-color: #ff80ab;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
}

.produto a:hover {
  background-color: #e91e63;
}

.produto:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

footer {
  background-color: #ffb6c1;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
  font-size: 15px;
}

/*=============login==========*/
.container {
  width: 90%;
  margin: 0 auto;
}

.login-cadastro {
  position: relative;

  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 50px 0;
}

.form-box {
  background-color: #fff;
  border: 2px solid #ffd6e7;
  border-radius: 10px;
  padding: 35px;
  max-width: 450px;
  position: relative;
  top: 0;
  left: 0%;
  height: fit-content;
  width: 450px;
}

.form-box h2 {
  color: #ff69b4;
  margin-bottom: 15px;
  text-align: center;
}

.form-box label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.form-box input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ffd6e7;
}

.form-box button {
  background-color: #ffafcc;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  margin-top: 15px;
  cursor: pointer;
}

.tipo-pessoa {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  color: #333;
}

.tipo-pessoa label {
  font-weight: normal;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-left: 0;
}

.tipo-pessoa input[type="radio"] {
  width: auto;
  margin-right: 5px;
  height: 15px;
}

.form-box select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ffd6e7;
  background-color: white;
  height: 40px;
}

.grupo-senha {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.input-duplo {
  flex: 1;
}

.input-duplo input {
  width: 100%;
}

.termos {
  display: flex;
  align-items: center;
  margin-top: 15px;
  font-size: 14px;
}

.termos input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.termos a {
  color: #6a1b9a;
  text-decoration: none;
  font-weight: bold;
}

.separador {
  text-align: center;
  color: #999;
  margin: 15px 0;
  font-size: 0.9em;
}

.btn-google {
  background-color: #4285f4 !important;
  color: white !important;
  padding: 12px;
  font-size: 1em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 5px !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-google:hover {
  background-color: #357ae8 !important;
}

.btn-google i {
  font-size: 1.2em;
}

.btn-google a {
  text-decoration: none;
}

/*===========produtos==========*/
.produto-detalhe {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-top: 50px;
  margin-bottom: 50px;
}

.imagem-produto {
  flex: 1;
  max-width: 100px;
}

.imagem-produto img {
  width: 100%;
  border-radius: 15px;
  border: 2px solid #ffd6e7;
}

.info-produto {
  flex: 1;
  width: 300px;
}

.info-produto h2 {
  color: #ff69b4;
  margin-bottom: 10px;
}

.preco {
  font-size: 25px;
  font-weight: bold;
  color: #d63384;
  margin-bottom: 20px;
}

.descricao {
  margin-bottom: 25px;
}

.btn-adicionar {
  background-color: #ff69b4;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 30px;
}

.btn-adicionar:hover {
  background-color: #ff85c1;
}

.ficha-tecnica-flex {
  width: 100%;
  border: 1px solid #ffd6e7;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 20px;
}

.ficha-header {
  background-color: #ffe5f0;
  color: #d63384;
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #ffd6e7;
}

.ficha-header h3 {
  margin: 0;
}

.ficha-linha {
  display: flex;
  border-bottom: 1px solid #ffd6e7;
}

.ficha-linha:last-child {
  border-bottom: none;
}

.ficha-linha:nth-child(even) {
  background-color: #fff7fa;
}

.ficha-item-titulo {
  flex: 1;
  font-weight: bold;
  padding: 10px;
  background-color: #ffe5f0;
  border-right: 1px solid #ffd6e7;
  color: #ff69b4;
}

.ficha-item-valor {
  flex: 2;
  padding: 10px;
  color: #333;
}

.carrinho h2 {
  text-align: center;
  color: #d63384;
  margin-bottom: 25px;
  font-size: 2em;
}

.carrinho-cabecalho,
.item-carrinho {
  display: flex;
  align-items: center;
  padding: 15px 0;
  font-size: 0.95em;
  border-bottom: 1px solid #ffb6c1;
}

.carrinho-cabecalho {
  font-weight: bold;
  color: #6a1b9a;
  border-top: 2px solid #d63384;
  padding-top: 10px;
}

.col-produto {
  width: 80px;
  text-align: center;
}
.col-nome {
  flex-grow: 2;
  padding-left: 15px;
}
.col-preco,
.col-subtotal {
  width: 120px;
  text-align: center;
  font-weight: bold;
}
.col-quantidade {
  width: 140px;
  text-align: center;
}
.col-remover {
  width: 80px;
  text-align: center;
}

.img-mini {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.item-carrinho:last-of-type {
  border-bottom: 2px solid #d63384;
  margin-bottom: 20px;
}

.controle-quantidade {
  justify-content: center;
}

.input-quantidade {
  width: 70px;
  padding: 8px;
  border: 1px solid #ffb6c1;
  border-radius: 4px;
  text-align: center;
  font-size: 1em;
  font-weight: 500;
  color: #d63384;
  margin: 0;
  box-sizing: border-box;
}


.input-quantidade:focus {
  border-color: #d63384;
  outline: none;
}

.btn-remover {
  background: none;
  border: none;
  color: #d63384;
  cursor: pointer;
  font-size: 1.1em;
  padding: 5px;
  transition: color 0.2s;
}

.btn-remover:hover {
  color: #a82766;
}

.resumo-carrinho {
  max-width: 350px;

  margin: 20px auto;
  padding: 20px;
  border: 2px solid #ffb6c1;
  border-radius: 8px;
  background-color: #fff;
}

.resumo-carrinho h3 {
  color: #6a1b9a;
  border-bottom: 1px solid #ffb6c1;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.resumo-carrinho p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.resumo-carrinho strong {
  font-size: 1.2em;
  color: #d63384;
}

.btn-finalizar {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background-color: #d63384;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-finalizar:hover {
  background-color: #a82766;
}

@media (max-width: 768px) {
  .carrinho-cabecalho {
    display: none;
  }

  .item-carrinho {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 20px;
  }

  .col-produto {
    order: 1;
    width: 70px;
  }
  .col-nome {
    order: 2;
    padding-left: 10px;
    font-weight: bold;
    color: #6a1b9a;
  }
  .col-preco {
    order: 3;
    width: 45%;
    text-align: left;
    font-weight: normal;
  }
  .col-quantidade {
    order: 3;
    width: 55%;
    text-align: right;
    justify-content: flex-end;
  }
  .col-subtotal {
    order: 4;
    width: 100%;
    text-align: right;
    margin-top: 10px;
    font-size: 1.1em;
  }
  .col-remover {
    order: 2;
    width: 30px;
  }

  .resumo-carrinho {
    margin: 20px auto 0;
    max-width: 100%;
  }
}
/*===== CSS para o JavaScript--*/
@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animar-entrada {
  animation: slideInFade 0.6s ease-out forwards;
}

@keyframes fadeOutSlide {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
  }
}

.animar-saida {
  animation: fadeOutSlide 0.4s ease-in forwards;
}

.oculto {
  opacity: 0;
}

/* ===== DASHBOARD ===== */
.dashboard {
  display: flex;
  min-height: calc(100vh - 120px);
}

.menu-lateral {
  width: 200px;
  background-color: #ffb6c1;
  padding-top: 20px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.menu-lateral ul {
  list-style: none;
}

.menu-lateral a {
  display: block;
  padding: 10px 15px;
  color: #6a1b9a;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.menu-lateral a:hover,
.menu-lateral a.ativo {
  background-color: #fff7fa;
  color: #d63384;
}

.area-conteudo {
  flex-grow: 1;
  padding: 20px;
}

.tabela-admin-flex {
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 20px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tabela-header {
  display: flex;
  background-color: #ffb6c1;
  color: white;
  font-weight: bold;
  padding: 12px 15px;
  border-bottom: 1px solid #ccc;
}

.tabela-linha {
  display: flex;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  align-items: center;
  transition: background-color 0.2s ease;
}

.tabela-linha:hover {
  background-color: #ffe0e6;
}

.tabela-linha:last-child {
  border-bottom: none;
}

.tabela-linha:nth-child(even) {
  background-color: #fff7fa;
}

.col-produto {
  flex-basis: 50%;
}

.col-preco {
  flex-basis: 20%;
  text-align: center;
}

.col-acoes {
  flex-basis: 30%;
  text-align: right;
}

.col-acoes a {
  color: #d63384;
  text-decoration: none;
  margin-left: 10px;
  font-weight: bold;
}

/*CADASTRO NOVO PRODUTO*/
.form-cadastro {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 20px auto;
  padding: 25px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-cadastro label {
  font-weight: bold;
  color: #d63384;
  margin-top: 15px;
  margin-bottom: 5px;
}

.form-cadastro input[type="text"],
.form-cadastro input[type="number"],
.form-cadastro textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1em;
  transition: border-color 0.3s;
}

.form-cadastro input:focus,
.form-cadastro textarea:focus {
  border-color: #ff69b4;
  outline: none;
}

.form-cadastro textarea {
  resize: vertical;
  min-height: 100px;
}

.campos-em-linha {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.campos-em-linha .campo-preco,
.campos-em-linha .campo-categoria {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.campos-em-linha label {
  margin-top: 0;
}

.custom-file-upload {
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 20px;
}

.custom-file-upload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
  height: 100%;
  width: 100%;
}

.btn-file-upload {
  background-color: #d63384;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  display: inline-block;
  transition: background-color 0.2s;
}

.btn-file-upload i {
  margin-right: 8px;
}

.botoes-acao {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
}

.btn-cadastro {
  background-color: #6a1b9a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
}

.btn-cadastro:hover {
  animation: none;
  background-color: #4a148c;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.btn-cadastro:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-voltar {
  background-color: #ccc;
  color: #333;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-voltar:hover {
  background-color: #bbb;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }
  header h1 {
    margin-left: 0;
    margin-top: 10px;
  }
 
  .dashboard {
    flex-direction: column;
  }
  .menu-lateral {
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .menu-lateral ul {
    display: flex;
    justify-content: space-around;
    padding: 0;
  }
  .menu-lateral a {
    text-align: center;
  }

  .campos-em-linha {
    flex-direction: column;
    gap: 0;
  }

  .botoes-acao {
    justify-content: space-between;
  }

  .btn-cadastro,
  .btn-voltar {
    padding: 12px 25px;
    font-size: 1em;
  }
}

/*=====pagina de promoções======*/
.promocoes-content h2 {
  text-align: center;
  color: #d63384;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.subtitulo {
  text-align: center;
  color: #6a1b9a;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.promo-item {
  border: 2px solid #ff69b4;
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promo-item:hover {
  box-shadow: 0 8px 15px rgba(255, 105, 180, 0.4);
  transform: scale(1.03);
}

.promo-item .preco-antigo {
  color: #999;
  text-decoration: line-through;
  font-size: 0.9em;
  margin-bottom: 0;
}

.promo-item .preco-novo {
  color: #d63384;
  font-size: 1.5em;
  font-weight: bold;
}

/*dashboard  atalho*/
.atalho-flutuante {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ff69b4;
  color: white;
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 100;
}

.atalho-flutuante:hover {
  opacity: 1;
  background-color: #e91e63;
}

/*pagina 9  (inicial) completa*/
.busca-e-conta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  margin-left: 20px;
}

.barra-pesquisa {
  padding: 8px 10px;
  border: 1px solid #ffb6c1;
  border-radius: 5px;
  width: 250px;
}

.btn-pesquisar,
.btn-carrinho,
.btn-minha-conta {
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  background-color: #ff80ab;
  color: white;
}

.div-categorias {
  background-color: #ffe5f0;
  padding: 10px 0;
  border-bottom: 1px solid #ffb6c1;
}

.div-categorias .container {
  display: flex;
  justify-content: space-around;
}

.div-categorias a {
  text-decoration: none;
  color: #ff69b4;
  font-weight: bold;
  padding: 5px 10px;
}

.sub-rodape {
  background-color: #ffb6c1;
  color: white;
  padding: 30px 0;
}

.sub-rodape .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.coluna-rodape {
  flex-basis: 20%;
  min-width: 150px;
}

.coluna-rodape h3 {
  margin-bottom: 15px;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
}

.coluna-rodape a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 5px;
  font-size: 0.9em;
}

.rodape-meio {
  background-color: #fff7fa;

  border-top: 1px solid #ffd6e7;
  padding: 20px 0;
}

.rodape-meio .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.secao-pagamento,
.secao-certificados {
  flex-basis: 45%;
  max-width: 45%;
  min-width: 250px;
}

.rodape-meio h3 {
  color: #ff69b4;
  font-size: 1.1em;
  margin-bottom: 15px;
  border-bottom: 2px solid #ffb6c1;
  padding-bottom: 5px;
}

.secao-pagamento {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.secao-pagamento img {
  width: 200px;
  height: 80px;
  margin-right: 10px;
  margin-bottom: 5px;

  border-radius: 3px;
  object-fit: contain;
}

.secao-certificados {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.secao-certificados img {
  width: 100px;
  height: 80px;

  border-radius: 5px;
}

.rodape-inferior {
  background-color: #ffb6c1;
  padding: 20px 0;
  border-top: 1px solid #ff80ab;
}

.rodape-inferior .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.imagem-rodape {
  width: 200px;
  height: 60px;
  background-color: #ffe5f0;
  border: 1px solid #ff69b4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.redes-sociais {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icone-social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffe5f0;
  color: #ff69b4;
  font-size: 1.2em;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.icone-social:hover {
  background-color: #ff69b4;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/*=======banner da promoção=====*/
.banner-promocao {
  width: 100%;
  height: 300px;
  background-image: url("imagens/brigadeiro_gourmet.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

.banner-promocao::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);

  z-index: 1;
}

.banner-conteudo {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.banner-conteudo h2 {
  font-size: 2.8em;
  margin-bottom: 10px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.banner-conteudo p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-promocao {
  display: inline-block;
  background-color: #ff69b4;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid white;
}

.btn-promocao:hover {
  background-color: #e91e63;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/*=========pagina de promoções========*/
.promocoes-content h2 {
  text-align: center;
  color: #d63384;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.subtitulo {
  text-align: center;
  color: #6a1b9a;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.promo-item {
  border: 2px solid #ff69b4;
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promo-item:hover {
  box-shadow: 0 8px 15px rgba(255, 105, 180, 0.4);
  transform: scale(1.03);
}

.promo-item .preco-antigo {
  color: #999;
  text-decoration: line-through;
  font-size: 0.9em;
  margin-bottom: 0;
}

.promo-item .preco-novo {
  color: #d63384;
  font-weight: bold;
  font-size: 1.4em;
  margin-top: 5px;
  margin-bottom: 15px;
}

.btn-promocao-compra {
  background-color: #d63384;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
}

.btn-promocao-compra:hover {
  background-color: #ff69b4;
}

.promo-item::before {
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: #ff69b4;
  color: white;
  padding: 3px 30px;
  font-size: 0.8em;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.topo a i,
.btn-carrinho i,
.btn-minha-conta i {
  margin-right: 5px;
}
