body{
    margin: 0;
    background: #ffe6fa;
    font-family: 'Press Start 2P', 'Pixelify Sans', cursive, monospace;
    image-rendering: pixelated;
    min-height: 100vh;
    position: relative;
    /* Background animado kawaii */
    animation: bg-pulse 20s infinite alternate ease-in-out;
    background-image: 
        repeating-linear-gradient(135deg, rgba(255, 214, 236, 0.7) 0 2px, transparent 2px 40px), 
        repeating-linear-gradient(225deg, rgba(255, 214, 236, 0.7) 0 2px, transparent 2px 40px),
        radial-gradient(circle at 50% 0%, #fff0fa, transparent 40%),
        radial-gradient(circle at 100% 100%, #ffcbf2, transparent 30%);
}

@keyframes bg-pulse {
    0% { background-color: #ffe6fa; }
    50% { background-color: #fff0fa; }
    100% { background-color: #ffebfc; }
}

/* Adiciona estrelinhas animadas pelo fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.8) 1px, transparent 1px),
        radial-gradient(circle at 25% 65%, rgba(255,255,255,0.8) 1px, transparent 1px),
        radial-gradient(circle at 40% 35%, rgba(255,255,255,0.8) 1px, transparent 1px),
        radial-gradient(circle at 60% 80%, rgba(255,255,255,0.8) 1px, transparent 1px),
        radial-gradient(circle at 75% 40%, rgba(255,255,255,0.8) 1px, transparent 1px),
        radial-gradient(circle at 90% 10%, rgba(255,255,255,0.8) 1px, transparent 1px);
    background-size: 150px 150px;
    opacity: 0.6;
    animation: twinkle 8s infinite alternate ease-in-out;
    pointer-events: none;
    z-index: -1;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

@font-face {
    font-family: 'Press Start 2P';
    src: url('https://fonts.gstatic.com/s/pressstart2p/v11/e3t4euO8KNyFQQ9Uac1UR4U0.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Pixelify Sans';
    src: url('https://fonts.googleapis.com/css2?family=Pixelify+Sans&display=swap');
    font-display: swap;
}

body * {
    box-sizing: border-box;
}
/* Animação de carregamento kawaii */
#kawaii-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 230, 250, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kawaii-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.pixel-heart-loader {
    width: 48px;
    height: 48px;
    display: block;
    background: url('data:image/svg+xml;utf8,<svg width="48" height="48" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" fill="none"/><path d="M4 8h2V6h2V4h4v2h2v2h2v2h2v2h-2v2h-2v2h-2v2h-2v-2h-2v-2H6v-2H4V8z" fill="%23ff6ec7" stroke="%23fff" stroke-width="1"/></svg>') no-repeat center/contain;
    image-rendering: pixelated;
    animation: kawaii-heart-bounce 1s infinite;
}
@keyframes kawaii-heart-bounce {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.2) translateY(-12px); }
}
.kawaii-loader-text {
    font-family: 'Press Start 2P', cursive, monospace;
    color: #ff6ec7;
    font-size: 1rem;
    text-shadow: 1px 1px 0 #fff, 2px 2px 0 #ffb6d5;
    letter-spacing: 1px;
}
.senha-wrapper input::placeholder {
    color: #ffb6d5;
    opacity: 1;
    font-family: 'Press Start 2P', cursive, monospace;
    font-size: 1rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 #fff, 1.5px 1.5px 0 #ff6ec7;
}
/* Campo de senha igual ao campo de usuário */
.senha-wrapper {
    position: relative;
    width: 100%;
}
.senha-wrapper input[type="password"],
.senha-wrapper input[type="text"] {
    width: 100%;
    border: 4px solid #ffb6d5;
    border-radius: 10px;
    padding: 14px 38px 14px 16px;
    background: #fff0fa;
    color: #ff6ec7;
    font-size: 1rem;
    font-family: 'Press Start 2P', cursive, monospace;
    outline: none;
    box-sizing: border-box;
    margin-bottom: 8px;
    image-rendering: pixelated;
    letter-spacing: 1px;
    box-shadow: 0 2px 0 #ffe6fa, 0 4px 0 #ffb6d5, inset 0 0 20px rgba(255, 230, 250, 0.5);
    transition: all 0.3s;
}
.senha-wrapper input[type="password"]:focus,
.senha-wrapper input[type="text"]:focus {
    border: 4px solid #ff6ec7;
    box-shadow: 0 0 0 4px #ffb6d5, 0 0 20px rgba(255, 110, 199, 0.3), inset 0 0 20px rgba(255, 230, 250, 0.5);
    transform: translateY(-2px);
}
.toggle-senha-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
/* Pixel Art Style */
/* Pixel Art Kawaii Style */
.main-login{
    width: 100vw;
    height: 100vh;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    image-rendering: pixelated;
}


.left-login{
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 6px solid #ffb6d5;
    background: linear-gradient(135deg, #fff0fa 0%, #ffebfc 100%);
    box-shadow: 0 0 0 10px #ffe6fa, 0 0 0 18px #ffb6d5, 0 15px 35px rgba(255, 110, 199, 0.5);
    margin: 8px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    animation: card-float 6s infinite alternate ease-in-out;
}

@keyframes card-float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* Adiciona bolhas flutuantes no fundo do card esquerdo */
.left-login::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background-image: 
        radial-gradient(circle at 20% 90%, #ffcbf2 10px, transparent 10px),
        radial-gradient(circle at 40% 70%, #ffcbf2 8px, transparent 8px),
        radial-gradient(circle at 60% 85%, #ffcbf2 12px, transparent 12px),
        radial-gradient(circle at 80% 75%, #ffcbf2 6px, transparent 6px);
    opacity: 0.3;
    animation: bubble-float 12s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

@keyframes bubble-float {
    0% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-30px); opacity: 0.5; }
    100% { transform: translateY(-10px); opacity: 0.3; }
}

.left-login > h1 {
    font-size: 2vw;
    color: #ff6ec7;
    text-shadow: 2px 2px 0 #fff, 3px 3px 0 #ffb6d5, 0 0 10px rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    font-family: 'Press Start 2P', cursive, monospace;
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.left-login > h1:hover {
    transform: scale(1.05);
}

/* Kawaii face below h1 */
.left-login > h1::after {
    content: '（｡♥‿♥｡）';
    display: block;
    font-size: 1.2vw;
    color: #ff6ec7;
    margin-top: 12px;
    text-shadow: 1px 1px 0 #fff, 2px 2px 0 #ffb6d5;
    animation: face-bounce 3s infinite alternate ease-in-out;
}

@keyframes face-bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px) scale(1.1); }
}

.left-login-image{
    width: 25vw;
    image-rendering: pixelated;
    border: 5px solid #ffb6d5;
    background: #fff0fa;
    box-shadow: 0 0 0 8px #ffe6fa, 0 10px 25px rgba(255, 110, 199, 0.3);
    margin-top: 24px;
    border-radius: 20px;
    padding: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.left-login-image:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 0 0 8px #ffe6fa, 0 15px 35px rgba(255, 110, 199, 0.5);
}

.right-login{
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 6px solid #ffb6d5;
    background: linear-gradient(225deg, #fff0fa 0%, #ffebfc 100%);
    box-shadow: 0 0 0 10px #ffe6fa, 0 0 0 18px #ffb6d5, 0 15px 35px rgba(255, 110, 199, 0.5);
    margin: 8px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    animation: card-float 6s infinite alternate-reverse ease-in-out;
}

.card-login{
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 36px 40px 32px 40px;
    background: linear-gradient(135deg, #fff6fc 0%, #fffcff 100%);
    border: 6px solid #ffb6d5;
    box-shadow: 0 0 0 10px #ffe6fa, 0 20px 40px rgba(255, 110, 199, 0.4);
    border-radius: 24px;
    image-rendering: pixelated;
    position: relative;
    overflow: visible;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    backdrop-filter: blur(5px);
}

.card-login:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 0 0 10px #ffe6fa, 0 25px 50px rgba(255, 110, 199, 0.5);
}

/* Pixel heart above card */
.card-login::before {
    content: '❤';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    color: #ff6ec7;
    filter: drop-shadow(0 2px 0 #fff) drop-shadow(0 4px 0 #ffb6d5) drop-shadow(0 0 10px rgba(255, 110, 199, 0.6));
    z-index: 2;
}

.card-login > h1 {
    color: #ff6ec7;
    font-weight: bold;
    margin: 0 0 24px 0;
    font-family: 'Press Start 2P', cursive, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #fff, 4px 4px 0 #ffb6d5, 0 0 15px rgba(255, 110, 199, 0.4);
}

.card-login > h1 {
    color: #ff6ec7;
    font-weight: bold;
    margin: 0 0 18px 0;
    font-family: 'Press Start 2P', cursive, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #fff, 4px 4px 0 #ffb6d5;
    position: relative;
    display: inline-block;
    animation: title-bounce 3s infinite ease-in-out;
}

@keyframes title-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Adiciona brilho estilo pixel ao título */
.card-login > h1::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M8 2h4v2h2v2h2v4h-2v2h-2v2h-4v-2h-2v-2h-2v-4h2v-2h2z" fill="%23ffffff" fill-opacity="0.9"/></svg>') no-repeat center/contain;
    animation: shine 2s infinite linear;
}

@keyframes shine {
    0% { transform: rotate(0deg) scale(1); opacity: 0.7; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 1; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.7; }
}

/* Pixel heart acima do card com animação */
.card-login::before {
    content: '❤';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: #ff6ec7;
    filter: drop-shadow(0 2px 0 #fff) drop-shadow(0 4px 0 #ffb6d5);
    z-index: 2;
    animation: heart-beat 1.5s infinite ease-in-out;
}

@keyframes heart-beat {
    0%, 100% { transform: translateX(-50%) scale(1); }
    25% { transform: translateX(-50%) scale(1.05); }
    50% { transform: translateX(-50%) scale(0.9); }
    75% { transform: translateX(-50%) scale(1.1); }
}

.textfield {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0px;
    font-family: 'Press Start 2P', cursive, monospace;
    position: relative;
}

.textfield > input {
    width: 100%;
    border: 4px solid #ffb6d5;
    border-radius: 12px;
    padding: 14px 16px;
    background: #fff0fa;
    color: #ff6ec7;
    font-size: 1rem;
    font-family: 'Press Start 2P', cursive, monospace;
    outline: none;
    box-sizing: border-box;
    margin-bottom: 8px;
    image-rendering: pixelated;
    letter-spacing: 1px;
    box-shadow: 0 2px 0 #ffe6fa, 0 4px 0 #ffb6d5, inset 0 0 20px rgba(255, 230, 250, 0.5), 0 0 0 rgba(255, 110, 199, 0);
    transition: all 0.3s ease-out;
}
.textfield > input:focus {
    border: 4px solid #ff6ec7;
    box-shadow: 0 0 0 4px #ffb6d5, 0 0 25px rgba(255, 110, 199, 0.4), inset 0 0 20px rgba(255, 230, 250, 0.5);
    transform: translateY(-2px);
}

.textfield > label {
    color: #ff6ec7;
    margin-bottom: 10px;
    font-family: 'Press Start 2P', cursive, monospace;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 #fff, 2px 2px 0 #ffb6d5;
}

.textfield > input::placeholder{
    color: #ffb6d5;
    opacity: 1;
    font-family: 'Press Start 2P', cursive, monospace;
}

.btn-login {
    width: 100%;
    padding: 16px 0px;
    margin: 25px 0 0 0;
    border: 4px solid #ffb6d5;
    border-radius: 12px;
    outline: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff0fa;
    background: linear-gradient(90deg, #ff6ec7 0%, #ff3eb5 100%);
    cursor: pointer;
    font-family: 'Press Start 2P', cursive, monospace;
    font-size: 1rem;
    box-shadow: 0 2px 0 #ffe6fa, 0 4px 0 #ffb6d5, 0 8px 15px rgba(255, 110, 199, 0.4);
    transition: all 0.3s ease-out;
    image-rendering: pixelated;
    position: relative;
    overflow: visible;
    animation: btn-pulse 2s infinite alternate ease-in-out;
}

@keyframes btn-pulse {
    0% { transform: scale(1); box-shadow: 0 2px 0 #ffe6fa, 0 4px 0 #ffb6d5, 0 8px 15px rgba(255, 110, 199, 0.4); }
    100% { transform: scale(1.03); box-shadow: 0 2px 0 #ffe6fa, 0 4px 0 #ffb6d5, 0 12px 20px rgba(255, 110, 199, 0.5); }
}

.btn-login::after {
    content: '★';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff6fc;
    font-size: 1.2rem;
    text-shadow: 1px 1px 0 #ffb6d5, 0 0 5px rgba(255, 255, 255, 0.8);
    animation: star-spin 3s linear infinite;
}

@keyframes star-spin {
    0% { transform: translateY(-50%) rotate(0deg) scale(1); }
    50% { transform: translateY(-50%) rotate(180deg) scale(1.2); }
    100% { transform: translateY(-50%) rotate(360deg) scale(1); }
}

.btn-login:hover {
    background: linear-gradient(90deg, #ff3eb5 0%, #ff6ec7 100%);
    color: #fff0fa;
    box-shadow: 0 0 0 4px #ffb6d5, 0 10px 25px rgba(255, 110, 199, 0.7);
    transform: translateY(-4px);
}

.btn-login:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 #ffe6fa, 0 2px 0 #ffb6d5, 0 4px 8px rgba(255, 110, 199, 0.3);
    background: linear-gradient(90deg, #ff6ec7 0%, #ff3eb5 100%);
}

@media only screen and (max-width: 950px){
    .card-login{
        width: 85%;
    }
    .left-login, .right-login {
        border-width: 4px;
        box-shadow: 0 0 0 6px #ffe6fa, 0 0 0 10px #ffb6d5, 0 8px 16px rgba(255, 110, 199, 0.4);
    }
    .left-login > h1 {
        font-size: 3vw;
    }
    .left-login > h1::after {
        font-size: 2vw;
    }
}

@media only screen and (max-width: 600px){
    .main-login{
        flex-direction: column;
        padding: 20px 10px;
    }
    .left-login > h1{
        display: none;
    }
    .left-login{
        width: 100%;
        height: auto;
        margin: 10px 0;
        border-radius: 16px;
        padding: 15px;
        box-shadow: 0 0 0 4px #ffe6fa, 0 0 0 8px #ffb6d5, 0 5px 15px rgba(255, 110, 199, 0.4);
    }
    .right-login{
        width: 100%;
        height: auto;
        margin: 10px 0;
        border-radius: 16px;
        box-shadow: 0 0 0 4px #ffe6fa, 0 0 0 8px #ffb6d5, 0 5px 15px rgba(255, 110, 199, 0.4);
    }
    .left-login-image{
        width: 60vw;
        max-width: 300px;
        border-radius: 10px;
        border: 3px solid #ffb6d5;
        box-shadow: 0 0 0 6px #ffe6fa, 0 8px 15px rgba(255, 110, 199, 0.3);
        animation: image-float 5s infinite alternate ease-in-out;
    }
    
    @keyframes image-float {
        0% { transform: translateY(0); }
        100% { transform: translateY(-10px); }
    }
    
    .card-login{
        width: 90%;
        border-radius: 12px;
        padding: 30px 20px 25px;
        margin-top: 20px;
        border: 4px solid #ffb6d5;
        box-shadow: 0 0 0 6px #ffe6fa, 0 10px 20px rgba(255, 110, 199, 0.3);
    }
    
    .card-login::before {
        top: -25px;
        font-size: 2rem;
    }
    
    .avatar-kawaii {
        width: 80px;
        height: 80px;
        margin: -40px auto 15px;
    }
    
    .btn-login {
        padding: 12px 0;
        font-size: 0.9rem;
    }
    
    .pixel-checkbox-label {
        font-size: 0.6rem;
    }
    
    .links-kawaii {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .link-kawaii {
        font-size: 0.6rem;
        padding: 6px 8px;
        width: 90%;
        justify-content: center;
    }
    
    /* Remove a linha vertical entre links em mobile */
    .links-kawaii::before {
        display: none;
    }
}

/* Estilizando a mensagem de erro para ficar mais kawaii */
#login-error {
  color: #ff6ec7;
  font-family: 'Press Start 2P', cursive, monospace;
  font-size: 0.8rem;
  margin-top: 12px;
  text-align: center;
  background-color: rgba(255, 240, 250, 0.8);
  border: 2px dashed #ffb6d5;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 0 4px #fff, 0 5px 15px rgba(255, 110, 199, 0.3);
  animation: error-shake 0.5s ease-in-out, error-fade-in 0.3s ease-out;
  position: relative;
}

@keyframes error-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}

@keyframes error-fade-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Coração pulsante na mensagem de erro */
.pixel-heart {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" fill="none"/><path d="M4 8h2V6h2V4h4v2h2v2h2v2h2v2h-2v2h-2v2h-2v2h-2v-2h-2v-2H6v-2H4V8z" fill="%23ff6ec7" stroke="%23fff" stroke-width="1"/></svg>') no-repeat center/contain;
  vertical-align: middle;
  margin: 0 6px;
  animation: heart-pulse 1s infinite alternate ease-in-out;
}

@keyframes heart-pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.25); }
}

/* Estilos para o checkbox "Lembrar de mim" - versão corrigida */
.lembrar-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 12px 0 0 0;
}

.pixel-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: 'Press Start 2P', cursive, monospace;
  font-size: 0.7rem;
  color: #ff6ec7;
  text-shadow: 1px 1px 0 #fff, 2px 2px 0 rgba(255, 182, 213, 0.5);
  position: relative;
  user-select: none;
  transition: transform 0.2s, color 0.2s;
  padding: 5px;  /* Adicionando padding para área de clique maior */
  z-index: 1;   /* Garantir que a label fique acima */
}

.pixel-checkbox {
  position: absolute;
  opacity: 0;
  width: 24px; /* Aumentar a área de clique real */
  height: 24px; /* Aumentar a área de clique real */
  z-index: 2; /* Colocar o checkbox real acima para capturar os cliques */
  cursor: pointer;
  margin: 0;
  padding: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.pixel-checkbox-custom {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  margin-left: 24px; /* Espaço para o checkbox invisível */
  background: #fff0fa;
  border: 3px solid #ffb6d5;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px #fff, 0 2px 0 #ffe6fa, 0 4px 0 #ffb6d5, 0 5px 10px rgba(255, 110, 199, 0.2);
  transition: all 0.3s ease;
  pointer-events: none; /* Importante para que os cliques passem para o checkbox real */
}

.pixel-checkbox-custom::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 10px;
  pointer-events: none;
}

.checkbox-text {
  position: relative;
  z-index: 1;
  pointer-events: none; /* Permite que os cliques passem para o checkbox real */
}

/* Estilos para links kawaii */
.links-kawaii {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  position: relative;
}

/* Adiciona linha decorativa entre os links */
.links-kawaii::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 80%;
  background: linear-gradient(to bottom, transparent, #ffb6d5, transparent);
  opacity: 0.6;
}

.link-kawaii {
  display: flex;
  align-items: center;
  font-family: 'Press Start 2P', cursive, monospace;
  font-size: 0.7rem;
  color: #ff6ec7;
  text-decoration: none;
  padding: 8px 10px;
  position: relative;
  transition: all 0.3s ease-out;
  background: rgba(255, 240, 250, 0.5);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(255, 182, 213, 0.3);
}

.link-kawaii:hover {
  color: #ff3eb5;
  transform: scale(1.12) translateY(-3px) rotate(1deg);
  box-shadow: 0 8px 20px rgba(255, 110, 199, 0.4);
  background: rgba(255, 240, 250, 0.8);
}

.link-kawaii:active {
  transform: scale(0.95) translateY(1px);
}

/* Linha decorativa que aparece ao passar o mouse */
.link-kawaii::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #ff3eb5, transparent);
  transition: width 0.4s ease-out, left 0.4s ease-out;
  box-shadow: 0 0 8px #ff6ec7;
}

.link-kawaii:hover::after {
  width: 90%;
  left: 5%;
}

/* Ícones pixel art para os links com animação */
.pixel-icon-star, .pixel-icon-key {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  transition: transform 0.4s ease;
}

.pixel-icon-star {
  background: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M8 2l1.5 3h3.5l-2.5 2.5 1 3.5-3.5-2-3.5 2 1-3.5-2.5-2.5h3.5z" fill="%23ffb6d5"/></svg>') no-repeat center/contain;
  animation: star-twinkle 3s infinite ease-in-out alternate-reverse;
}

@keyframes star-twinkle {
  0% { transform: rotate(0deg) scale(1); filter: drop-shadow(0 0 0 rgba(255, 110, 199, 0.2)); }
  100% { transform: rotate(15deg) scale(1.25); filter: drop-shadow(0 0 5px rgba(255, 110, 199, 0.8)); }
}

.pixel-icon-key {
  background: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="6" width="5" height="5" fill="%23ffb6d5"/><rect x="7" y="8" width="7" height="1" fill="%23ffb6d5"/><rect x="9" y="5" width="1" height="3" fill="%23ffb6d5"/><rect x="12" y="5" width="1" height="3" fill="%23ffb6d5"/></svg>') no-repeat center/contain;
  animation: key-float 3s infinite ease-in-out alternate;
}

@keyframes key-float {
  0% { transform: translateY(0) rotate(0deg); filter: drop-shadow(0 0 0 rgba(255, 110, 199, 0.2)); }
  100% { transform: translateY(-4px) rotate(5deg); filter: drop-shadow(0 4px 5px rgba(255, 110, 199, 0.6)); }
}
