/* Fontes importadas do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600&family=Nunito+Sans:wght@400;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css');

/* Aplicando as fontes escolhidas */
.font-serif {
    font-family: 'Lora', serif;
}

.font-sans {
    font-family: 'Nunito Sans', sans-serif;
}

/* Cores da Marca */
.bg-brand-green {
    background-color: #31ab11;
}

.text-brand-green {
    color: #31ab11;
}

.hover\:bg-brand-green-dark:hover {
    background-color: #2a8f0e;
}

.border-brand-green {
    border-color: #31ab11;
}

.bg-brand-red {
    background-color: #DC2626;
}

.text-brand-red {
    color: #DC2626;
}

/* Fundo com textura sutil */
body {
    background-color: #FDFCF8;
    background-image: url('https://www.transparenttextures.com/patterns/subtle-linen.png');
    font-family: 'Nunito Sans', sans-serif;
}

html, body {
    font-family: 'Nunito Sans', sans-serif;
}

body {
    background-color: #FDFCF8;
    background-image: url('https://www.transparenttextures.com/patterns/subtle-linen.png');
}

.mud-drawer-temporary-right {
    position: fixed !important;
    height: 100vh !important;
}


#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

@keyframes jiggle {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2) rotate(-5deg);
    }
}

.jiggle {
    animation: jiggle 0.3s ease-in-out;
}

.welcome-layout-root {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #fdfdfa;
    overflow: hidden;
    /* Adicionado para garantir que o layout ocupe todo o ecrã */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* Garante que ele fique por cima de qualquer outro conteúdo */
}

.welcome-container {
    text-align: center;
    padding: 20px;
}

.welcome-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: #31ab11;
    font-weight: 400;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.welcome-subtitle {
    font-family: 'Varela Round', sans-serif;
    font-size: 1.25rem;
    color: #6B7280;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

