body {
  font-family: "Poppins", sans-serif;
  background-size: cover;
  cursor: url("../imagens/mouse1.png"), auto;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  backdrop-filter: blur(8px);
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.kittyverso {
  display: flex;
  gap: 30px;
  padding: 30px 0;
}



.cartao-kitty {
  display: none;
  max-width: 360px;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.cartao-kitty.aberto {
  display: block;
}

.cartao-kitty img {
  width: 100%;
  height: 100%;
  margin-top: 10px;
}

.cartao-kitty .cartao-topo {
  padding: 30px 40px 0;
}

.cartao-kitty .nome {
  margin-bottom: 5px;
  font-family: "League Script", cursive;
  font-size: 32px;
  color: #ffffff;
}

.cartao-kitty .tipo {
  background-color: #ffffff;
  font-size: 12px;
  opacity: 0.7;
  border-radius: 10px;
  padding: 2px 10px;
  text-transform: capitalize;
}

.cartao-kitty .detalhes {
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cartao-kitty .cartao-informacoes {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  padding: 80px 30px 50px;
  margin-top: -70px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.cartao-kitty .cartao-informacoes h3 {
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #6b727a;
  font-family: "Poppins", sans-serif;
}

.cartao-kitty .cartao-informacoes .descricao {
  padding: 0 10px;
  font-size: 15px;
  max-height: 150px;
  overflow-y: scroll;
  font-family: "Playwrite DE Grund", cursive;
}

.cartao-kitty .cartao-informacoes .descricao::-webkit-scrollbar {
  width: 8px;
}

.cartao-kitty .cartao-informacoes .descricao::-webkit-scrollbar-track {
  background: rgba(255, 157, 190, 0.1);
  border-radius: 20px;
}

.cartao-kitty .cartao-informacoes .descricao::-webkit-scrollbar-thumb {
  background: linear-gradient(#ff9dbe, #ffb6c1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.tipo-doce {
  background-color: #ffbad1;
}

.tipo-amavel {
  background-color: #ffb6c1;
}

.tipo-elegante {
  background-color: #d8bfd8;
}

.tipo-fofo {
  background-color: #f3eab9;
}

.tipo-fofinho {
  background-color: #b0d6ee;
}

.tipo-rebelde {
  background-color: #754a80;
}

.listagem {
  max-width: 200px;
}

.listagem .kitty img {
  width: 25%;
}

.listagem .kitty {
  background-color: #af9caf;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  margin-bottom: 10px;
  cursor: pointer;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  min-height: 70px;
  transition: 0.15s ease-in-out;
}

.listagem .kitty:hover {
  transform: scale(1.05);
}

.listagem .kitty span {
  padding-right: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}


.listagem .kitty.ativo.hellokitty {
  background-color: #ffbad1; 
}

.listagem .kitty.ativo.mymelody {
  background-color: #ffb6c1; 
}

.listagem .kitty.ativo.charmmykitty {
  background-color: #d8bfd8; 
}

.listagem .kitty.ativo.pompompurin {
  background-color: #f8eeb3; 
}

.listagem .kitty.ativo.cinnamoroll {
  background-color: #b9e2fc; 
}

.listagem .kitty.ativo.kuromi {
  background-color: #7e528a; 
}


.fundo-hellokitty {
  background-image: url("../imagens/fundo1.png");
}

.fundo-mymelody {
  background-image: url("../imagens/mylove.jpg");
}

.fundo-charmmykitty {
  background-image: url("../imagens/53e013e1396ceb666a4b500123afd1f9.jpg");
}

.fundo-pompompurin {
  background-image: url("../imagens/c801b2ed8026cd3c7d5714b3fa08ccd3.jpg");
}

.fundo-cinnamoroll {
  background-image: url("../imagens/ca716210ad498358cb519fca1f7c3eb1.jpg");
}

.fundo-kuromi {
  background-image: url("../imagens/dc5d6174d4ef65cdaaa3ba095906d236.jpg");
}


.quote-box {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  max-width: 80%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 10;
}

.quote-box.show {
  opacity: 1;
}

/* Ícone de som */
.sound-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}