/* Estilos customizados Mobile-First / SPA */
body {
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding: 0;
    padding-bottom: 80px;
    /* espaço pro bottom nav */
}

/* Esconder o bottom nav na tela de login */
body.no-nav {
    padding-bottom: 0;
}

.nav-item.active {
    color: #ec4899;
    /* brand color */
}

input,
textarea,
select {
    outline: none;
    border: 1px solid #fbcfe8;
    border-radius: 0.75rem;
    padding: 0.875rem;
    width: 100%;
    background-color: #fff;
    transition: all 0.2s;
    font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #f472b6;
    box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.2);
}

.btn-primary {
    background-color: #ec4899;
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    width: 100%;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 4px 6px -1px rgba(236, 72, 153, 0.3);
}

.btn-primary:active {
    background-color: #be185d;
    transform: scale(0.98);
}

.card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

/* Animações simples para as views */
.view-enter {
    animation: fadeIn 0.3s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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