body {
    background: #E0CCAC;
    /* blur para glassmorphism */
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.2),
        -8px -8px 20px rgba(255, 255, 255, 0.2);
    /* Neumorphism */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 2rem;
}

/* Transição suave de fade e slide */
.fade-slide-enter {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
}

.fade-slide-enter-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* efeito hover para deixar mais interativo */
.glass-card:hover {
    transform: translateY(-1px);
    box-shadow: 12px 12px 30px rgba(0, 0, 0, 0.25),
        -12px -12px 30px rgba(255, 255, 255, 0.25);
}

.loader {
  border-width: 3px;
}

@keyframes pop {
  0% { transform: scale(0.6); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.pop {
  animation: pop 0.4s ease forwards;
}

